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

/* Variáveis CSS */
:root {
    --primary-color: #dc2626;
    --primary-dark: #b91c1c;
    --secondary-color: #1f2937;
    --accent-color: #fbbf24;
    --success-color: #10b981;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Tarja fixa no topo */
.top-banner {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-banner-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.top-banner-highlight {
    background: var(--accent-color);
    color: var(--text-color);
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 700;
}

/* Base */
body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
}

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

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Botões */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: var(--text-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-cta-large {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 25px 50px;
    font-size: 20px;
}

.btn-cta-final {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    color: white;
    padding: 25px 50px;
    font-size: 20px;
}

.btn-text {
    font-size: 18px;
    font-weight: 700;
}

.btn-subtext {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 5px;
}

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

/* Utilitários */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Hero Section */
.hero-section {
    background: white;
    color: var(--text-color);
    padding: 30px 0 60px;
    overflow: hidden;
    position: relative;
}



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

.hero-text {
    text-align: left;
}

.main-headline {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.sub-headline {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.sub-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

/* E-book Showcase */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ebook-showcase {
    position: relative;
    transition: transform 0.3s ease;
}

.ebook-showcase:hover {
    transform: scale(1.05);
}

.ebook-cover {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}



/* Price Highlight */
.price-highlight {
    position: absolute;
    bottom: -15px;
    left: -25px;
    background: linear-gradient(45deg, var(--accent-color), #f59e0b);
    color: var(--text-color);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
    z-index: 3;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(-5deg) scale(1); }
    50% { transform: rotate(-5deg) scale(1.1); }
}

.old-price-small {
    font-size: 14px;
    text-decoration: line-through;
    opacity: 0.7;
    display: block;
}

.current-price-large {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.discount-small {
    font-size: 12px;
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    position: absolute;
    top: -8px;
    right: -8px;
    font-weight: 700;
}

/* CTA Container */
.cta-container {
    margin: 30px 0;
}



/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-color);
}

/* Problem Section */
.problem-section {
    background: var(--bg-light);
}

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

.problem-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-left: 5px solid var(--primary-color);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.problem-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.pain-amplifier {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.pain-amplifier h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Solution Section */
.solution-section {
    background: var(--bg-dark);
    color: white;
}

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

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

.pillar {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pillar-number {
    background: var(--accent-color);
    color: var(--text-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pillar-content h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--success-color);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-item h3 {
    color: var(--success-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.transformation-promise {
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-light);
}

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

.testimonial {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.testimonial-content {
    padding: 30px;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

.results-banner {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
}

.stat-text {
    font-size: 14px;
    opacity: 0.9;
}

/* Content Modules */
.content-modules {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.module {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.module-header {
    background: var(--secondary-color);
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.module-number {
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

.module-content {
    padding: 25px;
}

.module-content ul {
    list-style: none;
    padding: 0;
}

.module-content li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 30px;
}

.module-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.module-content li:last-child {
    border-bottom: none;
}

/* Bonus Section */
.bonus-section {
    background: var(--bg-light);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid var(--accent-color);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.bonus-value {
    background: var(--accent-color);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
}

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

.offers-header h2 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.offers-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Oferta Básica */
.offer-basic {
    border-color: rgba(156, 163, 175, 0.3);
}

/* Oferta Completa */
.offer-complete {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
    transform: scale(1.05);
}

.offer-complete:hover {
    transform: scale(1.05) translateY(-5px);
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--text-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.offer-header-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.offer-header-card p {
    opacity: 0.7;
    margin-bottom: 30px;
}

/* Pricing */
.offer-price {
    margin: 30px 0;
}

.price-main {
    font-size: 3rem;
    font-weight: 800;
    color: var(--success-color);
    display: block;
}

.price-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #ef4444;
    opacity: 0.7;
    display: block;
    margin-bottom: 10px;
}

.price-economy {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 10px;
    display: block;
}

/* Features */
.offer-features {
    margin: 30px 0;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:last-child {
    border-bottom: none;
}

.feature-bonus {
    color: var(--accent-color);
}

.feature-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 15px;
    line-height: 1.4;
}

/* CTAs das Ofertas */
.offer-cta {
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 30px;
}

.btn-offer-basic {
    background: rgba(156, 163, 175, 0.2);
    color: white;
    border: 2px solid rgba(156, 163, 175, 0.5);
    padding: 15px 30px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-offer-basic:hover {
    background: rgba(156, 163, 175, 0.3);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-offer-complete {
    background: linear-gradient(45deg, var(--accent-color), #f59e0b);
    color: var(--text-color);
    padding: 20px 40px;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-offer-complete:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
    text-decoration: none;
}

/* Value Highlight */
.value-highlight {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 0;
}

.value-highlight p {
    margin: 5px 0;
    font-size: 14px;
}

/* Offers Footer */
.offers-footer {
    text-align: center;
}

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

.time-unit {
    background: var(--primary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 80px;
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.time-unit label {
    font-size: 12px;
    opacity: 0.8;
}

.guarantee {
    margin: 40px 0;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success-color);
    border-radius: var(--border-radius);
    padding: 25px;
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee-text h4 {
    color: var(--success-color);
    margin-bottom: 10px;
}

.payment-options {
    margin-top: 30px;
    opacity: 0.8;
}

.payment-options p {
    margin: 5px 0;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
}

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

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 25px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.transformation-vision {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius);
    margin: 40px 0;
}

.transformation-vision ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.transformation-vision li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.risk-reversal {
    background: var(--accent-color);
    color: var(--text-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 40px;
    font-weight: 600;
}

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

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

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

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Responsividade */
@media (max-width: 1024px) and (min-width: 769px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 5px 0 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        overflow: visible;
        padding: 0 10px;
    }
    
    .main-headline {
        font-size: 2.5rem;
    }
    
    .sub-headline {
        font-size: 1.5rem;
    }
    
    .sub-description {
        font-size: 1.1rem;
    }
    
    .ebook-showcase {
        transform: none;
        padding: 0;
        margin: 0 auto;
        max-width: 350px;
    }
    
    .ebook-showcase:hover {
        transform: scale(1.03);
    }
    
    .ebook-cover {
        max-width: 100%;
        width: 100%;
    }
    

    
    .price-highlight {
        bottom: -15px;
        left: -20px;
        padding: 10px 12px;
        max-width: 130px;
        text-align: center;
    }
    
    .current-price-large {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problem-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    

    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .price-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .current-price {
        font-size: 3rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 15px 10px;
    }
    
    .time-unit span {
        font-size: 1.5rem;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .offer-complete {
        transform: none;
    }
    
    .offer-complete:hover {
        transform: translateY(-5px);
    }
    
    .offer-card {
        padding: 30px 20px;
        min-height: auto;
        display: block;
    }
    
    .offer-cta {
        margin-top: 30px;
        padding-top: 0;
    }
    
    .offer-header-card h3 {
        font-size: 1.5rem;
    }
    
    .price-main {
        font-size: 2.5rem;
    }
    
    .pillar {
        flex-direction: column;
        text-align: center;
    }
    
    .module-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .top-banner-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 0 0 20px;
    }
    
    .hero-content {
        gap: 10px;
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        margin: 5px 0;
    }
    
    .cta-container {
        order: 3;
        margin-top: 5px;
    }
    
    .main-headline {
        font-size: 2rem;
        line-height: 1.2;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .sub-headline {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .ebook-cover {
        max-width: 100%;
        width: 100%;
    }
    
    .ebook-showcase {
        padding: 0;
        margin: 0 auto;
        max-width: 280px;
    }
    

    
    .price-highlight {
        bottom: -10px;
        left: -15px;
        padding: 8px 10px;
        transform: rotate(-2deg);
        max-width: 120px;
        text-align: center;
    }
    
    .current-price-large {
        font-size: 1.3rem;
    }
    
    .old-price-small {
        font-size: 12px;
    }
    
    .discount-small {
        font-size: 10px;
        padding: 1px 6px;
    }
    

    
    .btn {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    .btn-cta-large,
    .btn-cta-final {
        padding: 20px 30px;
        font-size: 18px;
    }
    
    .offers-header h2 {
        font-size: 2rem;
    }
    
    .offer-card {
        padding: 25px 15px;
        min-height: auto;
        display: block;
    }
    
    .offer-cta {
        margin-top: 25px;
        padding-top: 0;
    }
    
    .offer-header-card h3 {
        font-size: 1.3rem;
    }
    
    .price-main {
        font-size: 2rem;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .btn-offer-basic,
    .btn-offer-complete {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    .value-highlight {
        padding: 15px;
    }

    .top-banner {
        padding: 3px 0;
    }

    .top-banner-text {
        font-size: 12px;
        flex-direction: column;
        gap: 3px;
    }
}

/* Padronização de animações mais rápidas */
.btn, .offer-card, .faq-question, .floating-cta {
    transition-duration: 0.2s !important;
}

/* Otimização das animações de scroll - REMOVIDO */
/* Scroll animations removed for better UX performance */

/* Social Proof Toast Notifications */
.social-proof-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-size: 14px;
    font-weight: 500;
    max-width: 300px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(350px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-proof-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.social-proof-toast.hide {
    transform: translateX(350px);
    opacity: 0;
}

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

.toast-icon {
    font-size: 20px;
    animation: pulse 2s infinite;
}

.toast-text {
    flex: 1;
    line-height: 1.4;
}

.toast-name {
    font-weight: 600;
    color: #fbbf24;
}

.toast-action {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 2px;
}

/* Mobile optimizations for toast */
@media (max-width: 768px) {
    .social-proof-toast {
        top: 80px;
        right: 15px;
        left: 15px;
        max-width: none;
        font-size: 13px;
        padding: 14px 16px;
        transform: translateX(100%);
    }
    
    .social-proof-toast.show {
        transform: translateX(0);
    }
    
    .social-proof-toast.hide {
        transform: translateX(100%);
    }
    
    .toast-content {
        gap: 10px;
    }
    
    .toast-icon {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .social-proof-toast {
        top: 75px;
        font-size: 12px;
        padding: 12px 14px;
    }
    
    .toast-icon {
        font-size: 16px;
    }
} 