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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.headline-section {
    margin-bottom: 3rem;
}

.main-headline {
    color: #1a202c;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.highlight {
    background: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.sub-headline {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Video Section */
.video-section {
    margin: 3rem 0;
}

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

.video-placeholder {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.video-placeholder:hover::before {
    transform: translateX(100%);
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #FF6F00;
    animation: pulse 2s infinite;
}

.video-placeholder p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.video-placeholder small {
    font-size: 1rem;
    opacity: 0.8;
}

.video-subtitle {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #e53e3e;
    font-weight: 600;
}

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

/* CTA Buttons */
.cta-section {
    margin-top: 3rem;
}

.cta-button {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button.primary {
    background: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%);
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.3);
}

.cta-button.primary:hover {
    box-shadow: 0 15px 40px rgba(255, 111, 0, 0.4);
}

.cta-button.large {
    padding: 2rem 4rem;
    font-size: 1.4rem;
}

.cta-button small {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
    margin-top: 0.5rem;
}

.cta-button i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.security-text {
    margin-top: 1.5rem;
    color: #4a5568;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.security-text i {
    color: #4CAF50;
}

/* Section Styling */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4CAF50 0%, #FF6F00 100%);
    display: block;
    margin: 1rem auto;
    border-radius: 2px;
}

/* Benefits Section */
.benefits {
    background: #f7fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #4CAF50;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefit-card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #4CAF50;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 3px solid #4CAF50;
}

.testimonial-info h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial p {
    color: #4a5568;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #4CAF50;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 600;
}

/* Product Description */
.product-description {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.ebook-mockup {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.ebook-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.ebook-mockup i {
    font-size: 4rem;
    color: #FF6F00;
    margin-bottom: 1rem;
    display: block;
}

.ebook-mockup span {
    font-size: 1.5rem;
    font-weight: 700;
}

.product-details h3 {
    color: #1a202c;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.product-features {
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.product-features i {
    color: #4CAF50;
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Target Audience */
.target-audience {
    background: white;
}

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

.audience-card {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: #FF6F00;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe4cc 100%);
}

.audience-card i {
    font-size: 3rem;
    color: #FF6F00;
    margin-bottom: 1.5rem;
    display: block;
}

.audience-card h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.audience-card p {
    color: #4a5568;
    margin-bottom: 0;
}

/* Bonus Section */
.bonus {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.bonus .section-title {
    color: white;
}

.bonus .section-title::after {
    background: white;
}

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

.bonus-card {
    background: white;
    color: #1a202c;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,111,0,0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.bonus-card:hover::before {
    opacity: 1;
    animation: shine 1s ease-in-out;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.bonus-icon i {
    font-size: 2rem;
    color: white;
}

.bonus-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.bonus-value {
    color: #4CAF50;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem !important;
    position: relative;
    z-index: 2;
}

.bonus-card p:last-child {
    color: #4a5568;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

@keyframes shine {
    0% { transform: rotate(45deg) translate(-100%, -100%); }
    100% { transform: rotate(45deg) translate(100%, 100%); }
}

/* Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.guarantee-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-badge {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    position: relative;
}

.guarantee-badge::before {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    border: 3px solid #4CAF50;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

.guarantee-badge i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.guarantee-badge span {
    font-size: 1rem;
    line-height: 1.2;
}

.guarantee-text h2 {
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.guarantee-text p {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.risk-free {
    color: #e53e3e !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.pricing .section-title {
    color: white;
}

.pricing .section-title::after {
    background: linear-gradient(135deg, #4CAF50 0%, #FF6F00 100%);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    color: #1a202c;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #4CAF50 0%, #FF6F00 100%);
}

.price-comparison {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.old-price {
    text-align: left;
}

.old-price span {
    font-size: 1.5rem;
    color: #e53e3e;
    text-decoration: line-through;
    font-weight: 600;
}

.old-price small {
    display: block;
    color: #4a5568;
    font-size: 0.9rem;
}

.discount-badge {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 2rem 0;
}

.currency {
    font-size: 2rem;
    color: #4CAF50;
    font-weight: 700;
}

.amount {
    font-size: 5rem;
    color: #4CAF50;
    font-weight: 900;
    line-height: 1;
}

.cents {
    font-size: 3rem;
    color: #4CAF50;
    font-weight: 700;
}

.price-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 0.5rem !important;
}

.installments {
    font-size: 1.1rem;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 2rem !important;
}

.urgency {
    background: #fff5f5;
    border: 2px solid #fed7d7;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.urgency p {
    color: #e53e3e;
    font-weight: 600;
    margin-bottom: 1rem !important;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.time-unit {
    background: #e53e3e;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
    text-align: center;
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.time-unit label {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.9;
}

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

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.final-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.final-cta > p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-bottom: 3rem;
}

.payment-methods {
    margin-bottom: 2rem;
}

.payment-methods p {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2rem;
    color: white;
    opacity: 0.9;
}

.payment-icons span {
    background: white;
    color: #FF6F00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.security-note {
    color: white;
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* FAQ Section */
.faq {
    background: #f7fafc;
}

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

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

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #1a202c;
}

.faq-question i {
    color: #4CAF50;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: #4CAF50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #a0aec0;
}

.footer-section i {
    color: #4CAF50;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #a0aec0;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    font-weight: 600;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float span {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .benefits-grid,
    .testimonials-grid,
    .audience-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 0.7rem;
    }
    
    .time-unit span {
        font-size: 1.5rem;
    }
    
    .stats {
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float {
        padding: 1rem;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 1.5rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .benefit-card,
    .testimonial,
    .audience-card,
    .bonus-card {
        padding: 1.5rem;
    }
    
    .video-placeholder {
        padding: 2rem 1rem;
    }
    
    .video-placeholder i {
        font-size: 3rem;
    }
    
    .ebook-mockup {
        padding: 2rem 1rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .amount {
        font-size: 4rem;
    }
    
    .currency,
    .cents {
        font-size: 2rem;
    }
}

/* Animations and Transitions */
@media (prefers-reduced-motion: no-preference) {
    .benefit-card,
    .testimonial,
    .audience-card,
    .bonus-card {
        animation: fadeInUp 0.6s ease-out;
    }
    
    .benefit-card:nth-child(1) { animation-delay: 0.1s; }
    .benefit-card:nth-child(2) { animation-delay: 0.2s; }
    .benefit-card:nth-child(3) { animation-delay: 0.3s; }
    .benefit-card:nth-child(4) { animation-delay: 0.4s; }
    .benefit-card:nth-child(5) { animation-delay: 0.5s; }
    .benefit-card:nth-child(6) { animation-delay: 0.6s; }
}

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

/* Print Styles */
@media print {
    .whatsapp-float,
    .video-section,
    .countdown {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .cta-button {
        background: #333 !important;
        color: white !important;
    }
}