/* 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 - Tema Yoga */
:root {
    --primary-blue: #F472B6;
    --primary-lilac: #A78BFA;
    --dark-blue: #DB2777;
    --dark-lilac: #7C3AED;
    --light-gray: #f8fafc;
    --dark-gray: #1e293b;
    --border-color: #e2e8f0;
    --yoga-purple: #F9A8D4;
    --yoga-sage: #C4B5FD;
    --yoga-lavender: #FBCFE8;
    --yoga-coral: #FB7185;
    --yoga-gold: #FBBF24;
}

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

.number-500 {
    color: #F472B6;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(244, 114, 182, 0.3);
}

.bonus-text {
    color: var(--primary-lilac);
    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.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.hero-description-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #4b5563;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.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 Callout Button */
.video-callout {
    margin-bottom: 15px;
    text-align: center;
}

.video-callout-btn {
    background: linear-gradient(135deg, #A78BFA 0%, #C4B5FD 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: default;
    animation: pulseSoft 2s infinite;
}

.video-callout-btn i {
    font-size: 1.2rem;
}

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

.video-wrapper {
    max-width: 320px;
    margin: 40px auto 40px 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 {
    background: linear-gradient(135deg, #A78BFA 0%, #C4B5FD 50%, #DDD6FE 100%);
    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 20px rgba(167, 139, 250, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: pulseSoft 2s ease-in-out infinite;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.cta-button:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.5);
}

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

@media (max-width: 768px) {
    .video-wrapper {
        max-width: 280px;
        margin: 20px auto 30px auto;
    }
    
    .hero-cta {
        margin-top: 40px;
        width: 100%;
        max-width: 100%;
        padding: 15px 20px;
        font-size: 1.1rem;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Nova Seção Hero de Reforço */
.hero-reforce {
    background: #fdfbff;
    padding: 20px 0 80px 0;
    border-top: 1px solid var(--border-color);
}

.hero-reforce-content {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: center;
    text-align: center;
}

.hero-reforce-text {
    flex: 1;
    max-width: 800px;
}

.reforce-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--dark-gray);
}

.reforce-description {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 30px;
    line-height: 1.8;
}

.reforce-target-text .reforce-intro {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 15px;
    text-align: left;
}

.reforce-list-container {
    display: inline-block;
    text-align: left;
}

.reforce-list {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.reforce-list li {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.reforce-list i {
    color: var(--primary-lilac);
    font-size: 1.3rem;
}

.reforce-cta {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.hero-reforce-image {
    flex: 1;
    text-align: right;
}

.hero-reforce-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(244, 114, 182, 0.15);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-reforce-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

@media (max-width: 968px) {
    .hero-reforce-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-reforce-image {
        order: -1;
    }
    
    .reforce-list li {
        justify-content: flex-start;
    }
    
    .reforce-title {
        font-size: 2.2rem;
    }
}

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

.badge {
    background: var(--primary-lilac);
    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.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, #F472B6, #FBCFE8, #A78BFA, #C4B5FD);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* O Que Você Vai Receber */
.what-you-get {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    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;
    justify-content: center;
    min-height: 200px;
}

.benefit-card i {
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #F472B6 0%, #F9A8D4 50%, #FBCFE8 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(244, 114, 182, 0.4);
    flex-shrink: 0;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.4;
}

.section-footer-text {
    text-align: center;
    font-size: 1.25rem;
    color: #4b5563;
    margin-top: 40px;
    font-style: italic;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefícios Exclusivos */
.exclusive-benefits {
    padding: 100px 0;
    background: #ffffff;
}

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

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

.exclusive-icon {
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #A78BFA 0%, #C4B5FD 50%, #DDD6FE 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(167, 139, 250, 0.4);
    line-height: 1;
    position: relative;
}

.exclusive-icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.exclusive-card:hover .exclusive-icon {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 25px rgba(167, 139, 250, 0.5);
}

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

.exclusive-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

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

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

.bonus-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.1);
    border: 2px solid #C4B5FD;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bonus-image-container {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
}

.bonus-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

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

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

.bonus-features li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #4b5563;
}

.bonus-footer-note {
    font-size: 0.9rem;
    color: #A78BFA;
    font-weight: 600;
    margin-top: auto;
    font-style: italic;
}

.bonus-value {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: line-through;
    margin: 5px 0 15px;
    display: block;
}

.total-bonus {
    text-align: center;
    padding: 18px 25px;
    background: linear-gradient(135deg, #A78BFA 0%, #7C3AED 100%);
    color: white;
    border-radius: 12px;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(167, 139, 250, 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: #FBBF24;
    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, #DC2626 0%, #EF4444 40%, #F97316 100%);
    border-radius: 16px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 25px rgba(220, 38, 38, 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: #EA580C;
    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;
}

/* 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: 3px solid #F472B6;
    transform: none;
    background: linear-gradient(180deg, #fff1f2 0%, #ffffff 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F472B6 0%, #F9A8D4 50%, #FBCFE8 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.4);
}

.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-lilac);
    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-lilac);
    display: block;
}

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

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

.gold-item {
    font-weight: 700;
}

.feature-detail {
    font-size: 0.85rem !important;
    color: #6b7280 !important;
    padding-top: 0 !important;
    padding-bottom: 5px !important;
    margin-top: -8px;
    margin-left: 30px;
    display: block !important;
}

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

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

.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;
    animation: pulseSoft 2s ease-in-out infinite;
    display: block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.basic-button {
    background: linear-gradient(135deg, #A78BFA 0%, #C4B5FD 50%, #DDD6FE 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(167, 139, 250, 0.45);
}

.basic-button:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.5);
}

.premium-button {
    background: linear-gradient(135deg, #A78BFA 0%, #C4B5FD 50%, #DDD6FE 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(167, 139, 250, 0.45);
}

.premium-button:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.5);
}

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

.bonus-item i {
    color: #DB2777 !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);
}

.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: #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 35px rgba(139, 92, 246, 0.15);
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    border: 2px solid #A855F7;
}

.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-lilac);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-lilac), var(--dark-lilac));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-smaller {
    font-size: 1.1rem !important;
}

.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(244, 114, 182, 0.15);
    background: linear-gradient(180deg, #fff1f2 0%, #ffffff 100%);
    border: 3px solid #F472B6;
}

.guarantee-badge {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    width: 180px;
    height: 180px;
}

.guarantee-badge i {
    font-size: 180px;
    color: #F472B6;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 15px rgba(244, 114, 182, 0.3));
}

.badge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    margin-top: -5px;
}

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

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

.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: linear-gradient(135deg, #A78BFA 0%, #C4B5FD 50%, #DDD6FE 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(167, 139, 250, 0.4);
    animation: pulseSoft 2s ease-in-out infinite;
}

.guarantee-cta:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(167, 139, 250, 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: linear-gradient(135deg, #EF4444 0%, #F97316 50%, #FBBF24 100%);
    color: white;
    font-size: 1.4rem;
    padding: 22px 60px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    animation: pulseSoft 2s ease-in-out infinite;
}

.final-cta:hover {
    background: linear-gradient(135deg, #DC2626 0%, #EA580C 100%);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(239, 68, 68, 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;
    }
}

/* Redesign 2026 - mobile first, clareza e confianca */
:root {
    --brand: #8f3f68;
    --brand-dark: #6f2e50;
    --brand-soft: #f7e8ef;
    --accent: #1f7a65;
    --accent-dark: #155f4e;
    --accent-soft: #e8f5f1;
    --ink: #25212a;
    --muted: #68616d;
    --paper: #fffdfb;
    --surface: #ffffff;
    --line: #eadfe5;
    --shadow-sm: 0 8px 24px rgba(75, 48, 63, 0.08);
    --shadow-lg: 0 20px 55px rgba(75, 48, 63, 0.14);
    --primary-blue: var(--brand);
    --primary-lilac: var(--brand);
    --dark-blue: var(--brand-dark);
    --dark-lilac: var(--brand-dark);
    --light-gray: #faf7f8;
    --dark-gray: var(--ink);
    --border-color: var(--line);
}

html {
    background: var(--paper);
}

body {
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: min(100% - 32px, 1140px);
    padding: 0;
}

section {
    padding: 72px 0;
}

.urgency-banner {
    background: var(--brand-dark);
    padding: 10px 0;
    box-shadow: none;
}

.urgency-text {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-shadow: none;
}

.urgency-text .date-highlight {
    color: #fff;
    text-shadow: none;
}

.hero {
    padding: 52px 0 64px;
    background:
        radial-gradient(circle at 10% 10%, rgba(143, 63, 104, 0.10), transparent 28rem),
        linear-gradient(180deg, #fffafc 0%, #fffdfb 100%);
}

.hero::before {
    opacity: 0;
}

.hero-content {
    animation: none;
}

.hero-title {
    max-width: 820px;
    margin: 0 auto 20px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.number-500 {
    color: var(--brand-dark);
    text-shadow: none;
}

.hero-subtitle {
    max-width: 860px;
    margin-bottom: 18px;
    color: var(--ink);
    font-size: clamp(1.18rem, 3vw, 1.65rem);
    line-height: 1.38;
    font-weight: 700;
}

.hero-description-text {
    max-width: 700px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 1rem;
}

.video-callout {
    margin-bottom: 12px;
}

.video-callout-btn {
    padding: 8px 16px;
    background: var(--brand-soft);
    border: 1px solid #e6c8d7;
    color: var(--brand-dark);
    box-shadow: none;
    font-size: 0.84rem;
    animation: none;
}

.video-wrapper {
    width: min(100%, 350px);
    max-width: none;
    margin: 18px auto 28px;
    padding: 7px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.video-wrapper > div {
    border-radius: 14px !important;
}

.cta-button,
.plan-button {
    min-height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    box-shadow: 0 10px 25px rgba(31, 122, 101, 0.25);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    animation: none;
}

.cta-button:hover,
.plan-button:hover,
.basic-button:hover,
.premium-button:hover,
.guarantee-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(31, 122, 101, 0.28);
}

.hero-cta {
    width: min(100%, 420px);
    margin: 0 auto 18px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-trust i {
    color: var(--accent);
}

.hero-reforce {
    padding: 72px 0;
    background: var(--brand-dark);
    border: 0;
    color: #fff;
}

.hero-reforce-text {
    max-width: 860px;
}

.reforce-title {
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: -0.035em;
}

.reforce-description,
.reforce-target-text .reforce-intro,
.reforce-list li {
    color: rgba(255, 255, 255, 0.86);
}

.reforce-list-container {
    width: min(100%, 620px);
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
}

.reforce-list {
    margin-bottom: 0;
}

.reforce-list li:last-child {
    margin-bottom: 0;
}

.reforce-list i {
    color: #a8e2d4;
}

.highlight-text {
    margin-top: 28px;
    font-size: 1.35rem;
}

.description-footer {
    color: rgba(255, 255, 255, 0.74);
}

.section-title {
    max-width: 850px;
    margin: 0 auto 50px;
    color: var(--ink);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 5vw, 3.1rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.section-title::after {
    bottom: -16px;
    width: 52px;
    height: 3px;
    background: var(--brand);
}

.solution-section {
    padding: 72px 0 !important;
    background: var(--paper) !important;
    border-top: 0 !important;
}

.solution-section .section-title {
    margin-bottom: 44px !important;
}

.solution-section ul {
    display: grid;
    gap: 12px;
}

.solution-section li {
    margin: 0 !important;
    padding: 15px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-size: 1rem !important;
}

.solution-section li i {
    color: var(--accent) !important;
}

.solution-section span {
    border-color: var(--line) !important;
    box-shadow: none !important;
}

.what-you-get,
.exclusive-benefits,
.testimonials,
.faq {
    padding: 72px 0;
}

.what-you-get,
.testimonials,
.faq {
    background: #faf7f8;
}

.exclusive-benefits {
    background: var(--paper);
}

.benefits-grid,
.exclusive-grid {
    gap: 16px;
}

.benefit-card,
.exclusive-card {
    min-height: 0;
    padding: 26px 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    align-items: flex-start;
}

.benefit-card i,
.exclusive-icon {
    width: 48px;
    height: 48px;
    margin: 0 0 18px;
    background: var(--brand-soft);
    color: var(--brand-dark);
    box-shadow: none;
    font-size: 1.25rem;
}

.benefit-card h3,
.exclusive-card h3 {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.45;
}

.exclusive-card p {
    color: var(--muted);
}

.section-footer-text {
    padding: 16px 20px;
    background: var(--accent-soft);
    border-radius: 12px;
    color: var(--accent-dark);
    font-style: normal;
    font-size: 1rem;
}

.bonus-section {
    padding: 72px 0;
    background: var(--brand-dark);
}

.bonus-section .section-title {
    color: #fff;
}

.bonus-section .section-title::after {
    background: #fff;
}

.bonus-grid {
    gap: 18px;
}

.bonus-card {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    box-shadow: none;
    text-align: left;
}

.bonus-image-container {
    height: 190px;
    margin-bottom: 18px;
    background: #faf7f8;
    border-radius: 12px;
}

.bonus-card h3 {
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.4;
}

.bonus-value {
    color: #a54d5d;
}

.bonus-features li {
    color: var(--muted);
}

.bonus-footer-note {
    color: var(--brand);
}

.total-bonus {
    max-width: 620px;
    padding: 20px;
    background: #fff;
    color: var(--ink);
    box-shadow: none;
}

.free {
    color: var(--accent);
    text-shadow: none;
}

.pricing-plans {
    padding: 76px 0;
    background: var(--paper);
}

.plans-timer {
    margin-bottom: 42px;
    padding: 16px;
    background: #fff5f3;
    border: 1px solid #f0d5cf;
    box-shadow: none;
}

.plans-timer .timer-text {
    color: #934537;
    text-shadow: none;
}

.countdown-plans .time-unit {
    border: 1px solid #f0d5cf;
    box-shadow: none;
}

.countdown-plans .time-number {
    color: #934537;
}

.pricing-intro {
    max-width: 650px;
    margin: -28px auto 38px;
    color: var(--muted);
    text-align: center;
}

.plans-grid {
    max-width: 920px;
    gap: 24px;
    align-items: start;
}

.plan-card {
    padding: 30px 24px 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.plan-card.popular {
    border: 2px solid var(--brand);
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    top: -14px;
    background: var(--brand);
    box-shadow: none;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.plan-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.65rem;
}

.new-price {
    color: var(--brand-dark);
    font-size: 3.4rem;
    line-height: 1.1;
}

.savings-amount {
    color: var(--accent-dark);
}

.plan-features li {
    align-items: flex-start;
    border-bottom: 1px solid #f0eaed;
    font-size: 0.92rem;
    line-height: 1.45;
}

.plan-features i {
    margin-top: 4px;
    color: var(--accent);
}

.plan-features .no-benefit {
    color: #9a9299;
}

.premium-social-proof {
    padding: 10px 14px;
    background: var(--brand-soft);
    border-radius: 10px;
    color: var(--brand-dark);
    text-align: center;
}

.basic-button,
.premium-button,
.guarantee-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.testimonials-grid {
    gap: 18px;
}

.testimonial-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #d39a35;
}

.about-author {
    padding: 72px 0;
    background: var(--brand-dark);
}

.author-content {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.author-info {
    order: 2;
    padding: 46px;
    text-align: left;
}

.author-image {
    order: 1;
    min-height: 520px;
}

.author-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    box-shadow: none;
}

.author-info h2 {
    color: var(--brand);
    font-size: 0.85rem;
    font-family: Inter, Arial, sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.author-info h3 {
    color: var(--ink);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.5rem;
    line-height: 1.1;
}

.author-title {
    color: var(--accent-dark) !important;
    font-style: normal !important;
}

.author-stats {
    justify-content: flex-start;
    gap: 10px;
    margin: 24px 0;
}

.stat {
    max-width: none;
    min-width: 0;
    padding: 13px 10px;
    background: #faf7f8;
    border: 1px solid var(--line);
}

.stat strong {
    color: var(--brand-dark);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.author-info p {
    color: var(--muted);
    font-style: normal;
    line-height: 1.7;
}

.faq-list {
    max-width: 820px;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: none;
}

.faq-question {
    padding: 20px;
}

.faq-question h3 {
    padding-right: 16px;
    font-size: 1rem;
}

.faq-question i {
    color: var(--brand);
}

.guarantee {
    padding: 72px 0;
    background: var(--accent-soft);
    box-shadow: none;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 140px 1fr;
    column-gap: 30px;
    align-items: center;
    max-width: 850px;
    padding: 38px;
    background: #fff;
    border: 1px solid #cce4dc;
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.guarantee-badge {
    grid-row: 1 / 4;
    width: 140px;
    height: 140px;
    margin: 0;
}

.guarantee-badge i {
    font-size: 140px;
    color: var(--accent);
}

.guarantee h2 {
    margin: 0 0 8px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.4rem;
}

.guarantee p {
    margin-bottom: 18px;
    font-size: 1rem;
}

.guarantee-cta {
    margin: 0;
}

.final-message {
    padding: 72px 0 !important;
    background: var(--paper) !important;
}

.final-message .cta-button {
    width: min(100%, 470px);
}

.footer {
    padding: 42px 0;
    background: #272229;
}

.notification {
    border-color: var(--accent);
}

.notification-icon {
    background: var(--accent);
}

@media (min-width: 700px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exclusive-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    section,
    .what-you-get,
    .exclusive-benefits,
    .testimonials,
    .faq,
    .bonus-section,
    .pricing-plans,
    .about-author,
    .guarantee {
        padding: 56px 0;
    }

    .hero {
        padding: 38px 0 48px;
    }

    .hero-title {
        font-size: 2.55rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-description-text {
        font-size: 0.94rem;
    }

    .video-wrapper {
        width: min(100%, 310px);
    }

    .hero-cta,
    .reforce-cta,
    .cta-button {
        width: 100%;
        max-width: 100%;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .reforce-title {
        font-size: 2rem;
    }

    .solution-section {
        padding: 56px 0 !important;
    }

    .benefits-grid,
    .exclusive-grid,
    .bonus-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card,
    .exclusive-card {
        display: grid;
        grid-template-columns: 48px 1fr;
        column-gap: 16px;
        align-items: center;
    }

    .benefit-card i,
    .exclusive-icon {
        grid-row: 1 / 3;
        margin: 0;
    }

    .exclusive-card p {
        margin-top: 5px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.premium {
        order: -1;
    }

    .author-content {
        grid-template-columns: 1fr;
    }

    .author-image {
        min-height: 330px;
    }

    .author-image img {
        min-height: 330px;
        max-height: 410px;
    }

    .author-info {
        padding: 30px 22px;
        text-align: left;
    }

    .author-info h3 {
        font-size: 2rem;
    }

    .author-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .stat {
        max-width: none;
    }

    .guarantee-content {
        display: flex;
        flex-direction: column;
        padding: 28px 20px;
        text-align: center;
    }

    .guarantee-badge {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    .guarantee-badge i {
        font-size: 120px;
    }

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

@media (max-width: 480px) {
    .container {
        width: min(100% - 28px, 1140px);
        padding: 0;
    }

    .hero-title {
        font-size: 2.15rem;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 42px;
    }

    .bonus-card,
    .testimonial-card,
    .plan-card {
        padding: 18px;
    }

    .bonus-image-container {
        height: 170px;
    }

    .new-price {
        font-size: 3rem;
    }

    .countdown-plans {
        gap: 8px;
    }

    .countdown-plans .time-unit {
        min-width: 62px;
    }

    .final-message p {
        font-size: 1.05rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 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(--primary-lilac);
    position: relative;
}



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

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}


.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: linear-gradient(135deg, #A78BFA 0%, #C4B5FD 100%);
    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(167, 139, 250, 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: var(--primary-green);
    color: white;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.popup-btn-accept:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 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;
    }
}

/* Refinamento de paleta: maternidade suave e cards padronizados */
:root {
    --brand: #cf86a3;
    --brand-dark: #a85f7d;
    --brand-soft: #fff0f5;
    --paper: #fffafb;
    --surface: #ffffff;
    --line: #f0dce4;
    --ink: #393039;
    --muted: #746873;
    --shadow-sm: 0 8px 24px rgba(130, 89, 106, 0.07);
    --shadow-lg: 0 18px 48px rgba(130, 89, 106, 0.11);
}

.urgency-banner {
    background: #e6a5bb;
    color: #563947;
}

.urgency-text .date-highlight {
    color: #563947;
}

.hero {
    background:
        radial-gradient(circle at 10% 10%, rgba(226, 163, 186, 0.18), transparent 28rem),
        linear-gradient(180deg, #fff6f9 0%, #fffafb 100%);
}

.hero-reforce {
    background: linear-gradient(180deg, #fbe9f0 0%, #fff4f7 100%);
    color: var(--ink);
}

.reforce-title {
    color: var(--ink);
}

.reforce-description,
.reforce-target-text .reforce-intro,
.reforce-list li {
    color: var(--muted);
}

.reforce-list-container {
    background: #ffffff;
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.reforce-list i {
    color: var(--brand-dark);
}

.description-footer {
    color: var(--muted);
}

.bonus-section {
    background: linear-gradient(180deg, #f8e5ed 0%, #fff2f6 100%);
}

.bonus-section .section-title {
    color: var(--ink);
}

.bonus-section .section-title::after {
    background: var(--brand);
}

.about-author {
    background: linear-gradient(180deg, #f8e5ed 0%, #fff2f6 100%);
}

.benefit-card,
.exclusive-card,
.bonus-card,
.testimonial-card,
.plan-card,
.faq-item,
.author-content,
.guarantee-content,
.reforce-list-container,
.solution-section li {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.bonus-card {
    background: #ffffff;
    border-color: var(--line);
}

.bonus-image-container {
    background: #fffafb;
    border: 1px solid #f5e8ed;
}

.benefit-card:hover,
.exclusive-card:hover,
.bonus-card:hover,
.testimonial-card:hover,
.plan-card:hover {
    box-shadow: var(--shadow-lg);
}

.plan-card.popular {
    background: #ffffff;
    border-color: #d895af;
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    background: #c97898;
}

.premium-social-proof,
.video-callout-btn {
    background: #fff0f5;
    border-color: #efd3de;
    color: #8e4d68;
}

.what-you-get,
.testimonials,
.faq {
    background: #fdf7f9;
}

.exclusive-benefits,
.pricing-plans,
.solution-section,
.final-message {
    background: var(--paper) !important;
}

.guarantee {
    background: #edf8f4;
}

.total-bonus {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.footer {
    background: #594650;
}
