@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --rose: #C47D6A;
    --rose-lt: #F0DDD7;
    --clay: #8B4F3A;
    --cream: #FAF7F4;
    --sand: #EDE5DA;
    --sage: #7A9E8E;
    --sage-lt: #C2D8D0;
    --ink: #1C1917;
    --ink-60: rgba(28, 25, 23, 0.6);
    --white: #FFFFFF;

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;

    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 32px;
    --r-xl: 48px;
    --r-pill: 9999px;

    --shadow-sm: 0 2px 8px rgba(28, 25, 23, 0.06);
    --shadow-md: 0 8px 32px rgba(28, 25, 23, 0.10);
    --shadow-lg: 0 24px 64px rgba(28, 25, 23, 0.14);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.1;
    font-weight: 400;
    color: var(--ink);
}

h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
}

h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

h4 {
    font-size: 1.2rem;
}

p {
    font-size: 1.0625rem;
    color: var(--ink-60);
    line-height: 1.75;
}

.label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rose);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: var(--r-pill);
    cursor: pointer;
    border: none;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
    text-decoration: none;
}

.btn-primary {
    background: var(--rose);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(196, 125, 106, 0.35);
}

.btn-primary:hover {
    background: var(--clay);
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(139, 79, 58, 0.40);
}

.btn-outline {
    background: transparent;
    color: var(--rose);
    border: 1.5px solid var(--rose);
}

.btn-outline:hover {
    background: var(--rose);
    color: var(--white);
    transform: translateY(-2px);
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(44px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.055)
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(196, 125, 106, 0.45)
    }

    50% {
        box-shadow: 0 0 0 12px rgba(196, 125, 106, 0)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s !important;
}

.delay-2 {
    transition-delay: 0.30s !important;
}

.delay-3 {
    transition-delay: 0.45s !important;
}

.delay-4 {
    transition-delay: 0.60s !important;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

nav.scrolled {
    background: rgba(250, 247, 244, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.75rem 2.5rem;
    box-shadow: var(--shadow-sm);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--ink);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--rose);
}

.nav-cta {
    margin-left: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    z-index: 850;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--ink);
}

.mobile-menu a:hover {
    color: var(--rose);
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #F5EDE5 0%, #EDE0D4 40%, #DDD0C5 100%);
    padding: 8rem 2rem 4rem;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -80px;
    background: rgba(196, 125, 106, 0.18);
    animation: float 9s ease-in-out infinite;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    bottom: -60px;
    left: -60px;
    background: rgba(122, 158, 142, 0.14);
    animation: float 12s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    top: 30%;
    left: 15%;
    background: rgba(237, 229, 218, 0.8);
    animation: float 7s ease-in-out infinite 2s;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 125, 106, 0.25);
    border-radius: var(--r-pill);
    padding: 0.4rem 1.25rem;
    margin-bottom: 2rem;
    animation: fade-in 0.8s var(--ease) both;
}

.hero-eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rose);
    animation: pulse-dot 2s infinite;
}

.hero-h1 {
    font-size: clamp(3.8rem, 9vw, 7.5rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    animation: fade-up 1s 0.2s var(--ease) both;
}

.hero-h1 em {
    font-style: normal;
    color: var(--rose);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--ink-60);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    animation: fade-up 1s 0.4s var(--ease) both;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-up 1s 0.6s var(--ease) both;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2.5rem;
    animation: fade-up 1s 0.8s var(--ease) both;
}

.badge {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.35rem 1rem;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(196, 125, 106, 0.2);
    color: var(--ink);
}

.badge.urgency {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-60);
    animation: fade-in 1s 1.2s both;
}

.scroll-arrow {
    width: 20px;
    height: 10px;
    position: relative;
    animation: float 1.5s ease-in-out infinite;
}

.scroll-arrow::before,
.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 0;
    width: 12px;
    height: 2px;
    background: var(--rose);
    border-radius: 2px;
}

.scroll-arrow::before {
    left: 0;
    transform: rotate(45deg);
    transform-origin: left top;
}

.scroll-arrow::after {
    right: 0;
    transform: rotate(-45deg);
    transform-origin: right top;
}

@media (max-width: 768px) {
    #hero {
        padding-bottom: 8rem;
    }

    .scroll-hint {
        bottom: 1.5rem;
    }
}

/* ── SECTION GLOBAL ── */
.section {
    padding: 7rem 0;
}

.section-sm {
    padding: 4rem 0;
}

.section-dark {
    background: var(--ink);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.65);
}

.section-sand {
    background: var(--sand);
}

.section-rose {
    background: var(--rose-lt);
}

.section-header {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 4rem;
}

.section-header .label {
    margin-bottom: 1rem;
}

.section-header p {
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── PARA VOS SI ── */
.checks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.check-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid rgba(196, 125, 106, 0.12);
    border-radius: var(--r-md);
    padding: 1.5rem 1.75rem;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.check-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.check-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--rose);
    line-height: 1;
    flex-shrink: 0;
}

.check-item p {
    margin: 0;
    font-size: 0.96rem;
}

/* ── PILLARS ── */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pillar {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(196, 125, 106, 0.1);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.pillar:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
}

.pillar h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.pillar p {
    font-size: 0.93rem;
    margin: 0;
}

/* ── MODULES ── */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.module-card {
    background: var(--white);
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid rgba(196, 125, 106, 0.1);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.module-card-head {
    background: linear-gradient(135deg, var(--rose), var(--clay));
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.module-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    color: rgba(255, 255, 255, 0.35);
}

.module-name {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
}

.module-sign {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}

.module-card-body {
    padding: 1.25rem 1.5rem;
}

.module-card-body p {
    font-size: 0.9rem;
    margin: 0;
}

/* ── WEEKLY FLOW ── */
.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 3rem;
}

.flow-steps::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(to right, var(--rose), var(--sage));
}

.flow-step {
    text-align: center;
    padding: 0 1rem;
}

.flow-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.flow-step:nth-child(1) .flow-step-num {
    background: var(--rose);
}

.flow-step:nth-child(2) .flow-step-num {
    background: #B87260;
}

.flow-step:nth-child(3) .flow-step-num {
    background: var(--sage);
}

.flow-step:nth-child(4) .flow-step-num {
    background: var(--clay);
}

.flow-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.flow-step p {
    font-size: 0.88rem;
}

.flow-badge {
    display: inline-block;
    background: var(--rose-lt);
    color: var(--clay);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: var(--r-pill);
    margin-bottom: 0.75rem;
}

/* ── TESTIMONIOS ── */
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.testi-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-lg);
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.testi-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 125, 106, 0.4);
}

.testi-quote {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--rose);
    opacity: 0.35;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testi-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--white) !important;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testi-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rose) !important;
}

/* ── MODULE CARD TEXT FIX (dark section overrides p color) ── */
.section-dark .module-card-body p {
    color: var(--ink-60) !important;
}

.section-dark .module-card-body {
    background: var(--white);
}

/* ── PRICING ── */
.pricing-cards {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.price-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2.5rem 2rem;
    border: 2px solid rgba(196, 125, 106, 0.12);
    transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.price-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--rose-lt);
}

.price-card.featured {
    background: var(--sand);
    border-color: rgba(196, 125, 106, 0.28);
}

.price-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--rose);
}

.price-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.price-card>p {
    font-size: 0.93rem;
    color: var(--ink-60);
    margin-bottom: 1.75rem;
}

.price-divider {
    border: none;
    border-top: 1px solid rgba(196, 125, 106, 0.15);
    margin: 1.5rem 0;
}

/* Options inside a price card */
.price-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-option {
    background: var(--white);
    border: 1.5px solid rgba(196, 125, 106, 0.12);
    border-radius: var(--r-md);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.price-option:hover {
    border-color: var(--rose);
    box-shadow: var(--shadow-sm);
}

.price-option.highlight {
    border-color: var(--rose);
    background: var(--rose-lt);
}

.price-option-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-60);
    margin-bottom: 0.3rem;
}

.price-option-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--ink);
    line-height: 1.1;
}

.price-option-sub {
    font-size: 0.8rem;
    color: var(--ink-60);
    margin-top: 0.25rem;
}

.price-option-amount {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1;
    color: var(--rose);
    white-space: nowrap;
    text-align: right;
    flex-shrink: 0;
}

.price-option-amount small {
    font-size: 0.9rem;
    font-family: var(--font-body);
    display: block;
    color: var(--ink-60);
    font-weight: 400;
}

.price-card.featured .price-option {
    background: rgba(255, 255, 255, 0.65);
}

.includes-box {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 3rem;
    margin-top: 3rem;
    border: 1px solid rgba(196, 125, 106, 0.12);
}

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

.include-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--ink-60);
}

.include-item::before {
    content: '✦';
    color: var(--rose);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.22rem;
}

/* ── FACILITADORA ── */
.faci-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.faci-img-wrap {
    position: relative;
}

.faci-img-wrap img {
    width: 100%;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    transition: transform 0.6s var(--ease);
}

.faci-img-wrap img:hover {
    transform: scale(1.02);
}

.faci-img-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--rose-lt);
    background: linear-gradient(135deg, var(--rose), var(--cream));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.82rem;
    text-align: center;
    color: var(--white);
    font-style: italic;
    line-height: 1.3;
    padding: 1rem;
}

.faci-text .label {
    margin-bottom: 1rem;
}

.faci-text h2 {
    margin-bottom: 0.75rem;
}

.faci-creds {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
}

.faci-cred {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.93rem;
    color: var(--ink-60);
}

.faci-cred-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.faci-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sand);
    border-radius: var(--r-pill);
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
}

.social-pill:hover {
    background: var(--rose-lt);
    transform: translateY(-2px);
}

/* ── FAQ ── */
.faq-list {
    max-width: 760px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid rgba(196, 125, 106, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item.open {
    box-shadow: var(--shadow-md);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    transition: color 0.2s;
}

.faq-q:hover {
    color: var(--rose);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--rose-lt);
    color: var(--rose);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.35s var(--ease), background 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--rose);
    color: var(--white);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease), padding 0.3s;
}

.faq-a-inner {
    padding: 0 2rem 1.5rem;
    font-size: 0.95rem;
    color: var(--ink-60);
}

/* ── FINAL CTA ── */
#cta-final {
    background: linear-gradient(135deg, var(--ink) 0%, #2D1B14 100%);
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

#cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 50%, rgba(196, 125, 106, 0.18) 0%, transparent 65%);
}

.cta-final-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

#cta-final h2 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-style: italic;
    margin-bottom: 1.5rem;
}

#cta-final p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
}

.cta-urgency {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ── STICKY CTA ── */
.sticky-cta {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 800;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s;
    pointer-events: none;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.55);
    padding: 4rem 2rem;
    text-align: center;
}

footer .footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--rose);
    transition: color 0.2s;
}

footer a:hover {
    color: var(--white);
}

footer p {
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 2rem 0;
}

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }

    .faci-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width:768px) {
    nav {
        padding: 1rem 1.25rem;
    }

    nav.scrolled {
        padding: 0.75rem 1.25rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-h1 {
        font-size: clamp(2.8rem, 10vw, 4rem);
    }

    .hero-eyebrow {
        letter-spacing: 0.08em;
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }

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

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

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

    .flow-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .flow-steps::before {
        display: none;
    }

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

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

    .faci-img-accent {
        display: none;
    }

    .section {
        padding: 4.5rem 0;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .price-option {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-option-amount {
        text-align: left;
        margin-top: 0.5rem;
    }
}