@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;600;700;900&display=swap');

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

:root {
    --black:       #050505;
    --gold:        #c8a84b;
    --gold-lt:     #e2c97e;
    --gold-a20:    rgba(200,168,75,0.20);
    --gold-a40:    rgba(200,168,75,0.40);
    --white:       #f2f2f0;
    --gray:        #777;
    --card:        rgba(255,255,255,0.035);
    --card-border: rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ─── TOP LABEL ──────────────────────────────────────── */
.top-label-bar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 200;
    padding: 16px 24px;
    background: linear-gradient(to bottom, rgba(5,5,5,0.92), transparent);
    pointer-events: none;
}

.top-label-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.top-label-line {
    flex: 1;
    max-width: 70px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}

.top-label-inner .top-label-line:last-child {
    background: linear-gradient(to left, transparent, var(--gold));
}

.top-label-text {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
    white-space: nowrap;
    animation: labelGlow 3s ease-in-out infinite;
}

@keyframes labelGlow {
    0%, 100% {
        text-shadow: none;
        opacity: 0.85;
    }
    50% {
        text-shadow: 0 0 12px rgba(200,168,75,0.7), 0 0 24px rgba(200,168,75,0.3);
        opacity: 1;
    }
}

/* ─── HERO ───────────────────────────────────────────── */
.hero-section {
    position: relative;
    width: 100%;
    height: 86svh;               /* ← 86% conforme pedido */
    min-height: 580px;
    max-height: 820px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-image-wrap {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5,5,5,0.2) 0%,
        transparent 30%,
        rgba(5,5,5,0.5) 65%,
        #050505 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 28px 32px;
    text-align: right;
    overflow: hidden;
}

/* ── Professional Name Reveal (Clip-path) ── */
.hero-name {
    font-size: clamp(3.6rem, 14vw, 6rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -1px;
    text-transform: uppercase;
    animation: nameReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-name span {
    color: var(--gold);
    display: block;
    animation: nameReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

@keyframes nameReveal {
    from {
        clip-path: inset(100% 0 0 0);
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        clip-path: inset(0% 0 0 0);
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-sub {
    margin-top: 10px;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(242,242,240,0.45);
    animation: subReveal 1s ease 0.9s both;
}

@keyframes subReveal {
    from { opacity: 0; transform: translateY(10px) translateX(8px); filter: blur(4px); }
    to   { opacity: 1; transform: translateY(0)    translateX(0);    filter: blur(0); }
}

/* ─── TICKER ─────────────────────────────────────────── */
.ticker-strip {
    overflow: hidden;
    background: var(--gold);
    padding: 11px 0;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    animation: tickerRun 22s linear infinite;
}

.ticker-track span {
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
}

.tick-dot { font-size: 0.45rem !important; opacity: 0.4; }

@keyframes tickerRun {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── QUOTE ──────────────────────────────────────────── */
.quote-section {
    padding: 80px 28px;
    background: var(--black);
    display: flex;
    justify-content: center;
}

.quote-section.quote-dark { background: #080808; }

.quote-inner { max-width: 460px; width: 100%; text-align: center; }

.quote-mark {
    font-size: 4.5rem;
    line-height: 0.5;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 22px;
    display: block;
    opacity: 0.5;
}

.quote-text {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--white);
}

.quote-text em { font-style: normal; font-weight: 700; color: var(--gold); }

.quote-author {
    margin-top: 22px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gray);
    text-transform: uppercase;
}

/* ─── LINKS ──────────────────────────────────────────── */
.links-section {
    padding: 0 20px 60px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--white);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    width: 100%;
    text-align: left;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    border-radius: 3px 0 0 3px;
    background: transparent;
    transition: background 0.3s;
}

.link-card:hover  { background: rgba(255,255,255,0.065); }
.link-card:active { transform: scale(0.97); }

.link-yt::before         { background: #ff3333; }
.link-yt .link-card-icon { color: #ff4444; }

.link-wa::before         { background: #25d366; }
.link-wa .link-card-icon { color: #25d366; }

.link-highlight {
    border-color: rgba(200,168,75,0.3);
    background: rgba(200,168,75,0.055);
    animation: borderGlow 3.5s ease-in-out infinite;
}

.link-highlight::before { background: var(--gold); }

@keyframes borderGlow {
    0%, 100% { box-shadow: none; }
    50%       { box-shadow: 0 0 24px 2px rgba(200,168,75,0.12); }
}

.link-card-badge {
    position: absolute;
    top: 10px; right: 14px;
    font-size: 0.48rem;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--gold);
    color: var(--black);
}

.link-card-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold); }
.link-card-icon svg { width: 100%; height: 100%; }
.link-card-info { flex: 1; min-width: 0; }

.link-card-title {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.link-card-sub { font-size: 0.68rem; font-weight: 300; color: var(--gray); }
.link-card-arrow { font-size: 0.9rem; color: var(--gray); flex-shrink: 0; }

.links-footnote {
    font-size: 0.72rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray);
    text-align: center;
    padding: 0 10px;
}

/* ─── LIFESTYLE (IM3) — JS PARALLAX ─────────────────── */
.lifestyle-section {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    height: 420px;
}

.lifestyle-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.lifestyle-img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform-origin: center center;
    will-change: transform;
    animation: kenBurns 18s ease-in-out infinite alternate;
}

/* Ken Burns: slow zoom + drift — always moving */
@keyframes kenBurns {
    0%   { transform: scale(1.05) translate(0px, 0px); }
    33%  { transform: scale(1.10) translate(-6px, -10px); }
    66%  { transform: scale(1.08) translate(4px, -6px); }
    100% { transform: scale(1.05) translate(0px, 0px); }
}

.lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5,5,5,0.1) 0%,
        rgba(5,5,5,0.55) 70%,
        rgba(5,5,5,0.85) 100%
    );
    border-radius: 20px;
}

.lifestyle-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 28px 30px;
    z-index: 2;
}

.lifestyle-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.lifestyle-quote {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(242,242,240,0.88);
    font-style: italic;
    border-left: 2px solid var(--gold);
    padding-left: 14px;
    max-width: 400px;
}

/* ─── MODAL ──────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-sheet {
    background: #111;
    border: 1px solid rgba(200,168,75,0.2);
    border-radius: 24px 24px 0 0;
    padding: 36px 28px 50px;
    width: 100%;
    max-width: 520px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    position: relative;
}

.modal-overlay.open .modal-sheet { transform: translateY(0); }

.modal-close {
    position: absolute;
    top: 16px; right: 20px;
    background: rgba(255,255,255,0.06);
    border: none;
    color: var(--gray);
    font-size: 1.4rem;
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.modal-close:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.modal-tag {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.modal-title span { color: var(--gold); }

.modal-body {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(242,242,240,0.75);
    margin-bottom: 24px;
}

.modal-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-features li {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(242,242,240,0.65);
    letter-spacing: 0.5px;
}

.modal-cta {
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s;
}

.modal-cta:hover { background: var(--gold-lt); }

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
    padding: 60px 28px 70px;
    text-align: center;
    border-top: 1px solid var(--card-border);
    margin-top: 60px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 26px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border: 1px solid var(--card-border);
    border-radius: 50%;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s, border-color 0.3s;
}

.footer-socials a svg { width: 18px; height: 18px; }
.footer-socials a:hover { color: var(--gold); border-color: var(--gold); }

.footer-copy {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.18);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.footer-brand {
    font-size: 0.48rem;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.07);
    text-transform: uppercase;
}

/* ─── REVEAL ─────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
                transform 0.9s cubic-bezier(0.16,1,0.3,1);
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ─── DESKTOP ─────────────────────────────────────────── */
@media (min-width: 768px) {
    body { display: flex; flex-direction: column; align-items: center; }
    .top-label-bar, .ticker-strip, .site-footer { width: 100%; }
    .hero-section, .quote-section, .links-section,
    .lifestyle-section { width: 100%; max-width: 520px; }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .site-footer,
    .modal-sheet { padding-bottom: calc(50px + env(safe-area-inset-bottom)); }
}

/* ─── POSING MASTERCLASS PAGE ───────────────────────── */
.posing-page-header {
    padding: 40px 24px 20px;
    text-align: center;
}

.posing-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.posing-title span { color: var(--gold); }

.posing-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(242,242,240,0.85);
    max-width: 500px;
    margin: 0 auto 40px;
}

/* VSL Wrapper */
.vsl-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 50px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(200,168,75,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 40px rgba(200,168,75,0.05);
}

.vsl-wrapper iframe, .vsl-wrapper video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.vsl-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #151515;
    color: var(--gray);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
}

/* Posing Content */
.posing-section {
    padding: 0 24px 60px;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.posing-text {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 24px;
    text-align: center;
}

.posing-features {
    list-style: none;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.posing-features li {
    background: var(--card);
    border: 1px solid var(--card-border);
    padding: 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(242,242,240,0.85);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.posing-features li::before {
    content: '✦';
    color: var(--gold);
    font-size: 1.2rem;
    line-height: 1;
}

/* Nova lista limpa - design editorial */
.posing-features-clean {
    list-style: none;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.posing-features-clean li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}

.posing-features-clean li:first-child {
    border-top: 1px solid rgba(255,255,255,0.05);
}

.pf-icon {
    color: var(--gold);
    font-size: 0.75rem;
    flex-shrink: 0;
    opacity: 0.9;
    line-height: 1;
}

.pf-text {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(242,242,240,0.88);
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* Pricing Section */
.pricing-section {
    padding: 20px 24px 80px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* ─── ELITE UI CLASSES ──────────────────────────────── */
.elite-section-title {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.2;
}

.elite-section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(242,242,240,0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.premium-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200,168,75,0.4), transparent);
    margin: 60px 0;
    position: relative;
    display: flex;
}


/* ─── PRICING GRID & CARDS (RESTAURADO) ─── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

.plan-card {
    background: linear-gradient(145deg, rgba(20,20,20,0.8) 0%, rgba(10,10,10,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 35px 24px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}


.plan-card.highlight {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px rgba(200,168,75,0.1);
}

/* Selo Editorial Estático (Elite) */
.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #080808;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.plan-title {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    margin-top: 6px;
    margin-right: 4px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.plan-features li {
    font-size: 0.8rem;
    color: rgba(242,242,240,0.7);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: 900;
}

.plan-cta {
    display: block;
    text-align: center;
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plan-card.highlight .plan-cta {
    background: var(--gold);
    color: var(--black);
    border: none;
}

.plan-cta:hover {
    background: var(--white);
    color: var(--black);
}

.plan-card.highlight .plan-cta:hover {
    background: var(--gold-lt);
}

.posing-extra-info {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 30px;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .posing-page-header, .vsl-wrapper { max-width: 720px; width: 100%; }
    .posing-section, .pricing-section { max-width: 720px; width: 100%; }
}

/* ─── CINEMATIC SCROLL SEQUENCE ──────────────────────── */
.scroll-sequence {
    width: 100%;
    /* 4 frames: fast 250vh space to scroll */
    height: 250vh; 
    position: relative;
}

.scroll-sticky-stage {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.seq-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Default invisible */
    transition: opacity 0.1s ease-out;
}

.seq-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.seq-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.1) 100%);
}

.seq-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 24px;
    z-index: 2;
    text-align: center;
}

.seq-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--black);
    background: var(--gold);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.seq-caption h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.seq-caption p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(242,242,240,0.8);
    max-width: 400px;
    margin: 0 auto;
}

/* ─── TYPEWRITER CURSOR ──────────────────────────────── */
#typewriterText::after {
    content: '|';
    color: var(--gold);
    font-weight: 300;
    animation: blinkCursor 0.8s step-end infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
