@import url('style-hero-enhanced.css');
:root {
    /* Paleta moderna: Verde frio azulado (sem laranja) */
    --color-sage: #4A7C7E;           /* Verde frio - confiança/serenidade */
    --color-sage-dark: #2D5356;      /* Verde frio escuro */
    --color-sage-light: #7AA9AB;     /* Verde frio claro */
    --color-coral: #4A7C7E;          /* Remapped: verde frio (primário agora) */
    --color-coral-dark: #2D5356;     /* Remapped: verde frio escuro */
    --color-coral-light: #7AA9AB;    /* Remapped: verde frio claro */
    
    --color-primary: var(--color-sage);
    --color-primary-dark: var(--color-sage-dark);
    --color-secondary: var(--color-sage-dark);   
    --color-accent: var(--color-sage-light);      
    --color-white: #FFFFFF;
    --color-bg: #F8F9F8;             /* Background suave */
    --color-bg-light: #F0F3F2;       /* Background mais claro */
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-backdrop: blur(10px);
    
    /* Sombras sutis e elegantes - usando verde frio */
    --shadow-light: 0 4px 15px rgba(42, 115, 120, 0.08);
    --shadow-medium: 0 10px 30px rgba(42, 115, 120, 0.12);
    --shadow-large: 0 20px 50px rgba(42, 115, 120, 0.15);
    
    /* Borders e Radius */
    --border-radius-normal: 20px; 
    --border-radius-large: 30px;
    --border-radius-xl: 40px;
    /* Cor personalizada combinando com a foto da profissional */
    --color-sage-photo: #4A7C7E; /* verde frio que combina com foto */

    /* Nova paleta para download / personalização (tons frios/azulados) */
    --palette-1: #1E5A5F; /* color1 - azul-verde muito escuro */
    --palette-2: #2D7A80; /* color2 - azul-verde escuro (primário) */
    --palette-3: #4A9BA3; /* color3 - azul-verde médio */
    --palette-4: #7ABCC3; /* color4 - azul-verde claro */
    --palette-5: #D0E5E8; /* color5 - azul-verde muito suave */
}
/* Accent and neutral helpers */
:root {
    --accent-warm: #E7A58A; /* muted coral/peach accent */
    --neutral-1: #FBFBFA; /* very light background */
    --neutral-2: #F4F6F5; /* section background */
}
/* Accent derived tones */
:root {
    --accent-warm-dark: #D98E75;
    --accent-warm-light: #F2D6C6;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--color-secondary); 
    line-height: 1.7;
    background-color: var(--color-bg);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { 
    font-family: 'Playfair Display', serif;
    font-weight: 700; 
    color: var(--color-secondary);
    letter-spacing: -0.5px;
}
h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.6rem; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--color-primary); transition: color 0.3s ease; }
a:hover { color: var(--color-primary-dark); }

p, li, span, a {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}


.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; } 

.section-title { 
    text-align: center; 
    font-size: 2.5rem; 
    margin-bottom: 15px; 
    color: var(--color-secondary);
}
.section-subtitle { 
    text-align: center; 
    font-size: 1.1rem; 
    max-width: 600px; 
    margin: 0 auto 50px;
    color: var(--color-primary-dark);
}
.subtitle { 
    font-weight: 600; 
    color: var(--color-primary-dark); 
    font-size: 0.9rem; 
    letter-spacing: 1px; 
    margin-bottom: 10px; 
    display: inline-block; 
}

/* --- Botões --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 12px 30px; border-radius: 50px;
    font-weight: 600; transition: all 0.3s ease; border: none; cursor: pointer;
    font-size: 1rem;
}
/* Estilo para ícones SVG dentro de botões */
.btn .svg-icon {
    width: 1em; /* Tamanho do ícone acompanha o texto */
    height: 1em;
    fill: currentColor; 
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--accent-warm) 100%);
    color: var(--color-white);
    box-shadow: 0 15px 35px rgba(231, 165, 138, 0.28);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    box-shadow: 0 20px 45px rgba(231, 165, 138, 0.36);
    transform: translateY(-4px);
}
.btn-large { padding: 16px 40px; font-size: 1.1rem; }
.btn-nav { padding: 10px 24px; font-size: 0.9rem; box-shadow: none; }

.btn-secondary {
    background-color: var(--color-white);
    border: 2px solid var(--color-accent);
    color: var(--color-primary-dark);
}
.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    border-color: var(--color-primary-dark);
}

/* --- Cabeçalho (Navbar com Glassmorphism) --- */
.navbar {
    background: transparent; 
    backdrop-filter: none; 
    padding: 15px 0;
    border-bottom: 1px solid transparent;
    position: sticky; top: 0; z-index: 1000;
    transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.navbar .logo img { height: 60px; width: auto; object-fit: contain; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 25px; }
.nav-links a { 
    font-family: 'DM Sans', sans-serif;
    font-weight: 500; 
    position: relative;
    padding: 8px 16px; 
    border-radius: 50px; 
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

/* Estilo do menu ANTES de rolar */
.navbar:not(.scrolled) .nav-links a {
    color: var(--color-secondary);
}
.navbar:not(.scrolled) .nav-links a:hover { 
    color: var(--accent-warm); 
    background-color: rgba(232, 118, 90, 0.1);
}
.navbar:not(.scrolled) .hamburger-btn { color: var(--color-secondary); } 
.navbar:not(.scrolled) .btn-nav { opacity: 1; visibility: visible; } 

/* Estilo do menu DEPOIS de rolar (Glassmorphism) */
.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-medium);
}
.navbar.scrolled .nav-links a { 
    color: var(--color-secondary);
}
.navbar.scrolled .nav-links a:hover { 
    color: var(--accent-warm); 
    background-color: rgba(232, 118, 90, 0.1);
}
.navbar.scrolled .btn-nav { opacity: 1; visibility: visible; }
.navbar.scrolled .hamburger-btn { color: var(--color-secondary); }

/* ============================================= */
/* >>> HERO AURORA (FULL WIDTH & ABSTRACT) <<<   */
/* ============================================= */

.hero-aurora-full {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Garante tela cheia */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #F8F9F8 0%, #F5F8F7 50%, #F0F3F2 100%);
}

/* --- O Fundo Animado (Aurora) --- */
.aurora-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* As "bolhas" de cor que se movem com Glassmorphism */
.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px); /* Efeito suave e sofisticado */
    opacity: 0.5;
    animation: floatBlob 15s infinite ease-in-out alternate;
    backdrop-filter: blur(50px);
}

/* Bolha 1: Verde-Sage */
.blob-1 {
    top: -10%; left: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(168, 197, 184, 0.8), rgba(107, 142, 127, 0.6));
    animation-duration: 15s;
}

/* Bolha 2: Coral */
.blob-2 {
    bottom: -10%; right: -10%;
    width: 40vw; height: 40vw;
    background: radial-gradient(circle, rgba(232, 118, 90, 0.7), rgba(214, 83, 66, 0.6));
    animation-duration: 12s;
    animation-direction: alternate-reverse;
}

/* Bolha 3: Verde-Sage Claro (centro suave) */
.blob-3 {
    top: 40%; left: 40%;
    width: 30vw; height: 30vw;
    background: radial-gradient(circle, rgba(168, 197, 184, 0.4), rgba(107, 142, 127, 0.2));
    opacity: 0.3;
    animation-duration: 8s;
}

/* Glassmorphism Overlay */
.glass-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(107, 142, 127, 0.05));
    backdrop-filter: var(--glass-backdrop);
    z-index: 2;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -30px) scale(1.15); }
}

/* --- O Conteúdo Central --- */
.hero-content-centered {
    position: relative;
    z-index: 10; /* Fica acima do fundo */
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

/* Pílula de Destaque no topo com Glassmorphism */
.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-backdrop);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-coral);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}
.tag-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}
.tag-pill i { width: 16px; height: 16px; color: var(--accent-warm); }

/* Título Gigante e Elegante */
.hero-content-centered h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--color-secondary);
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -1px;
}

/* Texto com Gradiente no Título */
.gradient-text {
    background: linear-gradient(90deg, var(--accent-warm) 0%, var(--accent-warm-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-content-centered p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    color: var(--color-secondary);
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.7;
    font-weight: 400;
}

/* Botões */
.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn-glow {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 15px 40px rgba(232, 118, 90, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}
.btn-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(232, 118, 90, 0.45);
}

.btn-link {
    background: transparent;
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--color-sage);
    border-radius: 50px;
    padding: 15px 40px;
    transition: all 0.3s ease;
}
.btn-link:hover { 
    color: var(--color-white);
    background: var(--color-sage);
    border-color: var(--color-sage);
}

/* --- Responsividade --- */
@media (max-width: 991px) {
    .hero-content-centered h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .hero-aurora-full { min-height: auto; padding: 150px 0 100px; } /* Altura ajustada */
    .hero-content-centered h1 { font-size: 2.5rem; }
    .hero-content-centered p { font-size: 1.1rem; }
    .hero-cta-group { flex-direction: column; }
    .btn-glow { width: 100%; }
    
    /* Ajuste das bolhas no mobile */
    .blob-1 { width: 80vw; height: 80vw; }
    .blob-2 { width: 70vw; height: 70vw; }

}

/* ============================================= */
/* >>> NOVA SEÇÃO SOBRE (MODERNA) <<<            */
/* ============================================= */

.sobre {
    background: linear-gradient(135deg, var(--color-bg) 0%, #F5F8F7 100%);
    overflow: visible;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 80px;
}

/* --- Wrapper da Imagem com Glassmorphism --- */
.sobre-image-wrapper {
    position: relative;
    z-index: 1;
}

/* Foto Principal */
.sobre-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(75, 99, 88, 0.15);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Elemento Decorativo com Glassmorphism */
.image-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-coral);
    border-radius: 30px;
    z-index: 1;
    opacity: 0.3;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
}

/* --- Selo Flutuante (Badge) com Glassmorphism --- */
.sobre-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    border-left: 4px solid var(--color-coral);
    transition: all 0.3s ease;
}
.sobre-badge:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}
.badge-icon i { width: 24px; height: 24px; }

.badge-text { display: flex; flex-direction: column; }
.badge-title { font-weight: 700; font-size: 0.95rem; color: var(--color-secondary); }
.badge-sub { font-size: 0.85rem; color: var(--accent-warm); font-weight: 600; }

/* Animação suave de flutuação */
@keyframes floatBadge {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.floating-anim {
    animation: floatBadge 4s ease-in-out infinite;
}

/* --- Texto da Seção Sobre --- */
.sobre-text { text-align: left; }
.sobre-text h2 { 
    font-family: 'Playfair Display', serif;
    font-size: 3rem; 
    margin-bottom: 20px; 
    line-height: 1.15;
    color: var(--color-secondary);
}
.highlight-p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    color: var(--color-coral);
    font-weight: 600;
    margin-bottom: 20px;
    border-left: 4px solid var(--color-coral);
    padding-left: 20px;
    line-height: 1.7;
}

.sobre-text p {
    font-family: 'DM Sans', sans-serif;
    color: var(--color-secondary);
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Estatísticas com Design Moderno */
.sobre-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(107, 142, 127, 0.2);
}
.stat-item { 
    display: flex; 
    flex-direction: column; 
    position: relative;
}
.stat-item::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-coral) 0%, var(--color-coral-light) 100%);
    border-radius: 2px;
    bottom: -15px;
    left: 0;
}
.stat-number { 
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem; 
    font-weight: 700; 
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1; 
}
.stat-label { 
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; 
    opacity: 0.85; 
    line-height: 1.3; 
    margin-top: 10px;
    color: var(--color-secondary);
}

/* --- Responsividade para o Sobre Moderno --- */
@media (max-width: 991px) {
    .sobre-content { grid-template-columns: 1fr; gap: 50px; }
    .sobre-image-wrapper { width: 80%; margin: 0 auto; }
    .sobre-badge { right: -10px; bottom: 20px; } /* Ajuste no mobile */
    .sobre-text { text-align: center; }
    .highlight-p { border-left: none; border-bottom: 3px solid var(--color-primary); padding-left: 0; padding-bottom: 10px; display: inline-block;}
    .sobre-stats { justify-content: center; }
}
@media (max-width: 768px) {
    .sobre-image-wrapper { width: 100%; }
    .sobre-photo { height: 400px; }
    .sobre-badge { padding: 10px 20px; right: 0; }
}
/* ============================================= */
/* --- Seção de Serviços (Moderna) --- */
/* ============================================= */
.servicos { 
    background: var(--color-white);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--color-secondary);
    opacity: 0.8;
}

.servicos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: var(--color-white);
    border: 1px solid rgba(107, 142, 127, 0.1);
    border-radius: 25px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-12px);
    border-color: rgba(232, 118, 90, 0.3);
}
.service-card .service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
    transition: transform 0.4s ease;
}
.service-card:hover .service-image img {
    transform: scale(1.08);
}
.service-card .service-text {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-coral);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.service-text h3 { 
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; 
    margin-bottom: 15px;
    color: var(--color-secondary);
}
.service-text p {
    font-family: 'DM Sans', sans-serif;
    color: var(--color-secondary);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.7;
}
.service-text ul { 
    list-style: none; 
    margin-top: 20px; 
    padding-left: 0;
    flex: 1;
}
.service-text li { 
    display: flex; 
    align-items: flex-start;
    gap: 12px; 
    margin-bottom: 12px; 
    font-weight: 500;
    color: var(--color-secondary);
    opacity: 0.9;
}
.service-text li i {
    width: 20px;
    height: 20px;
    color: var(--color-coral);
    flex-shrink: 0;
}
.service-text li i { color: var(--color-primary); width: 20px; }

.service-row { display: none; }

/* ============================================= */
/* --- Seção "Sinais de Alerta" (Moderna) --- */
/* ============================================= */
.sinais-alerta {
    background: linear-gradient(135deg, #F0F3F2 0%, var(--color-bg) 100%);
}
.sinais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}
.sinal-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: var(--glass-backdrop);
}
.sinal-card:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(232, 118, 90, 0.1), rgba(107, 142, 127, 0.05));
    border-color: rgba(232, 118, 90, 0.3);
}
.sinal-card i {
    color: var(--color-coral);
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.sinal-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.4;
}
/* --- GALERIA (Lightbox Grid Moderno) --- */
.galeria {
    background: var(--color-white);
}

/* Grid da Galeria */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 20px;
    margin-top: 50px;
}

/* Card da Imagem */
.gallery-item {
    position: relative;
    display: block;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.4s ease;
}

/* Imagem */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(75, 99, 88, 0.8), rgba(232, 118, 90, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Conteúdo do Overlay */
.overlay-content {
    color: #fff;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay-content i {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    stroke-width: 1.5;
}

.overlay-content span {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Efeitos no Hover */
.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}
/* --- SEÇÃO DE VÍDEOS (Moderna) --- */
.videos { 
    background: linear-gradient(135deg, #F5F8F7 0%, var(--color-bg) 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 40px;
    margin-top: 50px;
}

.video-container {
    background: var(--color-white);
    padding: 25px;
    border-radius: 25px;
    border: 1px solid rgba(107, 142, 127, 0.1);
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
}

.video-container:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-8px);
}

.video-container h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.video-container p {
    font-family: 'DM Sans', sans-serif;
    color: var(--color-secondary);
    opacity: 0.8;
    font-size: 0.95rem;
}

.video-shorts-container {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background-color: #000;
    position: relative;
}

.html5-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.video-container:hover .html5-video {
    transform: scale(1.02);
}


/* --- ATENDIMENTO (Com Mapas e Glassmorphism) --- */
.atendimento {
    background: var(--color-white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.location-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    backdrop-filter: var(--glass-backdrop);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: rgba(232, 118, 90, 0.3);
}

/* Cabeçalho do Card */
.location-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
/* Cabeçalho do Card */}
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.location-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

/* Lista de Horários */
.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.schedule-list li {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(107, 142, 127, 0.15);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.schedule-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.schedule-list strong {
    display: block;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 0.95rem;
}

.schedule-list span {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--color-secondary);
    opacity: 0.8;
}

.schedule-list .time {
    font-size: 0.85rem;
    color: var(--color-coral);
    font-weight: 600;
    margin-top: 5px;
}

/* Botão de Rota */
.btn-route {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.btn-route:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(107, 142, 127, 0.3);
}

/* Mapa */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    border: 1px solid rgba(107, 142, 127, 0.15);
}

.map-wrapper iframe {
    display: block; /* Remove espaço extra abaixo do iframe */
}

/* --- Seção Depoimentos (Slider Moderno) --- */
.depoimentos { 
    background: linear-gradient(135deg, #F5F8F7 0%, var(--color-bg) 100%);
}

.testimonial-slider { 
    width: 100%; 
    padding-bottom: 50px;
}

.depoimento-card {
    background: var(--glass-bg); 
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-backdrop);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    margin: 10px;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 280px;
}

.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: rgba(232, 118, 90, 0.3);
}

.depoimento-card .quote-icon { 
    color: var(--color-coral); 
    opacity: 0.6;
    width: 50px; 
    height: 50px; 
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.depoimento-card:hover .quote-icon {
    opacity: 1;
    transform: scale(1.1);
}

.depoimento-card p { 
    font-family: 'DM Sans', sans-serif;
    font-style: italic; 
    font-size: 1.05rem;
    color: var(--color-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.depoimento-card .autor { 
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    color: var(--color-coral);
    font-size: 0.95rem;
}

.testimonial-pagination .swiper-pagination-bullet { 
    background: var(--color-sage);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active { 
    background: var(--color-coral);
    opacity: 1;
}

/* ============================================= */
/* --- FAQ (Accordion Moderno) --- */
/* ============================================= */
.faq-section { 
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.faq-container { 
    max-width: 750px; 
    margin: 0 auto; 
    position: relative; 
    z-index: 1;
}

.faq-item { 
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-backdrop);
    margin-bottom: 18px; 
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover { 
    box-shadow: var(--shadow-medium);
    border-color: rgba(232, 118, 90, 0.3);
}

.faq-item[open] {
    box-shadow: var(--shadow-large);
    background: linear-gradient(135deg, rgba(232, 118, 90, 0.05), rgba(107, 142, 127, 0.05));
}

.faq-question {
    background: transparent;
    border: none;
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-align: left;
    position: relative;
    border-radius: 20px;
    transition: all 0.3s ease;
    z-index: 2;
    list-style: none;
    font-family: 'Playfair Display', serif;
}

.faq-question::marker { 
    display: none;
}

.faq-question:hover {
    color: var(--color-coral);
}

.faq-question .faq-icon { 
    color: var(--color-coral);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.faq-item[open] .faq-question .faq-icon {
    transform: rotate(45deg);
}

/* Resposta do FAQ */
.faq-answer { 
    background: transparent;
    position: relative;
    z-index: 1;
    border-radius: 0 0 20px 20px;
    padding-bottom: 20px;
}

.faq-answer p { 
    font-family: 'DM Sans', sans-serif;
    padding: 0 30px 30px;
    line-height: 1.8;
    color: var(--color-secondary);
    opacity: 0.85;
}

/* ============================================= */
/* --- Seção de Contato (CTA) --- */
/* ============================================= */
.contato { 
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%);
    text-align: center;
    color: var(--color-white);
    padding: 80px 20px;
}

.contato h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--color-white);
    margin-bottom: 20px;
}

.contato p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--color-white);
    color: var(--color-coral);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    background: var(#49ab49);
}

/* --- FOOTER (Moderno e Elegante) --- */
.footer {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #3a4f48 100%);
    padding: 60px 0 30px;
    color: var(--color-white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'DM Sans', sans-serif;
}

/* Grid das Colunas */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Coluna da Marca */
.logo-footer {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var();
    text-decoration: none;
    margin-bottom: 15px;
    display: inline-block;
    transition: color 0.3s ease;
}

.logo-footer:hover {
    color: var(--color-coral-light);
}

.professional-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: 500;
}

.cnpj {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-weight: 400;
}

/* Redes Sociais */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--color-white);
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: var(--color-coral);
    border-color: var(--color-coral);
    transform: translateY(-3px);
}
.svg-icon {
    width: 22px;
    height: 22px;
}

/* Títulos das Colunas */
.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-coral) 0%, var(--color-coral-light) 100%);
    border-radius: 2px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--color-coral);
    padding-left: 8px;
}

/* Contato */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item i {
    color: var(--color-coral);
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-coral);
}

/* Botão de WhatsApp no Footer */
.btn-whatsapp-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5C 100%);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp-footer:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--color-coral);
}

.footer-bottom .divider {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsivo para Mobile */
@media (max-width: 768px) {
    .footer-content {
        gap: 30px;
    }
    
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom .divider {
        display: none;
    }
}

/* --- Botão Flutuante WhatsApp (com Glassmorphism) --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5C 100%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatWhatsapp 3s ease-in-out infinite;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-whatsapp:hover {
    transform: scale(1.15);
    animation: none;
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp .svg-icon {
    width: 36px;
    height: 36px;
    fill: var(--color-white);
}

@keyframes floatWhatsapp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hamburger-btn {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001; 
}
.hamburger-btn i { width: 28px; height: 28px; }

.mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--color-white); /* Fundo branco "clean" */
    z-index: 1050; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.close-menu-btn {
    position: absolute;
    top: 25px; right: 25px;
    background: none;
    border: none;
    color: var(--color-secondary);
    cursor: pointer;
}
.close-menu-btn i { width: 32px; height: 32px; }

.mobile-nav-links { list-style: none; padding: 0; text-align: center; }
.mobile-nav-links li { margin: 20px 0; }
.mobile-nav-links a {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-secondary);
    padding: 10px;
}
.mobile-nav-links a.btn-primary { font-size: 1.2rem; margin-top: 30px; }

/* --- BANNER DE COOKIES --- */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background-color: var(--color-secondary); 
    color: var(--color-white);
    padding: 20px 0;
    z-index: 1040; 
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cookie-banner p { font-size: 0.9rem; margin: 0; opacity: 0.9; color: var(--color-white); }
.cookie-banner a { color: var(--color-primary); font-weight: 600; text-decoration: underline; }
.cookie-banner a:hover { color: var(--color-white); }
.cookie-banner .btn-primary {
    background-color: var(--color-primary); 
    box-shadow: none;
    flex-shrink: 0; 
    padding: 10px 25px; 
}
.cookie-banner .btn-primary:hover { background-color: var(--color-primary-dark); }

/* --- WIDGET DO WHATSAPP (com Glassmorphism) --- */
.whatsapp-widget {
    position: fixed;
    bottom: 120px; 
    right: 30px;
    width: 360px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    box-shadow: var(--shadow-large);
    z-index: 1045;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-widget.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.widget-header {
    background: linear-gradient(135deg, #25D366 0%, #20BA5C 100%);
    color: var(--color-white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.widget-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.widget-info { 
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.widget-name { 
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.05rem;
}

.widget-status { 
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    opacity: 0.9;
}

.widget-close-btn {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 5px;
}

.widget-close-btn:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.widget-chat {
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    height: 160px;
}

.msg-bubble {
    background: var(--color-white);
    border-radius: 0 20px 20px 20px;
    padding: 15px;
    box-shadow: var(--shadow-light);
    max-width: 90%;
    border: 1px solid rgba(107, 142, 127, 0.1);
}

.msg-bubble p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--color-secondary);
    line-height: 1.6;
    margin: 0;
}

.msg-time {
    display: block;
    text-align: right;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--color-secondary);
    opacity: 0.6;
    margin-top: 5px;
}

.widget-footer {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.3);
    border-top: 1px solid var(--glass-border);
}

.widget-start-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    color: var(--color-white);
    background: linear-gradient(135deg, #25D366 0%, #20BA5C 100%);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.widget-start-chat:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.45);
}
/* NOVO: Estilo para SVG no botão do widget */
.widget-start-chat .svg-icon {
    width: 1.2rem;
    height: 1.2rem;
    fill: var(--color-white);
}

/* ============================================= */
/* >>> SEÇÃO DE RESPONSIVIDADE ATUALIZADA <<<    */
/* ============================================= */

/* Breakpoint para Tablets (991px) */
@media (max-width: 991px) {
    .nav-links { display: none; }
    .hamburger-btn { display: block; }
    
    .section-padding { padding: 80px 0; }
    h1 { font-size: 2.8rem; }
    h2, .section-title { font-size: 2.1rem; }
    
    /* Hero responsivo */
    .hero { height: auto; min-height: 600px; }
    .hero-content { flex-direction: column; }
    .hero-text { max-width: 100%; text-align: center; margin-top: 80px; }
    .hero-foreground-image { 
        position: relative; 
        width: 60%; 
        right: auto;
        bottom: -50px;
        margin-top: 40px;
    }
    .hero-text h1 { font-size: 3rem; }
    
    /* Sobre responsivo */
    .sobre-content { grid-template-columns: 1fr; }
    .sobre-image { order: 1; }
    .sobre-text { order: 2; text-align: center; }
    .sobre-image img { height: 300px; width: 300px; margin: 0 auto; }


    .servicos-grid { grid-template-columns: 1fr; }
    
    .sinais-grid { grid-template-columns: 1fr 1fr; } /* 2 colunas no tablet */

    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid a img { height: 200px; }
    
    .video-grid { grid-template-columns: 1fr; }
    
    .locations-grid { grid-template-columns: 1fr; }
    
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
}


/* Breakpoint para Celulares (768px) */
@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    h1 { font-size: 2.2rem; }
    h2, .section-title { font-size: 1.8rem; }
    
    .hero { min-height: auto; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-text p { font-size: 1rem; }
    .hero { padding-top: 60px; padding-bottom: 0; }
    .hero-foreground-image { width: 80%; bottom: -20px; }
    .hero-text { margin-top: 40px; }
    
    .sobre-content { gap: 40px; }

    .servicos-grid { grid-template-columns: 1fr; }
    .service-card .service-image img { height: 220px; }
    
    .sinais-grid { grid-template-columns: 1fr; } /* 1 coluna no celular */

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid a img { height: 220px; }
    
    .locations-grid { grid-template-columns: 1fr; }

    .faq-question { padding: 20px; font-size: 1rem; }
    .faq-answer p { padding: 0 20px 20px; }
    
    .cookie-content { flex-direction: column; text-align: center; gap: 15px; }
    .navbar:not(.scrolled) .btn-nav { display: none; } /* Esconde no mobile antes do scroll */

    /* Ajuste do Widget no Mobile */
    .whatsapp-widget {
        width: 300px;
        right: 20px;
        bottom: 90px;
    }
}

/* ============================================= */
/* CÍRCULOS DECORATIVOS NO FUNDO (Footer e seções) */
/* Subtle white outlined circles with low opacity */
/* ============================================= */
.footer { position: relative; }

.decorative-circles {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
    opacity: 0.06; /* 6% - padrão (footer/sections) */
    pointer-events: none; /* Não interfere em cliques */
    z-index: 0; /* Fica atrás do conteúdo */
}

/* Hero-specific: make decorative circles more visible above aurora background but below content */
.hero-aurora-full .decorative-circles {
    z-index: 3; /* above aurora (1) and glass overlay (2) */
    opacity: 0.12; /* slightly more visible in hero */
}

/* Footer-specific: keep very subtle */
.footer.section-with-circles .decorative-circles {
    z-index: 0;
    opacity: 0.06;
}

.footer .container { position: relative; z-index: 1; }

.decorative-circles .circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--palette-2);
    background: transparent;
    box-shadow: none;
}

.decorative-circles .circle--1 {
    top: 2.5rem;
    left: 2.5rem;
    width: 10rem; /* 160px */
    height: 10rem;
}

.decorative-circles .circle--2 {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 15rem; /* 240px */
    height: 15rem;
}

.decorative-circles .circle--3 {
    top: 50%;
    left: 25%;
    transform: translateY(-50%);
    width: 5rem; /* 80px */
    height: 5rem;
    border-width: 1px;
}

/* Brain logo styles */
.logo-footer { display: inline-flex; align-items: center; gap: 10px; color: #ffffff; font-weight: 700; }
.logo-footer .logo-brain { color: var(--color-sage-photo); }
.icon-brain { color: var(--color-sage-photo); vertical-align: middle; margin-right: 8px; }

/* Ensure brain icon inside tag-pill aligns */
.tag-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.6); padding: 8px 12px; border-radius: 999px; font-weight: 600; }
.tag-pill .icon-brain { width: 20px; height: 20px; }

/* Optionally show on other sections by adding class to section */
.section-with-circles { position: relative; }
.section-with-circles .decorative-circles { position: absolute; inset: 0; }

/* Responsividade: reduzir tamanhos em telas pequenas */
@media (max-width: 768px) {
    .decorative-circles .circle--1 { top: 1.25rem; left: 1.25rem; width: 8rem; height: 8rem; }
    .decorative-circles .circle--2 { bottom: 1.25rem; right: 1.25rem; width: 11rem; height: 11rem; }
    .decorative-circles .circle--3 { left: 20%; width: 4rem; height: 4rem; }
}

@media (max-width: 480px) {
    .decorative-circles { opacity: 0.05; }
    .decorative-circles .circle--1 { width: 6.5rem; height: 6.5rem; }
    .decorative-circles .circle--2 { width: 9rem; height: 9rem; }
}

/* Paleta utilitária para Download / Personalização */
.color1 { color: var(--palette-1) !important; }
.color2 { color: var(--palette-2) !important; }
.color3 { color: var(--palette-3) !important; }
.color4 { color: var(--palette-4) !important; }
.color5 { color: var(--palette-5) !important; }

.bg-color1 { background-color: var(--palette-1) !important; }
.bg-color2 { background-color: var(--palette-2) !important; }
.bg-color3 { background-color: var(--palette-3) !important; }
.bg-color4 { background-color: var(--palette-4) !important; }
.bg-color5 { background-color: var(--palette-5) !important; }

.border-color1 { border-color: var(--palette-1) !important; }
.border-color2 { border-color: var(--palette-2) !important; }
.border-color3 { border-color: var(--palette-3) !important; }
.border-color4 { border-color: var(--palette-4) !important; }
.border-color5 { border-color: var(--palette-5) !important; }
