/* ==========================================================================
   Variáveis e Reset Global (Estilo Premium e Imersivo)
   ========================================================================== */
:root {
    --primary: #E60000;
    --primary-hover: #CC0000;
    --white: #ffffff;
    --bg-light: #FAFAFA;
    --bg-gray: #F5F7FA;
    --text-main: #171923;
    --text-light: #4A5568;
    --black: #0B0B0C;
    --whatsapp-green: #25D366;
    --whatsapp-hover: #1EBE55;
    --border-color: #E2E8F0;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 10px 30px rgba(230, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    color: var(--text-main);
    letter-spacing: -0.04em;
    line-height: 1.15;
}

a {
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ==========================================================================
   Efeitos de Navegação e Transição (Scroll Reveal)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Atrasos em Elementos Sequenciais */
.steps-container .step-card:nth-child(1) { transition-delay: 0.1s; }
.steps-container .step-card:nth-child(2) { transition-delay: 0.25s; }
.steps-container .step-card:nth-child(3) { transition-delay: 0.4s; }

.acoes-grid .acao-card:nth-child(1) { transition-delay: 0.1s; }
.acoes-grid .acao-card:nth-child(2) { transition-delay: 0.25s; }
.acoes-grid .acao-card:nth-child(3) { transition-delay: 0.4s; }

/* ==========================================================================
   Banner de Cupom (Topo)
   ========================================================================== */
#top-banner {
    background: linear-gradient(90deg, var(--primary) 0%, #ff3333 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 4px 10px rgba(230, 0, 0, 0.2);
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    gap: 4rem;
    padding-right: 4rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

#top-banner span { margin: 0; letter-spacing: 0.02em; }
#top-banner strong { font-weight: 800; color: #FFF2F2; }

/* ==========================================================================
   Cabeçalho Dinâmico (Transparente -> Glassmorphism)
   ========================================================================== */
#cabecalho {
    position: fixed;
    top: 40px; /* Ajustado por conta do banner */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 6%;
    background: transparent;
    border-bottom: 1px solid transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Estado da Navbar ao Rolagem da Página */
#cabecalho.scrolled {
    padding: 16px 6%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(25px);
    -webkit-backdrop-filter: saturate(180%) blur(25px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-crop {
    height: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-crop img {
    height: 133px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo:hover .logo-crop {
    transform: scale(1.02);
}

/* Links da Navbar Desktop */
.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

#cabecalho.scrolled .nav-links a {
    color: var(--text-light);
}

#cabecalho.scrolled .nav-links a:hover {
    color: var(--primary);
}

/* Botão de Contato na Navbar */
.contato-cabecalho a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--whatsapp-green);
    padding: 10px 24px;
    border-radius: 40px;
    background-color: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.2);
    backdrop-filter: blur(10px);
}

.contato-cabecalho a:hover {
    background-color: var(--whatsapp-green);
    color: var(--white);
    border-color: var(--whatsapp-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

#cabecalho.scrolled .contato-cabecalho a {
    color: var(--white);
    background-color: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

#cabecalho.scrolled .contato-cabecalho a:hover {
    background-color: var(--whatsapp-hover);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   Hero Section (Imersão Total e Copy)
   ========================================================================== */
#hero {
    background: 
        radial-gradient(circle at 80% 20%, rgba(230, 0, 0, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(230, 0, 0, 0.06) 0%, transparent 55%),
        var(--white);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 6% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 10;
    width: 100%;
}

.hero-content {
    text-align: left;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(230, 0, 0, 0.05);
    border: 1px solid rgba(230, 0, 0, 0.15);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 40px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

#hero h1 {
    font-size: 4.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

#hero h1 span {
    color: var(--primary);
}

#hero p {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 600px;
    line-height: 1.6;
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.hero-image-container {
    position: relative;
    z-index: 10;
    height: 520px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fundo decorativo circular para as fotos */
.hero-image-container::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-img-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 6px solid var(--white);
    background-color: var(--white);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img-main {
    width: 65%;
    aspect-ratio: 4/5;
    left: 4%;
    top: 4%;
    z-index: 2;
    transform: rotate(-2deg);
}

.hero-img-sub {
    width: 66%;
    aspect-ratio: 1;
    right: 2%;
    bottom: 4%;
    z-index: 3;
    transform: rotate(3deg);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.22);
}

.hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img-main:hover {
    transform: rotate(-1deg) translate(-5px, -8px) scale(1.02);
    z-index: 4;
    box-shadow: 0 35px 70px -10px rgba(230, 0, 0, 0.12);
}

.hero-img-sub:hover {
    transform: rotate(1deg) translate(5px, 8px) scale(1.02);
    z-index: 4;
    box-shadow: 0 35px 70px -10px rgba(230, 0, 0, 0.15);
}

.hero-img-card:hover img {
    transform: scale(1.05);
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    background-color: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: float 4s ease-in-out infinite;
}

.badge-discount {
    bottom: 12%;
    left: 6%;
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(230, 0, 0, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.badge-text p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0 !important;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.btn-primary {
    display: inline-block;
    background-color: var(--whatsapp-green);
    color: var(--white);
    padding: 22px 52px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.btn-primary:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.btn-text {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

.btn-text:hover {
    color: var(--primary);
}

/* Indicador de Rolar Página */
.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-light);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-light);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite ease-in-out;
}

@keyframes scroll-wheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

.arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-light);
    border-bottom: 2px solid var(--text-light);
    transform: rotate(45deg);
    animation: scroll-arrow 1.6s infinite ease-in-out;
}

@keyframes scroll-arrow {
    0% { transform: translateY(0) rotate(45deg); opacity: 0.5; }
    50% { transform: translateY(6px) rotate(45deg); opacity: 1; }
    100% { transform: translateY(0) rotate(45deg); opacity: 0.5; }
}

/* ==========================================================================
   Seções Gerais e Estrutura Narrativa
   ========================================================================== */
section {
    padding: 120px 6%;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================================================
   Como Funciona (Passo a Passo com Badges Grandes)
   ========================================================================== */
#diferenciais {
    background-color: var(--white);
    position: relative;
}

#diferenciais .steps-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Linha conectora entre as etapas (oculta no mobile) */
#diferenciais .steps-container::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--border-color) 0px, var(--border-color) 8px, transparent 8px, transparent 16px);
    z-index: 1;
}

.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon-badge {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.step-icon-badge svg {
    transition: transform 0.4s ease;
}

.step-card:hover .step-icon-badge {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.step-card:hover .step-icon-badge svg {
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 320px;
    line-height: 1.6;
}

/* ==========================================================================
   Categorias Premium (Fundo Escuro / Destaque de Fotos Reais)
   ========================================================================== */
#categorias {
    background: linear-gradient(135deg, var(--primary) 0%, #B80000 100%);
    color: var(--white);
}

#categorias h2 {
    color: var(--white);
}

#categorias .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-categoria {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background-color: #121214;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.5s, box-shadow 0.5s;
}

.card-categoria:hover {
    transform: translateY(-10px);
    border-color: var(--white);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.card-categoria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.7s;
}

.card-categoria:hover img {
    transform: scale(1.08);
    opacity: 1;
}

.card-categoria h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 24px 24px;
    background: linear-gradient(to top, rgba(11, 11, 12, 0.95) 0%, rgba(11, 11, 12, 0.5) 50%, transparent 100%);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    transition: transform 0.4s ease;
}

.card-categoria:hover h3 {
    transform: translateY(-4px);
}

/* ==========================================================================
   Ações Rápidas (Cards Premium com Ícones Grandes)
   ========================================================================== */
#acoes-rapidas {
    background-color: var(--bg-light);
}

.acoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.acao-card {
    background-color: var(--white);
    padding: 48px 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.acao-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(230, 0, 0, 0.12);
}

.acao-icon-badge {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: rgba(230, 0, 0, 0.05);
    border: 1px solid rgba(230, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.acao-icon-badge svg {
    transition: transform 0.4s ease;
}

.acao-card:hover .acao-icon-badge {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(230, 0, 0, 0.15);
}

.acao-card:hover .acao-icon-badge svg {
    transform: scale(1.1) rotate(5deg);
}

.acao-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.acao-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.65;
    flex-grow: 1;
}

.acao-card span.action-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.acao-card span.action-link::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.acao-card:hover span.action-link {
    color: var(--primary-hover);
}

.acao-card:hover span.action-link::after {
    transform: translateX(6px);
}

/* ==========================================================================
   Localização (Confiança e Presença Local Editorial)
   ========================================================================== */
#localizacao {
    background-color: var(--white);
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.local-info {
    flex: 1;
}

.local-info h2 {
    text-align: left;
    margin-bottom: 24px;
}

.local-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.65;
}

.local-info strong {
    color: var(--black);
}

.horarios-visita {
    background-color: var(--bg-gray);
    padding: 20px 24px;
    border-radius: 16px;
    font-size: 1rem !important;
    margin: 28px 0;
    border-left: 4px solid var(--primary);
}

.btn-text-red {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-block;
}

.btn-text-red:hover {
    color: var(--primary-hover);
    transform: translateX(5px);
}

.local-mapa {
    flex: 1.1;
    width: 100%;
    height: 480px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.local-mapa iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
#faq {
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

details {
    background-color: var(--white);
    padding: 24px 32px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: var(--shadow-soft);
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

details[open] {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(230, 0, 0, 0.08);
}

summary {
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-main);
    list-style: none;
    position: relative;
    padding-right: 40px;
}

summary::-webkit-details-marker { display: none; }

summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: '−';
}

details p {
    margin-top: 18px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
}

/* ==========================================================================
   CTA Final (Edge-to-Edge - Foco em Conversão Local Extrema)
   ========================================================================== */
#cta-final {
    background-color: var(--black);
    color: var(--white);
    padding: 0;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    min-height: 60vh;
    overflow: hidden;
}

.cta-final-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 10%;
}

.cta-final-texto h2 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
}

.cta-final-texto p {
    color: #A0A0A5;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.6;
}

.btn-whatsapp-final {
    display: inline-block;
    background-color: var(--whatsapp-green);
    color: var(--white);
    padding: 22px 48px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.15rem;
    text-align: center;
    max-width: max-content;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-final:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.cta-final-imagem {
    height: 100%;
    min-height: 450px;
}

.cta-final-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   Rodapé
   ========================================================================== */
#rodape {
    background-color: var(--white);
    padding: 80px 6% 60px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
}

#rodape p {
    margin-bottom: 10px;
}

#rodape strong {
    color: var(--text-main);
}

#rodape small {
    display: block;
    margin-top: 40px;
    color: #A0AABF;
    line-height: 1.6;
}

/* ==========================================================================
   Popup Promocional
   ========================================================================== */
.popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.popup-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.popup-overlay.show .popup-content {
    transform: scale(1);
}
.popup-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: block;
}
#close-popup {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--white);
    color: var(--black);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10;
}

/* ==========================================================================
   Responsividade Fina
   ========================================================================== */
@media (max-width: 1100px) {
    #hero h1 { font-size: 4rem; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { text-align: center; }
    .cta-container { align-items: center; }
    #hero p { margin-left: auto; margin-right: auto; }
    .hero-image-container { 
        display: flex; 
        margin-top: 40px; 
        height: 440px;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }
    #localizacao { gap: 40px; }
    .cta-final-texto h2 { font-size: 3rem; }
}

@media (max-width: 900px) {
    section { padding: 90px 6%; }
    
    /* Header compactado */
    #cabecalho { padding: 18px 6%; }
    #cabecalho.scrolled { padding: 14px 6%; }
    .nav-links { display: none; }
    
    /* Hero */
    #hero { height: auto; min-height: 100vh; padding: 140px 6% 80px; }
    #hero h1 { font-size: 3.2rem; }
    #hero p { font-size: 1.15rem; }
    
    /* Conector de Diferenciais ocultado no mobile */
    #diferenciais .steps-container { flex-direction: column; gap: 50px; }
    #diferenciais .steps-container::before { display: none; }
    
    /* Localização */
    #localizacao { flex-direction: column; text-align: center; }
    .local-info h2 { text-align: center; }
    .local-mapa { height: 350px; }
    
    /* CTA Final */
    #cta-final { grid-template-columns: 1fr; }
    .cta-final-texto { padding: 80px 6%; text-align: center; align-items: center; }
    .cta-final-texto h2 { text-align: center; font-size: 2.8rem; }
    .cta-final-imagem { height: 400px; }
}

@media (max-width: 600px) {
    #top-banner { padding: 8px 10px; }
    #top-banner span { font-size: 0.8rem; line-height: 1.4; }
    #cabecalho { top: 48px; }

    #hero h1 { font-size: 2.5rem; }
    #hero p { font-size: 1rem; }
    .hero-image-container {
        height: 320px;
        max-width: 360px;
        margin-top: 30px;
    }
    .hero-img-card {
        border-width: 4px;
    }
    .floating-badge {
        padding: 8px 12px;
        border-radius: 8px;
        gap: 8px;
    }
    .badge-icon {
        width: 28px;
        height: 28px;
    }
    .badge-text h4 {
        font-size: 0.75rem;
    }
    .badge-text p {
        font-size: 0.65rem;
    }
    
    /* WhatsApp do Header se transforma em um botão redondo flutuante no mobile */
    .contato-cabecalho a {
        font-size: 0 !important;
        padding: 0 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        background-color: var(--primary) !important;
        border: none !important;
        transition: background-color 0.3s, box-shadow 0.3s;
    }

    #cabecalho.scrolled .contato-cabecalho a {
        background-color: var(--whatsapp-green) !important;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25) !important;
    }
    
    .contato-cabecalho a::before {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23ffffff'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7 .9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") no-repeat center center;
        background-size: contain;
    }
    
    /* Seções com espaçamento reduzido */
    section { padding: 60px 5%; }
    .section-header { margin-bottom: 40px; }
    section h2 { font-size: 2rem; }
    .cta-final-texto h2 { font-size: 2.2rem; }
}
