/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4145a;
    --primary-dark: #a01045;
    --secondary-color: #1a1a1a;
    --accent-color: #ffd700;
    --text-color: #2d2d2d;
    --text-light: #666;
    --bg-light: #fafafa;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 18px;
    background: #fff;
    overflow-x: hidden;
}

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

/* Barra de Urgência */
.urgency-bar {
    background: linear-gradient(135deg, #d4145a 0%, #a01045 100%);
    color: white;
    padding: 15px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.urgency-bar p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

#countdown {
    font-weight: 700;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: 4px;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 20, 90, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #e0e0e0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #ccc;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

/* Botões CTA */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 22px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(212, 20, 90, 0.4);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 20, 90, 0.5);
}

.cta-button.pulse {
    animation: pulse 2s infinite, fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(212, 20, 90, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(212, 20, 90, 0.6);
    }
}

.cta-arrow {
    margin-left: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-subtext {
    margin-top: 15px;
    font-size: 1rem;
    color: #aaa;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Story Section */
.story {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
    line-height: 1.3;
}

.story-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
}

.story-text p {
    margin-bottom: 25px;
}

.story-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.story-text em {
    font-style: italic;
    color: var(--text-light);
}

.highlight-text {
    background: linear-gradient(135deg, rgba(212, 20, 90, 0.1) 0%, rgba(160, 16, 69, 0.1) 100%);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin: 40px 0;
}

/* Pain Points */
.pain-points {
    padding: 100px 0;
    background: white;
}

.pain-list {
    max-width: 900px;
    margin: 50px auto;
    display: grid;
    gap: 20px;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pain-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.pain-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.pain-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pain-conclusion {
    text-align: center;
    max-width: 700px;
    margin: 50px auto 0;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Product Intro */
.product-intro {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.section-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
}

.product-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #e0e0e0;
    line-height: 1.4;
}

.product-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.9;
}

.product-description p {
    margin-bottom: 25px;
}

/* Modules */
.modules {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.module-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.module-card:hover::before {
    transform: scaleX(1);
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.module-card.featured {
    background: linear-gradient(135deg, rgba(212, 20, 90, 0.05) 0%, rgba(160, 16, 69, 0.05) 100%);
    border-color: var(--primary-color);
}

.module-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.module-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.module-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.module-description p {
    margin-bottom: 15px;
}

.module-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-disclaimer {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-color);
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-light);
}

.testimonial-author strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Main */
.cta-main {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 40px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.cta-content p {
    margin-bottom: 20px;
}

.price-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    margin: 50px auto;
    max-width: 500px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.price-old {
    font-size: 2rem;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 10px;
}

.price-current {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.price-description {
    font-size: 1.1rem;
    color: #ccc;
}

.price-comparison {
    font-size: 1.1rem;
    margin: 30px 0;
    color: #ccc;
}

.price-reason {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #ccc;
}

.cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 25px 60px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(212, 20, 90, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 20, 90, 0.5);
}

.cta-button-large.pulse {
    animation: pulse 2s infinite;
}

.cta-subtext-final {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #aaa;
}

/* Guarantee */
.guarantee {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.guarantee-content {
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-badge {
    margin: 40px 0;
}

.badge-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(212, 20, 90, 0.3);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.badge-text {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.3;
    animation: rotate-reverse 20s linear infinite;
}

@keyframes rotate-reverse {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

.guarantee-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.guarantee-highlight {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: white;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

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

.faq-question:hover {
    background: rgba(212, 20, 90, 0.05);
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

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

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

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

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Final Urgency */
.final-urgency {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.urgency-content {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.urgency-content p {
    margin-bottom: 20px;
}

.urgency-highlight {
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: 700;
}

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

.footer p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .hero-description {
        font-size: 1.1rem;
    }

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

    .section-title-large {
        font-size: 2.5rem;
    }

    .product-subtitle {
        font-size: 1.3rem;
    }

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

    .price-current {
        font-size: 3.5rem;
    }

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

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

    .cta-button,
    .cta-button-large {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    body {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .urgency-bar p {
        font-size: 14px;
    }

    #countdown {
        font-size: 15px;
    }

    .price-box {
        padding: 30px 20px;
    }
}

