:root {
    --azul-escuro: #0a0a0f; 
    --dourado-cobre: #c9a063; 
    --preto-fosco: #1a1a24; 
}

body {
    background-color: var(--azul-escuro);
    background-image: radial-gradient(circle at center, #1a1a24 0%, var(--azul-escuro) 70%);
    color: #ffffff; 
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* --- HEADER PREMIUM (GLASSMORPHISM) --- */
.header-premium {
    position: fixed;
    top: 20px; 
    left: 50%;
    transform: translateX(-50%);
    width: 90%; 
    max-width: 1200px;
    background: rgba(26, 26, 36, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 160, 99, 0.3) !important; 
    border-radius: 50px !important; 
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px !important; /* Respiro lateral */
    height: 60px !important;    /* Trava a altura em 60 pixels */
}

.logo img {
    height: 90px !important;    /* Aumenta a altura exata do logo */
    width: auto !important;     /* Mantém a proporção sem achatar */
    max-height: 90px !important;
    display: block;
    transform: none !important; /* Removemos o scale para ele não "vazar" */
}

/* Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 400;
    transition: 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu ul li a:hover {
    color: #ffffff;
}

.nav-menu ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    border-bottom: 2px solid var(--dourado-cobre);
}

/* Botão do Header */
.btn-orcamento-header {
    background: transparent;
    border: 1.5px solid var(--dourado-cobre);
    color: var(--dourado-cobre);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-orcamento-header:hover {
    background-color: var(--dourado-cobre);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(201, 160, 99, 0.5);
}


.menu-toggle {
    display: none;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
}


/* Estilo para quando o menu mobile estiver aberto (Classe que o JS vai colocar) */
.nav-menu.active {
    display: flex;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: rgba(26, 26, 36, 0.95); /* Fundo mais sólido no mobile */
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px 0;
    border: 1px solid rgba(201, 160, 99, 0.3);
    z-index: 999;
}

.nav-menu.active ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
}


@media (max-width: 768px) {
    
    /* Header Mobile */
    .header-premium {
        width: 100%;
        top: 0;
        border-radius: 0;
        left: 0;
        transform: none;
        border: none;
        border-bottom: 1px solid rgba(201, 160, 99, 0.2);
    }

    .header-container {
        padding: 10px 20px;
    }

    .nav-menu {
        display: none; 
    }

    .menu-toggle {
        display: block; 
    }

    .btn-orcamento-header {
        display: none !important;
    }

    
    .hero-premium-container {
        flex-direction: column-reverse;
        text-align: center;
        padding: 100px 0;
    }

    .hero-title-premium {
        font-size: 36px;
    }

    .highlight-dourado {
        border-width: 1px;
    }

    .hero-description-premium {
        margin: 0 auto 30px auto;
    }

    .hero-btns-premium {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .tablet-mockup {
        width: 90%;
        margin: 0 auto;
    }

    .logo img {
        height: 30px; 
    }
}

/*-----------------------------------------------------------------------------------------------------------------*/


/* ------------------------------------ NOVA HERO PREMIUM (LAYOUT) --------------------------------------------- */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0 100px 0;
    background-image: radial-gradient(circle at center, rgba(26, 26, 36, 0.8) 0%, #0a0a0f 100%), 
                      url('../img/fundoheroindex.avif'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
}

.hero-premium-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* Coluna Texto */
.hero-col-text {
    flex: 1;
    text-align: left;
}

.hero-title-premium {
    font-size: 55px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.highlight-dourado {
    border: 2px solid var(--dourado-cobre);
    border-radius: 10px;
    padding: 0 5px;
    color: var(--dourado-cobre);
}

.hero-subtitle-premium {
    font-size: 24px;
    color: var(--dourado-cobre);
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-description-premium {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.6;
}

/* Botões da Hero */
.hero-btns-premium {
    display: flex;
    gap: 15px;
}

.btn-ver-portfolio {
    background-color: var(--dourado-cobre);
    color: var(--azul-escuro);
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
}

.btn-ver-portfolio:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
}

.btn-fale-conosco {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
}

.btn-fale-conosco:hover {
    background-color: #ffffff;
    color: var(--azul-escuro);
}


.hero-col-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.tablet-mockup {
    position: relative;
    width: 100%;
    max-width: 550px;
    background: #000;
    border: 15px solid #2a2a2f; 
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.tablet-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-premium::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; 
    background: linear-gradient(to bottom, transparent, #0a0a0f);
    z-index: 1;
}

/* --- RESPONSIVIDADE: HERO PREMIUM --- */

@media (max-width: 992px) {
    .hero-premium-container {
        flex-direction: column; /* Empilha texto e imagem */
        text-align: center;
        gap: 40px;
        padding-top: 80px; /* Espaço para o header flutuante */
    }

    .hero-col-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title-premium {
        font-size: 42px; /* Reduz o título monumental */
    }s

    .hero-description-premium {
        margin: 0 auto 30px auto; /* Centraliza a descrição */
    }

    .hero-col-img {
        justify-content: center;
        width: 100%;
    }

    .tablet-mockup {
        max-width: 450px; /* Reduz o mockup para tablets */
        border-width: 10px; /* Moldura mais fina */
    }
}

@media (max-width: 768px) {
    .hero-premium {
        background-attachment: scroll; /* Melhora a performance em celulares antigos */
        padding-bottom: 60px;
    }

    .hero-title-premium {
        font-size: 32px;
    }

    .hero-subtitle-premium {
        font-size: 18px;
    }

    .hero-btns-premium {
        flex-direction: column; /* Botões um embaixo do outro no celular */
        width: 100%;
        max-width: 300px; /* Garante que os botões não fiquem largos demais */
    }

    .btn-ver-portfolio, .btn-fale-conosco {
        width: 100%;
        padding: 12px 20px;
    }

    .tablet-mockup {
        max-width: 100%; /* Mockup ocupa a largura disponível */
        border-radius: 15px;
    }
}

/* Ajuste para telas muito curtas (celular deitado) */
@media (max-height: 600px) {
    .hero-premium {
        min-height: auto;
        padding-top: 120px;
    }
}

/* -------------------------------------- MODAL PREMIUM (ESTILO GLASSMORPHISM) --------------------------- */
.modal-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px); 
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

/* Caixa do Formulário */
.modal-glass {
    background: rgba(26, 26, 36, 0.9);
    border: 1px solid rgba(201, 160, 99, 0.4);
    padding: 35px;
    border-radius: 25px;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.modal-glass select {
    color: white;
}


.modal-glass select option {
    background-color: white; 
    color: #1a1a24;         
    padding: 50px;   
}

.modal-glass h2 { color: #c9a063; margin-bottom: 5px; }
.modal-glass p { color: #ccc; font-size: 14px; margin-bottom: 20px; }

/* Inputs e Selects */
.modal-glass input, .modal-glass select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
}

.modal-glass input[type="date"],
.modal-glass input[type="time"] {
    width: 100%;
    box-sizing: border-box; 
}

.input-group {
    display: flex;
    flex-wrap: wrap; 
    gap: 15px;    
    width: 100%;
    margin: 10px 0;
}


.date-field {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
}
.date-field label { font-size: 10px; color: #c9a063; margin-bottom: 2px; }

/* Botão de Enviar */
.btn-enviar-modal {
    width: 100%;
    padding: 15px;
    margin-top: 15px;
    background: #c9a063;
    color: #000;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-enviar-modal:hover { background: #fff; }

/* --- ANIMAÇÃO DO BOTÃO FECHAR (X) --- */

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7); 
    font-size: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    outline: none;
}


.modal-close:hover {
    color: var(--dourado-cobre); 
    transform: rotate(90deg) scale(1.2);  
}


.modal-close:active {
    transform: scale(0.9); 
}

.servicos-premium-grid { 
    position: relative;
    background: #0a0a0f; 
    padding: 60px 0;
    
    background: linear-gradient(to bottom, 
        rgba(10, 10, 15, 0) 0%,   
        rgba(10, 10, 15, 1) 15%   
    );
    
    
    margin-top: -50px; 
    z-index: 2;
}


/* --- RESPONSIVIDADE: MODAL E GRADE DE SERVIÇOS --- */

@media (max-width: 768px) {
    /* 1. Ajuste do Modal (Formulário) */
    .modal-overlay {
        padding: 20px; /* Evita que o modal encoste nas bordas da tela */
    }

    .modal-glass {
        padding: 25px 20px;
        width: 100%;
        max-height: 95vh; /* Garante que o modal não ultrapasse a altura da tela */
        overflow-y: auto; /* Permite rolar o formulário caso ele seja longo */
        border-radius: 20px;
    }

    .modal-glass h2 {
        font-size: 22px;
        text-align: center;
    }

    .modal-glass p {
        text-align: center;
        font-size: 13px;
    }

    /* Ajuste dos inputs para facilitar o toque */
    .modal-glass input, 
    .modal-glass select {
        padding: 15px;
        font-size: 16px; /* Evita o zoom automático do iPhone ao clicar no campo */
    }

    .input-group {
        flex-direction: column; /* Coloca data e hora um sobre o outro */
        gap: 10px;
    }

    /* 2. Ajuste da Grade de Serviços */
    .servicos-premium-grid {
        padding: 40px 15px;
        margin-top: -30px; /* Suaviza a sobreposição no mobile */
    }
}

/* Ajustes para o botão fechar no mobile */
@media (max-width: 480px) {
    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 24px;
        width: 30px;
        height: 30px;
    }
    
    .btn-enviar-modal {
        padding: 12px;
        font-size: 14px;
    }
}



/* -------------------------------------- NOVA SEÇÃO SERVIÇOS PREMIUM EM GRADE -------------------------------- */




.diferenciais-final {
    position: relative;
    background: #0a0a0f;
    padding: 80px 0; 
    overflow: hidden;
    min-height: auto; 
    display: flex;
    align-items: center;
}


.logo-background-central {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%; 
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.logo-background-central img {
    width: 100%;
    height: auto;
    filter: grayscale(100%); 
}

.container-central-grid {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    gap: 150px;
}

.coluna-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ESTILO DOS CARTÕES (ESTILO VIDRO FUMÊ) */
.card-premium-left, .card-premium-right {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 160, 99, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-premium-right {
    flex-direction: row-reverse;
    text-align: right;
}

.card-premium-right .card-icon {
    margin-left: 20px;
    margin-right: 0;
}

.card-premium-left:hover, 
.card-premium-right:hover {
    transform: translateY(-8px); 
    background: rgba(201, 160, 99, 0.08); 
    border-color: rgba(201, 160, 99, 0.8); 
    box-shadow: 
        0 10px 30px rgba(201, 160, 99, 0.3), 
        0 0 15px rgba(201, 160, 99, 0.2);     
}

.card-icon {
    font-size: 30px;
    color: #c9a063;
    margin-right: 20px;
}

.card-text h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 5px;
}

.card-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.diferenciais-final::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; 
    background: linear-gradient(to bottom, transparent, #0a0a0f);
    z-index: 1;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .container-central-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .card-premium-right {
        flex-direction: row;
        text-align: left;
    }
    .card-premium-right .card-icon {
        margin-right: 20px;
        margin-left: 0;
    }
}


.portfolio-vitrine {
    background: #0a0a0f;
    padding: 80px 0;
    overflow: hidden;
}

.header-portfolio {
    text-align: center;
    margin-bottom: 50px;
}

.header-portfolio h2 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.destaque-metal {
    font-weight: 700;
    display: inline-block;
    width: max-content; 
    text-transform: uppercase;
    letter-spacing: 2px;

    /* --- O NOVO GRADIENTE COMPLEXO ---*/
    background-image: linear-gradient(135deg, 
        #c9a063 20%,  
        #f1dca7 40%,    
        #00a8ff 50%,     
        #f1dca7 60%,     
        #c9a063 80%   
    );
    
    background-size: 200% auto; 
    
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brilhoScanner 5s linear infinite;
    filter: drop-shadow(0 0 10px rgba(201, 160, 99, 0.3)); 
    transition: filter 0.3s;
}

.header-portfolio:hover .destaque-metal {
     filter: drop-shadow(0 0 15px rgba(0, 168, 255, 0.7)); /* Glow azul mais forte no hover */
}

.subtitulo-elegante {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 4px; 
    text-transform: lowercase;
    font-variant: small-caps; 
}

/* Container do Carrossel */
.carrossel-container {
    width: 100%;
    display: flex;
    overflow: hidden;
    padding: 20px 0;
}

.carrossel-track {
    display: flex;
    gap: 20px;
    animation: scrollInfinito 30s linear infinite; 
}

/* O Card do Projeto */
.projeto-card {
    min-width: 350px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(201, 160, 99, 0.2);
    transition: all 0.5s ease;
}

.projeto-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: all 0.5s ease;
}

/* Efeito Neon no Hover (Igual às caixas de cima) */
.projeto-card:hover {
    transform: scale(1.05);
    border-color: #c9a063;
    box-shadow: 0 0 30px rgba(201, 160, 99, 0.4);
}

.projeto-card:hover img {
    filter: grayscale(0%);
}

.projeto-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 15px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

/* Animação do movimento */
@keyframes scrollInfinito {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Botão centralizado */
.botao-portfolio-centro {
    text-align: center;
    margin-top: 50px;
}

.btn-ver-todos {
    padding: 12px 35px;
    border: 1px solid #c9a063;
    color: #c9a063;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-ver-todos:hover {
    background: #c9a063;
    color: #000;
    box-shadow: 0 0 15px rgba(201, 160, 99, 0.6);
}

@keyframes brilhoScanner {
    0% {
        background-position: -200% center; 
    }
    30% {
        /* 1º Flash: Dourado Intenso */
        background-position: -50% center; 
    }
    60% {
        /* 2º Flash: Azul Mellamin */
        background-position: 50% center;
    }
    100% {
        background-position: 200% center; 
    }
}

.estatisticas-premium {
    background: #0a0a0f;
    padding: 80px 0;
    border-top: 1px solid rgba(201, 160, 99, 0.1);
}

.container-estatisticas {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.estatistica-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.numero-dourado {
    font-size: 56px;
    font-weight: 700;
    display: inline-block;
    background: linear-gradient(145deg, #c9a063 20%, #f1dca7 50%, #c9a063 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-size: 200% auto;
    filter: drop-shadow(0 0 8px rgba(201, 160, 99, 0.3));
    animation: brilhoScanner 5s linear infinite;
}

.plus {
    font-size: 24px;
    color: #c9a063;
    font-weight: 300;
    margin-left: -10px;
}

.estatistica-item p {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 300;
}

.jornada-mellamin {
    background: #0a0a0f;
    padding: 100px 0;
    position: relative; 
    overflow: hidden; 
}

.jornada-mellamin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; 
    height: 100%;
    
    background-image: url('../img/logomella.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90vw; 
    width: 90%;    
    opacity: 0.03; 
    z-index: 0;
    pointer-events: none;
}

.container-jornada {
    position: relative;
    z-index: 2;
}
.header-jornada {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-luxo {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    gap: 20px;
}

.timeline-luxo::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 1px;
    background: rgba(201, 160, 99, 0.2);
    z-index: 0;
}

.etapa-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.circulo-etapa {
    width: 60px;
    height: 60px;
    background: #0a0a0f;
    border: 2px solid rgba(201, 160, 99, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #c9a063;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.etapa-item h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.etapa-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
}

/* Efeito Hover - Acende a etapa */
.etapa-item:hover .circulo-etapa {
    border-color: #c9a063;
    background: #c9a063;
    color: #0a0a0f;
    box-shadow: 0 0 25px rgba(201, 160, 99, 0.6);
    transform: scale(1.1);
}

.etapa-item:hover h3 {
    color: #c9a063;
}

/* Responsividade */
@media (max-width: 768px) {
    .timeline-luxo {
        flex-direction: column;
        gap: 50px;
    }
    .timeline-luxo::before {
        display: none;
    }
}

.divisor-brilho {
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(201, 160, 99, 0.15) 0%, transparent 70%);
    margin-bottom: -50px;
    position: relative;
    z-index: 10;
}

.contato-premium {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 0.9)), 
                url('../img/patternmel.avif'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}


.contato-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a063, transparent);
}

.container-contato {
    position: relative;
    z-index: 2; 
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.card-contato {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.tagline {
    color: #c9a063;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 20px;
}

.card-contato h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #fff;
}

.descricao-contato {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Botoes Estilizados */
.botoes-contato {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #c9a063;
    color: #0a0a0f;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(201, 160, 99, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(201, 160, 99, 0.4);
    background: #f1dca7; 
}

.btn-email {
    background: transparent;
    color: #fff;
    padding: 18px 35px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.4s ease;
}

.btn-email:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}


/* --- RESPONSIVIDADE: CONTATO PREMIUM --- */

@media (max-width: 768px) {
    .contato-premium {
        padding: 80px 0;
        background-attachment: scroll; /* Melhora a rolagem no celular */
    }

    .card-contato {
        padding: 40px 25px;
        margin: 0 15px; /* Garante que o card não encoste nas bordas */
        border-radius: 20px;
    }

    .card-contato h2 {
        font-size: 28px; /* Reduz para não quebrar em muitas linhas */
        line-height: 1.2;
    }

    .descricao-contato {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .botoes-contato {
        flex-direction: column; /* Botões um embaixo do outro */
        gap: 15px;
        width: 100%;
    }

    .btn-whatsapp, .btn-email {
        width: 100%; /* Botões ocupam toda a largura do card */
        padding: 15px 5px;
        font-size: 15px;
        text-align: center;
    }
}

/* Ajuste fino para telas muito pequenas */
@media (max-width: 480px) {
    .tagline {
        letter-spacing: 2px;
        font-size: 11px;
    }
    
    .card-contato h2 {
        font-size: 24px;
    }
}


/*-----------------------------------------------------------------------------------------------------*/



.footer-elite {
    background: #050507;
    padding: 100px 0 40px;
    position: relative; 
    overflow: hidden; 
    border-top: 1px solid rgba(201, 160, 99, 0.3);
}

/* A logo gigante no fundo do rodapé */
.footer-elite::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url('../img/fundorodape.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%; 
    opacity: 0.02; 
    
    z-index: 0;
    pointer-events: none;
}

.footer-elite::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a063, transparent);
    z-index: 5;
}


.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 60px;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.f-logo {
    width: 180px; 
    height: auto;
    max-width: 100%;
    filter: brightness(1.1); 
    margin-bottom: 25px;
    display: block;
    transition: transform 0.3s ease;
}

.f-logo:hover {
    transform: scale(1.05);
}

/* Brilho de fundo para dar profundidade */
.footer-glow {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 160, 99, 0.05) 0%, transparent 70%);
    pointer-events: none;
}


.f-title {
    color: #c9a063;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Estilo da Descrição e Links */
.f-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0;
}

.f-links { list-style: none; padding: 0; }
.f-links li { margin-bottom: 15px; }
.f-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}
.f-links a:hover {
    color: #c9a063;
    transform: translateX(8px);
}

/* Ícones de Contato */
.f-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}
.f-contact-item i { color: #c9a063; width: 20px; text-align: center; }

/* Redes Sociais com Círculos */
.f-social { display: flex; gap: 15px; }
.f-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
    background: rgba(255, 255, 255, 0.02);
}
.f-social a:hover {
    border-color: #c9a063;
    color: #c9a063;
    box-shadow: 0 0 15px rgba(201, 160, 99, 0.2);
    transform: translateY(-5px);
}

/* Mapa Estilizado */
.f-map-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    filter: grayscale(1) contrast(1.2) opacity(0.5);
    transition: 0.6s;
}
.f-map-card:hover { filter: grayscale(0) opacity(1); }

/* Copyright */
.f-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}
.f-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    letter-spacing: 2px;
}
.gold-text { color: #c9a063; font-weight: 600; }

/* Responsividade */
@media (max-width: 992px) {
    .container-footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .container-footer { grid-template-columns: 1fr; text-align: center; }
    .f-contact-item { justify-content: center; }
    .f-social { justify-content: center; }
}