/* ============================================
   QUARESMA COM MARIA — Design System
   Premium spiritual aesthetic with Catholic 
   liturgical colors (purple, gold, olive)
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Colors */
    --bg-primary: #0a0a12;
    --bg-secondary: #0f0f1a;
    --bg-card: rgba(20, 18, 32, 0.85);
    --bg-card-hover: rgba(30, 26, 50, 0.9);

    /* Liturgical Purple */
    --purple-deep: #2d1854;
    --purple-mid: #4a2c7a;
    --purple-light: #6b3fa0;
    --purple-glow: rgba(107, 63, 160, 0.3);

    /* Gold */
    --gold-primary: #c9a84c;
    --gold-light: #e4c778;
    --gold-dark: #a68932;
    --gold-glow: rgba(201, 168, 76, 0.25);

    /* Olive/Green */
    --olive: #6b7f3e;
    --olive-light: #8fa85a;
    --olive-dark: #4a5a2a;

    /* Text */
    --text-primary: #f0ece4;
    --text-secondary: rgba(240, 236, 228, 0.7);
    --text-muted: rgba(240, 236, 228, 0.45);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
    --gradient-purple: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
    --gradient-hero: linear-gradient(180deg,
            rgba(10, 10, 18, 0.2) 0%,
            rgba(10, 10, 18, 0.6) 40%,
            var(--bg-primary) 100%);

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Sizing */
    --container-width: 1100px;
    --section-padding: 100px 0;
    --border-radius: 16px;
    --border-radius-sm: 8px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 120%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* --- Utility Classes --- */
.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Animations --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes scroll-down {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(8px);
    }
}

@keyframes gentle-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.delay-4 {
    animation-delay: 0.6s;
}

.delay-5 {
    animation-delay: 0.8s;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 40px;
    overflow: hidden;
}

.hero-split {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    align-items: center;
    width: 100%;
}

.hero-right {
    display: block;
}

/* Background image — full width */
.hero-image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: 70% 20%;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(10, 10, 18, 1) 0%,
            rgba(10, 10, 18, 0.95) 30%,
            rgba(10, 10, 18, 0.6) 55%,
            rgba(10, 10, 18, 0.3) 75%,
            rgba(10, 10, 18, 0.15) 100%);
    z-index: 2;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(45, 24, 84, 0.5), transparent),
        radial-gradient(ellipse 60% 50% at 30% 70%, rgba(107, 63, 160, 0.15), transparent),
        radial-gradient(ellipse 50% 40% at 70% 80%, rgba(201, 168, 76, 0.1), transparent),
        var(--bg-primary);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse-glow 8s ease-in-out infinite;
}

.hero-orb--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, var(--purple-glow), transparent);
}

.hero-orb--2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    background: radial-gradient(circle, var(--gold-glow), transparent);
    animation-delay: 3s;
}

.hero-orb--3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(107, 127, 62, 0.15), transparent);
    animation-delay: 5s;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    padding-right: 40px;
}

.hero-icon {
    margin-bottom: 24px;
}

.icon-rose {
    font-size: 3rem;
    display: inline-block;
    animation: float 4s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 36px;
    letter-spacing: 0.02em;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    height: 1px;
    width: 200px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.divider-cross {
    color: var(--gold-primary);
    font-size: 1.5rem;
    opacity: 0.7;
}

.hero-description {
    font-size: 1.35rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 0 40px;
}

/* --- CTA Button --- */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 30px var(--gold-glow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.3) 45%,
            rgba(255, 255, 255, 0.3) 55%,
            transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
}

.cta-button--large {
    padding: 22px 48px;
    font-size: 1rem;
}

.cta-button--plan {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
}

.cta-button--featured {
    background: linear-gradient(135deg, #c9a84c, #e4c778, #c9a84c);
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(201, 168, 76, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 3px;
    animation: scroll-down 1.5s ease-in-out infinite;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-section {
    padding: 80px 0 100px;
    background: var(--bg-primary);
}

.intro-wrapper {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.intro-lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 48px;
}

.intro-highlight {
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--border-radius);
    padding: 36px 40px;
    position: relative;
    margin-bottom: 56px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.highlight-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-gold);
    border-radius: 4px 0 0 4px;
}

.intro-highlight p {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
}

.intro-distinction {
    text-align: center;
}

.distinction-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-style: italic;
}

.distinction-emphasis {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    line-height: 1.3;
}

/* ============================================
   WHAT IS SECTION
   ============================================ */
.what-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.section-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.section-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.section-glow--1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    background: var(--purple-glow);
    opacity: 0.5;
}

.section-glow--2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -80px;
    background: var(--gold-glow);
    opacity: 0.4;
}

.section-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.tag-icon {
    font-size: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-primary);
    max-width: 750px;
    margin: 0 auto 24px;
}

.section-subtitle-box {
    max-width: 500px;
    margin: 0 auto;
}

.section-subtitle-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
}

.subtitle-emphasis {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 4px;
    font-style: normal !important;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--border-radius);
    padding: 36px 32px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card--featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(45, 24, 84, 0.4), rgba(20, 18, 32, 0.9));
    border-color: rgba(201, 168, 76, 0.2);
    text-align: center;
    padding: 48px 40px;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.benefit-author {
    font-size: 0.9rem;
    color: var(--gold-primary);
    font-style: italic;
    margin-bottom: 16px;
}

.benefit-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   COMPANION SECTION
   ============================================ */
.companion-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.companion-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.companion-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.companion-orb--1 {
    width: 350px;
    height: 350px;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple-glow);
    opacity: 0.4;
}

.companion-orb--2 {
    width: 250px;
    height: 250px;
    bottom: -60px;
    right: -40px;
    background: var(--gold-glow);
    opacity: 0.3;
}

.companion-wrapper {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}


/* Override center alignment for this split layout */
.companion-wrapper .companion-icon {
    margin-left: 0;
    margin-right: auto;
}

.companion-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.companion-image-inner {
    position: relative;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.companion-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.1);
}

.companion-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 10, 18, 0.8));
    pointer-events: none;
}

@media (max-width: 900px) {
    .companion-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .companion-wrapper .companion-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .companion-image-inner {
        max-width: 400px;
        margin: 0 auto;
    }
}

.companion-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    animation: float 5s ease-in-out infinite;
}

.companion-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}

.companion-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.companion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.companion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 16px 24px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.companion-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.companion-star {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.companion-promise {
    margin-top: 8px;
}

.companion-promise p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-style: italic;
}

.promise-emphasis {
    font-size: 1.5rem !important;
    color: var(--text-primary) !important;
    font-weight: 600;
    font-style: normal !important;
    margin-top: 8px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.pricing-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.pricing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.pricing-orb--1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -150px;
    background: var(--purple-glow);
    opacity: 0.3;
}

.pricing-orb--2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
    background: var(--gold-glow);
    opacity: 0.25;
}

.pricing-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--border-radius);
    padding: 40px 36px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card--featured {
    border-color: rgba(201, 168, 76, 0.35);
    background: linear-gradient(180deg, rgba(45, 24, 84, 0.3), var(--bg-card));
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.08);
}

.pricing-featured-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--bg-primary);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.pricing-badge {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.plan-extra {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold-light);
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.pricing-includes {
    margin-bottom: 16px;
}

.includes-label {
    font-size: 0.9rem;
    color: var(--gold-primary);
    font-weight: 600;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(240, 236, 228, 0.06);
}

.pricing-card:not(.pricing-card--featured) .pricing-features li {
    border-bottom: 1px solid rgba(240, 236, 228, 0.3);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    flex-shrink: 0;
    font-size: 0.9rem;
}

.pricing-extra-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 28px;
    line-height: 1.6;
}

.pricing-price {
    margin-bottom: 28px;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: -50px;
}

.price-value-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-cents {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.price-installment {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: -25px;
}

.installment-prefix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-full {
    display: block;
    margin-top: 1px;
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ============================================
   FOR WHO SECTION
   ============================================ */
.for-who-section {
    padding: 80px 0 100px;
    background: var(--bg-secondary);
}

.for-who-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.for-who-content {
    margin-top: 0;
}

.for-who-text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.for-who-text:last-child {
    margin-bottom: 0;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.final-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.final-cta-orb--1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple-glow);
    opacity: 0.4;
}

.final-cta-orb--2 {
    width: 350px;
    height: 350px;
    bottom: -150px;
    left: 30%;
    background: var(--gold-glow);
    opacity: 0.3;
}

.final-cta-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    animation: float 5s ease-in-out infinite;
}

.final-cta-lead {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 12px;
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 40px;
}

.final-guarantees {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 40px 0;
    background: var(--bg-primary);
    border-top: 1px solid rgba(240, 236, 228, 0.06);
}

.footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
    }

    .hero {
        min-height: auto;
        padding: 0 0 40px;
        flex-direction: column;
    }

    .hero-split {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .hero-content {
        text-align: center;
        padding: 0 20px 0;
    }

    .hero-image-bg {
        position: relative;
        inset: auto;
        width: 100%;
        height: 30vh;
        z-index: 1;
        background-position: 85% 15%;
    }

    .hero-image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 30vh;
        background: linear-gradient(180deg,
                rgba(10, 10, 18, 0) 0%,
                rgba(10, 10, 18, 0) 40%,
                rgba(10, 10, 18, 0.7) 75%,
                rgba(10, 10, 18, 1) 100%);
        z-index: 2;
    }

    .hero-bg {
        display: none;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card--featured {
        grid-column: 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .companion-item {
        padding: 14px 18px;
        font-size: 0.92rem;
    }

    .cta-button {
        padding: 16px 28px;
        font-size: 0.85rem;
    }

    .cta-button--large {
        padding: 18px 32px;
        font-size: 0.9rem;
    }

    .intro-highlight {
        padding: 28px 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .final-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-divider::before,
    .hero-divider::after {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .companion-title {
        font-size: 1.6rem;
    }

    .pricing-name {
        font-size: 1.5rem;
    }

    .price-amount,
    .price-cents {
        font-size: 2.8rem;
    }

    .price-label {
        margin-bottom: -10px;
    }

    .price-installment {
        margin-bottom: -5px;
    }

    .cta-button {
        padding: 14px 22px;
        font-size: 0.8rem;
        gap: 8px;
    }
}