﻿/* Reset e ConfiguraÃ§Ãµes BÃ¡sicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    opacity: 1;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cores e VariÃ¡veis */
:root {
    --primary-blue: #8B5CF6;
    --primary-green: #10B981;
    --dark-blue: #7C3AED;
    --dark-green: #059669;
    --light-gray: #f8fafc;
    --dark-gray: #1e293b;
    --yoga-purple: #A855F7;
}

/* 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);
    }
}

/* Urgency Banner */
.urgency-banner {
    background: #10B981;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    z-index: 100;
}

.urgency-text {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    margin: 0;
}

/* Hero Section */
.hero {
    background: white;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #333;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #4b5563;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: #374151;
    font-weight: 700;
}

.bonus-text {
    color: #10B981;
    font-weight: 800;
}

.video-wrapper {
    max-width: 350px;
    margin: 0 auto 30px auto;
    position: relative;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    cursor: pointer;
    border-radius: 12px;
    transition: opacity 0.3s;
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.play-button-icon i {
    font-size: 24px;
    color: #333;
    margin-left: 5px;
}

.play-text {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Pulsing animation */
@keyframes pulse-custom {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(21, 185, 129, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(21, 185, 129, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(21, 185, 129, 0);
    }
}

.cta-button {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    animation: pulse-custom 2s infinite;
    letter-spacing: 1px;
}

/* Sections General */
section {
    padding: 80px 0;
    width: 100%;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1a1a1a;
    position: relative;
}

.section-title::after {
    content: '';
    width: 100px;
    height: 5px;
    background: var(--primary-green);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Grids */
.benefits-grid,
.exclusive-grid,
.bonus-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card,
.exclusive-card,
.bonus-card,
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.bonus-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bonus-image {
    height: 200px;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f8fafc;
}

.bonus-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.bonus-card p {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-height: 4.8em;
    /* Garante que 3 linhas de texto caibam e alinhem o box */
}

.bonus-value {
    color: #EF4444;
    text-decoration: line-through;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.total-bonus {
    text-align: center;
    margin-top: 40px;
    background: var(--primary-green);
    color: white;
    padding: 20px;
    border-radius: 12px;
}

.line-through {
    text-decoration: line-through;
    opacity: 0.8;
}

.free {
    color: #FBBF24;
    font-weight: 800;
    font-size: 1.2rem;
}

/* Pricing */
.pricing-plans {
    background: #f1f5f9;
}

.plans-timer {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.timer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.timer-icon {
    font-size: 1.5rem;
}

.timer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4b5563;
}

.countdown-plans {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.time-unit.red-unit {
    background: #ef4444;
    color: white;
    padding: 10px;
    border-radius: 12px;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.time-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.time-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: none;
    opacity: 0.9;
}

.plans-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.plan-card.premium {
    border: 2px solid #8B5CF6;
    background: #faf5ff;
}

.plan-title-card {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.purple-text {
    color: #8B5CF6;
}

.price-container-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.old-price-card {
    color: #ef4444;
    text-decoration: line-through;
    font-size: 1.2rem;
    font-weight: 700;
}

.new-price-card {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a1a;
}

.savings-badge-card {
    background: #dcfce7;
    color: #166534;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.social-proof-badge-card {
    background: #f3e8ff;
    color: #7c3aed;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    width: 100%;
}

.plan-features-card {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features-card li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.plan-features-card i.fa-check {
    color: #10b981;
    margin-top: 4px;
}

.bonus-item-card i.fa-gift {
    color: #db2777;
    margin-top: 4px;
}

.plan-button-wrapper-card {
    display: flex;
    justify-content: center;
    width: 100%;
}

.plan-button-card {
    display: inline-block;
    background: #15803d;
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 0 #166534;
    text-align: center;
    min-width: 280px;
    animation: pulse 2s infinite;
}

.plan-button-card:hover {
    background: #166534;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #14532d;
    animation-play-state: paused;
}

.green-text-small {
    color: #16a34a;
    font-weight: 700;
    font-size: 0.85rem;
}

.plan-subtitle-card {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 20px;
    padding: 0 10px;
}

.new-price-card-basic {
    font-size: 2.8rem;
    font-weight: 900;
    color: #000;
}

.warning-badge-card {
    background: #fee2e2;
    color: #ef4444;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.basic-features li {
    color: #6b7280;
}

.basic-features i.fa-check {
    color: #10b981;
}

.no-benefit-card {
    color: #9ca3af !important;
}

.no-benefit-card i.fa-times {
    color: #ef4444;
    margin-top: 4px;
}

.plan-button-basic-card {
    display: inline-block;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: 2px solid #000;
    text-align: center;
    min-width: 280px;
}

.plan-button-basic-card:hover {
    background: #f3f4f6;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* Testimonials & Author */
.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.about-author {
    background: #fff;
    padding: 60px 0;
}

.author-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.section-title-card {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.author-name {
    font-size: 1.5rem;
    color: #8B5CF6;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-subtitle-card {
    font-size: 1rem;
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
}

.author-stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 30px;
    padding: 0 10px;
}

.stat-item {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #10B981;
    margin-bottom: 5px;
}

.stat-number-green {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 5px;
    line-height: 1.1;
}

.stat-desc {
    font-size: 0.65rem;
    font-weight: 700;
    color: #666;
    line-height: 1.3;
    text-transform: uppercase;
}

.stat-desc-green {
    font-size: 0.65rem;
    font-weight: 700;
    color: #059669;
    line-height: 1.3;
    text-transform: uppercase;
}

.author-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    color: #444;
    margin-bottom: 30px;
    padding: 0 10px;
}

.author-avatar-wrapper {
    display: flex;
    justify-content: center;
}

.author-avatar {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 4px solid #8B5CF6;
    object-fit: cover;
    padding: 3px;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}

/* Guarantee */
.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    text-align: center;
}

/* Notification */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 250px;
    pointer-events: none;
}

.notification {
    background: white;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-green);
    margin-bottom: 10px;
    animation: fadeInUp 0.5s ease;
    font-size: 0.85rem;
    pointer-events: auto;
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    display: flex;
}

.popup-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.popup-badge {
    background: #FEF3C7;
    color: #D97706;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.popup-title {
    font-size: 1.8rem;
    color: #DC2626;
    margin-bottom: 10px;
    font-weight: 800;
}

.popup-price {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
}

.popup-old-price {
    text-decoration: line-through;
    color: #999;
    display: block;
}

.popup-new-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-green);
    display: block;
}

.popup-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding: 0;
}

.popup-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-btn {
    text-decoration: none;
    padding: 18px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    display: block;
}

.popup-btn-accept {
    background: var(--primary-green);
    color: white;
}

.popup-btn-decline {
    color: #999;
    font-size: 0.9rem;
    border: none;
    background: none;
    cursor: pointer;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 40px 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .author-content {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* SeÃ§Ã£o O Que VocÃª Vai Receber */
.what-you-get {
    padding: 60px 0;
    background: #fdf6f4;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.card-subtitle {
    font-weight: 700;
    color: #4b5563;
    margin-bottom: 15px;
}

.card-checklist {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 15px;
}

.card-checklist li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #4b5563;
}

/* SeÃ§Ã£o Por Que Escolher */
.benefits-libras {
    padding: 60px 0;
    background: white;
}

.benefits-libras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.benefit-libras-item {
    text-align: center;
    padding: 20px;
}

.benefit-libras-item i {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 20px;
}

.benefit-libras-item h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.benefit-libras-item p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

/* Seção de Bônus Estilo Libras */
.bonus-libras-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.bonus-libras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.bonus-card-libras {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 0 0 30px 0;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.bonus-card-libras:hover {
    transform: translateY(-10px);
}

.bonus-img-container {
    width: 100%;
    height: 250px;
    background: #0d6e6e;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bonus-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bonus-icon-circle {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 20px;
    position: relative;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bonus-icon-circle i {
    color: #e91e63;
    font-size: 24px;
}

.bonus-card-libras h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding: 0 20px;
}

.bonus-card-libras p {
    color: #666;
    font-size: 1rem;
    padding: 0 20px;
    margin-bottom: 25px;
    line-height: 1.5;
    flex-grow: 1;
}

.price-tag-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f0fdf4;
    color: #166534;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    margin: 0 auto;
    width: fit-content;
    border: 1px solid #bbfcce;
}

.old-price-bonus {
    text-decoration: line-through;
    color: #94a3b8;
    font-weight: 600;
}

.free-text-bonus {
    color: #10b981;
    font-weight: 900;
}

.bonus-summary-banner {
    background: #10b981;
    color: white;
    padding: 20px;
    border-radius: 16px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-summary-banner .strike {
    text-decoration: line-through;
    opacity: 0.8;
    font-weight: 600;
}

.bonus-summary-banner .free-highlight {
    color: #fef08a;
    /* Amarelo vibrante para o GRÁTIS HOJE */
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Cores dos Checklists */
.plan-features-card i.fa-check-circle,
.plan-features-card i.fa-check,
.benefits-libras i.fa-check-circle,
.benefits-libras i.fa-check {
    color: #22c55e !important;
}