/* ========================================
   IGREEN ENERGY - LANDING PAGE OTIMIZADA
   CSS Completo
   ======================================== */

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

:root {
    --verde-primary: #00c853;
    --verde-secondary: #00e676;
    --amarelo: #FFD700;
    --laranja: #FF6F00;
    --cinza-escuro: #333;
    --cinza-medio: #666;
    --cinza-claro: #f9f9f9;
    --branco: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--cinza-escuro);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container-banner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner de Urgência */
.banner-urgencia {
    background: linear-gradient(135deg, var(--laranja) 0%, #ff8f00 100%);
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    animation: pulseBackground 3s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

.container-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.urgencia-icon {
    font-size: 24px;
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.urgencia-texto {
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.urgencia-texto strong {
    font-weight: 800;
}

.urgencia-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
}

.timer-label {
    color: white;
    font-size: 13px;
}

.timer-valor {
    color: var(--amarelo);
    font-weight: 800;
    font-size: 16px;
    font-family: 'Courier New', monospace;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-img {
    height: 60px;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    color: var(--cinza-escuro);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-header {
    background: var(--verde-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: #00a843;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e8f5e9 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--verde-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: slideInLeft 0.8s ease 0.2s both;
}

.title-emoji {
    display: block;
    font-size: 48px;
    margin-bottom: 8px;
}

.title-highlight {
    background: linear-gradient(135deg, var(--verde-primary) 0%, var(--verde-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--cinza-medio);
    line-height: 1.6;
    margin-bottom: 32px;
    animation: slideInLeft 0.8s ease 0.4s both;
}

.hero-subtitle strong {
    color: var(--verde-primary);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    animation: slideInLeft 0.8s ease 0.6s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--verde-primary);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--cinza-medio);
}

.stat-divider {
    width: 1px;
    background: #e0e0e0;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    animation: slideInLeft 0.8s ease 0.8s both;
}

.btn-primary {
    background: var(--amarelo);
    color: var(--verde-primary);
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--cinza-escuro);
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--verde-primary);
    color: var(--verde-primary);
}

.play-icon {
    font-size: 14px;
}

.hero-garantias {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease 1s both;
}

.garantia-item {
    font-size: 14px;
    color: var(--cinza-medio);
    font-weight: 500;
}

.hero-right {
    animation: slideInRight 0.8s ease 0.4s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 3s ease-in-out infinite;
}

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

.card-icon {
    font-size: 32px;
}

.card-label {
    font-size: 12px;
    color: var(--cinza-medio);
    margin: 0;
}

.card-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--verde-primary);
    margin: 0;
}

/* Seção Identificação */
.secao-identificacao {
    padding: 80px 0;
    background: white;
}

.identificacao-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.identificacao-header p {
    font-size: 20px;
    color: var(--cinza-medio);
}

.identificacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.identificacao-card {
    background: var(--cinza-claro);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.identificacao-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--verde-primary);
}

.card-emoji {
    font-size: 48px;
    margin-bottom: 16px;
}

.identificacao-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--cinza-escuro);
}

.identificacao-card p {
    font-size: 16px;
    color: var(--cinza-medio);
    line-height: 1.6;
}

.identificacao-cta {
    text-align: center;
}

.cta-texto {
    font-size: 24px;
    font-weight: 700;
    color: var(--cinza-escuro);
    margin-bottom: 24px;
}

.btn-identificacao {
    display: inline-block;
    background: var(--verde-primary);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
}

.btn-identificacao:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 200, 83, 0.5);
}

/* Quiz Interativo */
.secao-quiz {
    background: var(--cinza-claro);
    padding: 80px 0;
}

.quiz-header {
    text-align: center;
    margin-bottom: 48px;
}

.quiz-badge {
    display: inline-block;
    background: #fff3e0;
    color: var(--laranja);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.quiz-header p {
    font-size: 20px;
    color: var(--cinza-medio);
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-step h3 {
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
}

.quiz-options {
    display: grid;
    gap: 16px;
}

.quiz-option {
    background: white;
    border: 3px solid #e0e0e0;
    padding: 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.quiz-option:hover {
    border-color: var(--verde-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.2);
}

.option-emoji {
    font-size: 32px;
    flex-shrink: 0;
}

.option-text {
    font-size: 18px;
    font-weight: 600;
}

.quiz-result {
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.result-animation {
    margin-bottom: 24px;
}

.result-emoji {
    font-size: 80px;
    display: inline-block;
    animation: bounce 1s ease infinite;
}

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

.quiz-result h3 {
    font-size: 32px;
    margin-bottom: 32px;
}

.result-economia {
    background: linear-gradient(135deg, var(--verde-primary) 0%, var(--verde-secondary) 100%);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.result-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.result-valor {
    font-size: 56px;
    font-weight: 800;
    color: var(--amarelo);
    line-height: 1;
}

.result-periodo {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
}

.result-descricao {
    font-size: 18px;
    color: var(--cinza-medio);
    line-height: 1.6;
    margin-bottom: 32px;
}

.result-descricao strong {
    color: var(--verde-primary);
    font-weight: 700;
}

.btn-result {
    background: var(--amarelo);
    color: var(--verde-primary);
    font-size: 20px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    margin-bottom: 16px;
}

.btn-result:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

.btn-refazer {
    background: transparent;
    color: var(--cinza-medio);
    font-size: 16px;
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-refazer:hover {
    border-color: var(--verde-primary);
    color: var(--verde-primary);
}

.quiz-progress {
    max-width: 700px;
    margin: 32px auto 0;
    text-align: center;
}

.progress-bar-container {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar {
    height: 100%;
    width: 33.33%;
    background: linear-gradient(90deg, var(--verde-primary) 0%, var(--verde-secondary) 100%);
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 14px;
    color: var(--cinza-medio);
}

/* Como Funciona */
.secao-como-funciona {
    padding: 80px 0;
    background: white;
}

.secao-como-funciona h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

.subtitulo {
    font-size: 20px;
    color: var(--cinza-medio);
    text-align: center;
    margin-bottom: 60px;
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.passo-card {
    text-align: center;
    padding: 32px;
}

.passo-numero {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--verde-primary) 0%, var(--verde-secondary) 100%);
    color: white;
    font-size: 28px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.passo-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.passo-card p {
    font-size: 16px;
    color: var(--cinza-medio);
}

/* Benefícios */
.secao-beneficios {
    padding: 80px 0;
    background: var(--cinza-claro);
}

.secao-beneficios h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

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

.beneficio-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.beneficio-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.beneficio-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.beneficio-card p {
    font-size: 16px;
    color: var(--cinza-medio);
}

/* Depoimentos */
.secao-depoimentos {
    padding: 80px 0;
    background: white;
}

.secao-depoimentos h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

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

.depoimento-card {
    background: var(--cinza-claro);
    padding: 32px;
    border-radius: 16px;
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.depoimento-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--verde-primary);
}

.depoimento-header h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.depoimento-local {
    font-size: 14px;
    color: var(--cinza-medio);
}

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

.depoimento-stars {
    font-size: 18px;
}

/* FAQ */
.secao-faq {
    padding: 80px 0;
    background: var(--cinza-claro);
}

.secao-faq h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--cinza-claro);
}

.faq-icon {
    font-size: 24px;
    color: var(--verde-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--cinza-medio);
}

/* CTA Final */
.secao-cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--verde-primary) 0%, var(--verde-secondary) 100%);
    text-align: center;
}

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

.cta-final-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
}

.btn-cta-final {
    display: inline-block;
    background: var(--amarelo);
    color: var(--verde-primary);
    padding: 20px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.4);
}

.btn-cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.6);
}

.cta-garantias {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 24px;
}

/* Footer */
.footer {
    background: var(--cinza-escuro);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-logo p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contato h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contato p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    color: white;
}

/* Notificação Social */
.notificacao-social {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 350px;
    z-index: 998;
    transform: translateX(-400px);
    transition: all 0.4s ease;
}

.notificacao-social.show {
    transform: translateX(0);
}

.notificacao-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--verde-primary);
}

.notificacao-nome {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.notificacao-acao {
    font-size: 13px;
    color: var(--cinza-medio);
    margin-bottom: 4px;
}

.notificacao-local {
    font-size: 12px;
    color: #999;
}

.notificacao-close {
    width: 24px;
    height: 24px;
    background: var(--cinza-claro);
    border: none;
    border-radius: 50%;
    font-size: 16px;
    color: var(--cinza-medio);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.notificacao-close:hover {
    background: #e0e0e0;
}

/* Popup de Saída */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.exit-popup.active {
    display: flex;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.exit-popup-content {
    position: relative;
    background: white;
    max-width: 600px;
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    z-index: 1;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--cinza-claro);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--cinza-medio);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.exit-popup-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.exit-popup-body {
    padding: 48px 32px;
    text-align: center;
}

.exit-emoji {
    font-size: 64px;
    display: block;
    margin-bottom: 16px;
    animation: shake 0.5s ease;
}

.exit-popup-body h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.exit-descricao {
    font-size: 18px;
    color: var(--cinza-medio);
    line-height: 1.6;
    margin-bottom: 32px;
}

.exit-descricao strong {
    color: var(--verde-primary);
    font-weight: 700;
}

.exit-oferta {
    background: linear-gradient(135deg, var(--amarelo) 0%, #FFA500 100%);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.exit-oferta-titulo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.exit-oferta-descricao {
    font-size: 16px;
}

.exit-oferta-descricao strong {
    font-weight: 700;
}

.btn-exit-aceitar {
    background: var(--verde-primary);
    color: white;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
    margin-bottom: 16px;
}

.btn-exit-aceitar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 200, 83, 0.5);
}

.exit-garantia {
    font-size: 14px;
    color: var(--cinza-medio);
}

/* Responsividade */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .identificacao-grid {
        grid-template-columns: 1fr;
    }
    
    .notificacao-social {
        left: 50%;
        transform: translateX(-50%) translateY(100px);
        bottom: 20px;
    }
    
    .notificacao-social.show {
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .quiz-container {
        padding: 32px 24px;
    }
    
    .quiz-step h3 {
        font-size: 22px;
    }
}
