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

:root {
    --vermelho-principal: #E63946;
    --vermelho-escuro: #B5172A;
    --amarelo-urgencia: #FFD60A;
    --branco: #FFFFFF;
    --cinza-fundo: #F8F9FA;
    --cinza-claro: #F3F4F6;
    --cinza-medio: #E5E7EB;
    --texto-principal: #111827;
    --texto-secundario: #4B5563;
    --sombra-leve: 0 4px 12px rgba(0, 0, 0, 0.08);
    --sombra-forte: 0 10px 25px rgba(230, 57, 70, 0.25);
    --fonte-principal: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--fonte-principal);
    color: var(--texto-principal);
    line-height: 1.6;
    background-color: var(--cinza-fundo);
    overflow-x: hidden;
    padding-top: 104px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ============================================ */
/* 🚨 BARRA SUPERIOR DE URGÊNCIA                */
/* ============================================ */
.barra-urgencia {
    position: fixed; top: 0; left: 0; width: 100%; height: 40px;
    background: linear-gradient(90deg, #1A1A1A 0%, #2C2C2C 100%);
    color: var(--branco); z-index: 10000; display: flex;
    align-items: center; justify-content: center; padding: 0 15px;
    border-bottom: 2px solid var(--vermelho-principal); box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.barra-urgencia-conteudo { max-width: 1200px; width: 100%; display: flex; align-items: center; justify-content: center; gap: 15px; font-size: 0.85rem; font-weight: 500; }
.urgencia-item { display: inline-flex; align-items: center; gap: 6px; }
.contador-box { display: inline-flex; gap: 4px; align-items: center; }
.contador-unidade { background: var(--vermelho-principal); color: var(--branco); padding: 2px 8px; border-radius: 4px; font-weight: 800; min-width: 30px; text-align: center; font-size: 0.85rem; }
.contador-separador { font-weight: 800; color: var(--vermelho-principal); }
.vagas-numero { background: var(--amarelo-urgencia); color: var(--texto-principal); padding: 2px 8px; border-radius: 20px; font-weight: 800; animation: pulseVagas 1.5s infinite; }
@keyframes pulseVagas { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.urgencia-separador { color: rgba(255,255,255,0.3); font-size: 1rem; }

/* ============================================ */
/* 🧭 HEADER E LOGO (AJUSTE "SEM QUADRADO")     */
/* ============================================ */
.site-header {
    position: fixed; top: 40px; left: 0; width: 100%; height: 64px;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); z-index: 9999;
    border-bottom: 1px solid var(--cinza-medio); box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.site-header.escondido { transform: translateY(-100%); }
.header-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 100%; display: flex; justify-content: space-between; align-items: center; }

/* LOGO ORGÂNICO E SEM BLOCOS */
.logo { 
    font-size: clamp(1.1rem, 3vw, 1.4rem); 
    font-weight: 800; 
    color: var(--texto-principal); 
    display: inline-flex; 
    align-items: center; 
    gap: 5px; 
    white-space: nowrap;
    background: transparent;
    border: none;
    padding: 0;
    line-height: 1.1;
}
.logo span { 
    color: var(--vermelho-principal); 
    font-style: italic; /* Quebra a rigidez do formato quadrado */
}

.main-nav { display: flex; gap: 22px; align-items: center; }
.main-nav a { font-size: 0.92rem; font-weight: 600; color: var(--texto-secundario); transition: color 0.3s; }
.main-nav a:hover { color: var(--vermelho-principal); }
.nav-blog-link { background: rgba(230, 57, 70, 0.08); padding: 6px 14px; border-radius: 6px; color: var(--vermelho-principal) !important; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: transparent; padding: 8px; }
.mobile-menu-btn span { width: 24px; height: 3px; background: var(--texto-principal); border-radius: 3px; transition: 0.3s; }

/* ============================================ */
/* 🔘 BOTÕES CTA                                */
/* ============================================ */
.cta-principal {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg, var(--vermelho-principal) 0%, var(--vermelho-escuro) 100%);
    color: var(--branco); font-weight: 700; padding: clamp(14px, 3vw, 18px) clamp(24px, 5vw, 32px);
    border-radius: 50px; font-size: clamp(0.95rem, 2.5vw, 1.1rem); text-align: center;
    box-shadow: var(--sombra-forte); transition: all 0.3s ease; animation: pulse 2s infinite;
    width: 100%; max-width: 420px; min-height: 56px;
}
.cta-principal:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(230, 57, 70, 0); } 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); } }

/* ============================================ */
/* 📦 CONTAINER E SEÇÕES                        */
/* ============================================ */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
section { padding: clamp(40px, 8vw, 70px) 0; }
.secao-titulo { text-align: center; font-size: clamp(1.4rem, 4vw, 2.2rem); font-weight: 800; margin-bottom: 30px; color: var(--texto-principal); line-height: 1.3; }
.secao-titulo span { color: var(--vermelho-principal); }

/* ============================================ */
/* 📸 SEÇÃO 1: HERO                             */
/* ============================================ */
.hero {
    position: relative; min-height: auto; padding: clamp(40px, 8vw, 80px) 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover; background-position: center; color: var(--branco); text-align: center;
}
.hero-conteudo { max-width: 850px; margin: 0 auto; animation: fadeUp 1s ease-out; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-titulo { font-size: clamp(1.6rem, 5.5vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 12px; text-shadow: 2px 2px 8px rgba(0,0,0,0.6); }
.hero-titulo-complemento { font-size: clamp(1.1rem, 3.5vw, 1.6rem); font-weight: 600; line-height: 1.3; margin-bottom: 20px; opacity: 0.95; text-shadow: 1px 1px 4px rgba(0,0,0,0.5); }
.text-highlight { color: var(--amarelo-urgencia); }
.hero-subtitulo { font-size: clamp(0.95rem, 2.5vw, 1.15rem); font-weight: 400; margin-bottom: 30px; opacity: 0.92; max-width: 680px; margin-left: auto; margin-right: auto; line-height: 1.5; }

/* ============================================ */
/* 🃏 CARDS INTERATIVOS E BADGE (AJUSTADO)      */
/* ============================================ */
.pilares-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 30px auto 35px; max-width: 780px; }
.pilar-card {
    background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 14px; 
    padding: clamp(16px, 3vw, 20px); /* Aumentado levemente no topo para acomodar o badge */
    padding-top: clamp(22px, 4vw, 26px); 
    display: flex; align-items: flex-start; gap: 12px; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); text-align: left; position: relative;
}
.pilar-card:hover { background: rgba(255, 255, 255, 0.2); border-color: var(--amarelo-urgencia); transform: translateY(-4px); box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3); }

.pilar-card.destaque-card { border: 2px solid var(--amarelo-urgencia); background: rgba(255, 214, 10, 0.1); box-shadow: 0 0 20px rgba(255, 214, 10, 0.3); }

/* BADGE MAIS PEDIDO: Menor, compacto e sem cobrir texto */
.badge-mais-pedido {
    position: absolute; top: -10px; right: 12px;
    background: linear-gradient(135deg, #FFD60A 0%, #FF5E00 100%);
    color: #fff; font-size: 0.65rem; font-weight: 800;
    padding: 4px 10px; border-radius: 20px; text-transform: uppercase;
    letter-spacing: 0.5px; box-shadow: 0 4px 15px rgba(255, 94, 0, 0.6);
    animation: pulseFire 1.5s infinite; z-index: 10;
    display: inline-flex; align-items: center; gap: 4px;
    white-space: nowrap; line-height: 1.2;
}
@keyframes pulseFire {
    0%, 100% { box-shadow: 0 4px 12px rgba(255, 94, 0, 0.6); transform: scale(1); }
    50% { box-shadow: 0 4px 25px rgba(255, 94, 0, 0.9); transform: scale(1.05); }
}

.pilar-icon { font-size: clamp(1.3rem, 3vw, 1.5rem); flex-shrink: 0; background: rgba(255, 255, 255, 0.15); width: clamp(40px, 8vw, 48px); height: clamp(40px, 8vw, 48px); display: flex; align-items: center; justify-content: center; border-radius: 10px; transition: transform 0.3s ease; }
.pilar-card:hover .pilar-icon { transform: scale(1.1) rotate(-5deg); }
.pilar-content { flex: 1; min-width: 0; }
.pilar-content h4 { color: var(--branco); font-size: clamp(0.88rem, 2vw, 1rem); font-weight: 700; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; line-height: 1.3; }
.pilar-content p { color: rgba(255, 255, 255, 0.88); font-size: clamp(0.8rem, 2vw, 0.9rem); line-height: 1.4; margin: 0; word-wrap: break-word; }

/* ============================================ */
/* 📝 SEÇÃO 2: QUIZ                             */
/* ============================================ */
.quiz-secao { background: var(--cinza-fundo); }
.quiz-caixa { background: var(--branco); border-radius: 18px; padding: clamp(22px, 5vw, 40px); max-width: 650px; margin: 0 auto; box-shadow: var(--sombra-leve); border: 2px solid var(--cinza-medio); transition: border 0.3s; }
.quiz-caixa:hover { border-color: var(--vermelho-principal); }
.quiz-pergunta { font-size: clamp(1.05rem, 3vw, 1.3rem); font-weight: 700; margin-bottom: 22px; text-align: center; color: var(--texto-principal); line-height: 1.3; }
.quiz-opcoes { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.quiz-opcao { background: var(--cinza-claro); border: 2px solid var(--cinza-medio); border-radius: 10px; padding: clamp(12px, 3vw, 16px) clamp(16px, 4vw, 20px); font-size: clamp(0.9rem, 2.5vw, 1rem); font-weight: 500; color: var(--texto-principal); transition: all 0.25s ease; text-align: left; width: 100%; display: flex; align-items: center; gap: 10px; }
.quiz-opcao:hover { border-color: var(--vermelho-principal); background: #FFF0F0; transform: translateX(4px); }
.quiz-opcao.selecionada { background: var(--vermelho-principal); color: var(--branco); border-color: var(--vermelho-escuro); }
.quiz-input { width: 100%; padding: 14px 18px; border: 2px solid var(--cinza-medio); border-radius: 10px; font-size: 1rem; font-family: inherit; margin-bottom: 20px; transition: border 0.25s; }
.quiz-input:focus { outline: none; border-color: var(--vermelho-principal); }
.quiz-passo { display: none; animation: fadeIn 0.4s ease; }
.quiz-passo.ativo { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.quiz-texto-final { text-align: center; margin-bottom: 20px; color: var(--texto-secundario); font-size: clamp(0.92rem, 2vw, 1rem); line-height: 1.5; }

/* ============================================ */
/* 💬 SEÇÃO 3: DEPOIMENTOS                      */
/* ============================================ */
.depoimentos-secao { background: var(--branco); }
.depoimentos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 30px; }
.depoimento-card { background: var(--cinza-claro); border-radius: 14px; padding: 22px; box-shadow: var(--sombra-leve); border-left: 4px solid var(--vermelho-principal); transition: transform 0.3s; }
.depoimento-card:hover { transform: translateY(-4px); }
.depoimento-estrelas { color: #FFB800; font-size: 1.1rem; margin-bottom: 10px; }
.depoimento-texto { font-size: clamp(0.88rem, 2vw, 0.95rem); color: var(--texto-secundario); margin-bottom: 14px; font-style: italic; line-height: 1.5; }
.depoimento-autor { font-weight: 700; color: var(--texto-principal); font-size: clamp(0.82rem, 2vw, 0.9rem); }
.btn-recarregar { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 auto; background: var(--branco); color: var(--vermelho-principal); border: 2px solid var(--vermelho-principal); padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; }
.btn-recarregar:hover { background: var(--vermelho-principal); color: var(--branco); }
.btn-recarregar .icone-rotacao { display: inline-block; transition: transform 0.6s; }
.btn-recarregar:hover .icone-rotacao { transform: rotate(360deg); }

/* ============================================ */
/* ❓ SEÇÃO 4: FAQ                              */
/* ============================================ */
.faq-secao { background: var(--cinza-fundo); }
.faq-lista { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--branco); border-radius: 12px; margin-bottom: 12px; overflow: hidden; box-shadow: var(--sombra-leve); }
.faq-pergunta { width: 100%; padding: clamp(16px, 3vw, 20px) clamp(20px, 4vw, 25px); text-align: left; background: transparent; font-size: clamp(0.92rem, 2.5vw, 1.02rem); font-weight: 600; color: var(--texto-principal); display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background 0.3s; line-height: 1.3; }
.faq-pergunta:hover { background: #FFF5F5; }
.faq-pergunta .seta { font-size: 1.1rem; color: var(--vermelho-principal); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.aberto .faq-pergunta .seta { transform: rotate(180deg); }
.faq-resposta { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 clamp(20px, 4vw, 25px); color: var(--texto-secundario); font-size: clamp(0.88rem, 2vw, 0.95rem); line-height: 1.5; }
.faq-item.aberto .faq-resposta { max-height: 300px; padding: 0 clamp(20px, 4vw, 25px) 18px; }
.faq-cta-container { text-align: center; margin-top: 30px; }

/* ============================================ */
/* ✉️ SEÇÃO 5: FORMULÁRIO                       */
/* ============================================ */
.formulario-secao { background: linear-gradient(135deg, var(--vermelho-principal) 0%, var(--vermelho-escuro) 100%); color: var(--branco); }
.formulario-secao .secao-titulo { color: var(--branco); }
.form-caixa { background: var(--branco); border-radius: 18px; padding: clamp(22px, 5vw, 40px); max-width: 600px; margin: 0 auto; box-shadow: 0 20px 60px rgba(0,0,0,0.3); color: var(--texto-principal); }
.form-grupo { margin-bottom: 18px; }
.form-grupo label { display: block; margin-bottom: 6px; font-weight: 600; font-size: clamp(0.88rem, 2vw, 0.95rem); }
.form-grupo input, .form-grupo textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--cinza-medio); border-radius: 10px; font-size: 1rem; font-family: inherit; transition: border 0.25s; }
.form-grupo input:focus, .form-grupo textarea:focus { outline: none; border-color: var(--vermelho-principal); }
.form-grupo textarea { min-height: 100px; resize: vertical; }
.form-erro { color: var(--vermelho-principal); font-size: 0.85rem; margin-top: 5px; display: none; }
.form-grupo input.erro, .form-grupo textarea.erro { border-color: var(--vermelho-principal); }

/* ============================================ */
/* 🟢 BALÃO FLUTUANTE                           */
/* ============================================ */
.balao-whatsapp { position: fixed; bottom: 20px; right: 20px; background: #25D366; color: var(--branco); width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5); z-index: 9998; animation: pulseWhatsapp 2s infinite; transition: transform 0.3s; text-decoration: none; }
.balao-whatsapp:hover { transform: scale(1.1); }
.whatsapp-badge { position: absolute; top: -4px; right: -4px; background: var(--vermelho-principal); color: var(--branco); font-size: 0.72rem; font-weight: 800; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid var(--branco); animation: pulseBadge 1.5s infinite; }
@keyframes pulseWhatsapp { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* ============================================ */
/* 🍪 LGPD                                      */
/* ============================================ */
.lgpd-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(26, 26, 26, 0.95); color: var(--branco); padding: 15px 20px; z-index: 9997; display: none; backdrop-filter: blur(8px); border-top: 2px solid var(--vermelho-principal); }
.lgpd-banner.visivel { display: block; }
.lgpd-conteudo { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.lgpd-conteudo p { font-size: clamp(0.82rem, 2vw, 0.9rem); flex: 1; min-width: 250px; }
.lgpd-btn { background: var(--vermelho-principal); color: var(--branco); padding: 10px 22px; border-radius: 50px; font-weight: 700; font-size: 0.88rem; transition: background 0.3s; white-space: nowrap; }
.lgpd-btn:hover { background: var(--vermelho-escuro); }

/* ============================================ */
/* 📜 RODAPÉ                                    */
/* ============================================ */
footer { background: #1A1A1A; color: #9CA3AF; text-align: center; padding: 30px 15px; font-size: 0.85rem; }
.footer-links { display: flex; justify-content: center; gap: 20px; margin: 15px 0; flex-wrap: wrap; }
.footer-links a { color: var(--branco); font-weight: 500; }
.footer-links a:hover { color: var(--vermelho-principal); }
.footer-disclaimer { margin-top: 12px; opacity: 0.7; font-size: 0.8rem; }

/* ============================================ */
/* 📱 RESPONSIVIDADE MOBILE-FIRST (AJUSTADA)    */
/* ============================================ */
@media (max-width: 900px) { 
    .pilares-grid { grid-template-columns: 1fr; gap: 12px; } 
}

@media (max-width: 768px) {
    /* Ajuste do padding do body pois a barra de urgência voltou a ser 40px fixos */
    body { padding-top: 104px; }
    
    /* BARRA DE URGÊNCIA EM 1 LINHA NO MOBILE */
    .barra-urgencia {
        height: 40px;
        min-height: 40px;
        padding: 0 8px;
    }
    .barra-urgencia-conteudo {
        flex-direction: row; /* Força uma linha */
        flex-wrap: nowrap;   /* Impede quebra de linha a todo custo */
        gap: 6px;
        font-size: 0.68rem; /* Fonte reduzida para caber em telas pequenas */
        justify-content: center;
    }
    .urgencia-item {
        gap: 3px;
        white-space: nowrap;
    }
    .urgencia-separador {
        display: inline;
        font-size: 0.8rem;
        color: rgba(255,255,255,0.4);
    }
    .contador-unidade {
        min-width: 24px;
        padding: 2px 4px;
        font-size: 0.7rem;
    }
    .vagas-numero {
        padding: 1px 5px;
        font-size: 0.7rem;
    }
    
    .site-header {
        top: 40px; /* Alinhado perfeitamente abaixo da barra de 40px */
        height: 60px;
    }
    
    .mobile-menu-btn { display: flex; }
    .main-nav { 
        position: absolute; top: 100%; left: 0; width: 100%; 
        background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(12px); 
        flex-direction: column; padding: 15px 20px; gap: 0; 
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); 
        transform: translateY(-150%); transition: transform 0.3s ease; 
        border-top: 1px solid var(--cinza-medio); 
    }
    .main-nav.aberto { transform: translateY(0); }
    .main-nav a { font-size: 1rem; padding: 12px 0; border-bottom: 1px solid var(--cinza-claro); width: 100%; text-align: center; }
    .main-nav a:last-child { border-bottom: none; }
    
    .hero { padding: clamp(30px, 6vw, 50px) 15px; }
    .hero-titulo { font-size: clamp(1.4rem, 6vw, 2rem); }
    .hero-titulo-complemento { font-size: clamp(1rem, 3.5vw, 1.3rem); }
    .hero-subtitulo { font-size: clamp(0.9rem, 2.8vw, 1.05rem); }
    
    .pilar-card { padding: 14px; padding-top: 20px; gap: 10px; }
    .pilar-card:active { transform: scale(0.98); }
    .pilar-icon { width: 40px; height: 40px; font-size: 1.2rem; }
    
    .depoimentos-grid { grid-template-columns: 1fr; }
    .lgpd-conteudo { flex-direction: column; text-align: center; }
    .balao-whatsapp { width: 54px; height: 54px; font-size: 1.5rem; bottom: 15px; right: 15px; }
}

@media (max-width: 400px) {
    body { padding-top: 104px; }
    .container { padding: 0 15px; }
    .hero-titulo { font-size: 1.35rem; }
    .pilar-content h4 { font-size: 0.85rem; }
    .pilar-content p { font-size: 0.78rem; }
    
    /* Ajuste extra de segurança para telas muito estreitas (ex: iPhone SE) */
    .barra-urgencia-conteudo { font-size: 0.65rem; gap: 4px; }
    .contador-unidade { min-width: 22px; padding: 2px 3px; font-size: 0.65rem; }
}

/* ============================================ */
/* 🔄 NOVO: SEÇÃO COMO FUNCIONA                 */
/* ============================================ */
.como-funciona-secao { background: var(--branco); padding: clamp(40px, 8vw, 60px) 0; }
.passos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.passo-card {
    background: var(--cinza-fundo);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    border: 1px solid var(--cinza-medio);
    transition: transform 0.3s, box-shadow 0.3s;
}
.passo-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-leve); border-color: var(--vermelho-principal); }
.passo-numero {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--vermelho-principal); color: var(--branco);
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem; border: 3px solid var(--branco);
}
.passo-icon { font-size: 2rem; margin-bottom: 15px; margin-top: 5px; }
.passo-card h4 { font-size: 1rem; font-weight: 700; color: var(--texto-principal); margin-bottom: 8px; }
.passo-card p { font-size: 0.9rem; color: var(--texto-secundario); line-height: 1.5; margin: 0; }
.cta-center { text-align: center; margin-top: 20px; }

/* ============================================ */
/* 📦 NOVO: SEÇÃO O QUE ACOMPANHA               */
/* ============================================ */
.pacote-secao { background: var(--cinza-fundo); padding: clamp(40px, 8vw, 60px) 0; }
.pacote-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.pacote-item {
    background: var(--branco);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: var(--sombra-leve);
    border: 1px solid var(--cinza-medio);
}
.pacote-item.destaque-pacote {
    border: 2px solid var(--amarelo-urgencia);
    background: rgba(255, 214, 10, 0.05);
}
.check-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.pacote-item h4 { font-size: 1rem; font-weight: 700; color: var(--texto-principal); margin-bottom: 5px; }
.pacote-item p { font-size: 0.9rem; color: var(--texto-secundario); line-height: 1.4; margin: 0; }

/* ============================================ */
/* 🛡️ NOVO: SEÇÃO COMPRA PROTEGIDA              */
/* ============================================ */
.compra-protegida-secao { padding: 30px 0; background: var(--branco); }
.protegida-box {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%); /* Verde muito suave para transmitir segurança */
    border: 2px solid #22C55E;
    border-radius: 16px;
    padding: clamp(20px, 4vw, 30px);
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.1);
}
.protegida-icon { font-size: 2.5rem; flex-shrink: 0; }
.protegida-text { flex: 1; }
.protegida-text h3 { font-size: clamp(1.1rem, 3vw, 1.3rem); font-weight: 800; color: #166534; margin-bottom: 8px; }
.protegida-text p { font-size: clamp(0.9rem, 2vw, 0.95rem); color: #15803D; line-height: 1.5; margin: 0; }
.cta-secundario {
    display: inline-flex; align-items: center; justify-content: center;
    background: #166534; color: var(--branco); font-weight: 700;
    padding: 12px 24px; border-radius: 50px; font-size: 0.95rem;
    text-decoration: none; white-space: nowrap; transition: background 0.3s;
    flex-shrink: 0;
}
.cta-secundario:hover { background: #14532D; }

/* ============================================ */
/* 📱 RESPONSIVIDADE DOS NOVOS BLOCOS (MOBILE)  */
/* ============================================ */
@media (max-width: 900px) {
    .passos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .passos-grid { grid-template-columns: 1fr; gap: 25px; }
    .passo-card { display: flex; text-align: left; align-items: flex-start; gap: 15px; padding: 20px; }
    .passo-numero { position: static; transform: none; flex-shrink: 0; margin-top: 0; }
    .passo-icon { margin: 0; font-size: 1.5rem; }
    .passo-card h4 { margin-bottom: 4px; }
    
    .pacote-grid { grid-template-columns: 1fr; }
    
    .protegida-box { flex-direction: column; text-align: center; }
    .protegida-icon { margin-bottom: 10px; }
    .cta-secundario { width: 100%; margin-top: 15px; }
}