/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
    font-size: 16px;
}

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

/* MOBILE FIRST - Otimizações específicas */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 16px;
    }
}

/* BLOCO 1: TOPO */
.header-topo {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
}

.logo i {
    font-size: 24px;
    color: #fbbf24;
}

.prova-social-header {
    font-size: 13px;
    font-weight: 500;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .prova-social-header {
        font-size: 12px;
    }
}

/* BLOCO 2: CARROSSEL DE URGÊNCIA */
.carrossel-urgencia {
    background: #dc2626;
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.carrossel-container {
    width: 100%;
    overflow: hidden;
}

.carrossel-track {
    display: flex;
    animation: scroll 25s linear infinite;
    white-space: nowrap;
    /* Garantir que o texto apareça imediatamente */
    transform: translateX(0);
}

.urgencia-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    /* Garantir visibilidade imediata */
    opacity: 1;
    visibility: visible;
}

.urgencia-item i {
    font-size: 16px;
    color: #fbbf24;
}

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

/* Preload do conteúdo para evitar delay */
.carrossel-track::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
}

@media (max-width: 768px) {
    .urgencia-item {
        padding: 0 30px;
        font-size: 12px;
    }
    
    /* Animação mais rápida em mobile para melhor experiência */
    .carrossel-track {
        animation: scroll 20s linear infinite;
    }
}

/* BLOCO 3: HEADLINE */
.headline-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 50px 0;
    text-align: center;
}

.badge-credibilidade {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #059669;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.badge-credibilidade i {
    color: #fbbf24;
    font-size: 16px;
}

.headline-principal {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.headline-principal .destaque {
    color: #dc2626;
    text-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

.sub-headline {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #374151;
}

.sub-headline .destaque {
    color: #f97316;
    font-weight: 800;
}

.beneficios-headline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 30px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #059669;
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.beneficio-item i {
    font-size: 18px;
    color: #059669;
}

.cta-principal {
    margin-top: 40px;
}

.btn-cta-principal {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    border: none;
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

.btn-cta-principal:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .headline-section {
        padding: 40px 0;
    }
    
    .headline-principal {
        font-size: 26px;
    }
    
    .sub-headline {
        font-size: 18px;
    }
    
    .beneficio-item {
        font-size: 14px;
    }
    
    .btn-cta-principal {
        font-size: 16px;
        padding: 18px 25px;
    }
}

/* BLOCO 4: EMOÇÃO */
.emocao-section {
    background: #f8fafc;
    padding: 50px 0;
}

.autor-info {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.autor-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.autor-dados h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.autor-dados p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 12px;
}

.credenciais {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.credenciais span {
    font-size: 13px;
    color: #059669;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.historia-emocional h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.historia-texto {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.historia-texto p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #374151;
}

.destaque-emocional {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #f59e0b;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.destaque-emocional i {
    color: #dc2626;
    margin-right: 10px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .autor-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .autor-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 0 auto;
    }
    
    .historia-emocional h2 {
        font-size: 24px;
    }
    
    .historia-texto {
        padding: 20px;
    }
    
    .historia-texto p {
        font-size: 16px;
    }
}

/* BLOCO 5: CONSULTA CPF */
.consulta-cpf-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 50px 0;
}

.consulta-header {
    text-align: center;
    margin-bottom: 40px;
}

.consulta-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.consulta-header p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.urgencia-consulta {
    background: rgba(220, 38, 38, 0.9);
    padding: 16px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.contador-consultas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group input {
    width: 100%;
    padding: 18px 20px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    background: white;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.btn-consultar {
    width: 100%;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    border: none;
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-consultar:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

.btn-consultar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.seguranca-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .consulta-header h2 {
        font-size: 24px;
    }
    
    .consulta-header p {
        font-size: 16px;
    }
    
    .form-group input {
        font-size: 16px;
        padding: 16px 18px;
    }
    
    .btn-consultar {
        font-size: 16px;
        padding: 18px 25px;
    }
}

/* Resultado da Consulta */
.resultado-container {
    margin-top: 40px;
}

.resultado-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.resultado-header {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.success-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.resultado-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.resultado-body {
    padding: 30px;
}

.cpf-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
}

.cpf-info .label {
    font-weight: 600;
    color: #6b7280;
}

.cpf-info .value {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 18px;
}

.valor-total {
    text-align: center;
    margin-bottom: 30px;
}

.valor-label {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

.valor-amount {
    font-size: 36px;
    font-weight: 900;
    color: #059669;
    margin-bottom: 15px;
}

.beneficios-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    color: #6b7280;
}

.btn-solicitar {
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-solicitar:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.urgency-text {
    text-align: center;
    font-size: 14px;
    color: #dc2626;
    font-weight: 600;
}

@media (max-width: 768px) {
    .resultado-header {
        padding: 25px 20px;
    }
    
    .resultado-header h3 {
        font-size: 20px;
    }
    
    .resultado-body {
        padding: 25px 20px;
    }
    
    .valor-amount {
        font-size: 32px;
    }
    
    .btn-solicitar {
        font-size: 16px;
        padding: 18px 25px;
    }
}

/* BLOCO 6: LÓGICA - Dados e Provas */
.logica-section {
    background: white;
    padding: 50px 0;
}

.logica-header {
    text-align: center;
    margin-bottom: 40px;
}

.logica-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.logica-header p {
    font-size: 18px;
    color: #6b7280;
}

.estatisticas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.stat-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 14px;
    color: #6b7280;
}

.problema-revelado {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    padding: 40px 30px;
    border-radius: 15px;
    border-left: 5px solid #dc2626;
}

.problema-revelado h3 {
    font-size: 24px;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 25px;
    text-align: center;
}

.problema-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.stat-problema {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-problema .numero {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #dc2626;
    margin-bottom: 8px;
}

.stat-problema .desc {
    font-size: 14px;
    color: #374151;
    font-weight: 600;
}

.problema-texto p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #374151;
}

@media (max-width: 768px) {
    .estatisticas-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .problema-revelado {
        padding: 30px 20px;
    }
    
    .problema-revelado h3 {
        font-size: 22px;
    }
}

/* BLOCO 7: DEPOIMENTOS */
.depoimentos-section {
    background: #f8fafc;
    padding: 50px 0;
}

.depoimentos-header {
    text-align: center;
    margin-bottom: 40px;
}

.depoimentos-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.depoimentos-header p {
    font-size: 18px;
    color: #6b7280;
}

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

.depoimento-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.depoimento-foto {
    text-align: center;
    margin-bottom: 20px;
}

.foto-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 32px;
}

.estrelas {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.estrelas i {
    color: #fbbf24;
    font-size: 18px;
}

.depoimento-texto {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.depoimento-autor strong {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    margin-bottom: 4px;
}

.depoimento-autor span {
    font-size: 14px;
    color: #6b7280;
}

@media (max-width: 768px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .depoimento-card {
        padding: 25px 20px;
    }
    
    .depoimentos-header h2 {
        font-size: 24px;
    }
}

/* BLOCO 8: CTA FINAL */
.cta-final-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.cta-final-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-final-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.urgencia-final {
    margin-bottom: 30px;
}

.contador-final {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.tempo-item {
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 70px;
}

.tempo-item .numero {
    display: block;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 5px;
}

.tempo-item .label {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
}

.separador {
    font-size: 24px;
    font-weight: 900;
    display: flex;
    align-items: center;
}

.urgencia-texto {
    font-size: 16px;
    opacity: 0.9;
}

.oferta-especial {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.oferta-badge {
    background: #f97316;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.oferta-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.preco-info {
    margin-bottom: 10px;
}

.preco-atual {
    font-size: 24px;
    font-weight: 900;
    color: #fbbf24;
}

.oferta-desc {
    font-size: 14px;
    opacity: 0.9;
}

.btn-cta-final {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 30px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.garantias-finais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.garantia-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.garantia-item i {
    font-size: 24px;
    color: #fbbf24;
}

.aviso-final {
    background: rgba(220, 38, 38, 0.9);
    padding: 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .cta-final-content h2 {
        font-size: 24px;
    }
    
    .contador-final {
        gap: 10px;
    }
    
    .tempo-item {
        padding: 12px 15px;
        min-width: 60px;
    }
    
    .tempo-item .numero {
        font-size: 20px;
    }
    
    .btn-cta-final {
        font-size: 16px;
        padding: 18px 25px;
    }
    
    .garantias-finais {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-info p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Notificações de Prova Social */
.notificacao-prova-social {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    z-index: 10000;
    font-size: 14px;
}

.notificacao-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notificacao-icon {
    font-size: 20px;
    color: #fbbf24;
}

/* Exit Intent Popup */
.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-popup-content {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    position: relative;
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
}

.exit-popup-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 15px;
}

.exit-popup-content p {
    font-size: 16px;
    color: #374151;
    margin-bottom: 15px;
}

.btn-exit-popup {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-exit-popup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

/* Erro CPF */
.erro-cpf {
    margin-top: 12px;
}

/* Otimizações específicas para touch */
@media (hover: none) and (pointer: coarse) {
    .btn-cta-principal:hover,
    .btn-consultar:hover,
    .btn-solicitar:hover,
    .btn-cta-final:hover {
        transform: none;
        box-shadow: initial;
    }
    
    .stat-item:hover,
    .depoimento-card:hover {
        transform: none;
        box-shadow: initial;
    }
}

/* Animações suaves para mobile */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Melhorias de acessibilidade */
@media (prefers-contrast: high) {
    .btn-cta-principal,
    .btn-consultar,
    .btn-solicitar,
    .btn-cta-final {
        border: 2px solid currentColor;
    }
}

/* Otimizações para telas pequenas */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .headline-principal {
        font-size: 24px;
    }
    
    .sub-headline {
        font-size: 16px;
    }
    
    .valor-amount {
        font-size: 28px;
    }
}

/* Melhorias de performance */
.btn-cta-principal,
.btn-consultar,
.btn-solicitar,
.btn-cta-final {
    will-change: transform;
}

.stat-item,
.depoimento-card {
    will-change: transform;
}

/* Imagens circulares para avatar e depoimentos */
.autor-avatar img,
.depoimento-foto img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}


/* BLOCO 5.5: COMO FUNCIONA O MÉTODO */
.como-funciona-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 0;
}

.como-funciona-header {
    text-align: center;
    margin-bottom: 50px;
}

.como-funciona-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.como-funciona-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.explicacao-intro {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #1e40af;
}

.explicacao-intro h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.explicacao-intro p {
    font-size: 17px;
    line-height: 1.6;
    color: #374151;
}

.passos-metodo {
    margin-bottom: 50px;
}

.passo-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.passo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.passo-numero {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.passo-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.passo-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

.diferencial-metodo {
    margin-bottom: 40px;
}

.diferencial-metodo h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 30px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.diferencial-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.diferencial-item i {
    font-size: 32px;
    color: #059669;
    margin-bottom: 15px;
}

.diferencial-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.diferencial-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.garantia-metodo {
    margin-bottom: 40px;
}

.garantia-box {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.garantia-icon i {
    font-size: 40px;
    color: #fbbf24;
}

.garantia-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.garantia-text p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.95;
}

.cta-como-funciona {
    text-align: center;
}

.btn-entender-metodo {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-entender-metodo:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

.btn-entender-metodo:active {
    transform: translateY(-1px);
}

/* Responsividade para Como Funciona */
@media (max-width: 768px) {
    .como-funciona-section {
        padding: 40px 0;
    }
    
    .como-funciona-header h2 {
        font-size: 26px;
    }
    
    .como-funciona-header p {
        font-size: 16px;
    }
    
    .passo-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .passo-numero {
        margin: 0 auto;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .garantia-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px;
    }
    
    .btn-entender-metodo {
        width: 100%;
        max-width: 350px;
        padding: 18px 30px;
        font-size: 16px;
    }
}


/* BLOCO 6.5: DÚVIDAS FREQUENTES (FAQ) */
.faq-section {
    background: white;
    padding: 60px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.faq-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-item {
    background: #f8fafc;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question.active {
    background: #1e40af;
    color: white;
    border-bottom-color: #3b82f6;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 16px;
    transition: transform 0.3s ease;
    color: #6b7280;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

.faq-cta {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.faq-cta-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-cta-content p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-faq-consulta {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-faq-consulta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-faq-consulta:active {
    transform: translateY(0);
}

/* Responsividade para FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-header h2 {
        font-size: 26px;
    }
    
    .faq-header p {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .faq-question h4 {
        font-size: 16px;
        padding-right: 0;
    }
    
    .faq-question i {
        align-self: flex-end;
        margin-top: -30px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
    
    .faq-cta {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .faq-cta-content h3 {
        font-size: 20px;
    }
    
    .btn-faq-consulta {
        width: 100%;
        max-width: 300px;
        padding: 16px 30px;
        font-size: 14px;
    }
}

