/* ═══════════════════════════════════════════════════════════
   ALMA GÊMEA — Redesign Premium
   Two Souls Animation, Glassmorphism, Poppins Typography
   ═══════════════════════════════════════════════════════════ */

/* ── RESET & CUSTOM PROPERTIES ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Dreamy Palette based on Dribbble Ref */
    --bg-dark: #0b061a;
    --bg-dream: #150b2e;
    --bg-dream-soft: #2d1b4e;

    --purple-deep: #4c1d95;
    --purple-mid: #7c3aed;
    --purple-vivid: #a855f7;
    --purple-accent: #c084fc;
    --pink-glow: #e879f9;
    --cyan-glow: #22d3ee;

    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --ff-poppins: "Poppins", sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --grad-primary: linear-gradient(
        135deg,
        var(--purple-accent),
        var(--purple-mid)
    );
    --grad-secondary: linear-gradient(
        135deg,
        var(--pink-glow),
        var(--purple-vivid)
    );
    --grad-accent: linear-gradient(
        135deg,
        var(--cyan-glow),
        var(--purple-vivid)
    );
}

html {
    scroll-behavior: smooth;
}

html, body {
    font-family: var(--ff-poppins);
    color: var(--text-primary);
    background: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

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

.mobile-break {
    display: none;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h2 em, h1 em {
    font-style: italic;
    background: var(--grad-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyebrow {
    display: inline-block;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pink-glow);
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}
.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 12px auto 0;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--grad-primary);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ── GLASSMORPHISM UTILITIES ── */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

/* ── NAV ── */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
.main-nav.scrolled {
    background: rgba(11, 6, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
}
.nav-center {
    display: flex;
    gap: 32px;
}
.nav-center a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}
.nav-center a:hover {
    color: var(--pink-glow);
}
.nav-cta-btn {
    padding: 10px 24px;
    background: var(--grad-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}
.nav-cta-btn:hover {
    transform: scale(1.05);
}

/* ── SECTIONS BASE ── */
.section {
    padding: 100px 0;
    position: relative;
}
.section-dark {
    background: var(--bg-dark);
}
.section-dreamy {
    background: linear-gradient(
        180deg,
        var(--bg-dark) 0%,
        var(--bg-dream-soft) 100%
    );
}

/* ═══════════════════════════════════════════
   HERO / TWO SOULS ANIMATION
   ═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(
        circle at center,
        var(--bg-dream) 0%,
        var(--bg-dark) 80%
    );
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 6, 26, 0.3);
    z-index: 2;
}

/* The Orchestration Container */
.two-souls-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

/* Individual Souls */
.soul {
    position: absolute;
    width: 35vw;
    height: 35vw;
    max-width: 400px;
    max-height: 400px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.soul-1 {
    background: var(--pink-glow);
    animation-name: soul1Approach;
}

.soul-2 {
    background: var(--cyan-glow);
    animation-name: soul2Approach;
}

/* Pulse / Fusion Glow in the center */
.fusion-glow {
    position: absolute;
    width: 20vw;
    height: 20vw;
    max-width: 300px;
    max-height: 300px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        var(--purple-accent) 0%,
        transparent 70%
    );
    filter: blur(40px);
    opacity: 0;
    animation: fusionPulse 12s infinite alternate ease-in-out;
}

/* Keyframes for Two Souls */
@keyframes soul1Approach {
    0% {
        transform: translate(-40vw, -20vh) scale(0.8);
        opacity: 0.4;
    }
    50% {
        transform: translate(-10vw, 5vh) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: translate(5vw, 0) scale(1);
        opacity: 0.8;
    }
}
@keyframes soul2Approach {
    0% {
        transform: translate(40vw, 20vh) scale(0.8);
        opacity: 0.4;
    }
    50% {
        transform: translate(10vw, -5vh) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-5vw, 0) scale(1);
        opacity: 0.8;
    }
}
@keyframes fusionPulse {
    0%, 60% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 0.9;
        transform: scale(1.5);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 8px 20px 8px 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.proof-avatars {
    display: flex;
}
.proof-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid var(--bg-dark);
    margin-left: -10px;
}
.proof-avatar:first-child {
    margin-left: 0;
}
.proof-stars {
    color: #f59e0b;
    font-size: 0.9rem;
}
.proof-text {
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-headline {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.25;
    margin-bottom: 24px;
    max-width: 800px;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 36px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}
.hero-checks {
    display: flex;
    gap: 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--pink-glow), transparent);
    animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }
    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 1;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════
   PAIN SECTION
   ═══════════════════════════════════════════ */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.pain-card {
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.pain-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}
.pain-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
}
.pain-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--pink-glow);
}
.pain-card p {
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════
   TRANSFORMATION SECTION
   ═══════════════════════════════════════════ */
.transform-columns {
    display: flex;
    gap: 32px;
    align-items: stretch;
}
.transform-col {
    flex: 1;
    padding: 40px;
}
.col-label {
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
}
.label-before {
    color: var(--text-muted);
}
.label-after {
    color: var(--cyan-glow);
}
.transform-col ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}
.mark-x {
    color: #f43f5e;
    font-weight: 700;
    width: 24px;
}
.mark-ok {
    color: #10b981;
    font-weight: 700;
    width: 24px;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.transform-arrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.transform-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--pink-glow);
}

/* ═══════════════════════════════════════════
   SOBRE O MENTOR
   ═══════════════════════════════════════════ */
.sobre-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.sobre-photo-wrap {
    position: relative;
}
.glass-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}
.sobre-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}
.glass-float-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: rgba(20, 10, 40, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--glass-shadow);
}
.years-num {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--grad-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}
.years-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.sobre-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 20px 0;
}
.sobre-text-wrap > p {
    color: var(--text-muted);
    margin-bottom: 24px;
}
.sobre-credentials-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}
.cred-pill {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
}
.sobre-stats-row {
    display: flex;
    gap: 32px;
}
.stat-val {
    font-size: 2rem;
    font-weight: 700;
}
.stat-plus {
    font-size: 1.5rem;
    color: var(--pink-glow);
}
.stat-lbl {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   METHOD / TIMELINE
   ═══════════════════════════════════════════ */
.method-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.method-timeline::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--pink-glow),
        var(--purple-vivid),
        transparent
    );
}
.method-item {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    position: relative;
}
.method-day {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: var(--bg-dark);
    border: 2px solid var(--pink-glow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    z-index: 2;
    box-shadow: 0 0 20px rgba(232, 121, 249, 0.3);
}
.method-day span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}
.method-content {
    flex: 1;
    padding: 32px;
}
.method-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-secondary);
}
.method-content p {
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.test-stars {
    color: #f59e0b;
}
.testimonial p {
    font-style: italic;
    color: var(--text-secondary);
    flex: 1;
}
.test-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.test-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.test-info strong {
    display: block;
    font-size: 0.95rem;
}
.test-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   BÔNUS & OFFER
   ═══════════════════════════════════════════ */
.bonus-row {
    display: flex;
    gap: 40px;
    padding: 40px;
    align-items: center;
}
.bonus-img-wrap {
    flex: 1;
}
.bonus-details {
    flex: 1.5;
}
.bonus-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(232, 121, 249, 0.2);
    color: var(--pink-glow);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.bonus-details h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.bonus-by {
    color: var(--cyan-glow);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.bonus-details p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.bp-old {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.bp-free {
    font-size: 1.2rem;
    font-weight: 700;
    color: #10b981;
}

.offer-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    position: relative;
}
.offer-glow-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--pink-glow);
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}
.offer-top {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}
.offer-label {
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--grad-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.offer-body {
    padding: 40px;
}
.offer-includes {
    margin-bottom: 32px;
}
.oi {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.oi-check {
    color: var(--pink-glow);
    font-weight: 700;
}
.offer-price-area {
    text-align: center;
    margin-bottom: 32px;
}
.op-from {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.op-now {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.op-rs {
    font-size: 1.5rem;
    margin-top: 8px;
    margin-right: 4px;
}
.op-cents {
    font-size: 1.5rem;
    margin-top: 8px;
}
.op-parcelas {
    color: var(--cyan-glow);
    font-weight: 600;
    margin-top: 12px;
}
.offer-urgency {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}
.urgency-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.countdown {
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1.2rem;
}
.offer-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.offer-secure {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
}
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--ff-poppins);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--pink-glow);
    transition: var(--transition);
}
.faq-a {
    max-height: 0;
    padding: 0 24px;
    opacity: 0;
    transition: var(--transition);
    color: var(--text-secondary);
}
.faq-item.active .faq-a {
    max-height: 200px;
    padding: 0 24px 24px;
    opacity: 1;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}
.footer-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
}
.footer-nav h4, .footer-soc h4 {
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-primary);
}
.footer-nav a, .footer-soc a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: var(--transition);
}
.footer-nav a:hover, .footer-soc a:hover {
    color: var(--pink-glow);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════
   UTILITY ANIMATIONS (JS triggered)
   ═══════════════════════════════════════════ */
.reveal-fade, .reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-up {
    transform: translateY(40px);
}
.reveal-left {
    transform: translateX(-40px);
}
.reveal-right {
    transform: translateX(40px);
}

.reveal-fade.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ═══════════════════════════════════════════
   RESPONSIVE (Mobile First approach used, tablet/desktop breakpoint checks)
   ═══════════════════════════════════════════ */
@media (max-width: 992px) {
    .transform-columns, .sobre-layout, .bonus-row {
        flex-direction: column;
    }
    .transform-arrow-wrap {
        padding: 20px 0;
        transform: rotate(90deg);
    }
    .sobre-layout {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-cols {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
@media (max-width: 768px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }
    .nav-center, .hero-buttons a {
        display: none;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-ghost {
        display: flex;
        width: 100%;
    }
    .hero-checks {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .method-timeline::before {
        left: 30px;
    }
    .method-day {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }
    .hero-content {
        padding-top: 40px;
    }
    .hero-headline {
        font-size: 2.2rem;
        padding: 0 10px;
    }
    .mobile-break {
        display: block;
    }
    
    /* Animation scale down for mobile */
    .soul {
        width: 60vw;
        height: 60vw;
        filter: blur(30px);
    }
    .fusion-glow {
        width: 40vw;
        height: 40vw;
        filter: blur(25px);
    }
    
    /* Offer Card scaling for mobile */
    .offer-body {
        padding: 24px;
    }
    .op-now {
        font-size: 2.5rem;
    }
    .offer-btn {
        font-size: 0.95rem;
        padding: 16px;
    }
    .offer-urgency {
        flex-direction: column;
        gap: 8px;
    }
    .glass-float-badge {
        right: 10px;
        bottom: 10px;
        padding: 12px 16px;
    }
}
