:root {
    /* Color Palette - Premium Spiritual Aesthetic */
    --primary-deep-red: #8b0000;
    /* Darker, richer red */
    --primary-gold: #c5a059;
    --secondary-gold: #e2c275;
    --accent-green: #2ecc71;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-creme: #fdfbf7;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-creme);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--primary-gold);
}

.text-red {
    color: var(--primary-deep-red);
}

.uppercase {
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
    border: none;
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-deep-red), #b22222);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 0, 0, 0.3);
}

.btn-large {
    width: 100%;
    max-width: 400px;
    font-size: 1.3rem;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-deep-red);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

.hero {
    padding-top: 40px;
}

/* Animations */
/* Swiper Carousel Customization */
.swiper {
    width: 100%;
    padding-bottom: 50px !important;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.swiper-slide-active {
    transform: scale(1.1);
}

.swiper-pagination-bullet-active {
    background: var(--primary-gold) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-gold) !important;
}

.social-proof {
    background-color: var(--bg-white);
}

.social-proof .photo-item {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.photo-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.photo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Narrative Section */
.narrative {
    background: linear-gradient(to bottom, var(--bg-creme), var(--bg-white));
    position: relative;
}

.narrative::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 50px;
    font-family: serif;
    font-size: 20rem;
    color: rgba(197, 160, 89, 0.05);
}

.narrative-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    text-align: justify;
}

.narrative-content p {
    margin-bottom: 2rem;
}

.narrative-highlight {
    background: linear-gradient(transparent 70%, var(--secondary-gold) 70%);
    font-weight: 700;
}

/* Benefits Grid */
.benefits {
    background-color: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--bg-creme);
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-gold);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-deep-red);
}

/* Bonus Sections */
.bonus-section {
    background-color: var(--bg-creme);
}

.bonus-card {
    background: var(--bg-white);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.bonus-image {
    flex: 1;
    min-width: 300px;
    background: var(--primary-deep-red);
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bonus-info {
    flex: 1.5;
    padding: 50px;
    text-align: left;
}

.bonus-tag {
    background: var(--primary-gold);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.bonus-value {
    color: var(--primary-deep-red);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.bonus-free {
    color: var(--accent-green);
    font-weight: 800;
    font-size: 1.2rem;
}

/* Pricing Cards */
.offer {
    background-color: var(--bg-white);
    padding-bottom: 100px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: var(--bg-creme);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.pricing-card.featured {
    border-color: var(--primary-gold);
    transform: scale(1.05);
    background: white;
    z-index: 1;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.price-old {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 1.2rem;
}

.price-main {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-deep-red);
    margin: 1rem 0;
}

.price-installments {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* FAQ Accordion */
.faq {
    background-color: var(--bg-creme);
    color: #d63384;
    /* Deep Pink/Rose color */
}

.faq h2 {
    color: #d63384;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #fdfbf7;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 0.95rem;
    color: #666;
}

.faq-item.active .faq-answer {
    padding: 20px 30px;
    max-height: 200px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 60px 0 30px;
    font-size: 0.9rem;
}

footer h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.piracy-warning {
    border: 1px solid #444;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 0.8rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem !important;
    }

    .hero-content {
        flex-direction: column-reverse;
    }

    .pricing-card.featured {
        transform: scale(1);
        margin: 20px 0;
    }

    .benefit-card {
        padding: 30px;
    }

    .bonus-info {
        padding: 30px;
    }

    section {
        padding: 60px 0;
    }

    .announcement-bar {
        font-size: 0.8rem;
    }
}

/* Final CTA Section */
.final-cta {
    background-color: var(--bg-white);
    padding: 100px 0;
    padding-top: 0;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.countdown-box {
    background: var(--primary-deep-red);
    color: white;
    padding: 15px;
    border-radius: 12px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2);
}

.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
}

.cta-banner {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-banner img {
    width: 100%;
    display: block;
}

.final-cta-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Video Responsive Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--primary-gold);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

/* Social Proof Notification */
.sp-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 280px;
    pointer-events: none;
}

.sp-notification.active {
    transform: translateX(0);
}

.sp-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-deep-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sp-content {
    font-size: 0.8rem;
    color: var(--text-dark);
}

.sp-content strong {
    display: block;
    color: var(--primary-deep-red);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .sp-notification {
        bottom: 15px;
        left: 15px;
        max-width: 240px;
        padding: 8px 12px;
    }

    .sp-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .sp-content {
        font-size: 0.75rem;
    }
}