:root {
    --primary-gold: #D4AF37;
    --dark-bg: #1A1A1A;
    --text-gray: #4A4A4A;
    --white: #FFFFFF;
    --transition: all 0.4s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* =============================================
   RESET DE SEGURANÇA - ANTI-SCROLL LATERAL
   ============================================= */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* O segredo para travar o movimento lateral */
    position: relative;
}

* {
    box-sizing: border-box; /* Garante que padding/border não aumentem a largura */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* HEADER */
#main-header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-wrapper { display: flex; align-items: center; gap: 10px; }
.gold-icon { color: var(--primary-gold); font-size: 1.5rem; }
.logo-text { font-family: 'Montserrat'; font-weight: 800; color: var(--dark-bg); }
.logo-text span { font-weight: 300; color: var(--primary-gold); }

.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-item { 
    text-decoration: none; color: var(--dark-bg); font-weight: 600; 
    text-transform: uppercase; font-size: 0.85rem; position: relative;
}

/* Efeito Hover */
.nav-item::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -5px; left: 0; background: var(--primary-gold); transition: var(--transition);
}
.nav-item:hover::after { width: 100%; }

.btn-cta-header {
    background: var(--dark-bg); color: var(--white); padding: 10px 20px;
    border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.8rem;
}

/* HERO */
#hero {
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1562322140-8baeececf3df?q=80&w=1920') center/cover no-repeat;
    position: relative; display: flex; align-items: center; color: var(--white);
}
.overlay-hero { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.6); }
.hero-container { position: relative; z-index: 2; }
.hero-content h1 { font-family: 'Montserrat'; font-size: 3rem; max-width: 600px; margin-bottom: 20px; }
.hero-actions { display: flex; gap: 20px; margin-top: 30px; }
.btn-primary-hero { 
    background: var(--primary-gold); color: var(--dark-bg); padding: 15px 30px; 
    text-decoration: none; border-radius: 5px; font-weight: 800; 
}
.btn-secondary-hero { color: var(--white); text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 10px; }

/* 6. RESPONSIVIDADE - CORREÇÃO DO BOTÃO */
.mobile-menu-icon {
    display: none; /* ESCONDIDO NO DESKTOP */
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--dark-bg);
}

.menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); z-index: 998; display: none;
}

/* =============================================
   7. EFEITOS DE HOVER (BOTÕES DE AÇÃO)
   ============================================= */

/* Efeito para o botão do Header (Desktop) */
.btn-cta-header:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

/* Efeito para o botão Principal da Hero */
.btn-primary-hero:hover {
    background: var(--white);
    color: var(--dark-bg);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

/* Efeito para o botão do Menu Mobile */
.btn-cta-mobile:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
    transition: var(--transition);
}

/* Garante que todos os botões tenham transição suave */
.btn-cta-header, .btn-primary-hero, .btn-cta-mobile, .btn-secondary-hero {
    transition: var(--transition);
}

@media (max-width: 992px) {
    .mobile-menu-icon { display: block; } /* APARECE NO CELULAR */
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
        background: var(--white); flex-direction: column; justify-content: center;
        align-items: center; z-index: 999; transition: 0.4s ease;
    }
    .nav-links.active { right: 0; }
    .menu-overlay.active { display: block; }
    .header-action { display: none; }
}

/* 1. Esconder o botão mobile por padrão no Desktop */
.mobile-only {
    display: none;
    list-style: none;
    width: 100%;
    padding: 0 20px;
}

/* 2. Estilo do botão dentro do menu mobile */
.btn-cta-mobile {
    background: var(--primary-gold);
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    margin-top: 20px;
    width: 100%;
}

/* 3. Ajustes no @media para mostrar o botão apenas no celular */
@media (max-width: 992px) {
    .mobile-only {
        display: block; /* Mostra no mobile */
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* ... o resto das propriedades do nav-links que já temos ... */
    }

    /* O botão que fica no topo (header) continua escondido no mobile */
    .header-action {
        display: none;
    }
}

/* =============================================
   8. SEÇÃO SERVIÇOS - ESTRUTURA ROBUSTA
   ============================================= */
#servicos {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.container-servicos {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-bloco {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    color: var(--primary-gold);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: var(--dark-bg);
    margin: 10px 0;
}

.linha-decorativa {
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 0 auto;
}

/* FLEXBOX ESTRUTURADO */
.flex-cards {
    display: flex;
    flex-wrap: wrap; /* Permite quebrar linha */
    gap: 20px;
    justify-content: center;
}

.card-item {
    flex: 1 1 calc(25% - 20px); /* 4 por linha no desktop */
    min-width: 250px;
    display: flex;
}

.card-inner {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    width: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-inner:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.icon-gold {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.card-inner h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.card-inner p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* RESPONSIVIDADE PRECISA */
@media (max-width: 1024px) {
    .card-item {
        flex: 1 1 calc(50% - 20px); /* 2 por linha no tablet */
    }
}

@media (max-width: 600px) {
    #servicos { padding: 50px 0; }
    
    .card-item {
        flex: 1 1 100%; /* 1 por linha no celular (TOTAL DESTAQUE) */
    }
    
    .title { font-size: 1.8rem; }
}

/* =============================================
   9. SEÇÃO AUTORIDADE - ESTILIZAÇÃO MONOCROMÁTICA
   ============================================= */
#autoridade {
    padding: 120px 0; /* Mais padding para os números não "esmagarem" os itens da imagem */
    
    /* DEFINIÇÃO DA IMAGEM DE FUNDO */
    /* Substitua pelo link real da imagem na sua pasta img */
    background-image: url('https://thumbs.dreamstime.com/b/conceito-de-sal%C3%A3o-beleza-padr%C3%A3o-dos-acess%C3%B3rios-do-cabeleireiro-no-fundo-bege-espa%C3%A7o-c%C3%B3pia-quadro-topo-plano-176106226.jpg?w=992'); 
    background-size: cover;
    background-position: center top; /* Alinha a imagem para que o topo (com os itens) apareça */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Efeito Parallax suave se desejar */
    
    position: relative; /* Para a overlay funcionar */
    background-color: #fdfbf7; /* Cor de fallback (um creme suave da imagem) */
}

/* Camada para garantir contraste do texto preto */
.autoridade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente suave: começa claro no topo e escurece ligeiramente no centro */
    background: radial-gradient(circle, rgba(253, 251, 247, 0.4) 0%, rgba(253, 251, 247, 0) 100%);
    z-index: 1;
}

.container-numeros {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* Garante que os números fiquem ACIMA da overlay */
    z-index: 2;
}

.grid-numeros {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

.numero-card {
    text-align: center;
    flex: 1 1 220px; /* Um pouco mais largo para respiro */
}

/* COR DOS NÚMEROS: AGORA PRETO PURO */
.numero-card .count {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem; /* Um pouco maior para autoridade máxima */
    font-weight: 800;
    color: #000000; /* PRETO ABSOLUTO */
    margin-bottom: 5px;
    letter-spacing: -2px; /* Visual moderno */
}

/* TEXTO DE LEGENDA: PRETO COM OPACODADE */
.numero-card p {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #000000;
    opacity: 0.9;
}

/* COR DAS ESTRELAS: AGORA PRETO */
.stars {
    color: #000000; /* PRETO ABSOLUTO */
    font-size: 0.85rem;
    margin-bottom: 5px;
}

/* RESPONSIVIDADE PARA NÚMEROS MONOCROMÁTICOS */
@media (max-width: 768px) {
    #autoridade { 
        padding: 60px 0; 
        background-attachment: scroll; /* Desativa parallax no mobile para melhor performance */
    }
    
    .grid-numeros {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 por linha no celular */
        gap: 50px 20px;
    }

    .numero-card .count {
        font-size: 2.5rem; /* Ajusta tamanho no mobile */
    }
}

/* =============================================
   10. SEÇÃO PORTFÓLIO INTERATIVO - ESTILIZAÇÃO
   ============================================= */
#portfolio {
    padding: 80px 0;
    background-color: var(--accent-color); /* Fundo creme suave */
}

.container-portfolio {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.centralizado { text-align: center; }

.instrucao-slide {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: -10px;
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CONTAINER DOS COMPARADORES */
.comparador-wrapper {
    display: flex;
    flex-direction: column; /* Módulos grandes, um abaixo do outro */
    gap: 60px; /* Espaço entre os módulos */
    align-items: center;
}

.comparador-item {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 1000px;
}

/* ESTRUTURA DO SLIDER (A MÁGICA CSS) */
.image-comparison-slider {
    position: relative;
    width: 100%;
    max-width: 500px; /* Tamanho da imagem */
    aspect-ratio: 4 / 3; /* Proporção fixa para garantir sincronia */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-comparison-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Imagem do ANTES (A que fica cortada) */
.img-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; /* Começa no meio */
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

/* O INPUT RANGE (O controle invisível que captura o clique) */
.image-comparison-slider .slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: rgba(242, 242, 242, 0);
    outline: none;
    margin: 0;
    transition: all 0.2s;
    cursor: col-resize;
    z-index: 4; /* Acima de tudo para capturar o clique */
}

/* O BOTÃO VISÍVEL DO SLIDER */
.image-comparison-slider .slider-button {
    pointer-events: none; /* Não captura clique, o input range faz isso */
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: var(--white);
    left: 50%; /* Começa no meio */
    top: 0;
    z-index: 3;
    transform: translateX(-50%);
}

.image-comparison-slider .slider-button::after {
    content: '↔'; /* Ícone de setas */
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-weight: bold;
    font-size: 1.2rem;
}

/* LEGENDAS ANTES E DEPOIS */
.label-antes, .label-depois {
    position: absolute;
    bottom: 15px;
    background-color: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 1px;
    z-index: 3;
    pointer-events: none;
}

.label-antes { left: 15px; }
.label-depois { right: 15px; }

/* INFO E BOTÃO WA */
.comparador-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comparador-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.comparador-info p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.btn-portfolio-wa-flex {
    background-color: #000000; /* All-Black Premium */
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: 20px;
    align-self: flex-start; /* Botão não ocupa largura toda */
}

.btn-portfolio-wa-flex:hover {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* RESPONSIVIDADE PARA COMPARADOR INTERATIVO */
@media (max-width: 992px) {
    .comparador-item {
        flex-direction: column; /* Empilha imagem e texto no mobile */
        text-align: center;
        gap: 20px;
    }
    
    .comparador-info {
        align-items: center;
    }
    
    .btn-portfolio-wa-flex {
        align-self: center; /* Centraliza botão no mobile */
    }
}

/* =============================================
   11. SLIDER HORIZONTAL DEPOIMENTOS (GOLD)
   ============================================= */
#depoimentos-slider {
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    gap: 20px;
}

.card-depoimento-gold {
    background-color: var(--primary-gold); /* Fundo Dourado */
    min-width: calc(33.333% - 14px); /* 3 por tela no desktop */
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-depoimento-gold p {
    color: #000000; /* Fonte Preta */
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    margin: 20px 0;
}

.g-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #000000;
}

.g-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 15px;
}

.stars-black { color: #000000; font-size: 0.8rem; margin-bottom: 5px; }

.card-depoimento-gold strong {
    color: #000000;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
}

.linha-decorativa-preta {
    width: 60px;
    height: 3px;
    background: #000000;
    margin: 10px auto 40px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .card-depoimento-gold { min-width: calc(100% - 0px); } /* 1 por tela */
}

/* =============================================
   14. SEÇÃO FAQ - ESTILIZAÇÃO ACCORDION
   ============================================= */
#faq {
    padding: 80px 0;
    background-color: var(--white);
}

.container-faq {
    max-width: 800px; /* Mais estreito para melhor leitura */
    margin: 0 auto;
    padding: 0 20px;
}

.faq-grid {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: #fdfbf7; /* Nosso bege padrão */
    border: none;
    outline: none;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover {
    background-color: var(--primary-gold);
    color: #000;
}

.faq-question i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 20px 25px;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Estado Ativo */
.faq-item.active .faq-answer {
    max-height: 200px; /* Ajuste conforme o texto */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* =============================================
   15. SEÇÃO LOCALIZAÇÃO - ESTILIZAÇÃO COMPLETA
   ============================================= */
#localizacao-final {
    padding: 100px 0;
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Caminho para a imagem local na pasta img */
    background-image: url('../img/fundo.png') !important; 
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed; /* Efeito Parallax */
    background-repeat: no-repeat;
}

.localizacao-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(253, 251, 247, 0.94); /* Bege para leitura do texto preto */
    z-index: 1;
}

.container-localizacao {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Título Centralizado */
#localizacao-final .header-bloco.centralizado {
    text-align: center;
    margin-bottom: 60px;
}

#localizacao-final .linha-decorativa {
    margin: 15px auto 0 !important;
}

/* Grid de Informações */
.localizacao-grid-corpo {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.info-box-local {
    flex: 1;
    min-width: 320px;
}

.dados-contato p {
    font-size: 1.1rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dados-contato i {
    color: var(--primary-gold);
    font-size: 1.4rem;
}

/* Grid de Botões Estilizados */
.botoes-contato-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px !important; /* Espaçamento entre botões para não montar */
    min-width: 320px;
}

.btn-plataforma {
    padding: 22px 25px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    color: #FFFFFF !important;
    font-weight: 800 !important;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Cores das Plataformas */
.btn-whatsapp { background-color: #25D366 !important; }
.btn-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important; }
.btn-maps { background-color: #4285F4 !important; }

.btn-plataforma:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Responsividade */
@media (max-width: 992px) {
    #localizacao-final { background-attachment: scroll; }
    .localizacao-grid-corpo { flex-direction: column; text-align: center; }
    .dados-contato p { justify-content: center; }
    .botoes-contato-grid { width: 100%; max-width: 400px; }
}

/* =============================================
   16. FOOTER PREMIUM - BLACK & GOLD
   ============================================= */
#footer-premium {
    background-color: #000000; /* Fundo Preto Total */
    color: #FFFFFF;
    padding: 80px 0 30px;
    font-family: 'Montserrat', sans-serif;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-gold); /* Dourado */
}

.footer-box p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
}

.footer-box h4 {
    color: var(--primary-gold); /* Títulos Dourados */
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Links em Dourado no Hover */
.footer-box ul { list-style: none; }
.footer-box ul li { margin-bottom: 12px; }
.footer-box ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
}
.footer-box ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

/* Ícones Sociais Dourados */
.footer-social-gold {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}
.footer-social-gold a {
    color: var(--primary-gold);
    font-size: 1.4rem;
    transition: 0.3s;
}
.footer-social-gold a:hover {
    transform: translateY(-5px);
    color: #FFFFFF;
}

/* Assinatura HRLM Sites */
.linha-separadora {
    height: 1px;
    background: rgba(212, 175, 55, 0.2); /* Dourado suave */
    margin-bottom: 30px;
}

.copyright-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.hrlm-signature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hrlm-logo {
    color: #FFFFFF;
    font-size: 1rem;
    letter-spacing: 1px;
}

.hrlm-logo span {
    color: var(--primary-gold);
    font-weight: 900;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-social-gold { justify-content: center; }
    .copyright-flex { justify-content: center; text-align: center; }
}

/* =============================================
   13. BOTÃO WHATSAPP FLUTUANTE
   ============================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.tooltip-wa {
    position: absolute;
    right: 75px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.whatsapp-float:hover .tooltip-wa {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 600px) {
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 25px; }
    .tooltip-wa { display: none; } /* Esconde texto no mobile para não poluir */
}