:root {
    --bg-dark: #080808;
    --gold: #c5a880;
    --gold-light: #e8d5b5;
    --gold-dark: #8a704d;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --border-glass: rgba(197, 168, 128, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo { font-family: 'Cormorant Garamond', serif; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

.text-gold {
    color: var(--gold);
    background: linear-gradient(to right, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- HEADER --- */
.header {
    position: fixed; width: 100%; padding: 20px 0; z-index: 1000; transition: 0.4s ease; top: 0;
}
.header.scrolled {
    background: rgba(5, 5, 5, 0.98); backdrop-filter: blur(15px); padding: 12px 0; border-bottom: 1px solid var(--border-glass);
}
.nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: clamp(20px, 4vw, 26px); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #fff; z-index: 1002; }
.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a:not(.btn-header) {
    text-decoration: none; color: var(--text-main); font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.btn-header {
    padding: 10px 24px; border: 1px solid var(--gold); border-radius: 2px; color: var(--gold); text-decoration: none; font-size: 12px; letter-spacing: 1px; transition: 0.4s; text-transform: uppercase; white-space: nowrap;
}
.btn-header:hover { background: var(--gold); color: #000; }

/* --- MENU MOBILE --- */
.mobile-menu-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 28px; cursor: pointer; z-index: 1002; }

@media (max-width: 900px) {
    .mobile-menu-toggle { display: block; }
    .nav-links {
        display: flex; position: fixed; top: 0; right: -100%; width: 85%; height: 100vh;
        background: #080808; flex-direction: column; justify-content: center; align-items: center;
        transition: 0.4s ease-in-out; z-index: 1001; border-left: 1px solid var(--border-glass);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    }
    .nav-links.active { right: 0; }
    .nav-links a:not(.btn-header) { font-size: 20px; margin: 15px 0; display: block; }
    .btn-header { margin-top: 20px; padding: 15px 40px; font-size: 16px; }
    body.menu-open::before {
        content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.7); z-index: 1000; backdrop-filter: blur(3px);
    }
}

/* --- HERO --- */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: url('img/DSC_0533.jpg') center/cover no-repeat; padding: 120px 0 60px;
}
.overlay { position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(0,0,0,0.4), #000); z-index: 1; }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 850px; }
.hero-badge {
    display: inline-block; padding: 8px 16px; background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass); color: var(--gold); font-size: 12px; letter-spacing: 3px; margin-bottom: 25px; backdrop-filter: blur(5px);
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.1; margin-bottom: 30px; font-weight: 600; }
.hero p { color: var(--text-muted); font-size: clamp(1rem, 2vw, 1.2rem); max-width: 550px; margin-bottom: 40px; font-weight: 300; }

.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-primary, .btn-outline {
    padding: 16px 40px; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; transition: 0.4s; display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none;
}
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #000; font-weight: 600; border: none; }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* --- CORREÇÃO DE BOTÕES MOBILE --- */
@media (max-width: 768px) {
    .hero { padding-top: 110px; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-btns { flex-direction: column; gap: 15px; width: 100%; align-items: center; }
    
    /* Botões não esticam mais até a borda */
    .hero .btn-primary, .hero .btn-outline {
        width: auto; min-width: 240px; max-width: 90%;
    }
}

/* --- SEÇÕES GERAIS --- */
.section { padding: clamp(60px, 8vw, 120px) 0; }
.section.dark { background-color: #0b0b0b; }
.section-header { text-align: center; margin-bottom: clamp(40px, 6vw, 80px); }
.section h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 400; line-height: 1.2; }
.subtitle { color: var(--gold); font-size: 12px; letter-spacing: 4px; text-transform: uppercase; display: block; margin-bottom: 10px; font-weight: 600; }

/* Cards */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.glass-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
    border: 1px solid rgba(255,255,255,0.06); padding: 40px 30px; transition: 0.5s ease; position: relative; overflow: hidden;
}
.glass-card i { font-size: 40px; color: var(--gold); margin-bottom: 20px; display: inline-block; }
.glass-card h3 { font-size: 22px; margin-bottom: 10px; font-weight: 500; }
.glass-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.glass-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.04); border-color: var(--border-glass); }

/* --- SÓCIOS (QUEM SOMOS) --- */
.about-grid, .socio-grid { 
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; 
}
.socio-image img {
    width: 100%; border-radius: 4px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); height: auto; object-fit: cover;
}
.socio-info h2 { font-size: 3.5rem; margin-bottom: 25px; }
.socio-bio { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; }
.socio-specialties { list-style: none; }
.socio-specialties li { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; color: #fff; font-size: 1rem; }
.socio-specialties i { color: var(--gold); font-size: 1.2rem; }
.socio-tag {
    position: absolute; bottom: 20px; right: 20px; background: var(--gold); color: #000; padding: 8px 20px; font-size: 12px; font-weight: 700; text-transform: uppercase;
}
.socio-image { position: relative; }

/* --- MOBILE COMPACTO - SÓCIOS --- */
@media (max-width: 900px) {
    .section.socio-detail { padding: 50px 0; } /* Mais compacto */
    .socio-grid, .socio-grid.reverse {
        display: flex; flex-direction: column; gap: 30px; text-align: left;
    }
    .socio-grid.reverse .socio-image { order: -1; }
    
    /* Imagem menor e panorâmica no mobile */
    .socio-image img {
        height: 300px; /* Altura fixa */
        width: 100%;
        object-position: top center; /* Foca no rosto */
    }
    
    .socio-info h2 { font-size: 2.2rem; margin-bottom: 15px; }
    .socio-bio { font-size: 1rem; margin-bottom: 20px; }
    .socio-specialties li { font-size: 0.95rem; }
}

/* --- FAQ --- */
.faq-container { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { border-radius: 4px; cursor: pointer; }
.faq-question { padding: 25px 35px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-question h3 { font-size: 1.1rem; color: #fff; margin: 0; text-align: left; }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.4s ease; padding: 0 35px; opacity: 0; }
.faq-answer p { padding-bottom: 25px; color: var(--text-muted); font-size: 0.95rem; }
.faq-item.open { background: rgba(255,255,255,0.05); border-color: var(--gold); }
.faq-item.open .faq-answer { max-height: 500px; opacity: 1; padding-top: 10px; }
.faq-item.open .faq-question i { transform: rotate(45deg); color: #fff; }

@media (max-width: 768px) {
    .faq-question { padding: 20px; } .faq-answer { padding: 0 20px; }
}

/* --- DEPOIMENTOS & BADGE --- */
.google-badge { display: inline-flex; align-items: center; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 10px 20px; border-radius: 50px; margin-top: 20px; gap: 15px; }
.client-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.stars-mini, .stars { color: #FFD700; font-size: 12px; }
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.review-card { padding: 30px; display: flex; flex-direction: column; justify-content: space-between; }
.g-icon i { font-size: 24px; color: #fff; }

/* --- FOOTER --- */
.premium-footer { background-color: #050505; padding: 80px 0 30px 0; border-top: 1px solid rgba(197, 168, 128, 0.1); }
.footer-top { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold); margin-bottom: 25px; }
.social-links { display: flex; gap: 15px; }
.social-links a { width: 40px; height: 40px; border: 1px solid rgba(197, 168, 128, 0.2); display: flex; align-items: center; justify-content: center; color: var(--gold); border-radius: 50%; text-decoration: none; transition: 0.3s; }
.social-links a:hover { background: var(--gold); color: #000; }
.nav-col ul, .contact-list { list-style: none; }
.nav-col ul li, .contact-list li { margin-bottom: 15px; color: var(--text-muted); }
.contact-list li { display: flex; gap: 15px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 40px; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: #666; }

@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .social-links, .contact-list li { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 20px; }
}

/* --- BOTÕES FLUTUANTES --- */
.floating-group-fix { position: fixed !important; bottom: 30px !important; right: 30px !important; display: flex !important; align-items: center !important; gap: 15px !important; z-index: 99999 !important; }
.whatsapp-float-fix { width: 60px !important; height: 60px !important; background-color: #25D366 !important; color: #FFF !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; font-size: 30px !important; text-decoration: none !important; box-shadow: 0 4px 15px rgba(0,0,0,0.4) !important; position: relative !important; }
.scroll-top-btn-fix { width: 45px !important; height: 45px !important; background: rgba(10, 10, 10, 0.9) !important; border: 1px solid var(--gold) !important; color: var(--gold) !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; font-size: 20px !important; cursor: pointer !important; transition: 0.4s ease !important; opacity: 0; visibility: hidden; transform: translateX(20px); }
.scroll-top-btn-fix.show { opacity: 1 !important; visibility: visible !important; transform: translateX(0) !important; }
.pulse-ring-fix { position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--gold); animation: pulse-fix 2s infinite; }
@keyframes pulse-fix { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }

@media (max-width: 480px) {
    .floating-group-fix { bottom: 20px !important; right: 20px !important; gap: 10px !important; }
    .whatsapp-float-fix { width: 50px !important; height: 50px !important; font-size: 26px !important; }
    .scroll-top-btn-fix { width: 40px !important; height: 40px !important; }
}

/* CTA ZOOM */
.cta-box.glass-gold { position: relative; padding: 80px 20px; text-align: center; background: rgba(15, 15, 15, 0.8); backdrop-filter: blur(20px); border: 1px solid rgba(197, 168, 128, 0.25); }
.cta-box h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 20px; }

/* ==========================================================================
   CTA FINAL (ATENÇÃO IMEDIATA) - ADJUSTED
   ========================================================================== */

/* Container da Sessão */
.cta-section {
    padding: 100px 0; /* Espaço vertical generoso */
}

/* A Caixa de Vidro */
.cta-box.glass-gold {
    position: relative;
    padding: 80px 60px; /* Mais espaço interno no desktop */
    text-align: center;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95) 0%, rgba(5, 5, 5, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 168, 128, 0.3); /* Borda dourada sutil */
    border-radius: 8px; /* Cantos levemente arredondados */
    max-width: 900px;
    margin: 0 auto; /* Centraliza a caixa na tela */
    overflow: hidden;
}

/* Título */
.cta-box h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Texto Descritivo */
.cta-box p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Botão Específico do CTA (Grande e Chamativo) */
.cta-box .btn-primary {
    padding: 20px 50px; /* Botão mais "gordo" */
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 4px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.15); /* Sombra dourada suave */
}

.cta-box .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(197, 168, 128, 0.3);
}

/* Decoração de fundo (opcional, brilho extra) */
.cta-decoration {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1; /* Garante que texto fique acima do brilho */
}

/* ==========================================================================
   CTA MOBILE (RESPONSIVO)
   ========================================================================== */
@media (max-width: 768px) {
    
    .cta-section {
        padding: 60px 0; /* Menos margem externa */
    }

    .cta-box.glass-gold {
        padding: 50px 25px; /* Menos margem interna (padding) */
        width: 100%; /* Ocupa a largura disponível */
        border-radius: 6px;
    }

    .cta-box h2 {
        font-size: 2rem; /* Título equilibrado */
        margin-bottom: 15px;
    }

    .cta-box p {
        font-size: 1rem;
        margin-bottom: 30px; /* Menos espaço antes do botão */
    }

    /* Botão no Mobile */
    .cta-box .btn-primary {
        width: 100%; /* Botão ocupa toda a largura da caixa */
        justify-content: center; /* Texto e ícone no meio */
        padding: 16px 20px; /* Altura confortável para o dedo */
        font-size: 15px;
    }
    
    .cta-box .btn-primary i {
        font-size: 1.3rem; /* Ícone do WhatsApp ajustado */
    }
}

/* ==========================================================================
   FOOTER PREMIUM (AJUSTADO E ALINHADO)
   ========================================================================== */

.premium-footer {
    background-color: #050505;
    padding: 100px 0 40px 0; /* Mais altura no topo para elegância */
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    font-size: 14px;
    color: var(--text-muted);
}

.footer-top {
    display: grid;
    /* Ajuste de colunas: Marca maior, Nav compacta, Contato espaçoso */
    grid-template-columns: 1.2fr 0.8fr 1fr; 
    gap: 60px;
    margin-bottom: 80px;
}

/* Títulos das Colunas */
.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 30px;
    letter-spacing: 1px;
    position: relative;
}

/* --- COLUNA 1: MARCA --- */
.brand-info .logo {
    font-size: 26px;
    margin-bottom: 20px;
    display: block;
    color: #fff;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 320px; /* Limita largura para não esticar demais */
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

/* --- COLUNA 2: NAVEGAÇÃO (LINKS) --- */
.nav-col ul {
    list-style: none;
    padding: 0; /* Remove recuo padrão do navegador */
    margin: 0;
}

.nav-col ul li {
    margin-bottom: 15px;
}

.nav-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
    position: relative;
}

/* Efeito Hover: Desliza suavemente para a direita */
.nav-col ul li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

/* --- COLUNA 3: CONTATO --- */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start; /* Alinha ícone com a primeira linha de texto */
    gap: 15px;
    margin-bottom: 25px;
}

.contact-list i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 2px; /* Ajuste fino ótico */
    flex-shrink: 0; /* Impede o ícone de amassar */
}

/* --- BARRA FINAL (COPYRIGHT) --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Garante que não quebre layout se faltar espaço */
    gap: 20px;
}

.legal-credits p { margin: 0; }
.legal-credits span {
    display: block;
    color: var(--gold-dark);
    font-weight: 600;
    margin-top: 5px;
    font-size: 12px;
}

.developer-credits a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}
.developer-credits a:hover { color: var(--gold); }
.sep { margin: 0 10px; color: #333; }

/* ==========================================================================
   RESPONSIVIDADE FOOTER (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 900px) {
    .premium-footer {
        padding: 60px 0 30px 0;
        text-align: center; /* Centraliza tudo no mobile */
    }

    .footer-top {
        grid-template-columns: 1fr; /* Coluna única */
        gap: 50px;
    }

    /* Centraliza os elementos internos */
    .brand-info, .nav-col, .contact-col {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-description {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}