/* ===================== FORJA — Marina Drumond ===================== */
:root {
    --bg: #0A0A0B;
    --surface: #121316;
    --surface-2: #1a1c20;
    --ember: #FF3B1D;
    --ember-2: #FF7A00;
    --volt: #C8FF00;
    --ink: #F5F5F2;
    --muted: #7A7C85;
    --line: rgba(255, 255, 255, .1);
    --display: 'Anton', Impact, sans-serif;
    --body: 'Inter', system-ui, sans-serif;
    --num: 'Archivo', system-ui, sans-serif;
    --ease: cubic-bezier(.16, 1, .3, 1);
    --max: 1200px;
}

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

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

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

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

::selection {
    background: var(--ember);
    color: #fff;
}

h1,
h2,
h3 {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .01em;
    line-height: .94;
    color: var(--ink);
}

.h2 {
    font-size: clamp(2.2rem, 6vw, 4.6rem);
    max-width: 16ch;
}

b {
    font-weight: inherit;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--num);
    font-weight: 600;
    font-size: .76rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--volt);
    margin-bottom: 1.3rem;
}

.kicker i {
    width: 22px;
    height: 2px;
    background: var(--ember);
}

.kicker--c {
    justify-content: center;
}

.close .kicker {
    color: var(--ember-2);
}

.sec-head {
    max-width: var(--max);
    margin: 0 auto clamp(2.4rem, 5vw, 4rem);
}

.sec-head--c {
    text-align: center;
}

.sec-head--c .h2 {
    margin-inline: auto;
}

.sec-sub {
    margin-top: 1.2rem;
    color: var(--muted);
    max-width: 50ch;
    font-size: 1.05rem;
}

.sec-head--c .sec-sub {
    margin-inline: auto;
}

section {
    position: relative;
    z-index: 1;
    padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem);
}

/* EMBERS + CURSOR */
.embers {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .55;
}

.cur {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 9px;
    height: 9px;
    margin: -4.5px 0 0 -4.5px;
    border-radius: 50%;
    background: var(--volt);
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s, transform .25s var(--ease);
    will-change: transform;
}

.cur::after {
    content: '';
    position: absolute;
    inset: -11px;
    border: 1px solid rgba(200, 255, 0, .4);
    border-radius: 50%;
    transition: inset .3s var(--ease), border-color .3s;
}

body.cur-on .cur {
    opacity: 1;
}

body.cur-grow .cur::after {
    inset: -22px;
    border-color: var(--ember);
}

@media (hover:none),
(pointer:coarse) {
    .cur {
        display: none;
    }
}

/* BOTOES */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .95rem 1.7rem;
    border-radius: 4px;
    font-family: var(--num);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
    transition: transform .25s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
    will-change: transform;
}

.btn__i {
    width: 18px;
    height: 18px;
}

.btn--lg {
    padding: 1.15rem 2.1rem;
    font-size: .9rem;
}

.btn--block {
    width: 100%;
    justify-content: center;
}

.btn--ember {
    background: linear-gradient(120deg, var(--ember) 0%, var(--ember-2) 100%);
    color: #fff;
    box-shadow: 0 10px 34px -10px rgba(255, 59, 29, .7);
}

.btn--ember:hover {
    box-shadow: 0 16px 44px -10px rgba(255, 122, 0, .85);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

.btn--ghost:hover {
    border-color: var(--volt);
    color: var(--volt);
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem clamp(1.2rem, 4vw, 3rem);
    transition: background .4s var(--ease), box-shadow .4s, padding .4s;
}

.nav.scrolled {
    background: rgba(10, 10, 11, .72);
    backdrop-filter: saturate(140%) blur(14px);
    box-shadow: 0 1px 0 var(--line);
    padding-top: .85rem;
    padding-bottom: .85rem;
}

.brand {
    font-family: var(--display);
    font-size: 1.5rem;
    letter-spacing: .04em;
    color: var(--ink);
    display: inline-flex;
    align-items: baseline;
    gap: .5rem;
}

.brand span {
    font-family: var(--num);
    font-weight: 600;
    font-size: .62rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

.nav__links {
    display: flex;
    gap: 2.1rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav__links a {
    font-family: var(--num);
    font-weight: 500;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--ember);
    transition: width .35s var(--ease);
}

.nav__links a:hover::after {
    width: 100%;
}

@media (max-width:920px) {
    .nav__links {
        display: none;
    }
}

@media (max-width:560px) {
    .nav__cta {
        display: none;
    }
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(7rem, 14vw, 10rem);
    padding-bottom: 3rem;
    overflow: hidden;
}

.hero__spot {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 90vw;
    height: 90vw;
    max-width: 1100px;
    max-height: 1100px;
    pointer-events: none;
    background: radial-gradient(circle at 30% 30%, rgba(255, 122, 0, .16), rgba(255, 59, 29, .06) 36%, transparent 60%);
    transform: scale(.3);
    opacity: 0;
    z-index: 0;
}

.hero__grid {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
}

.eyebrow,
.kicker i {
    flex: none;
}

.hero__word {
    font-size: clamp(5.5rem, 24vw, 19rem);
    line-height: .8;
    letter-spacing: .01em;
    margin: .3rem 0;
    background: linear-gradient(180deg, #fff 0%, #cfcfca 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 3;
}

.hero__tag {
    font-family: var(--num);
    font-weight: 800;
    font-size: clamp(1.1rem, 2.4vw, 1.7rem);
    color: var(--ink);
    margin-bottom: 1rem;
}

.hero__sub {
    color: var(--muted);
    max-width: 42ch;
    font-size: 1.06rem;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0 2.2rem;
}

.hero__facts {
    display: flex;
    gap: 2.4rem;
    flex-wrap: wrap;
}

.hero__facts div {
    display: flex;
    flex-direction: column;
}

.hero__facts b {
    font-family: var(--num);
    font-weight: 900;
    font-size: 1.9rem;
    color: var(--ember);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.hero__facts span {
    font-size: .76rem;
    letter-spacing: .04em;
    color: var(--muted);
    margin-top: .3rem;
    max-width: 14ch;
}

.hero__media {
    position: relative;
    z-index: 1;
    width: calc(100% + max(0px, (100vw - var(--max)) / 2 + clamp(1.2rem, 5vw, 3rem)));
}

.hero__photo {
    position: relative;
    height: clamp(440px, 82vh, 820px);
    overflow: hidden;
    border-radius: 6px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
}

.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.5) contrast(1.12) brightness(.92);
}

/* ===== modelo 3D no hero (palco escuro FORJA) ===== */
/* tira o "sangramento" lateral pra centralizar o modelo na coluna */
.hero__media--3d {
    width: 100%;
}

/* esconde o rim retangular (a "luz quadrada verde") quando e modelo 3D */
.hero__media--3d .hero__rim {
    display: none;
}

.hero__photo--3d {
    overflow: visible;
    border-radius: 0;
    -webkit-mask-image: none;
    mask-image: none;
    background: none;
}

.hero__photo--3d::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(78%, 460px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 90, 30, .24), rgba(255, 59, 29, .10) 46%, transparent 70%);
    filter: blur(28px);
    z-index: 0;
}

.hero__mv {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: transparent;
    --poster-color: transparent;
    --progress-bar-color: #C8FF00;
    --progress-mask: transparent;
}

.hero__mvhint {
    position: absolute;
    left: 50%;
    bottom: 3%;
    transform: translateX(-50%);
    z-index: 4;
    padding: .36rem .85rem;
    border-radius: 99px;
    background: rgba(10, 10, 11, .62);
    border: 1px solid rgba(200, 255, 0, .28);
    color: #f5f5f7;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    pointer-events: none;
    opacity: 0;
    animation: mvhint 6s ease 1.6s forwards;
}

@keyframes mvhint {
    0% { opacity: 0; }
    12% { opacity: .92; }
    82% { opacity: .92; }
    100% { opacity: 0; }
}

.hero__rim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset -6px 0 50px -20px rgba(200, 255, 0, .35);
    border-right: 2px solid rgba(200, 255, 0, .25);
    border-radius: 6px;
}

.hero__scroll {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 2.4rem auto 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--num);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero__scroll span {
    width: 30px;
    height: 1px;
    background: var(--muted);
    position: relative;
    overflow: hidden;
}

html.motion .hero__scroll span::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 12px;
    background: var(--ember);
    animation: scrollline 1.8s var(--ease) infinite;
}

@keyframes scrollline {
    0% {
        transform: translateX(-12px);
    }

    100% {
        transform: translateX(30px);
    }
}

@media (max-width:880px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero__media {
        order: -1;
        max-width: 360px;
    }

    .hero__photo {
        aspect-ratio: 4/3;
        height: auto;
        -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent);
        mask-image: linear-gradient(180deg, #000 60%, transparent);
    }
}

/* MARQUEE */
.strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding: 1.1rem 0;
    background: var(--bg);
    position: relative;
    z-index: 1;
}

.strip__t {
    display: flex;
    width: max-content;
    font-family: var(--display);
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    text-transform: uppercase;
    color: var(--ink);
    white-space: nowrap;
}

.strip__t span {
    padding-right: 1rem;
}

html.motion .strip__t {
    animation: marq 26s linear infinite;
}

@keyframes marq {
    to {
        transform: translateX(-50%);
    }
}

/* STATS */
.stats {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.stat {
    background: var(--bg);
    padding: 2.2rem 1.4rem;
}

.stat__n {
    font-family: var(--num);
    font-weight: 900;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--ink);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    display: block;
}

.stat__n b {
    background: linear-gradient(120deg, var(--ember), var(--ember-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat__l {
    display: block;
    margin-top: .8rem;
    color: var(--muted);
    font-size: .9rem;
    max-width: 22ch;
}

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

/* MANIFESTO */
.manifesto {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.manifesto__t {
    font-family: var(--num);
    font-weight: 800;
    font-size: clamp(1.6rem, 4.2vw, 3rem);
    line-height: 1.2;
    letter-spacing: -.01em;
    color: var(--ink);
}

.manifesto__sig {
    margin-top: 1.6rem;
    font-family: var(--num);
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--volt);
}

/* METODO — fases */
.method {
    max-width: var(--max);
    margin: 0 auto;
}

.phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.phase {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 2.2rem 1.9rem 2rem;
    overflow: hidden;
    transition: transform .4s var(--ease), border-color .4s;
}

.phase::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ember), var(--ember-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}

.phase:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 122, 0, .4);
}

.phase:hover::before {
    transform: scaleX(1);
}

.phase__n {
    font-family: var(--display);
    font-size: 3.4rem;
    color: rgba(255, 255, 255, .08);
    line-height: 1;
}

.phase__tag {
    display: inline-block;
    font-family: var(--num);
    font-weight: 600;
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--volt);
    margin: .5rem 0 .8rem;
}

.phase h3 {
    font-size: 2.4rem;
    margin-bottom: .7rem;
}

.phase p {
    color: var(--muted);
    font-size: .98rem;
}

.phase__ic {
    position: absolute;
    right: 1.4rem;
    bottom: 1.4rem;
    width: 38px;
    height: 38px;
    color: var(--ember);
    opacity: .8;
}

.phase__ic svg {
    width: 100%;
    height: 100%;
}

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

/* A FORJA — assinatura */
.forge {
    height: 300vh;
    padding: 0;
    background: #060607;
}

.forge__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.forge__sticky canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.forge__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    z-index: 2;
}

.forge__kicker {
    font-family: var(--num);
    font-weight: 600;
    font-size: .76rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}

.forge__cap {
    font-family: var(--display);
    font-size: clamp(3.4rem, 12vw, 9rem);
    line-height: .9;
    color: var(--ink);
    text-shadow: 0 0 50px rgba(255, 59, 29, .35);
}

.forge__hint {
    position: absolute;
    bottom: 8%;
    font-family: var(--num);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}

/* TRANSFORMACOES */
.provas {
    max-width: var(--max);
    margin: 0 auto;
}

.ba {
    --pos: 50%;
    --v: .5;
    position: relative;
    aspect-ratio: 3/2;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    user-select: none;
    touch-action: pan-y;
}

/* sem = cinza/escuro/sem-graca; com = vibrante. o crossfade por opacidade faz
   a cor entrar gradualmente: quanto mais "com", mais colorido; quanto mais "sem", mais p&b */
.ba__media {
    position: absolute;
    inset: 0;
}

.ba__layer {
    position: absolute;
    inset: 0;
}

.ba__layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba__sem img {
    filter: grayscale(1) saturate(.35) brightness(.72) contrast(.95);
}

.ba__com {
    opacity: var(--v);
}

.ba__com img {
    filter: saturate(1.55) brightness(1.06) contrast(1.12);
}

.ba__label {
    position: absolute;
    bottom: 1.1rem;
    font-family: var(--num);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .45rem .8rem;
    border-radius: 4px;
    background: rgba(10, 10, 11, .7);
    backdrop-filter: blur(4px);
}

.ba__label--l {
    left: 1.1rem;
    color: var(--muted);
}

.ba__label--r {
    right: 1.1rem;
    color: var(--volt);
}

.ba__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos);
    width: 2px;
    background: var(--volt);
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}

.ba__handle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--volt);
    box-shadow: 0 0 24px -4px rgba(200, 255, 0, .6);
}

.ba__handle span::before,
.ba__handle span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 6px solid transparent;
}

.ba__handle span::before {
    left: 8px;
    transform: translateY(-50%);
    border-right-color: var(--volt);
}

.ba__handle span::after {
    right: 8px;
    transform: translateY(-50%);
    border-left-color: var(--volt);
}

.ba__range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    z-index: 4;
}

.cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 1.4rem;
}

.case {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1.8rem;
}

.case__nums {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    margin-bottom: 1rem;
}

.case__nums b {
    font-family: var(--num);
    font-weight: 900;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--ember);
    font-variant-numeric: tabular-nums;
}

.case__nums span {
    font-family: var(--num);
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
}

.case p {
    color: var(--ink);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.case cite {
    font-style: normal;
    font-family: var(--num);
    font-size: .78rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--volt);
}

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

    .ba {
        aspect-ratio: 4/3.6;
    }
}

/* PARA QUEM */
.who {
    max-width: var(--max);
    margin: 0 auto;
}

.who__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
}

.wcard {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1.8rem;
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}

.wcard:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 255, 0, .4);
    box-shadow: 0 24px 50px -28px rgba(200, 255, 0, .3);
}

.wcard__ic {
    display: grid;
    place-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--surface-2);
    color: var(--volt);
    margin-bottom: 1.2rem;
}

.wcard__ic svg {
    width: 26px;
    height: 26px;
}

.wcard h3 {
    font-size: 1.4rem;
    margin-bottom: .5rem;
}

.wcard p {
    color: var(--muted);
    font-size: .95rem;
}

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

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

/* SOBRE */
.about {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
    max-width: var(--max);
    margin: 0 auto;
}

.about__media {
    position: relative;
}

.about__photo {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/4.6;
}

.about__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.35) contrast(1.08) brightness(.95);
}

.about__rim {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 -60px 90px -40px rgba(255, 59, 29, .4);
    border-radius: 10px;
}

.about__badge {
    position: absolute;
    right: -1rem;
    bottom: 1.6rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--num);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .04em;
    padding: .65rem .95rem;
    border-radius: 6px;
    box-shadow: 0 18px 40px -18px #000;
}

.about__badge svg {
    width: 18px;
    height: 18px;
    color: var(--volt);
}

.about__txt p {
    color: var(--muted);
    max-width: 48ch;
    margin-top: .4rem;
}

.about__list {
    list-style: none;
    margin-top: 1.6rem;
    display: grid;
    gap: .8rem;
}

.about__list li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    color: var(--ink);
    font-size: .98rem;
}

.about__list svg {
    width: 20px;
    height: 20px;
    color: var(--ember);
    flex: none;
    margin-top: .15rem;
}

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

    .about__media {
        max-width: 380px;
    }
}

/* DEPOIMENTOS */
.quotes {
    max-width: var(--max);
    margin: 0 auto;
}

.quotes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.q {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 2rem 1.8rem;
    position: relative;
}

.q::before {
    content: '“';
    font-family: var(--display);
    font-size: 4rem;
    color: var(--ember);
    line-height: .6;
    display: block;
    margin-bottom: .6rem;
}

.q p {
    font-family: var(--num);
    font-weight: 500;
    font-size: 1.08rem;
    color: var(--ink);
    margin-bottom: 1.2rem;
}

.q cite {
    font-style: normal;
    font-family: var(--num);
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--volt);
}

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

/* PLANOS */
.plans {
    max-width: var(--max);
    margin: 0 auto;
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    align-items: stretch;
}

.plan {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 2.2rem 1.9rem;
    position: relative;
}

.plan--feat {
    border-color: rgba(255, 59, 29, .5);
    background: linear-gradient(180deg, #17120f 0%, var(--surface) 70%);
    box-shadow: 0 30px 70px -34px rgba(255, 59, 29, .55);
}

html.motion .plan--feat {
    animation: featpulse 3.4s var(--ease) infinite;
}

@keyframes featpulse {

    0%,
    100% {
        box-shadow: 0 30px 70px -34px rgba(255, 59, 29, .45);
    }

    50% {
        box-shadow: 0 34px 80px -30px rgba(255, 122, 0, .7);
    }
}

.plan__tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(120deg, var(--ember), var(--ember-2));
    color: #fff;
    font-family: var(--num);
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 999px;
    white-space: nowrap;
}

.plan__name {
    font-size: 1.8rem;
}

.plan__price {
    font-family: var(--num);
    font-weight: 900;
    font-size: 2.8rem;
    color: var(--ink);
    margin: .5rem 0 .2rem;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.plan__price span {
    font-size: .9rem;
    font-weight: 600;
    color: var(--muted);
}

.plan__desc {
    color: var(--muted);
    font-size: .95rem;
    margin: .6rem 0 1.4rem;
    min-height: 3em;
}

.plan__list {
    list-style: none;
    display: grid;
    gap: .7rem;
    margin-bottom: 1.8rem;
    flex: 1;
}

.plan__list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .94rem;
    color: var(--ink);
}

.plan__list svg {
    width: 18px;
    height: 18px;
    color: var(--ember);
    flex: none;
}

.plan__scarce {
    display: block;
    margin-top: 1rem;
    font-family: var(--num);
    font-size: .72rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ember-2);
    text-align: center;
}

@media (max-width:860px) {
    .plans__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }
}

/* FAQ */
.faq {
    max-width: 820px;
    margin: 0 auto;
}

.qa {
    border-bottom: 1px solid var(--line);
}

.qa summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 0;
    font-family: var(--num);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink);
}

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

.qa[open] summary {
    color: var(--volt);
}

.qa__i {
    position: relative;
    width: 20px;
    height: 20px;
    flex: none;
}

.qa__i::before,
.qa__i::after {
    content: '';
    position: absolute;
    background: var(--ember);
    border-radius: 2px;
}

.qa__i::before {
    top: 9px;
    left: 0;
    right: 0;
    height: 2px;
}

.qa__i::after {
    left: 9px;
    top: 0;
    bottom: 0;
    width: 2px;
    transition: transform .3s var(--ease);
}

.qa[open] .qa__i::after {
    transform: scaleY(0);
}

.qa__b {
    overflow: hidden;
}

.qa__b p {
    padding-bottom: 1.4rem;
    color: var(--muted);
    max-width: 64ch;
}

/* CTA FINAL */
.close {
    max-width: 100%;
    text-align: center;
    overflow: hidden;
}

.close__spot {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    width: 70vw;
    height: 70vw;
}

.close__h {
    position: relative;
    z-index: 2;
    font-size: clamp(2.6rem, 8vw, 6rem);
    margin: .3rem auto 1.2rem;
}

.close__p {
    position: relative;
    z-index: 2;
    color: var(--muted);
    max-width: 46ch;
    margin: 0 auto 2.2rem;
    font-size: 1.08rem;
}

.close .btn {
    position: relative;
    z-index: 2;
}

/* FOOTER */
.foot {
    max-width: var(--max);
    margin: 0 auto;
    padding: 3.5rem clamp(1.2rem, 5vw, 3rem) 6rem;
    border-top: 1px solid var(--line);
}

.foot__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.brand--foot {
    font-size: 1.6rem;
}

.foot__nav {
    display: flex;
    gap: 1.6rem;
}

.foot__nav a {
    font-family: var(--num);
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    position: relative;
}

.foot__nav a:hover {
    color: var(--ink);
}

.foot__made {
    color: var(--muted);
    font-size: .82rem;
}

.foot__made a {
    color: var(--volt);
    border-bottom: 1px solid rgba(200, 255, 0, .3);
}

/* DOCK */
.dock {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 600;
    display: none;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: 1.05rem;
    border-radius: 6px;
    background: linear-gradient(120deg, var(--ember), var(--ember-2));
    color: #fff;
    font-family: var(--num);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 16px 34px -12px rgba(255, 59, 29, .8);
    transform: translateY(140%);
    transition: transform .5s var(--ease);
}

.dock.on {
    transform: none;
}

.dock .btn__i {
    width: 20px;
    height: 20px;
}

@media (max-width:560px) {
    .dock {
        display: flex;
    }
}

/* TOAST */
.toast {
    position: fixed;
    left: 50%;
    bottom: 2rem;
    transform: translate(-50%, 30px);
    z-index: 800;
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--num);
    font-size: .9rem;
    padding: .85rem 1.3rem;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s, transform .3s var(--ease), visibility .3s;
    box-shadow: 0 16px 40px -16px #000;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

/* REVEAL */
html.motion [data-fx] {
    opacity: 0;
    transform: translateY(28px);
}

html.motion [data-lines],
html.motion [data-forja] {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition-duration: .001ms !important;
    }

    .hero__spot {
        opacity: 1;
        transform: none;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: #2a2c30;
    border-radius: 10px;
    border: 2px solid var(--bg);
}
