/* ===================== NETFLIX (recriação) ===================== */
:root {
    --red: #e50914;
    --red-d: #b20710;
    --bg: #141414;
    --black: #000;
    --panel: #181818;
    --card: #2b2b2b;
    --ink: #fff;
    --muted: #b3b3b3;
    --line: rgba(255, 255, 255, .16);
    --ok: #46d369;
    --sans: 'Inter', system-ui, sans-serif;
    --logo: 'Bebas Neue', Impact, sans-serif;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.45;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: 0;
    background: none;
    color: inherit;
}

[hidden] {
    display: none !important;
}

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

.ico {
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
    vertical-align: middle;
}

/* LOGO */
.nflogo {
    font-family: var(--logo);
    color: var(--red);
    letter-spacing: .02em;
    line-height: 1;
    font-weight: 400;
    transform: scaleY(1.18);
    display: inline-block;
    text-shadow: 0 .02em .06em rgba(0, 0, 0, .45);
    user-select: none;
}

.nflogo--sm {
    font-size: 2rem;
}

.nflogo--nav {
    font-size: 1.85rem;
    cursor: pointer;
}

/* ===== SPLASH ===== */
.splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    transition: opacity .6s ease, visibility .6s;
}

.splash.gone {
    opacity: 0;
    visibility: hidden;
}

.splash__logo {
    font-size: clamp(3.5rem, 16vw, 11rem);
    animation: splashIn 2s var(--ease) forwards;
}

@keyframes splashIn {
    0% {
        opacity: 0;
        transform: scaleY(1.18) scale(.82);
        letter-spacing: .4em;
        filter: blur(8px);
    }

    35% {
        opacity: 1;
        filter: blur(0);
    }

    70% {
        opacity: 1;
        transform: scaleY(1.18) scale(1);
        letter-spacing: .02em;
    }

    100% {
        opacity: 1;
        transform: scaleY(1.18) scale(1.04);
    }
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .7rem 1.3rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: .95rem;
    transition: transform .15s var(--ease), background .2s, opacity .2s, box-shadow .2s;
    white-space: nowrap;
}

.btn:active {
    transform: scale(.96);
}

.btn--red {
    background: var(--red);
    color: #fff;
}

.btn--red:hover {
    background: var(--red-d);
}

.btn--lg {
    padding: .95rem 1.8rem;
    font-size: 1.1rem;
}

.btn--sm {
    padding: .5rem .9rem;
    font-size: .85rem;
}

.btn--block {
    width: 100%;
}

.btn--ghost {
    background: rgba(109, 109, 110, .55);
    color: #fff;
}

.btn--ghost:hover {
    background: rgba(109, 109, 110, .4);
}

.btn--white {
    background: #fff;
    color: #111;
}

.btn--white:hover {
    background: rgba(255, 255, 255, .8);
}

.btn--line {
    background: transparent;
    border: 1px solid var(--line);
}

.btn.danger {
    color: #e87c7c;
    border-color: #6b2b2b;
}

/* ===== SCREEN base ===== */
.screen {
    min-height: 100vh;
    animation: fade .5s ease;
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===================== LANDING ===================== */
.landing {
    position: relative;
    color: #fff;
}

.landing__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(120% 95% at 50% -12%, #3a0c10 0%, #1a0608 36%, #000 78%);
}

.landing__grad {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(120% 100% at 50% 0, rgba(0, 0, 0, .55), rgba(0, 0, 0, .8)),
        linear-gradient(0deg, var(--black), transparent 50%, rgba(0, 0, 0, .6));
}

.landing>* {
    position: relative;
    z-index: 2;
}

.landing__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem clamp(1.2rem, 5vw, 3.5rem);
}

.landing__hero {
    text-align: center;
    max-width: 1000px;
    margin: clamp(3rem, 12vh, 8rem) auto;
    padding: 0 1.2rem;
}

.landing__hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.02em;
}

.landing__sub {
    font-size: clamp(1.1rem, 2.4vw, 1.6rem);
    margin: 1.2rem 0 .4rem;
}

.landing__cta-txt {
    color: var(--muted);
    margin-bottom: 1.4rem;
}

.landing__strip {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: .9rem 0;
    background: rgba(0, 0, 0, .4);
}

.landing__strip-t {
    display: flex;
    width: max-content;
    white-space: nowrap;
    font-weight: 700;
    color: #cfcfcf;
    animation: marq 28s linear infinite;
}

.landing__strip-t span {
    padding-right: 1rem;
}

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

.landing__why {
    max-width: 1100px;
    margin: clamp(3rem, 7vw, 5rem) auto;
    padding: 0 1.2rem;
    text-align: center;
}

.landing__why h2 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 2rem;
}

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

.why {
    background: linear-gradient(180deg, #2a0a0e, #161616);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.6rem 1.3rem;
    text-align: left;
}

.why__ic {
    color: var(--red);
}

.why__ic svg {
    width: 2.3rem;
    height: 2.3rem;
}

.why h3 {
    margin: .7rem 0 .4rem;
    font-size: 1.15rem;
}

.why p {
    color: var(--muted);
    font-size: .92rem;
}

.landing__foot {
    text-align: center;
    color: var(--muted);
    font-size: .82rem;
    padding: 2rem 1.2rem 3rem;
    border-top: 1px solid var(--line);
}

.landing__foot a {
    color: #e87c7c;
}

/* ===== landing expandida ===== */
.lsec {
    max-width: 1100px;
    margin: clamp(3rem, 7vw, 6rem) auto;
    padding: 0 clamp(1.2rem, 5vw, 2rem);
    text-align: center;
}

.lsec__kick {
    color: var(--red);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .8rem;
}

.lsec__h {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin: .5rem 0 2rem;
}

.lcats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: .8rem;
}

.lcat {
    display: flex;
    align-items: flex-end;
    min-height: 96px;
    padding: .9rem 1rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    text-align: left;
    background: linear-gradient(150deg, var(--g1), var(--g2));
    box-shadow: 0 10px 24px -12px rgba(0, 0, 0, .7);
    transition: transform .25s var(--ease);
}

.lcat:hover {
    transform: translateY(-4px) scale(1.02);
}

.lfeat {
    max-width: 1100px;
    margin: clamp(3rem, 7vw, 6rem) auto;
    padding: 0 clamp(1.2rem, 5vw, 2rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

.lfeat--rev .lfeat__txt {
    order: 2;
}

.lfeat__txt h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}

.lfeat__txt p {
    color: #c9c9c9;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.5;
}

.lfeat__viz {
    display: flex;
    justify-content: center;
}

.lscreen {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 16/9.5;
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid #2b2b2b;
    box-shadow: 0 30px 70px -24px rgba(0, 0, 0, .8), 0 0 60px -22px var(--red);
}

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

.lphone {
    position: relative;
    width: clamp(160px, 22vw, 220px);
    aspect-ratio: 9/17;
    border-radius: 26px;
    overflow: hidden;
    border: 6px solid #1c1c1c;
    box-shadow: 0 30px 70px -22px rgba(0, 0, 0, .85);
}

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

.lphone__dl {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(0, 0, 0, .82);
    border: 1px solid var(--line);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    padding: .4rem .8rem;
    border-radius: 99px;
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

.lphone__dl svg {
    width: 14px;
    height: 14px;
    color: var(--ok);
}

.lkids {
    display: flex;
    gap: clamp(.6rem, 2vw, 1.2rem);
    flex-wrap: wrap;
    justify-content: center;
}

.lkids__av {
    width: clamp(64px, 9vw, 100px);
    aspect-ratio: 1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .7);
    transition: transform .25s var(--ease);
}

.lkids__av:hover {
    transform: translateY(-6px) rotate(-4deg);
}

.lkids__av svg {
    width: 56%;
    height: 56%;
    color: #fff;
}

@media (max-width:820px) {
    .lfeat {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lfeat--rev .lfeat__txt {
        order: 0;
    }
}

/* FAQ */
.lfaq {
    max-width: 820px;
}

.lq {
    background: #2b2b2b;
    border-radius: 8px;
    margin-bottom: .6rem;
    text-align: left;
}

.lq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

.lq__i::before,
.lq__i::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 2px;
}

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

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

.lq[open] .lq__i::after {
    transform: scaleY(0);
}

.lq__b {
    padding: 0 1.4rem 1.3rem;
    color: #c9c9c9;
    line-height: 1.55;
}

.lfaq__cta {
    margin-top: 2rem;
}

.lfaq__cta p {
    color: #c9c9c9;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

/* ===================== AUTH / LOGIN ===================== */
.auth,
.pay,
.profiles,
.profedit {
    position: relative;
    min-height: 100vh;
}

.auth__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(110% 95% at 50% 0%, #2a0a0d, #0a0405 72%, #000);
}

.auth__nav {
    position: relative;
    z-index: 2;
    padding: 1rem clamp(1.2rem, 5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auth__nav .nflogo {
    cursor: pointer;
}

.auth__card {
    position: relative;
    z-index: 2;
    max-width: 420px;
    margin: 4vh auto;
    background: rgba(0, 0, 0, .78);
    border-radius: 8px;
    padding: clamp(1.6rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth__card h1 {
    font-size: 2rem;
    margin-bottom: .4rem;
}

.field {
    position: relative;
    display: block;
}

.field input {
    width: 100%;
    background: #333;
    border: 0;
    border-radius: 5px;
    padding: 1.3rem .9rem .5rem;
    color: #fff;
    font-size: 1rem;
    outline: 1px solid transparent;
    transition: outline-color .2s;
}

.field--light input {
    background: #2b2b2b;
}

.field input:focus {
    outline-color: var(--red);
}

.field span {
    position: absolute;
    left: .95rem;
    top: .95rem;
    color: #8c8c8c;
    pointer-events: none;
    transition: .15s var(--ease);
    font-size: 1rem;
}

.field input:focus+span,
.field input:not(:placeholder-shown)+span {
    top: .35rem;
    font-size: .72rem;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
}

.auth__note {
    color: #8c8c8c;
    font-size: .82rem;
}

.auth__alt {
    color: var(--muted);
}

.auth__alt a {
    color: #fff;
    font-weight: 600;
}

/* ===================== PAGAMENTO ===================== */
.pay__inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 2vh auto;
    padding: 1.5rem clamp(1.2rem, 5vw, 2rem) 4rem;
}

.pay__crumb {
    color: var(--muted);
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .75rem;
}

.pay__step h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin: .3rem 0 1.6rem;
}

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

.plan {
    background: var(--panel);
    border: 1.5px solid var(--line);
    border-radius: 14px;
    padding: 1.6rem 1.4rem;
    cursor: pointer;
    transition: transform .25s var(--ease), border-color .25s, background .25s;
    position: relative;
}

.plan:hover {
    transform: translateY(-5px);
    border-color: #555;
}

.plan.sel {
    border-color: var(--red);
    background: linear-gradient(180deg, #2a0a0e, var(--panel));
}

.plan__tag {
    position: absolute;
    top: -11px;
    left: 1.2rem;
    background: var(--red);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .25rem .7rem;
    border-radius: 99px;
}

.plan__name {
    font-size: 1.3rem;
    font-weight: 800;
}

.plan__q {
    color: var(--muted);
    font-size: .85rem;
    margin: .2rem 0 1rem;
}

.plan__price {
    font-size: 2rem;
    font-weight: 800;
}

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

.plan__list {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    gap: .5rem;
}

.plan__list li {
    font-size: .88rem;
    color: #d2d2d2;
    display: flex;
    gap: .5rem;
}

.plan__list svg {
    color: var(--ok);
    flex: none;
}

.pay__grid {
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 1.5rem;
    align-items: start;
}

.paycard {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.card3d {
    background: linear-gradient(135deg, #2b2b2b, #111);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.3rem;
    aspect-ratio: 16/9.5;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 50px -20px #000;
}

.card3d__brand {
    align-self: flex-end;
    font-family: var(--logo);
    color: var(--red);
    font-size: 1.4rem;
    transform: scaleY(1.15);
}

.card3d__num {
    font-size: 1.35rem;
    letter-spacing: .12em;
    font-variant-numeric: tabular-nums;
}

.card3d__row {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    color: #ccc;
    text-transform: uppercase;
}

.pay__summary {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.4rem;
    position: sticky;
    top: 1rem;
}

.pay__summary h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.pay__summary .row {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;
    color: #d2d2d2;
    font-size: .92rem;
    border-bottom: 1px solid var(--line);
}

.pay__summary .row--total {
    border: 0;
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
    margin-top: .4rem;
}

@media (max-width:760px) {

    .plans,
    .pay__grid {
        grid-template-columns: 1fr;
    }
}

/* ===================== PERFIS ===================== */
.profiles__inner,
.profedit__inner {
    position: relative;
    z-index: 2;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.2rem 4rem;
    text-align: center;
}

.profiles__inner h1 {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 500;
    margin-bottom: 2rem;
}

.profiles__grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2rem);
    justify-content: center;
    max-width: 900px;
}

.pcard {
    width: clamp(92px, 14vw, 150px);
    cursor: pointer;
    border: 0;
    background: none;
    transition: transform .2s var(--ease);
}

.pcard:hover {
    transform: scale(1.06);
}

.pcard__av {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.6rem, 6vw, 4rem);
    border: 3px solid transparent;
    transition: border-color .2s;
    position: relative;
    overflow: hidden;
}

.pcard:hover .pcard__av {
    border-color: #fff;
}

.pcard__name {
    margin-top: .6rem;
    color: var(--muted);
    font-size: clamp(.85rem, 2vw, 1.1rem);
}

.pcard:hover .pcard__name {
    color: #fff;
}

.pcard__kids {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: #0071e3;
    color: #fff;
    font-size: .55rem;
    font-weight: 800;
    padding: .1rem .35rem;
    border-radius: 4px;
    letter-spacing: .05em;
}

.pcard--add .pcard__av {
    background: transparent;
    color: #666;
    border: 2px dashed #555;
    font-size: 3rem;
}

.pcard--add:hover .pcard__av {
    color: #fff;
    border-color: #fff;
}

.manage .pcard__av::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" fill="none" stroke="white" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M5 25h5L23 12l-5-5L5 20z"/><path d="M18 7l5 5"/></svg>') center/34px no-repeat;
}

/* editor de perfil */
.profedit__inner h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 500;
    align-self: flex-start;
    max-width: 760px;
    margin: 0 auto 1.4rem;
    width: 100%;
}

.profedit__row {
    display: flex;
    gap: 1.8rem;
    align-items: flex-start;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1.6rem 0;
}

.profedit__avbig {
    width: clamp(90px, 16vw, 160px);
    aspect-ratio: 1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(3rem, 7vw, 5rem);
    flex: none;
}

.profedit__form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kids-toggle {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    cursor: pointer;
    background: #2b2b2b;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: .9rem;
}

.kids-toggle input {
    display: none;
}

.kids-toggle__box {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 2px solid #777;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    transition: .2s;
    color: transparent;
}

.kids-toggle input:checked+.kids-toggle__box {
    background: #0071e3;
    border-color: #0071e3;
    color: #fff;
}

.kids-toggle__txt small {
    display: block;
    color: var(--muted);
    font-size: .8rem;
}

.avpick__lbl {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    margin: .4rem 0 .4rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.avpick__row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.av-sw {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform .15s, border-color .15s;
}

.av-sw:hover {
    transform: scale(1.12);
}

.av-sw.sel {
    border-color: #fff;
}

.avsvg {
    display: block;
}

.av-sw svg {
    width: 64%;
    height: 64%;
    color: #fff;
}

.pcard__av svg,
.profedit__avbig svg {
    width: 56%;
    height: 56%;
    color: #fff;
}

.nav__avatar svg {
    width: 66%;
    height: 66%;
    color: #fff;
}

.mini-av svg {
    width: 64%;
    height: 64%;
    color: #fff;
}

[data-paystep="2"] {
    text-align: center;
}

.pay__confirm {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 470px;
    margin: 0 auto;
    text-align: left;
}

.pay__confirmform {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.profedit__actions {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    margin-top: .6rem;
}

@media (max-width:560px) {
    .profedit__row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===================== APP / NAV ===================== */
.app {
    background: var(--bg);
    min-height: 100vh;
    --hero-fade: #141414;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem clamp(1rem, 4vw, 3.5rem);
    background: linear-gradient(180deg, rgba(0, 0, 0, .85), transparent);
    transition: background .4s;
}

.nav.solid {
    background: var(--bg);
    box-shadow: 0 2px 14px rgba(0, 0, 0, .6);
}

.nav__left {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav__links {
    display: flex;
    gap: 1.2rem;
}

.nav__links a {
    font-size: .9rem;
    color: #e5e5e5;
    transition: color .2s;
}

.nav__links a:hover {
    color: #b3b3b3;
}

.nav__links a.is-active {
    font-weight: 700;
    color: #fff;
}

.nav__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search {
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: .3s var(--ease);
}

.search.open {
    background: rgba(0, 0, 0, .75);
    border-color: #fff;
    padding-left: .5rem;
}

.search__btn {
    padding: .35rem;
    font-size: 1.3rem;
    color: #fff;
}

.search input {
    width: 0;
    border: 0;
    background: none;
    color: #fff;
    font-size: .9rem;
    padding: .4rem 0;
    transition: width .3s var(--ease), padding .3s;
}

.search.open input {
    width: clamp(140px, 22vw, 240px);
    padding: .4rem .6rem .4rem .4rem;
    outline: none;
}

.nav__cf {
    font-size: 1.3rem;
    color: #fff;
    padding: .25rem;
    border-radius: 50%;
    transition: background .2s, color .2s, transform .3s;
}

.nav__cf:hover {
    transform: rotate(-20deg);
}

body.comfort .nav__cf {
    color: #ffce8a;
    background: rgba(255, 180, 90, .18);
}

.nav__prof {
    position: relative;
}

.nav__avatar {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav__drop {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: 230px;
    background: rgba(0, 0, 0, .92);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: .5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .22s var(--ease);
}

.nav__prof:hover .nav__drop,
.nav__drop.open {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.drop__item {
    display: flex;
    align-items: center;
    gap: .6rem;
    width: 100%;
    text-align: left;
    padding: .55rem .6rem;
    border-radius: 6px;
    font-size: .88rem;
    color: #e5e5e5;
}

.drop__item:hover {
    background: rgba(255, 255, 255, .1);
}

.drop__item .mini-av {
    width: 26px;
    height: 26px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex: none;
}

.drop__sep {
    height: 1px;
    background: var(--line);
    margin: .4rem 0;
}

/* ===================== HERO BILLBOARD ===================== */
.hero {
    position: relative;
    min-height: min(80vh, 720px);
    display: flex;
    align-items: flex-end;
    padding: 0 clamp(1rem, 4vw, 3.5rem) clamp(2rem, 6vw, 5rem);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(0deg, var(--bg) 2%, rgba(20, 20, 20, .12) 55%, transparent);
}

.hero__bg--img {
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center 15%;
}

.hero__poster {
    position: absolute;
    right: clamp(2rem, 6vw, 7rem);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(168px, 19vw, 280px);
    aspect-ratio: 2/3;
    z-index: 1;
}

.hero__poster-aura {
    position: absolute;
    inset: -24%;
    background-size: cover;
    background-position: center;
    filter: blur(48px) saturate(1.4);
    opacity: .5;
    border-radius: 50%;
    z-index: 0;
}

.hero__poster img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 30px 80px -16px rgba(0, 0, 0, .85);
    border: 1px solid rgba(255, 255, 255, .12);
}

@media (max-width:760px) {
    .hero__poster {
        display: none;
    }
}

@keyframes heroZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

.hero__grad {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .5) 38%, transparent 72%),
        linear-gradient(0deg, var(--hero-fade, var(--bg)) 0%, var(--hero-fade, var(--bg)) 5%, transparent 46%);
}

.hero__in {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .8rem;
    color: #fff;
    margin-bottom: .8rem;
}

.hero__tag b {
    color: var(--red);
    font-family: var(--logo);
    font-size: 1.4rem;
    transform: scaleY(1.15);
}

.hero__title {
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.02em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .6);
}

.hero__meta {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin: .9rem 0;
    font-size: .95rem;
    flex-wrap: wrap;
}

.hero__match {
    color: var(--ok);
    font-weight: 700;
}

.tag-mat {
    border: 1px solid rgba(255, 255, 255, .4);
    padding: 0 .45rem;
    border-radius: 3px;
    font-size: .8rem;
}

.hero__syn {
    font-size: clamp(.95rem, 1.6vw, 1.15rem);
    color: #e5e5e5;
    max-width: 36rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .7);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero__btns {
    display: flex;
    gap: .8rem;
    margin-top: 1.3rem;
    flex-wrap: wrap;
}

.hero__dots {
    position: absolute;
    right: clamp(1rem, 4vw, 3.5rem);
    bottom: clamp(2rem, 6vw, 5rem);
    z-index: 2;
    display: flex;
    gap: .4rem;
}

.hero__dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
}

.hero__dots button.on {
    background: var(--red);
    width: 22px;
    border-radius: 6px;
}

/* ===================== TOOLBAR (recursos novos) ===================== */
.toolbar {
    position: relative;
    z-index: 5;
    margin: -2vw clamp(1rem, 4vw, 3.5rem) 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.chipset {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    align-items: center;
}

.chipset::before {
    content: attr(aria-label);
    color: var(--muted);
    font-size: .8rem;
    font-weight: 600;
    margin-right: .2rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .06);
    color: #e5e5e5;
    padding: .4rem .85rem;
    border-radius: 99px;
    font-size: .85rem;
    font-weight: 600;
    transition: .2s var(--ease);
    white-space: nowrap;
}

.chip svg {
    width: 1.05rem;
    height: 1.05rem;
}

.chip:hover {
    border-color: #fff;
}

.chip.on {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.surprise {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(120deg, var(--red), #ff5a3c);
    color: #fff;
    font-weight: 700;
    padding: .5rem 1.1rem;
    border-radius: 99px;
    font-size: .9rem;
    transition: transform .2s var(--ease), box-shadow .2s;
    box-shadow: 0 8px 22px -8px rgba(229, 9, 20, .7);
}

.surprise:hover {
    transform: translateY(-2px);
}

/* ===================== ROWS / CARROSSÉIS ===================== */
.rows {
    position: relative;
    z-index: 4;
    padding: 1rem 0 3rem;
}

.row {
    margin: 0 0 2.6vw;
}

.row__head {
    display: flex;
    align-items: baseline;
    gap: .6rem;
    padding: 0 clamp(1rem, 4vw, 3.5rem);
    margin-bottom: .7rem;
}

.row__title {
    font-size: clamp(1.05rem, 1.6vw, 1.4rem);
    font-weight: 700;
}

.row__count {
    color: var(--muted);
    font-size: .8rem;
}

.row__scroller {
    position: relative;
}

.row__track {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: .4rem clamp(1rem, 4vw, 3.5rem);
    scrollbar-width: none;
}

.row__track::-webkit-scrollbar {
    display: none;
}

.row__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    z-index: 7;
    background: rgba(18, 18, 18, .72);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .5);
    transition: opacity .25s var(--ease), background .2s, transform .2s var(--ease), border-color .2s;
}

/* só nas fileiras que têm o que rolar */
.row__scroller:not(.scrollable) .row__arrow {
    display: none;
}

.row__scroller.scrollable:hover .row__arrow {
    opacity: 1;
    pointer-events: auto;
}

.row__arrow:hover {
    background: rgba(0, 0, 0, .92);
    border-color: #fff;
    transform: translateY(-50%) scale(1.14);
}

/* esconde a seta quando já está na ponta */
.row__scroller.at-start .row__arrow--l,
.row__scroller.at-end .row__arrow--r {
    opacity: 0 !important;
    pointer-events: none;
}

.row__arrow--l {
    left: clamp(.4rem, 1.5vw, 1.1rem);
}

.row__arrow--r {
    right: clamp(.4rem, 1.5vw, 1.1rem);
}

.row__arrow svg {
    width: 24px;
    height: 24px;
}

.row__arrow--l svg {
    transform: rotate(180deg);
}

/* CARD */
.card {
    flex: 0 0 auto;
    width: clamp(120px, 15vw, 200px);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #222;
    aspect-ratio: 2/3;
    transition: transform .3s var(--ease), box-shadow .3s;
    will-change: transform;
}

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

.card:hover {
    transform: scale(1.09);
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, .85);
    z-index: 3;
}

.card__rank {
    position: absolute;
    left: -2px;
    bottom: 0;
    font-family: var(--logo);
    font-size: 5rem;
    line-height: .8;
    color: #111;
    -webkit-text-stroke: 2px #777;
    transform: scaleY(1.15);
    z-index: 2;
}

.card__ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .92) 8%, transparent 55%);
    opacity: 0;
    transition: opacity .25s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: .7rem;
    gap: .5rem;
}

.card:hover .card__ov {
    opacity: 1;
}

.card__ttl {
    font-size: .85rem;
    font-weight: 700;
    line-height: 1.1;
}

.card__sub {
    font-size: .72rem;
    color: var(--ok);
    font-weight: 700;
}

.card__acts {
    display: flex;
    gap: .4rem;
}

.iconbtn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .6);
    background: rgba(20, 20, 20, .7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .18s var(--ease);
}

.iconbtn:hover {
    border-color: #fff;
    background: #fff;
    color: #111;
    transform: scale(1.12);
}

.iconbtn--play {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.iconbtn.on {
    background: var(--ok);
    border-color: var(--ok);
    color: #06310f;
}

.row--num .card {
    width: clamp(150px, 16vw, 210px);
    aspect-ratio: auto;
    height: clamp(150px, 17vw, 220px);
    background: none;
    display: flex;
    align-items: flex-end;
    overflow: visible;
}

.row--num .card .poster {
    width: 62%;
    margin-left: auto;
    border-radius: 6px;
    aspect-ratio: 2/3;
    object-fit: cover;
    box-shadow: -8px 0 20px -8px rgba(0, 0, 0, .7);
}

.row--num .card__ov {
    display: none;
}

.row--num .card:hover {
    transform: scale(1.05);
}

/* ===================== MODAL DETALHE ===================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 800;
    display: grid;
    place-items: start center;
    overflow-y: auto;
    padding: 3vh 1rem;
}

.modal__scrim {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    animation: fade .3s;
}

.modal__card {
    position: relative;
    width: min(880px, 96vw);
    background: #181818;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .8);
    animation: modalIn .35s var(--ease);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.96);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.modal__hero {
    position: relative;
    aspect-ratio: 16/8;
    overflow: hidden;
    background: linear-gradient(150deg, #212121, #181818);
    border-radius: 10px 10px 0 0;
}

.modal__herobg--img,
.modal__herobg--poster {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
}

.modal__herobg--img {
    background-position: center 16%;
}

.modal__herobg--poster {
    background-position: center;
}

.modal__poster {
    position: absolute;
    right: clamp(1.2rem, 4vw, 3rem);
    bottom: 1.2rem;
    width: clamp(110px, 13vw, 158px);
    aspect-ratio: 2/3;
    z-index: 2;
}

.modal__poster .hero__poster-aura {
    inset: -28%;
    filter: blur(40px) saturate(1.35);
    opacity: .55;
}

.modal__poster img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 18px 44px -12px rgba(0, 0, 0, .9);
    border: 1px solid rgba(255, 255, 255, .12);
}

.modal__hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, #181818 0%, transparent 42%), linear-gradient(90deg, rgba(24, 24, 24, .6), transparent 62%);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #181818;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.modal__heroin {
    position: absolute;
    z-index: 2;
    left: clamp(1.2rem, 4vw, 3rem);
    bottom: 1.4rem;
    right: 1.2rem;
}

.modal__title {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .7);
}

.modal__btns {
    display: flex;
    gap: .7rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.modal__body {
    padding: 1.4rem clamp(1.2rem, 4vw, 3rem) 2rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1.6rem;
}

.modal__meta {
    display: flex;
    align-items: center;
    gap: .8rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: .92rem;
}

.modal__syn {
    line-height: 1.55;
}

.modal__facts {
    font-size: .88rem;
}

.modal__facts p {
    margin-bottom: .7rem;
}

.modal__facts span {
    color: #777;
}

.modal__facts a {
    color: #fff;
}

.modal__tags {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
    grid-column: 1/-1;
}

.gtag {
    background: #333;
    color: #ddd;
    font-size: .78rem;
    padding: .25rem .7rem;
    border-radius: 99px;
}

.modal__more {
    grid-column: 1/-1;
}

.modal__more h3 {
    margin: .4rem 0 1rem;
    font-size: 1.3rem;
}

.simgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: .8rem;
}

.sim {
    background: #2b2b2b;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s var(--ease);
}

.sim:hover {
    transform: translateY(-4px);
}

.sim img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.sim__b {
    padding: .6rem .7rem .8rem;
}

.sim__b .match {
    color: var(--ok);
    font-weight: 700;
    font-size: .8rem;
}

.sim__b h4 {
    font-size: .9rem;
    margin-top: .2rem;
}

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

/* ===================== BUSCA ===================== */
.searchview {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: var(--bg);
    padding: 5.5rem clamp(1rem, 4vw, 3.5rem) 3rem;
    overflow-y: auto;
    animation: fade .25s;
}

.searchview h2 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--muted);
}

.searchview h2 b {
    color: #fff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(120px, 15vw, 180px), 1fr));
    gap: .8rem;
}

.grid .card {
    width: 100%;
}

.empty {
    text-align: center;
    color: var(--muted);
    padding: 4rem 1rem;
}

/* ===================== ROLETA ===================== */
.roulette {
    position: fixed;
    inset: 0;
    z-index: 850;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .85);
    animation: fade .25s;
}

.roulette__inner {
    text-align: center;
    width: min(90vw, 520px);
}

.roulette__lbl {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1.2rem;
}

.roulette__reel {
    height: 330px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    border: 2px solid var(--red);
    box-shadow: 0 0 50px -8px var(--red);
}

.roulette__reel img {
    width: 220px;
    aspect-ratio: 2/3;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

/* ===================== TOAST ===================== */
.toast {
    position: fixed;
    left: 50%;
    bottom: 2rem;
    transform: translate(-50%, 30px);
    z-index: 999;
    background: #fff;
    color: #111;
    font-weight: 600;
    padding: .8rem 1.3rem;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: .3s var(--ease);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .5);
    max-width: 90vw;
}

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

/* ===================== MODO CONFORTO ===================== */
.comfort-overlay {
    position: fixed;
    inset: 0;
    z-index: 950;
    pointer-events: none;
    background: rgba(255, 153, 51, .16);
    mix-blend-mode: multiply;
    opacity: 0;
    transition: opacity .5s ease;
}

body.comfort .comfort-overlay {
    opacity: 1;
}

body.comfort {
    --x: 0;
}

/* ===================== MODO KIDS ===================== */
body.kids .app {
    background: #071a2f;
    background-image: radial-gradient(120% 80% at 100% 0, #123a63, #071a2f);
    --hero-fade: #0a2540;
}

body.kids .nav.solid {
    background: #0a2747;
}

body.kids .nav {
    background: linear-gradient(180deg, rgba(10, 39, 71, .9), transparent);
}

body.kids .hero__match {
    color: #ffd23f;
}

body.kids .card {
    border-radius: 16px;
}

body.kids .row__title {
    color: #ffd23f;
}

body.kids .surprise {
    background: linear-gradient(120deg, #0071e3, #16a3a3);
    box-shadow: 0 8px 22px -8px rgba(0, 113, 227, .7);
}

body.kids .chip.on {
    background: #ffd23f;
    color: #06233f;
}

body.kids .btn--red {
    background: #0071e3;
}

body.kids .btn--red:hover {
    background: #005bb8;
}

/* reveal landing */
.why {
    opacity: 0;
    transform: translateY(20px);
    animation: rise .6s var(--ease) forwards;
}

.why:nth-child(2) {
    animation-delay: .1s;
}

.why:nth-child(3) {
    animation-delay: .2s;
}

.why:nth-child(4) {
    animation-delay: .3s;
}

@keyframes rise {
    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width:640px) {
    .nav__links a[data-cat="mylist"] {
        display: none;
    }

    .hero {
        min-height: 70vh;
    }

    .toolbar {
        gap: .6rem;
    }

    .chipset--time {
        display: none;
    }

    .surprise {
        margin-left: 0;
    }
}
