/* Cores Principais - Tema Acadêmico Sociologia */
:root {
    --primary-navy: #0F1E3A;
    --accent-gold: #C9A227;
    --white: #FFFFFF;
    --light-gray: #F4F4F4;
    --medium-gray: #9CA3AF;
    --dark-gray: #1F2937;
    --brand-danger: #D62828;
}

/* Alterações de Cores nos Elementos */
body {
    background-color: var(--white);
    color: var(--dark-gray);
    font-family: 'Inter', Arial, sans-serif;
}

.urgency-banner {
    background: var(--primary-navy);
    color: var(--white);
    border-bottom: 2px solid var(--accent-gold);
}

.section-title::after {
    background: var(--accent-gold);
}

.benefit-icon, .exclusive-icon {
    background: var(--light-gray);
    color: var(--primary-navy);
    border: 1px solid #e5e7eb;
}

.benefit-card:hover, .exclusive-card:hover {
    border-color: var(--accent-gold);
}

.plan-card.premium {
    border: 3px solid var(--accent-gold);
}

.popular-badge-v2 {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.new-price {
    color: var(--primary-navy);
}

.savings-amount-v2 {
    color: var(--brand-danger);
}

.cta-button, .plan-button {
    background: var(--brand-danger);
    color: var(--white);
    transition: filter 0.3s;
}

.cta-button:hover, .plan-button:hover {
    filter: brightness(1.2);
}

.plans-timer {
    background: var(--light-gray);
    border: 1px solid var(--primary-navy);
}

.countdown-plans .time-number {
    color: var(--primary-navy);
}

.footer {
    background: var(--primary-navy);
    color: var(--white);
}

.text-red, .bonus-text-red {
    color: var(--brand-danger);
}

.plan-features i {
    color: var(--accent-gold) !important;
}

/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-navy);
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.exclusive-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-navy);
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

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

@keyframes pulseSoft {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Topo com Aviso de Urgência */
.urgency-banner {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
}

.urgency-text {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.urgency-text .date-highlight {
    color: var(--accent-gold);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
    background: white;
    color: var(--dark-gray);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--primary-navy);
}

.text-red {
    color: var(--brand-danger);
    font-weight: 800;
}

.text-black {
    color: var(--primary-navy);
    font-weight: 800;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse-glow {
    from { 
        filter: brightness(1) saturate(1); 
        transform: scale(1);
    }
    to { 
        filter: brightness(1.2) saturate(1.3); 
        transform: scale(1.02);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-navy);
}

.video-card {
    max-width: 350px;
    margin: 0 auto 40px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}

.video-card-inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.video-poster {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.video-card video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    background: #000;
}

.video-card iframe {
    border-radius: 12px;
}

.video-wrapper {
    max-width: 350px;
    margin: 0 auto 30px auto;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

.video-card-inner:hover .play-overlay {
    background: rgba(0,0,0,0.4);
}

.play-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.play-icon i {
    color: #1a1a2e;
    font-size: 24px;
    margin-left: 4px;
}

.video-card-inner:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.play-overlay.hidden {
    display: none;
}

.video-caption {
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-top: 15px;
    margin-bottom: 0;
}

.cta-button, .plan-button, .plan-button.basic-button, .plan-button.premium-button, .guarantee-cta, .final-cta {
    background: linear-gradient(to bottom, #C9A227, #A67C1B);
    color: #0F1E3A;
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    padding: 16px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
}

.cta-button:hover, .plan-button:hover, .plan-button.basic-button:hover, .plan-button.premium-button:hover, .guarantee-cta:hover, .final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    background: linear-gradient(to bottom, #B9932F, #8E6815);
    color: #0F1E3A;
}

.hero-cta {
    margin-bottom: 40px;
    animation: bounce 2s infinite;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: var(--primary-navy);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--accent-gold);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Seções Gerais */
.about-author {
    padding: 50px 0;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1a1a1a;
    position: relative;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #0F1E3A, #C9A227, #0F1E3A);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* O Que Você Vai Receber */
.what-you-get {
    background: var(--white);
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.benefit-icon, .exclusive-icon {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin: 0 auto 25px;
    background: var(--light-gray);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: none;
    line-height: 1;
    position: relative;
    border: 1px solid #e5e7eb;
}

.benefit-card:hover .benefit-icon, .exclusive-card:hover .exclusive-icon {
    transform: translateY(-3px) scale(1.05);
    background: var(--white);
    color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: var(--accent-gold);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.benefit-card:hover h3 {
    color: var(--primary-navy);
}

.benefit-card p, .exclusive-card p, .faq-answer p, .testimonial-card p {
    color: var(--primary-navy);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

.exclusive-bonuses {
    background: var(--light-gray);
    padding: 80px 0;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 2px solid #e5e7eb;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden; /* Garantir que a imagem não saia do card */
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

/* Bônus Exclusivos */
.bonus-image {
    width: 100%;
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 0; /* Removido padding para preencher */
}

.bonus-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Alterado de contain para cover para preencher */
    border-radius: 10px;
}

@media (max-width: 768px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .bonus-card {
        padding: 0; /* Remove padding lateral do card no mobile */
        overflow: hidden;
    }

    .bonus-image {
        border-radius: 15px 15px 0 0; /* Arredonda apenas o topo */
        margin-bottom: 15px;
    }

    .bonus-img {
        border-radius: 0;
    }

    .bonus-card h3, 
    .bonus-card .bonus-value, 
    .bonus-card p {
        padding: 0 20px; /* Adiciona padding apenas ao texto */
    }

    .bonus-card p {
        margin-bottom: 25px;
    }
}

.bonus-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.bonus-value {
    display: block;
    color: var(--brand-danger);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.bonus-card p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
}

.bonus-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    color: #9ca3af;
    font-weight: 600;
    border: 2px dashed #d1d5db;
    border-radius: 20px;
}

/* Benefícios Exclusivos */
.exclusive-benefits {
    padding: 100px 0;
    background: var(--white);
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.exclusive-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exclusive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Exclusive icon logic already handled above by combining selectors */

.exclusive-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.exclusive-card:hover h3 {
    color: var(--primary-navy);
}

.exclusive-card p {
    color: var(--primary-navy);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

.bonus-section {
    background: var(--light-gray);
}

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

.bonus-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(15, 30, 58, 0.1);
    border: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
    overflow: visible;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(15, 30, 58, 0.2);
    border-color: var(--primary-navy);
}

.bonus-value {
    color: #EF4444;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: line-through;
    margin: 10px 0;
    display: block;
}

.bonus-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.bonus-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 10px;
    background: #f9fafb;
    border-radius: 10px;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.bonus-image img:hover {
    transform: scale(1.05);
}

.bonus-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 20px;
    color: var(--dark-gray);
}

.bonus-card p {
    color: #666;
    line-height: 1.6;
}

.total-bonus {
    text-align: center;
    padding: 18px 25px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a2e54 100%);
    color: white;
    border-radius: 12px;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(15, 30, 58, 0.4);
}

.total-bonus h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.line-through {
    text-decoration: line-through;
    opacity: 0.8;
    font-size: 1rem;
}

.free {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-left: 8px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Cronômetro dos Planos */
.plans-timer {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a2e54 100%);
    border-radius: 16px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 25px rgba(15, 30, 58, 0.5);
}

.plans-timer .timer-text {
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.countdown-plans {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0;
}

.countdown-plans .time-unit {
    background: white;
    padding: 15px 12px;
    border-radius: 12px;
    min-width: 75px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border: none;
    transition: transform 0.2s ease;
}

.countdown-plans .time-unit:hover {
    transform: translateY(-2px);
}

.countdown-plans .time-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-plans .time-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-plans {
    background: var(--light-gray);
}

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

.plan-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.plan-card.premium {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.2);
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge-v2 {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.6);
    animation: badge-glow 2s infinite ease-in-out;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(201, 162, 39, 0.5); filter: brightness(1); }
    50% { box-shadow: 0 0 25px rgba(201, 162, 39, 0.9); filter: brightness(1.2); }
}

.savings-amount-v2 {
    font-size: 0.95rem;
    color: var(--brand-danger);
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
}

.plan-card.basic {
    animation: none;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.plan-card.basic:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-navy);
}

.plan-card h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.new-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-navy);
}

.old-price {
    font-size: 1.1rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.plan-features li {
    font-size: 0.95rem;
    padding: 8px 0;
}

.plan-features i {
    color: var(--accent-gold) !important;
}

.plan-card.premium .plan-features i.fa-star {
    color: var(--accent-gold) !important;
}

.plan-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-gray);
    text-align: center;
}

.price {
    margin-bottom: 10px;
    text-align: center;
}

.savings-amount {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
    display: block;
}

.new-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: block;
}

.period {
    font-size: 0.9rem;
    color: #666;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.plan-features i {
    color: var(--accent-gold) !important;
    font-size: 1.1rem;
}

.plan-features .fa-star {
    color: #FBBF24;
}

.plan-button {
    display: flex;
    width: 100%;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.basic-button {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.premium-button {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

/* Premium Social Proof */
.premium-social-proof {
    background: #f8f9fa;
    color: #6c757d;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.purchase-count {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    color: #6c757d;
}

/* Bonus Items */
.bonus-item {
    color: #ffffff !important;
    font-weight: bold;
}

.bonus-item i {
    color: #ffffff !important;
}

/* No Benefit Item */
.no-benefit {
    color: #DC2626 !important;
}

.no-benefit i {
    color: #DC2626 !important;
}

/* Gold Item */
.gold-item {
    color: #D4A000 !important;
    font-weight: 600;
}

.gold-item i {
    color: #D4A000 !important;
}

/* Depoimentos */
.testimonials {
    background: var(--light-gray);
}

/* Carrossel de Depoimentos */
.depo-carousel-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.depo-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.depo-slide {
    display: none;
}

.depo-slide.active {
    display: block;
}

.depo-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.depo-prev,
.depo-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    z-index: 10;
    transition: background 0.2s;
}

.depo-prev:hover,
.depo-next:hover {
    background: rgba(0,0,0,0.8);
}

.depo-prev { left: 10px; }
.depo-next { right: 10px; }

.depo-dots {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.depo-dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
}

.depo-dot.active {
    background: var(--brand-danger, #e63946);
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #FBBF24;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author i {
    font-size: 2.5rem;
    color: var(--primary-navy);
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-navy);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.testimonial-photo:hover {
    transform: scale(1.1);
}

.testimonial-author strong {
    display: block;
    color: var(--dark-gray);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--primary-navy);
}

/* Sobre o Autor - Redesenhado */
.about-author {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.author-content-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.author-text-side {
    flex: 1;
}

.author-header-label {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: left;
}

.author-name {
    font-size: 1.8rem;
    color: #DC2626; /* Vermelho como no print */
    font-weight: 700;
    margin-bottom: 5px;
}

.author-specialty {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-navy);
    margin-bottom: 30px;
}

.author-stats-v2 {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.stat-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
    border: 1px solid #edf2f7;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-navy);
    display: block;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.7rem;
    font-weight: 700;
    color: #718096;
    text-transform: uppercase;
    line-height: 1.2;
}

.author-quote {
    font-size: 1rem;
    font-style: italic;
    color: #4a5568;
    line-height: 1.6;
    border-top: 1px solid #edf2f7;
    padding-top: 20px;
}

.author-image-side {
    flex-shrink: 0;
}

.author-photo-img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .author-content-card {
        flex-direction: column;
        padding: 25px;
        text-align: center;
    }
    
    .author-header-label, .author-name {
        text-align: center;
    }
    
    .author-stats-v2 {
        flex-direction: column;
    }
    
    .stat-item {
        min-height: auto;
    }
    
    .author-photo-img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    .author-image-side {
        order: -1;
        margin-bottom: 20px;
    }
}

/* Fim Sobre o Autor */

/* FAQ */
.faq {
    background: var(--light-gray);
}

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

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

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

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

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.faq-question i {
    color: var(--primary-navy);
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding: 0 0 25px 0;
    color: var(--primary-navy);
    line-height: 1.6;
}

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

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

/* Garantia */
.guarantee {
    background: white;
    color: var(--dark-gray);
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.guarantee-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(15, 30, 58, 0.1);
    background: var(--white);
    border: 3px solid var(--accent-gold);
}

.guarantee-badge {
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    margin-left: auto;
    margin-right: auto;
    background: radial-gradient(circle at center, #2a3a5a 0%, #0F1E3A 100%);
    clip-path: circle(50% at 50% 50%);
    box-shadow: 0 0 0 5px #C9A227, 0 15px 35px rgba(0,0,0,0.4);
}

.badge-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.badge-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    margin-top: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.guarantee-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.guarantee h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-weight: 700;
}

.guarantee p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.6;
}

.guarantee-cta {
    background: var(--accent-gold);
    color: var(--primary-navy);
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.4);
    animation: pulseSoft 2s ease-in-out infinite;
}

.guarantee-cta:hover {
    background: var(--accent-gold);
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.6);
}

/* Seção Final de Urgência */
.final-urgency {
    background: white;
    color: var(--dark-gray);
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.final-urgency h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    background: linear-gradient(135deg, #EF4444 0%, #F97316 50%, #FB7185 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-urgency p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #555;
    font-weight: 500;
}

.urgency-timer {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timer-text {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #dc3545;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 0;
}

.time-unit {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    min-width: 90px;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.15);
    border: 2px solid #F97316;
    transition: transform 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.2);
}

.time-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #EF4444;
    background: linear-gradient(135deg, #EF4444 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.time-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta {
    background: var(--accent-gold);
    color: var(--primary-navy);
    font-size: 1.4rem;
    padding: 22px 60px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    animation: pulseSoft 2s ease-in-out infinite;
}

.final-cta:hover {
    background: var(--accent-gold);
    filter: brightness(1.1);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(201, 162, 39, 0.55);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 45px;
    }
    
    .what-you-get,
    .exclusive-benefits {
        padding: 70px 0;
    }
    
    .benefits-grid,
    .exclusive-grid {
        gap: 25px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .benefit-card,
    .exclusive-card {
        padding: 35px 25px;
    }
    
    .benefit-icon,
    .exclusive-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin: 0 auto 20px;
    }
    
    .benefit-card h3,
    .exclusive-card h3 {
        font-size: 1.15rem;
    }
    
    .benefit-card p,
    .exclusive-card p {
        font-size: 0.9rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .author-content {
        flex-direction: column;
        gap: 25px;
        padding: 25px 15px;
        text-align: center;
    }
    
    .author-info {
        order: 1;
        flex: none;
    }
    
    .author-image {
        order: 2;
        flex: none;
    }
    
    .author-info h2 {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }
    
    .author-info h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .author-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .author-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin: 15px 0;
    }
    
    .stat {
        min-width: 100px;
        max-width: 140px;
        padding: 10px 8px;
    }
    
    .stat strong {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }
    
    .stat span {
        font-size: 0.7rem;
        line-height: 1.3;
        display: block;
        word-wrap: break-word;
    }
    
    .author-info p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-top: 12px;
    }
    
    .author-image img {
        width: 100px;
        height: 100px;
        border-width: 2px;
    }
    
    .hero-badges {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 15px;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .plans-timer {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .plans-timer .timer-text {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .countdown-plans {
        gap: 12px;
    }
    
    .countdown-plans .time-unit {
        min-width: 60px;
        padding: 12px 8px;
    }
    
    .countdown-plans .time-number {
        font-size: 1.5rem;
    }
    
    .countdown-plans .time-label {
        font-size: 0.7rem;
    }
    
    .testimonial-photo {
        width: 50px;
        height: 50px;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .final-cta {
        font-size: 1.1rem;
        padding: 18px 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .what-you-get,
    .exclusive-benefits {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.85rem;
        margin-bottom: 35px;
    }
    
    .benefits-grid,
    .exclusive-grid,
    .bonus-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card,
    .exclusive-card {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .benefit-icon,
    .exclusive-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin: 0 auto 18px;
    }
    
    .benefit-card h3,
    .exclusive-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .benefit-card p,
    .exclusive-card p {
        font-size: 0.88rem;
        line-height: 1.6;
    }
    
    .bonus-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .author-image img {
        width: 80px;
        height: 80px;
        border-width: 2px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .badge {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .bonus-card h3 {
        font-size: 1.1rem;
    }
    
    .bonus-card p {
        font-size: 0.9rem;
    }
    
    .bonus-image img {
        width: 240px;
        height: 180px;
    }
    
    .plan-card h3 {
        font-size: 1.3rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .old-price {
        font-size: 1rem;
    }
    
    .author-info h2 {
        font-size: 1.9rem;
    }
    
    .author-info h3 {
        font-size: 1.5rem;
    }
    
    .author-title {
        font-size: 1rem;
    }
    
    .stat {
        min-width: 100px;
        max-width: 140px;
    }
    
    .stat strong {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }
    
    .stat span {
        font-size: 0.7rem;
        line-height: 1.3;
        display: block;
        word-wrap: break-word;
    }
    
    .testimonial-photo {
        width: 45px;
        height: 45px;
        border-width: 2px;
    }
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Efeitos visuais adicionais */
.benefit-card:nth-child(even) {
    animation-delay: 0.2s;
}

.exclusive-card:nth-child(even) {
    animation-delay: 0.2s;
}

.bonus-card:nth-child(even) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(even) {
    animation-delay: 0.2s;
}

/* Animação de entrada para elementos visíveis */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sistema de Notificações */
.notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 180px;
    pointer-events: none;
}

.notification {
    background: white;
    padding: 8px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: flex-start;
    pointer-events: all;
    animation: slideInRight 0.4s ease, fadeOut 0.4s ease 4.6s;
    border: 2px solid var(--accent-gold);
    position: relative;
}



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

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.notification.fade-out {
    animation: fadeOut 0.4s ease forwards;
}


.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.notification-product {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.2;
}

.notification-location {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.2;
}

.notification-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: 10px;
    box-shadow: 0 3px 10px rgba(15, 30, 58, 0.4);
}

@media (max-width: 768px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: auto;
        max-width: 280px;
    }

    .notification {
        padding: 8px 12px;
        border-radius: 10px;
        border-width: 1px;
    }

    .notification-icon {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
        margin-right: 8px;
        box-shadow: 0 1px 4px rgba(34, 197, 94, 0.25);
    }

    .notification-name {
        font-size: 0.85rem;
        font-weight: 600;
    }

    .notification-product {
        font-size: 0.75rem;
    }

    .notification-location {
        font-size: 0.7rem;
    }

    .notification-content {
        gap: 1px;
    }
}

/* Pop-up de Upgrade Premium */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

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

.popup-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 360px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.popup-content {
    background: white;
    border-radius: 16px;
    padding: 20px 20px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

.popup-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: bounce 1s ease infinite;
}

.popup-title {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-weight: 700;
}

.popup-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 12px;
}

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

.popup-price {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
}

.popup-old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.popup-new-price {
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 5px;
}

.popup-save {
    font-size: 0.85rem;
    color: #e74c3c;
    font-weight: 600;
}

.popup-benefits {
    text-align: left;
    margin-bottom: 12px;
}

.popup-benefit {
    font-size: 0.9rem;
    color: #333;
    padding: 4px 0;
    border-bottom: 1px solid #f0f0f0;
}

.popup-benefit:last-child {
    border-bottom: none;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-card .popup-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.popup-card .popup-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.popup-card .popup-price {
    margin-bottom: 20px;
}

.popup-card .popup-old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.popup-card .popup-new-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.popup-card .popup-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.popup-card .popup-benefits li {
    padding: 6px 0;
    color: #333;
    font-size: 0.95rem;
}

.popup-card .popup-benefits li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 10px;
}

.popup-card .popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-btn {
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: block;
}

.popup-btn-accept {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.popup-btn-accept:hover {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}

.popup-btn-decline {
    background: transparent;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #ddd;
}

.popup-btn-decline:hover {
    color: #333;
    background: #f8f9fa;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@media (max-width: 480px) {
    .popup-content {
        padding: 25px 20px;
        max-width: 340px;
    }
    
    .popup-title {
        font-size: 1.3rem;
    }
    
    .popup-new-price {
        font-size: 1.8rem;
    }
}
/* ===== Upsell Popup ===== */
.upsell-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.upsell-overlay.active {
    display: flex;
}

.upsell-modal {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: upsellIn 0.35s ease;
    position: relative;
}

@keyframes upsellIn {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.upsell-badge {
    display: inline-block;
    background: #e63946;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.upsell-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.upsell-subtitle {
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
}

.upsell-price-box {
    background: #fff8e1;
    border: 2px dashed #e63946;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.upsell-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.95rem;
}

.upsell-new-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: #e63946;
    line-height: 1;
}

.upsell-period {
    font-size: 0.85rem;
    color: #666;
}

.upsell-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.upsell-features li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.upsell-btn-yes {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(230,57,70,0.4);
}

.upsell-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,57,70,0.5);
}

.upsell-btn-no {
    background: none;
    border: none;
    color: #999;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 4px;
    transition: color 0.2s;
}

.upsell-btn-no:hover {
    color: #555;
}

@media (max-width: 480px) {
    .upsell-modal {
        padding: 28px 20px;
    }
    .upsell-title {
        font-size: 1.3rem;
    }
    .upsell-new-price {
        font-size: 2.2rem;
    }
}
