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

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Cores Principais */
:root {
    --primary-blue: #007BFF;
    --primary-green: #28A745;
    --dark-blue: #0056b3;
    --dark-green: #1e7e34;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --border-color: #dee2e6;
}

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

@keyframes pulse {
    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, #ff6b6b, #ee5a52);
    color: white;
    text-align: center;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.urgency-text {
    font-size: 1.2rem;
    font-weight: 700;
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 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: #333;
}

.number-500 {
    color: #ff6b35;
    font-weight: 800;
}

.bonus-text {
    color: var(--primary-green);
    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;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.cta-button {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
}

.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-green);
    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;
}

.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.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--dark-gray);
    position: relative;
}

.section-title::after {
    content: '';
    width: 100px;
    height: 4px;
    background: var(--primary-blue);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* O Que Você Vai Receber */
.what-you-get {
    background: var(--light-gray);
}

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

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

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

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

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

/* Benefícios Exclusivos */
.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.exclusive-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.exclusive-icon {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.exclusive-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

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

/* Bônus Section */
.bonus-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.bonus-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-green);
    transition: transform 0.3s ease;
}

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

.bonus-value {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.bonus-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-image img {
    max-width: 100%;
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.bonus-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

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

.total-bonus {
    text-align: center;
    padding: 30px;
    background: var(--primary-green);
    color: white;
    border-radius: 15px;
    font-size: 1.5rem;
}

.line-through {
    text-decoration: line-through;
    opacity: 0.7;
}

.free {
    font-weight: 700;
    font-size: 1.8rem;
    color: #ffeb3b;
}

/* Cronômetro dos Planos */
.plans-timer {
    text-align: center;
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    border-radius: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.plans-timer .timer-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.countdown-plans .time-unit {
    background: white;
    padding: 20px 15px;
    border-radius: 12px;
    min-width: 80px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid #dc3545;
    transition: transform 0.3s ease;
}

.countdown-plans .time-unit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.2);
}

.countdown-plans .time-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #dc3545;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Planos de Preços */
.pricing-plans {
    background: var(--light-gray);
}

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

.plan-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: left;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.plan-card.popular {
    border: 2px solid var(--primary-green);
    transform: none;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.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(--primary-green);
    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-green);
    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(--primary-green);
    font-size: 1.1rem;
}

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

.plan-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.basic-button {
    background: var(--primary-blue);
    color: white;
}

.basic-button:hover {
    background: var(--dark-blue);
}

.premium-button {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.premium-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* 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: #fd7e14 !important;
}

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

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

.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: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

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

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

.testimonial-photo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-blue);
    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: #666;
}

/* Sobre o Autor */
.about-author {
    background: white;
    color: var(--dark-gray);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.author-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    padding: 25px;
    max-width: 850px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    background: white;
    border: 2px solid var(--primary-blue);
}

.author-info {
    flex: 2;
    order: 1;
}

.author-image {
    flex: 1;
    text-align: center;
    order: 2;
}

.author-info h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-weight: 700;
}

.author-info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-weight: 600;
}

.author-title {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 500;
}

.author-stats {
    display: flex;
    gap: 8px;
    margin: 12px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 8px 6px;
    background: var(--light-gray);
    border-radius: 8px;
    min-width: 70px;
    flex: 1;
    max-width: 110px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat strong {
    display: block;
    font-size: 1.6rem;
    color: var(--primary-green);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat span {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}


.author-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

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

.author-info p {
    color: #555;
    line-height: 1.4;
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 12px;
}

/* 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-blue);
    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: #666;
    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(0,0,0,0.1);
    background: white;
    border: 2px solid var(--primary-green);
}

.guarantee-badge {
    margin-bottom: 30px;
}

.guarantee-badge i {
    font-size: 5rem;
    color: var(--primary-green);
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.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(--primary-green);
    color: white;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.guarantee-cta:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 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, #dc3545, #ff6b6b);
    -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(0,0,0,0.1);
    border: 2px solid #dc3545;
    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: #dc3545;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    -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: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    font-size: 1.4rem;
    padding: 22px 60px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.final-cta:hover {
    background: linear-gradient(135deg, #c82333, #a71e2a);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.6);
}

/* 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: 2rem;
    }
    
    .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: 8px;
        margin: 15px 0;
    }
    
    .stat {
        min-width: 60px;
        max-width: 85px;
        padding: 6px 4px;
    }
    
    .stat strong {
        font-size: 1.4rem;
    }
    
    .stat span {
        font-size: 0.7rem;
    }
    
    .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;
    }
    
    .benefits-grid,
    .exclusive-grid,
    .bonus-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card,
    .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: 150px;
        height: 110px;
    }
    
    .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: 60px;
        max-width: 90px;
    }
    
    .stat strong {
        font-size: 1.5rem;
    }
    
    .stat span {
        font-size: 0.75rem;
    }
    
    .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);
}