:root {
    /* Palette Premium & Aesthetic */
    --color-bg-light: #FFF9FB;
    --color-bg-white: #FFFFFF;
    --color-primary: #D4AF37;
    --color-primary-dark: #B59020;
    --color-secondary: #FCE7F3;
    --color-accent: #BE185D;
    --color-dark-contrast: #2C1A21;
    /* Deep warm dark for contrast section */
    --color-text-main: #3E3E3E;
    --color-text-light: #777777;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #B59020 100%);
    --gradient-gold-hover: linear-gradient(135deg, #E5C048 0%, #FFF0C0 50%, #C6A131 100%);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 6rem;
    /* Increased spacing for airy feel */

    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.7;
    background-color: var(--color-bg-light);
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 240, 245, 0.5) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
    overflow-x: hidden;
}

/* Typography Editorial */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 2.5rem;
    line-height: 1.2;
}

/* Editorial Span Classes */
.editorial-italic {
    font-style: italic;
    font-weight: 400;
    font-size: 1.2em;
    font-family: var(--font-heading);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.editorial-gold {
    font-style: italic;
    font-weight: 400;
    font-size: 1.2em;
    font-family: var(--font-heading);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-family: var(--font-body);
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    position: relative;
    z-index: 2;
}

/* Glassmorphism Utility */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-glass);
}

/* Buttons Premium */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-gold);
    color: #584200;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-gold);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn:hover::after {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    background: var(--gradient-gold-hover);
}

.btn-lg {
    font-size: 1.1rem;
    padding: 1.4rem 3.5rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    filter: invert(72%) sepia(58%) saturate(463%) hue-rotate(5deg) brightness(91%) contrast(86%);
}

/* Hero */
.hero {
    padding: 6rem 0 4rem 0;
    background: radial-gradient(circle at 80% 20%, rgba(252, 231, 243, 0.6) 0%, transparent 50%);
    position: relative;
    overflow: visible;
}

/* Decorative Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.6;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #FFF0F5;
}

.blob-2 {
    bottom: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: #FFF5E6;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 320px;
}

.hero-image {
    flex: 1.2;
    min-width: 320px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: #2A2A2A;
}

.hero .editorial-italic,
.hero .editorial-gold {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: var(--color-primary);
    color: var(--color-primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    max-width: 90%;
}

.tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: #B59020;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-guarantee {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mockup-placeholder {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    background: #FCE7F3;
    border-radius: 20px 20px 20px 120px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-end;
    overflow: visible;
    transform: rotate(-4deg);
}

.mockup-placeholder img {
    max-width: 115%;
    margin-top: -80px;
    margin-bottom: 0;
}

@keyframes float {
    0% {
        transform: rotate(-4deg) translateY(0px);
    }

    50% {
        transform: rotate(-4deg) translateY(-15px);
    }

    100% {
        transform: rotate(-4deg) translateY(0px);
    }
}

/* Problem/Solution */
.problem-solution {
    text-align: center;
    padding: var(--spacing-lg) 0;
    background: white;
    position: relative;
}

.problem-solution h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.problem-solution .lead {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: #555;
    font-weight: 300;
}

/* Benefits - Dark Contrast Section */
.benefits {
    padding: var(--spacing-lg) 0;
    background: var(--color-dark-contrast);
    color: white;
    position: relative;
}

.benefits h2 {
    color: white;
}

.benefits .divider {
    background: var(--color-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    font-style: italic;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-card h3 {
    font-family: var(--font-body);
    font-weight: 500;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Modules - Overlapping Layout */
.modules {
    padding: var(--spacing-lg) 0;
    background: var(--color-bg-white);
}

.module-item {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 6rem;
    position: relative;
}

.module-item.reverse {
    flex-direction: row-reverse;
}

.module-text {
    flex: 1;
    min-width: 350px;
    padding: 4rem;
    border-radius: 20px;
    z-index: 2;
    margin-right: -50px;
}

.module-item.reverse .module-text {
    margin-right: 0;
    margin-left: -50px;
}

.module-img {
    flex: 1.2;
    min-width: 350px;
    z-index: 1;
}

.module-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.module-text h3 {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.8rem;
    color: var(--color-text-main);
}

.module-number {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.module-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.module-text li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.module-text li i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

/* Bonuses */
.bonuses {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background-color: #FFFBFC;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.12'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    padding: 3rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    /* Clean white card */
    transition: 0.3s;
    border-bottom: 4px solid var(--color-primary);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.bonus-tag {
    background: var(--color-dark-contrast);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* Offer */
.offer {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(180deg, #FFF9FB 0%, #FFFFFF 100%);
}

.offer-box {
    max-width: 650px;
    margin: 0 auto;
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    background: white;
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.15);
}

.offer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
}

.offer-pre {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.strike {
    text-decoration: line-through;
    color: #AAA;
    font-size: 1.1rem;
}

.price-installment {
    margin: 1rem 0;
}

.installment-text {
    font-size: 1.2rem;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 0.25rem;
}

.price {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding: 0 0.2em;
}

.currency {
    font-size: 2.5rem;
    vertical-align: top;
    font-weight: 300;
}

.value {
    font-size: 5.6rem;
    line-height: 1.1;
    font-family: var(--font-heading);
    font-weight: 700;
}

.payment-divider {
    margin: 1.5rem 0 0.5rem;
    font-size: 1rem;
    color: var(--color-text-light);
}

.price-cash {
    margin-bottom: 2rem;
}

.price-cash .currency {
    font-size: 2rem;
}

.price-cash .value {
    font-size: 4.2rem;
}

.secure-icons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-seal {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.guarantee-seal img {
    width: 120px;
    height: auto;
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-lg) 0;
    background: white;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-primary);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

.stars {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #DDD;
    object-fit: cover;
}

.user-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.user-role {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* FAQ */
.faq {
    padding: var(--spacing-lg) 0;
    background: var(--color-bg-white);
}

.faq .section-header {
    text-align: center;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.faq-item summary {
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 2rem 1.5rem 2rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
    margin-top: 0;
    padding-top: 1rem;
}

/* Footer */
footer {
    background: var(--color-dark-contrast);
    color: #EEE;
    padding: 3rem 0;
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    opacity: 0.6;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 4rem;
    background: var(--color-bg-white);
    min-height: 100vh;
}

.legal-page h1 {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.legal-page .last-update {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.legal-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {

    .navbar .container {
        flex-direction: column;
        gap: 0.8rem;
    }

    .logo {
        justify-content: center;
    }

    .navbar .btn-sm {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }

    .module-item,
    .module-item.reverse {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .module-text,
    .module-item.reverse .module-text {
        margin: 0;
        width: 100%;
        min-width: auto;
        padding: 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding-top: 3rem;
        text-align: center;
    }

    .hero .btn-lg {
        white-space: nowrap;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .rating-badge,
    .hero-guarantee {
        justify-content: center;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-image {
        order: -1;
        margin-top: 3.5rem;
        margin-bottom: 0.5rem;
        padding: 0 2rem;
    }

    .hero-text {
        padding: 0 1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-image::after {
        left: 0;
        right: 0;
        width: calc(100% - 1rem);
        margin: 0 auto;
    }

    .mockup-placeholder {
        max-width: 90%;
        margin: 0 auto;
    }

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

    .offer-box {
        padding: 3rem 1.5rem;
    }

    .offer .btn-block {
        max-width: 280px;
        margin: 0 auto;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .secure-icons {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* --- Reference Features Implementation --- */

/* 1. Social CTA & Ratings */
.cta-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.cta-group.center {
    justify-content: center;
    margin-top: 2rem;
}

.btn-social-outline {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.7rem 1.8rem;
    background: var(--color-bg-white);
    border: 1.5px solid var(--color-primary);
    border-radius: 50px;
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
}

.btn-social-outline:hover {
    border-color: var(--color-primary-dark);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-social-outline .avatars {
    display: flex;
    padding-right: 1.2rem;
    border-right: 1px solid rgba(212, 175, 55, 0.3);
}

.btn-social-outline .avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-social-outline .avatars img:first-child {
    margin-left: 0;
}

.social-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.rating-stars {
    color: #F59E0B;
    /* Amber for stars */
}

/* Hero Image Frame */
.hero-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border-radius: 20px 20px 20px 120px;
    border: 2px solid var(--color-primary);
    z-index: 0;
    opacity: 0.6;
}

/* 3. Marquee Strip */
.marquee {
    background: var(--color-dark-contrast);
    color: white;
    padding: 0.8rem 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.marquee-item {
    display: flex;
    align-items: center;
    padding: 0 3rem;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.marquee-item i {
    color: var(--color-primary);
    margin-left: 3rem;
    font-size: 0.9rem;
    transform: rotate(45deg);
    /* Stylized + */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}