
/* Extreme V46 — interface móvel própria, fluida e inspirada em aplicativos nativos. */

:root {
    --orange: #ff7a00;
    --orange-2: #ff9a1a;
    --green: #44d483;
    --bg: #020202;
    --surface: #0b0b0b;
    --surface-2: #111;
    --surface-3: rgba(255,255,255,.055);
    --line: rgba(255,255,255,.10);
    --line-strong: rgba(255,255,255,.17);
    --text: #fff;
    --muted: #b5b5b5;
    --muted-2: #818181;
    --topbar: 72px;
    --bottom-nav: 74px;
    --gutter: 16px;
    --radius: 22px;
    --radius-lg: 30px;
}

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

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--topbar) + 12px);
    background: #000;
}

body {
    width: 100%;
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    padding-bottom: calc(var(--bottom-nav) + env(safe-area-inset-bottom) + 18px);
    background:
        radial-gradient(circle at 88% 4%, rgba(255,122,0,.14), transparent 24rem),
        #000;
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open,
body.hero-detail-open { overflow: hidden; }

body.menu-open::before,
body.hero-detail-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(9px);
}

body.hero-detail-open::after {
    z-index: 119;
    pointer-events: auto;
}

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; height: auto; }
svg { width: 1.15rem; height: 1.15rem; fill: currentColor; }

/* Progressive enhancement: subtle section entrance without hiding content when JS is unavailable. */
.motion-ready .reveal-section {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity .58s ease, transform .72s cubic-bezier(.2,.7,.2,1);
}
.motion-ready .reveal-section.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
    .motion-ready .reveal-section,
    .motion-ready .reveal-section.is-revealed {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


.side-menu { display: none; }
.page {
    width: 100%;
    margin: 0;
    overflow: clip;
    isolation: isolate;
}

.responsive-copy--desktop { display: initial; }
.responsive-copy--mobile { display: none; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* App bar */
.mobile-topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 110;
    height: calc(var(--topbar) + env(safe-area-inset-top));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: env(safe-area-inset-top) var(--gutter) 0;
    background: linear-gradient(180deg, rgba(0,0,0,.90), rgba(0,0,0,.26));
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.mobile-topbar.is-scrolled {
    background: rgba(5,5,5,.94);
    border-color: rgba(255,122,0,.18);
    box-shadow: 0 16px 38px rgba(0,0,0,.46);
    backdrop-filter: blur(22px) saturate(1.25);
}

.mobile-brand {
    min-width: 0;
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-brand img {
    width: clamp(92px, 26vw, 120px);
    max-height: 39px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(255,122,0,.20));
}

.mobile-brand-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 10px;
    border-left: 1px solid rgba(255,255,255,.14);
}

.mobile-brand-copy strong {
    overflow: hidden;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 13px;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.mobile-brand-copy small {
    overflow: hidden;
    max-width: 156px;
    color: #8f8f8f;
    font-size: 8px;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.menu-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(255,122,0,.32);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,122,0,.15), rgba(255,122,0,.05));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 99px;
    background: var(--orange);
    transition: transform .22s ease, opacity .22s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu em formato de bottom sheet */
.mobile-nav {
    position: fixed;
    z-index: 113;
    left: 10px;
    right: 10px;
    bottom: calc(var(--bottom-nav) + env(safe-area-inset-bottom) + 14px);
    max-width: 620px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 15px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(26px) scale(.985);
    pointer-events: none;
    border: 1px solid rgba(255,122,0,.30);
    border-radius: 26px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,122,0,.15), transparent 40%),
        rgba(8,8,8,.98);
    box-shadow: 0 32px 90px rgba(0,0,0,.80);
    backdrop-filter: blur(24px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.mobile-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.035);
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.mobile-nav a:active {
    color: var(--orange);
    border-color: rgba(255,122,0,.55);
    background: rgba(255,122,0,.09);
}

/* Navegação principal inferior */
.mobile-bottom-nav {
    position: fixed;
    z-index: 116;
    left: 10px;
    right: 10px;
    bottom: max(8px, env(safe-area-inset-bottom));
    height: var(--bottom-nav);
    max-width: 620px;
    margin-inline: auto;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    align-items: center;
    padding: 7px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 25px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,122,0,.13), transparent 48%),
        linear-gradient(180deg, rgba(20,20,20,.96), rgba(6,6,6,.97));
    box-shadow: 0 22px 64px rgba(0,0,0,.68), inset 0 0 0 1px rgba(255,255,255,.02);
    backdrop-filter: blur(24px) saturate(1.3);
}

.mobile-bottom-nav-link {
    position: relative;
    min-width: 0;
    height: 56px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    border-radius: 17px;
    color: #818181;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.mobile-bottom-nav-link svg {
    width: 21px;
    height: 21px;
}

.mobile-bottom-nav-link span {
    overflow: hidden;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.mobile-bottom-nav-link::after {
    content: "";
    position: absolute;
    bottom: 3px;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: transparent;
}

.mobile-bottom-nav-link.is-active {
    color: #fff;
    background: linear-gradient(180deg, rgba(255,122,0,.19), rgba(255,122,0,.055));
    transform: translateY(-1px);
}

.mobile-bottom-nav-link.is-active svg { color: var(--orange); }
.mobile-bottom-nav-link.is-active::after {
    background: var(--orange);
    box-shadow: 0 0 14px rgba(255,122,0,.72);
}

/* Hero — tela inicial do app */
@keyframes heroDrift {
    from { transform: scale(1.06) translate3d(0,0,0); }
    to { transform: scale(1.12) translate3d(-2%,1%,0); }
}

.hero {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--topbar) + env(safe-area-inset-top) + 34px) var(--gutter) 36px;
    overflow: hidden;
    isolation: isolate;
    background: #000;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-color: #0a0a0a;
    background-position: 68% center;
    background-size: cover;
    opacity: .88;
    filter: saturate(1.08) contrast(1.05);
    animation: heroDrift 18s ease-in-out infinite alternate;
    transition: opacity .35s ease, transform 4s ease;
}

.hero.is-switching .hero-backdrop {
    opacity: .22;
    transform: scale(1.10);
}

.hero-overlay,
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.60) 60%, rgba(0,0,0,.28)),
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.56) 58%, #000 100%);
}

.hero::before {
    background:
        radial-gradient(circle at 12% 20%, rgba(255,122,0,.20), transparent 15rem),
        radial-gradient(circle at 90% 70%, rgba(255,122,0,.08), transparent 15rem);
}

.hero::after {
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, transparent, #000);
}

.hero-content,
.mobile-hero-section-label,
.hero-poster-wall {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
}

.eyebrow {
    margin: 0 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--orange);
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 11px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: .55px;
    text-transform: uppercase;
}

.eyebrow span {
    width: 34px;
    height: 7px;
    flex: 0 0 auto;
    transform: skewX(-14deg);
    background: repeating-linear-gradient(110deg, rgba(255,122,0,.98) 0 8px, transparent 8px 14px);
}

.hero h1 {
    max-width: 610px;
    margin: 0;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: clamp(37px, 10.5vw, 52px);
    font-weight: 700;
    font-style: italic;
    line-height: .91;
    letter-spacing: -.7px;
    text-wrap: balance;
    text-transform: uppercase;
    text-shadow: 0 16px 36px rgba(0,0,0,.78);
}

.hero h1 em { color: var(--orange); font-style: inherit; }

.hero-lead {
    max-width: 590px;
    margin: 17px 0 0;
    color: rgba(255,255,255,.84);
    font-size: 14px;
    line-height: 1.62;
}

/* Atalhos do portfólio: aparência de tela inicial */
.hero-service-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.hero-service-grid a {
    min-width: 0;
    min-height: 78px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    padding: 13px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 19px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,122,0,.12), transparent 46%),
        rgba(10,10,10,.72);
    box-shadow: 0 16px 34px rgba(0,0,0,.27);
    backdrop-filter: blur(14px);
}

.hero-service-grid a:active {
    transform: scale(.985);
    border-color: rgba(255,122,0,.58);
}

.hero-service-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,122,0,.27);
    border-radius: 14px;
    color: var(--orange);
    background: rgba(255,122,0,.10);
}

.hero-service-icon svg { width: 23px; height: 23px; }

.hero-service-grid a > span:last-child { min-width: 0; }

.hero-service-grid strong {
    display: block;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 14.5px;
    line-height: 1.05;
    text-transform: uppercase;
}

.hero-service-grid small {
    display: block;
    margin-top: 5px;
    color: #969696;
    font-size: 9.3px;
    line-height: 1.25;
}

.mobile-hero-section-label {
    margin-top: 27px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
}

.mobile-hero-section-label span {
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
}

.mobile-hero-section-label small {
    color: #888;
    font-size: 9px;
    text-align: right;
}

.hero-poster-wall {
    width: calc(100% + var(--gutter));
    margin-top: 12px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(116px, 31vw, 150px);
    gap: 11px;
    overflow-x: auto;
    padding: 3px var(--gutter) 14px 0;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
}

.hero-poster-wall::-webkit-scrollbar { display: none; }

.poster-tile {
    appearance: none;
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    scroll-snap-align: start;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 19px;
    background: #161616 center/cover no-repeat;
    box-shadow: 0 16px 34px rgba(0,0,0,.34);
    transition: transform .20s ease, border-color .20s ease, box-shadow .20s ease;
}

.poster-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 54%, rgba(0,0,0,.38));
}

.poster-tile.is-active {
    transform: translateY(-3px);
    border-color: rgba(255,122,0,.88);
    box-shadow: 0 0 0 1px rgba(255,122,0,.18) inset, 0 18px 40px rgba(0,0,0,.42), 0 0 23px rgba(255,122,0,.17);
}

.poster-tile-indicator {
    position: absolute;
    z-index: 2;
    right: 9px;
    bottom: 9px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: rgba(255,122,0,.94);
    box-shadow: 0 0 18px rgba(255,122,0,.34);
}

.poster-tile-indicator svg { width: 14px; height: 14px; }

/* Painel de detalhes */
.hero-media-detail {
    position: fixed;
    z-index: 122;
    top: auto;
    left: 10px;
    right: 10px;
    bottom: calc(var(--bottom-nav) + env(safe-area-inset-bottom) + 15px);
    max-width: 620px;
    max-height: min(70vh, 540px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 15px;
    padding: 16px;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(28px) scale(.985);
    pointer-events: none;
    border: 1px solid rgba(255,122,0,.34);
    border-radius: 26px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,122,0,.15), transparent 38%),
        rgba(8,8,8,.985);
    box-shadow: 0 34px 100px rgba(0,0,0,.82);
    backdrop-filter: blur(25px);
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

.hero-media-detail.is-visible,
body.hero-detail-open .hero-media-detail {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.hero-media-detail.is-updating { opacity: .48; }

.hero-detail-close {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    padding: 0 0 2px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    background: rgba(0,0,0,.68);
    font-size: 24px;
    line-height: 1;
}

.hero-detail-poster {
    width: 108px;
    aspect-ratio: 2 / 3;
    border-radius: 16px;
    background: #161616 center/cover no-repeat;
    box-shadow: 0 17px 35px rgba(0,0,0,.42);
}

.hero-detail-copy {
    min-width: 0;
    padding: 13px 30px 3px 0;
}

.hero-media-detail small {
    display: block;
    margin-bottom: 7px;
    color: var(--orange);
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.hero-media-detail strong {
    display: block;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: clamp(25px, 7vw, 34px);
    line-height: .98;
    text-transform: uppercase;
}

.hero-media-detail p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 12.3px;
    line-height: 1.54;
}

/* Seções: sem caixa externa duplicada */
.pillar-section,
.ecosystem-panel {
    width: 100%;
    margin: 0;
    padding: 32px var(--gutter);
    border: 0;
    border-radius: 0;
    background: #000;
    box-shadow: none;
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

.pillar-section + .pillar-section,
.ecosystem-panel {
    border-top: 1px solid rgba(255,122,0,.16);
}

.internet-section {
    background:
        radial-gradient(circle at 100% 8%, rgba(255,122,0,.10), transparent 24rem),
        linear-gradient(180deg, #030303, #000);
}

.platform-section--apps {
    background:
        radial-gradient(circle at 0% 14%, rgba(255,122,0,.08), transparent 22rem),
        #000;
}

.platform-section--shop {
    background:
        radial-gradient(circle at 100% 10%, rgba(255,122,0,.10), transparent 22rem),
        #000;
}

.pillar-heading {
    max-width: 760px;
    margin: 0 auto 18px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 8px 13px;
    align-items: start;
}

.pillar-heading > div { display: contents; }
.pillar-heading .eyebrow { grid-column: 2; align-self: end; }
.pillar-heading h2,
.pillar-heading > div > p:not(.eyebrow) { grid-column: 1 / -1; }

.pillar-heading--desktop { display: grid; }
.pillar-heading--mobile { display: none; }

.pillar-number {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,122,0,.30);
    border-radius: 17px;
    color: var(--orange);
    background: linear-gradient(180deg, rgba(255,122,0,.13), rgba(255,122,0,.045));
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
}

.pillar-heading .eyebrow {
    margin-bottom: 7px;
    font-size: 9px;
}

.pillar-heading .eyebrow span {
    width: 23px;
    height: 6px;
}

.pillar-heading h2 {
    margin: 0;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: clamp(28px, 7.5vw, 39px);
    font-weight: 700;
    font-style: italic;
    line-height: .95;
    letter-spacing: -.4px;
    text-wrap: balance;
    text-transform: uppercase;
}

.pillar-heading > div > p:not(.eyebrow) {
    margin: 11px 0 0;
    color: #b8b8b8;
    font-size: 12.6px;
    line-height: 1.56;
}

/* Imagens */
.section-illustration {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #050505;
}

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

/* Play: imagem grande + conteúdo como folha sobreposta */
.desktop-play-showcase {
    max-width: 760px;
    margin-inline: auto;
    display: grid;
    gap: 0;
}

.mobile-play-showcase { display: none; }

.play-showcase-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 26px;
    background: #050505;
    box-shadow: 0 22px 54px rgba(0,0,0,.42);
}

.play-showcase-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 68% 45%, rgba(255,122,0,.14), transparent 25%),
        linear-gradient(180deg, transparent 48%, rgba(0,0,0,.70));
}



.play-compatibility-copy > small,
.platform-copy > small,
.pillar-compatibility small {
    display: block;
    margin-bottom: 7px;
    color: var(--orange);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.platform-copy h3 {
    margin: 0;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: clamp(27px, 7.4vw, 38px);
    font-weight: 700;
    font-style: italic;
    line-height: .97;
    text-transform: uppercase;
}

.platform-copy > p {
    margin: 12px 0 0;
    color: #b8b8b8;
    font-size: 12.5px;
    line-height: 1.58;
}


.play-compatibility {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 22px;
    background: rgba(255,255,255,.025);
}

.play-compatibility-copy strong,
.pillar-compatibility strong {
    display: block;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 21px;
    line-height: 1.03;
    text-transform: uppercase;
}

.play-compatibility-copy p,
.internet-compatibility p {
    margin: 8px 0 0;
    color: #929292;
    font-size: 10.4px;
    line-height: 1.48;
}

/* Logos */
.brand-chip-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.brand-chip {
    min-width: 52px;
    height: 37px;
    padding: 6px 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.66);
    border-radius: 11px;
    background: linear-gradient(180deg, #fff, #ececec);
    box-shadow: 0 6px 14px rgba(0,0,0,.22);
}

.brand-logo {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #171717;
    line-height: 1;
}

.brand-logo img {
    width: auto;
    height: auto;
    max-width: 76px;
    max-height: 19px;
    object-fit: contain;
}

.brand-inline-label,
.brand-fallback {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #171717;
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.brand-logo img + .brand-fallback { display: none; }
.brand-fallback svg { width: 14px; height: 14px; color: #ff7200; }
.brand-logo--android img { max-width: 66px; max-height: 16px; }
.brand-logo--android-tv img { max-width: 66px; max-height: 17px; }
.brand-logo--fire-tv img { max-width: 68px; max-height: 17px; }
.brand-logo--roku img { max-width: 48px; max-height: 17px; }
.brand-logo--samsung img { max-width: 69px; max-height: 16px; }
.brand-logo--lg img { max-width: 45px; max-height: 18px; }
.brand-logo--tim img { max-width: 48px; max-height: 17px; }
.brand-logo--vivo img { max-width: 43px; max-height: 18px; }
.brand-chip--tv-box { min-width: 69px; }

/* Internet: imagem própria em largura total */
.section-illustration--internet {
    max-width: 760px;
    aspect-ratio: 4 / 3;
    margin: 0 auto 14px;
    border-radius: 26px;
    box-shadow: 0 22px 52px rgba(0,0,0,.38);
}

.internet-experience {
    max-width: 760px;
    margin-inline: auto;
    display: grid;
    gap: 12px;
}

.internet-app-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,122,0,.24);
    border-radius: 23px;
    background:
        radial-gradient(circle at 50% 34%, rgba(255,122,0,.16), transparent 36%),
        linear-gradient(160deg, rgba(18,18,18,.98), rgba(2,2,2,.99));
    box-shadow: 0 20px 44px rgba(0,0,0,.30);
}

.internet-app-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(180deg, #000, transparent 76%);
}

.internet-app-head,
.internet-app-status,
.internet-app-route,
.internet-play-button {
    position: relative;
    z-index: 1;
}

.internet-app-head {
    display: grid;
    grid-template-columns: 41px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.internet-app-brand {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,122,0,.27);
    border-radius: 13px;
    color: var(--orange);
    background: rgba(255,122,0,.08);
}

.internet-app-brand svg { width: 22px; height: 22px; }

.internet-app-head small {
    display: block;
    margin-bottom: 2px;
    color: var(--orange);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.internet-app-head strong {
    display: block;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
}

@keyframes pulse {
    0%,100% { transform: scale(1); opacity: .9; }
    50% { transform: scale(1.12); opacity: 1; }
}

@keyframes orbit {
    to { transform: rotate(360deg); }
}

.internet-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(68,212,131,.09), 0 0 16px rgba(68,212,131,.42);
    animation: pulse 1.8s ease-in-out infinite;
}

.internet-app-status {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 20px auto 16px;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
}

.internet-status-orbit {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,122,0,.18);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255,122,0,.11), transparent 58%),
        conic-gradient(from 0deg, transparent 0 68%, rgba(255,122,0,.84) 74%, transparent 82% 100%);
    animation: orbit 7s linear infinite;
}

.internet-status-orbit::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    background: rgba(0,0,0,.75);
}

.internet-status-icon {
    position: relative;
    z-index: 1;
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    margin-bottom: 8px;
    border-radius: 15px;
    color: var(--orange);
    background: rgba(255,122,0,.10);
}

.internet-status-icon svg { width: 24px; height: 24px; }

.internet-app-status small,
.internet-app-status strong,
.internet-app-status p { position: relative; z-index: 1; }

.internet-app-status small {
    color: #8f8f8f;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.internet-app-status strong {
    margin-top: 4px;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 25px;
    line-height: 1;
    text-transform: uppercase;
}

.internet-app-status p {
    max-width: 136px;
    margin: 6px auto 0;
    color: #aaa;
    font-size: 9.6px;
    line-height: 1.35;
}

.internet-app-route {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    gap: 6px;
    align-items: center;
    color: #bbb;
    font-size: 7.5px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.internet-app-route i {
    height: 1px;
    background: linear-gradient(90deg, rgba(255,122,0,.16), rgba(255,122,0,.82), rgba(255,122,0,.16));
}

.internet-play-button {
    min-height: 54px;
    margin-top: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, rgba(255,122,0,.18), rgba(255,122,0,.05));
}

.internet-play-button.is-disabled { opacity: .70; }

.internet-play-icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: var(--orange);
}

.internet-play-icon svg { width: 19px; height: 19px; }

.internet-play-button small {
    display: block;
    color: #999;
    font-size: 7px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.internet-play-button strong {
    display: block;
    margin-top: 2px;
    font-size: 12px;
}

.internet-value-copy {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,122,0,.12), transparent 34%),
        rgba(255,255,255,.025);
}

.internet-value-copy > small {
    display: block;
    margin-bottom: 7px;
    color: var(--orange);
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.internet-value-copy h3 {
    margin: 0;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: clamp(29px, 8.4vw, 40px);
    font-weight: 700;
    font-style: italic;
    line-height: .97;
    text-transform: uppercase;
}

.internet-value-copy > p {
    margin: 12px 0 0;
    color: #c0c0c0;
    font-size: 12px;
    line-height: 1.56;
}

/* Trilhos horizontais */
.internet-value-points,
.internet-benefits-grid,
.internet-how-it-works ol,
.platform-highlights,
.product-grid {
    display: grid;
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
}

.internet-value-points::-webkit-scrollbar,
.internet-benefits-grid::-webkit-scrollbar,
.internet-how-it-works ol::-webkit-scrollbar,
.platform-highlights::-webkit-scrollbar,
.product-grid::-webkit-scrollbar { display: none; }

.internet-value-points {
    grid-auto-columns: minmax(228px, 78%);
    gap: 9px;
    margin-top: 15px;
    padding-bottom: 3px;
}

.internet-value-points > span {
    scroll-snap-align: start;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 3px 9px;
    padding: 13px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    background: rgba(0,0,0,.30);
}

.internet-value-points svg {
    grid-row: 1 / span 2;
    width: 24px;
    height: 24px;
    color: var(--orange);
}

.internet-value-points b { font-size: 11.8px; }

.internet-value-points small {
    color: #979797;
    font-size: 10px;
    line-height: 1.38;
}

.mobile-info-grid.internet-benefits-grid {
    max-width: 760px;
    margin: 13px auto 0;
    grid-auto-columns: minmax(230px, 80%);
    gap: 9px;
    padding-bottom: 3px;
}

.mobile-info-grid article {
    scroll-snap-align: start;
    min-height: 118px;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-content: start;
    gap: 5px 10px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
        rgba(0,0,0,.28);
}

.mobile-info-grid svg {
    grid-row: 1 / span 2;
    width: 26px;
    height: 26px;
    color: var(--orange);
}

.mobile-info-grid h3,
.mobile-info-grid p { grid-column: 2; }

.mobile-info-grid h3 {
    margin: 0;
    font-size: 13px;
    line-height: 1.2;
}

.mobile-info-grid p {
    margin: 0;
    color: #aaa;
    font-size: 10.7px;
    line-height: 1.45;
}

.internet-how-it-works {
    max-width: 760px;
    margin: 13px auto 0;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 19px;
    background: rgba(255,255,255,.02);
}

.internet-how-it-works > header { margin-bottom: 11px; }

.internet-how-it-works > header small {
    display: block;
    color: var(--orange);
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.internet-how-it-works > header strong {
    display: block;
    margin-top: 4px;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 21px;
    text-transform: uppercase;
}

.internet-how-it-works ol {
    grid-auto-columns: minmax(220px, 78%);
    gap: 8px;
    margin: 0;
    padding: 0 0 3px;
    list-style: none;
}

.internet-how-it-works li {
    scroll-snap-align: start;
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(0,0,0,.28);
}

.internet-how-it-works li > span {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--orange);
    background: rgba(255,122,0,.08);
    font-family: Rajdhani, Inter, sans-serif;
    font-weight: 700;
}

.internet-how-it-works b { display: block; font-size: 11.8px; }

.internet-how-it-works p {
    margin: 4px 0 0;
    color: #999;
    font-size: 10px;
    line-height: 1.4;
}

.pillar-compatibility {
    max-width: 760px;
    margin: 13px auto 0;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 19px;
    background: rgba(255,255,255,.025);
}

/* Planos e preços por serviço */
.service-plans {
    width: 100%;
    max-width: 760px;
    margin: 18px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.09);
}
.service-plans-heading {
    display: grid;
    gap: 9px;
    margin-bottom: 13px;
}
.service-plans-heading small {
    display: block;
    margin-bottom: 5px;
    color: var(--orange);
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: .09em;
}
.service-plans-heading h3 {
    margin: 0;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: clamp(28px, 8vw, 39px);
    font-weight: 700;
    font-style: italic;
    line-height: .98;
    text-transform: uppercase;
}
.service-plans-heading p {
    margin: 0;
    color: #a9a9a9;
    font-size: 11.5px;
    line-height: 1.5;
}
.service-plan-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
}
.service-plan-card {
    position: relative;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 17px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 19px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,122,0,.09), transparent 36%),
        linear-gradient(160deg, rgba(18,18,18,.96), rgba(5,5,5,.98));
    isolation: isolate;
    box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.service-plan-card.is-featured { border-color: rgba(255,122,0,.58); }

.service-plan-card > * {
    position: relative;
    z-index: 1;
}
.service-plan-watermark {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    opacity: .11;
    transform-origin: top right;
}
.service-plan-watermark img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(1.35) contrast(1.05);
}
.service-plan-watermark--play {
    width: clamp(110px, 32%, 152px);
    mix-blend-mode: screen;
}
.service-plan-watermark--internet {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.86);
    transform: rotate(-12deg);
}
.service-plan-watermark-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
}
.service-plan-watermark-icon svg {
    width: 100%;
    height: 100%;
}
.service-plan-watermark-text {
    display: grid;
    line-height: .88;
    text-transform: uppercase;
    font-family: Rajdhani, Inter, sans-serif;
    font-weight: 700;
    letter-spacing: .03em;
}
.service-plan-watermark-text span:first-child { font-size: 18px; }
.service-plan-watermark-text span:last-child { font-size: 28px; }
.service-plan-card--play .service-plan-badge,
.service-plan-card--internet .service-plan-badge {
    position: relative;
    z-index: 2;
}
.service-plan-badge {
    width: fit-content;
    margin-bottom: 10px;
    padding: 5px 8px;
    border: 1px solid rgba(255,122,0,.36);
    border-radius: 999px;
    color: var(--orange);
    background: rgba(255,122,0,.08);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-plan-card--play .service-plan-price,
.service-plan-card--internet .service-plan-price {
    position: relative;
    z-index: 1;
}
.service-plan-card--play::after,
.service-plan-card--internet::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.14));
    pointer-events: none;
}
.service-plan-card h4 {
    margin: 0;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
}
.service-plan-subtitle {
    margin: 6px 0 0;
    color: #a8a8a8;
    font-size: 11px;
    line-height: 1.42;
}
.service-plan-price {
    margin-top: 14px;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.service-plan-price > small {
    display: block;
    margin-bottom: 4px;
    color: #888;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.service-plan-price > span {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: Rajdhani, Inter, sans-serif;
}
.service-plan-price b { color: var(--orange); font-size: 16px; }
.service-plan-price strong { font-size: 34px; line-height: 1; }
.service-plan-price em { color: #999; font-size: 11px; font-style: normal; }
.service-plan-description {
    margin: 12px 0 0;
    color: #b8b8b8;
    font-size: 11.2px;
    line-height: 1.5;
}
.service-plan-card ul {
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
    list-style: none;
}
.service-plan-card li {
    min-width: 0;
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 7px;
    align-items: start;
    color: #c5c5c5;
    font-size: 10.6px;
    line-height: 1.4;
}
.service-plan-card li svg {
    width: 13px;
    height: 13px;
    margin-top: 1px;
    color: var(--orange);
}
.service-plan-action {
    width: 100%;
    min-height: 44px;
    margin-top: 16px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255,122,0,.36);
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, rgba(255,122,0,.22), rgba(255,122,0,.07));
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.service-plan-action svg { width: 11px; height: 11px; color: var(--orange); }

/* Apps e Shop: visual dominante e conteúdo abaixo */
.platform-body {
    max-width: 760px;
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 26px;
    background: rgba(255,255,255,.018);
    box-shadow: 0 22px 52px rgba(0,0,0,.34);
}

.platform-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: #000;
}

.platform-visual .section-illustration {
    position: absolute;
    inset: 0;
}

.platform-visual > img[data-platform-logo] {
    position: absolute;
    z-index: 3;
    left: 13px;
    bottom: 13px;
    width: auto;
    max-width: min(48%, 170px);
    max-height: 54px;
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;
    object-fit: contain;
    background: rgba(0,0,0,.68);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,.34));
    backdrop-filter: blur(12px);
}

.platform-fallback {
    position: absolute;
    z-index: 3;
    left: 13px;
    bottom: 13px;
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,122,0,.28);
    border-radius: 15px;
    color: var(--orange);
    background: rgba(0,0,0,.68);
    backdrop-filter: blur(12px);
}

.platform-fallback svg { width: 26px; height: 26px; }
.platform-visual.has-logo .platform-fallback { opacity: 0; visibility: hidden; }

.platform-copy {
    padding: 19px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,122,0,.09), transparent 34%),
        linear-gradient(180deg, #101010, #080808);
}

.platform-highlights {
    grid-auto-columns: minmax(220px, 78%);
    gap: 9px;
    margin-top: 15px;
    padding-bottom: 3px;
}

.platform-highlights span {
    scroll-snap-align: start;
    padding: 13px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    background: rgba(0,0,0,.28);
}

.platform-highlights b {
    display: block;
    font-size: 11.8px;
}

.platform-highlights small {
    display: block;
    margin-top: 5px;
    color: #999;
    font-size: 10px;
    line-height: 1.42;
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.platform-tags span {
    padding: 6px 8px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 999px;
    color: #cecece;
    background: rgba(255,255,255,.025);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.platform-link {
    width: fit-content;
    min-height: 45px;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid rgba(255,122,0,.32);
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, rgba(255,122,0,.19), rgba(255,122,0,.06));
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.platform-link svg { width: 11px; height: 11px; color: var(--orange); }

/* Portfólio */
.ecosystem-panel {
    padding-bottom: 36px;
    background:
        radial-gradient(circle at 0% 8%, rgba(255,122,0,.08), transparent 22rem),
        #000;
}

.panel-block {
    max-width: 760px;
    margin-inline: auto;
    padding-bottom: 23px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.panel-block:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.panel-block h2 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: clamp(29px, 8vw, 40px);
    font-weight: 700;
    font-style: italic;
    line-height: .98;
    text-transform: uppercase;
}

.panel-block h2 em { color: var(--orange); font-style: inherit; }
.panel-block h2 svg { width: 16px; height: 16px; color: var(--orange); }

.panel-block > p {
    margin: 11px 0 16px;
    color: #b7b7b7;
    font-size: 12.5px;
    line-height: 1.55;
}

.product-grid {
    grid-auto-columns: minmax(260px, 84%);
    gap: 10px;
    padding-bottom: 4px;
}

.product-card {
    scroll-snap-align: start;
    min-height: 198px;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    column-gap: 12px;
    align-items: start;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,122,0,.08), transparent 34%),
        rgba(255,255,255,.035);
}

.product-media {
    grid-row: 1 / span 4;
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 14px;
    background: radial-gradient(circle, rgba(255,122,0,.17), rgba(0,0,0,.50));
}

.product-card.is-showcase .product-media { grid-row: 1 / span 3; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media svg { width: 38px; height: 38px; color: var(--orange); }

.product-card h3,
.product-card strong,
.product-card p,
.product-card a { grid-column: 2; }

.product-card h3 {
    margin: 0 0 3px;
    font-size: 14.5px;
    line-height: 1.18;
}

.product-card strong {
    display: block;
    margin-bottom: 5px;
    color: #dedede;
    font-size: 11.5px;
    line-height: 1.3;
}

.product-card p {
    margin: 0;
    color: #aaa;
    font-size: 11.4px;
    line-height: 1.45;
}

.product-card a {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 9px;
    color: var(--orange);
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-grid {
    display: grid;
    gap: 10px;
}

.contact-card {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 11px;
    align-items: start;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: rgba(255,255,255,.035);
}

.contact-card > svg {
    grid-row: 1 / span 3;
    width: 31px;
    height: 31px;
    margin-top: 2px;
    color: var(--orange);
}

.contact-card h3,
.contact-card p,
.contact-card a { grid-column: 2; }

.contact-card h3 {
    margin: 0 0 4px;
    font-size: 14px;
}

.contact-card p {
    margin: 0;
    color: #aaa;
    font-size: 11.6px;
    line-height: 1.45;
}

.contact-card a {
    width: fit-content;
    min-height: 40px;
    margin-top: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    border: 1px solid rgba(255,122,0,.35);
    border-radius: 12px;
    color: var(--orange);
    background: rgba(0,0,0,.34);
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer {
    width: 100%;
    margin: 0;
    padding: 24px var(--gutter) 12px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: #6f6f6f;
    background: #000;
    font-size: 10.5px;
    text-align: center;
}

.footer p { margin: 0; }

/* Tablet */
@media (min-width: 600px) {
    :root {
        --gutter: 24px;
        --topbar: 76px;
        --bottom-nav: 76px;
    }

    .mobile-brand img { width: 126px; }
    .hero { padding-top: calc(var(--topbar) + env(safe-area-inset-top) + 44px); }
    .hero h1 { font-size: clamp(50px, 8vw, 66px); }
    .hero-lead { font-size: 15px; }
    .hero-service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .hero-service-grid a {
        grid-template-columns: 1fr;
        justify-items: start;
        min-height: 118px;
    }
    .hero-poster-wall { grid-auto-columns: 152px; gap: 14px; }
    .pillar-section, .ecosystem-panel { padding-block: 42px; }
    .pillar-heading { grid-template-columns: 60px minmax(0,1fr); gap: 16px; }
    .pillar-number { width: 60px; height: 60px; font-size: 25px; }
    .pillar-heading h2 { font-size: 43px; }
    .pillar-heading > div > p:not(.eyebrow) { font-size: 14px; }
    .platform-copy { padding: 24px; }
    .platform-copy h3 { font-size: 43px; }
    .internet-experience { grid-template-columns: minmax(280px,.88fr) minmax(0,1.12fr); }
    .internet-value-points {
        grid-auto-flow: initial;
        grid-template-columns: repeat(3,minmax(0,1fr));
        overflow: visible;
    }
    .internet-how-it-works ol {
        grid-auto-flow: initial;
        grid-template-columns: repeat(3,minmax(0,1fr));
        overflow: visible;
    }
    .platform-highlights {
        grid-auto-flow: initial;
        grid-template-columns: repeat(3,minmax(0,1fr));
        overflow: visible;
    }
    .product-grid {
        grid-auto-flow: initial;
        grid-template-columns: repeat(2,minmax(0,1fr));
        overflow: visible;
    }
    .contact-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 359px) {
    :root { --gutter: 13px; }
    .mobile-brand-copy { display: none; }
    .mobile-bottom-nav { left: 6px; right: 6px; padding: 6px; }
    .mobile-bottom-nav-link span { font-size: 8.8px; }
    .hero h1 { font-size: 34px; }
    .hero-service-grid { grid-template-columns: 1fr; }
    .hero-service-grid a { min-height: 70px; }
    .hero-media-detail { grid-template-columns: 92px minmax(0,1fr); }
    .hero-detail-poster { width: 92px; }
    .pillar-heading { grid-template-columns: 47px minmax(0,1fr); gap: 11px; }
    .pillar-number { width: 47px; height: 47px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation-duration: .01ms;
        animation-iteration-count: 1;
        transition-duration: .01ms;
        scroll-behavior: auto;
    }
}

/* V47 — correção estrutural de responsividade móvel */
@media (max-width: 1024px) {
    html,
    body,
    .page,
    main,
    section,
    header,
    article,
    div,
    picture,
    nav,
    ol,
    ul,
    li {
        min-width: 0;
        max-width: 100%;
    }

    body {
        overflow-x: clip;
    }

    .page,
    .pillar-section,
    .ecosystem-panel,
    .internet-section,
    .internet-experience,
    .internet-app-card,
    .internet-value-copy,
    .internet-how-it-works,
    .pillar-compatibility,
    .platform-body,
    .platform-copy,
    .play-showcase,
    .play-compatibility,
    .service-plans,
    .service-plan-grid,
    .service-plan-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .pillar-heading {
        width: 100%;
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .pillar-heading > div,
    .pillar-heading h2,
    .pillar-heading p,
    .internet-app-head > div,
    .internet-value-copy,
    .internet-value-copy h3,
    .internet-value-copy p,
    .mobile-info-grid article,
    .internet-how-it-works li > div {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .pillar-heading h2,
    .internet-value-copy h3,
    .internet-how-it-works > header strong,
    .platform-copy h3,

    .section-illustration,
    .section-illustration img {
        width: 100%;
        max-width: 100%;
    }

    .internet-experience {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .internet-app-card {
        overflow: hidden;
        padding: 16px;
    }

    .internet-app-head {
        grid-template-columns: 42px minmax(0, 1fr) 10px;
    }

    .internet-app-head strong {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .internet-app-status {
        width: min(190px, 68vw);
        height: min(190px, 68vw);
        max-width: 190px;
        max-height: 190px;
    }

    .internet-app-route {
        grid-template-columns: auto minmax(18px, 1fr) auto minmax(18px, 1fr) auto;
        width: 100%;
        font-size: 7px;
    }

    .internet-play-button {
        width: 100%;
        min-width: 0;
    }

    .internet-value-points,
    .mobile-info-grid.internet-benefits-grid,
    .internet-how-it-works ol {
        width: 100%;
        display: grid;
        grid-auto-flow: row;
        grid-template-columns: minmax(0, 1fr);
        grid-auto-columns: auto;
        gap: 10px;
        overflow: visible;
        scroll-snap-type: none;
        padding: 0;
    }

    .internet-value-points > span,
    .mobile-info-grid.internet-benefits-grid article,
    .internet-how-it-works li {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        scroll-snap-align: none;
    }

    .mobile-info-grid.internet-benefits-grid {
        margin-top: 14px;
    }

    .mobile-info-grid article {
        min-height: 0;
        grid-template-columns: 32px minmax(0, 1fr);
    }

    .mobile-info-grid h3,
    .mobile-info-grid p {
        grid-column: 2;
    }

    .internet-how-it-works {
        overflow: hidden;
    }

    .internet-how-it-works ol {
        margin: 0;
    }

    .internet-how-it-works li {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .pillar-compatibility {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .pillar-compatibility .brand-chip-row {
        justify-content: flex-start;
    }

    .platform-highlights {
        width: 100%;
        grid-auto-flow: row;
        grid-template-columns: minmax(0, 1fr);
        grid-auto-columns: auto;
        overflow: visible;
        scroll-snap-type: none;
    }

    .platform-highlights span {
        width: 100%;
        min-width: 0;
    }

    .product-grid {
        width: 100%;
        grid-auto-flow: row;
        grid-template-columns: minmax(0, 1fr);
        grid-auto-columns: auto;
        overflow: visible;
        scroll-snap-type: none;
    }

    .product-card {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 520px) {
    :root {
        --gutter: 14px;
        --topbar: 66px;
        --bottom-nav: 70px;
    }

    .mobile-topbar {
        gap: 8px;
    }

    .mobile-brand {
        gap: 8px;
    }

    .mobile-brand img {
        width: clamp(84px, 25vw, 104px);
    }

    .mobile-brand-copy {
        padding-left: 8px;
    }

    .mobile-brand-copy strong {
        font-size: 12px;
    }

    .mobile-brand-copy small {
        max-width: 132px;
        font-size: 7.5px;
    }

    .menu-toggle {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }

    .pillar-section,
    .ecosystem-panel {
        padding: 28px var(--gutter);
    }

    .pillar-heading {
        grid-template-columns: 45px minmax(0, 1fr);
        gap: 8px 11px;
    }

    .pillar-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .pillar-heading h2 {
        font-size: clamp(27px, 8.7vw, 36px);
        line-height: .98;
    }

    .pillar-heading > div > p:not(.eyebrow) {
        font-size: 12px;
    }

    .internet-value-copy {
        padding: 16px;
    }

    .internet-value-copy h3 {
        font-size: clamp(27px, 8.5vw, 35px);
    }

    .internet-how-it-works > header strong {
        font-size: clamp(22px, 7vw, 29px);
        line-height: 1.04;
    }

    .mobile-bottom-nav {
        left: 8px;
        right: 8px;
        border-radius: 22px;
    }

    .mobile-bottom-nav-link span {
        font-size: 9px;
    }
}

@media (max-width: 420px) {
    .service-plan-watermark--play { width: 108px; }
    .service-plan-watermark--internet { gap: 7px; }
    .service-plan-watermark-icon { width: 30px; height: 30px; }
    .service-plan-watermark-text span:first-child { font-size: 14px; }
    .service-plan-watermark-text span:last-child { font-size: 22px; }
}

/* V52 — seção dedicada de planos */
.plans-hub {
    width: 100%;
    max-width: 760px;
    margin: 18px auto 0;
}
.plans-hero-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0, rgba(255,122,0,.14), transparent 30%),
        linear-gradient(160deg, rgba(16,16,16,.98), rgba(5,5,5,.98));
    box-shadow: 0 20px 44px rgba(0,0,0,.28);
    overflow: hidden;
}
.plans-hero-copy small {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--orange);
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: .12em;
}
.plans-hero-copy h2 {
    margin: 0;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: clamp(29px, 9vw, 42px);
    line-height: .96;
    font-style: italic;
    text-transform: uppercase;
}
.plans-hero-copy p {
    margin: 10px 0 0;
    color: #b8b8b8;
    font-size: 11.4px;
    line-height: 1.58;
}
.plans-hero-pills {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}
.plans-hero-pills span {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    color: #dedede;
    font-size: 11px;
}
.plans-hero-pills b { color: #fff; }
.plans-hero-pills svg { width: 14px; height: 14px; color: var(--orange); }
.plans-hero-art {
    position: relative;
    min-height: 240px;
    display: grid;
    place-items: center;
}
.plans-art-core {
    position: relative;
    width: min(100%, 330px);
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255,122,0,.16), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
    border: 1px solid rgba(255,255,255,.08);
}
.plans-art-center {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 134px;
    height: 134px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,122,0,.24), rgba(20,20,20,.92));
}
.plans-art-center img { width: 72%; object-fit: contain; }
.plans-art-orbit {
    position: absolute;
    inset: 50% auto auto 50%;
    border-radius: 999px;
    border: 1px solid rgba(255,122,0,.22);
    transform: translate(-50%, -50%);
}
.plans-art-orbit--one { width: 84%; height: 56%; }
.plans-art-orbit--two { width: 56%; height: 84%; opacity: .72; }
.plans-art-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 11px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(8,8,8,.8);
    color: #fff;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.plans-art-chip svg { width: 14px; height: 14px; color: var(--orange); }
.plans-art-chip--play { top: 16px; left: 14px; }
.plans-art-chip--internet { top: 62px; right: 10px; }
.plans-art-chip--combo { left: 54px; bottom: 16px; }
.plan-groups-stack {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}
.service-plans--hub {
    padding: 16px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(14,14,14,.98), rgba(6,6,6,.98));
}
.service-plans-heading--hub h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-heading-icon {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 13px;
    border: 1px solid rgba(255,122,0,.26);
    background: rgba(255,122,0,.08);
}
.service-heading-icon svg { width: 19px; height: 19px; color: var(--orange); }
.service-plan-watermark--combo {
    width: 122px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    mix-blend-mode: screen;
}
.service-plan-watermark--combo img { width: 70px; }
.service-plan-watermark-plus {
    color: rgba(255,255,255,.82);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}
.service-plan-watermark--combo .service-plan-watermark-icon {
    width: 22px;
    height: 22px;
}
.service-plans--combo .service-plan-card {
    background:
        radial-gradient(circle at 100% 0%, rgba(255,122,0,.12), transparent 40%),
        linear-gradient(160deg, rgba(20,16,12,.98), rgba(5,5,5,.98));
}
@media (max-width: 420px) {
    .plans-hero-card { padding: 16px; }
    .plans-art-chip { font-size: 11px; }
    .plans-art-chip--play { left: 10px; }
    .plans-art-chip--internet { right: 6px; }
    .plans-art-chip--combo { left: 40px; }
}

/* V53 — planos premium no mobile */
.plans-category-nav {
    position: sticky;
    top: calc(var(--topbar-height) + env(safe-area-inset-top) + 8px);
    z-index: 90;
    width: calc(100% - 8px);
    margin: 12px auto 0;
    display: flex;
    gap: 7px;
    padding: 6px;
    overflow-x: auto;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 17px;
    background: rgba(7,7,7,.92);
    box-shadow: 0 14px 34px rgba(0,0,0,.34);
    backdrop-filter: blur(18px);
    scrollbar-width: none;
}
.plans-category-nav::-webkit-scrollbar { display: none; }
.plans-category-nav a {
    min-width: max-content;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 11px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: #aaa;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.plans-category-nav a svg { width: 14px; height: 14px; color: var(--orange); }
.plans-category-nav a b {
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.08);
    font-size: 9px;
}
.plans-category-nav a.is-active {
    color: #fff;
    border-color: rgba(255,122,0,.32);
    background: rgba(255,122,0,.11);
}
.service-plans--hub {
    scroll-margin-top: calc(var(--topbar-height) + env(safe-area-inset-top) + 72px);
}
.service-plan-card-topline {
    min-height: 27px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.service-plan-service-label {
    color: #8f8f8f;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.service-plan-badge {
    margin: 0;
    color: #fff;
    border-color: rgba(255,122,0,.52);
    background: linear-gradient(135deg, rgba(255,145,0,.95), rgba(255,94,0,.90));
    box-shadow: 0 8px 18px rgba(255,122,0,.18);
}
.service-plan-card.is-featured {
    border-color: rgba(255,122,0,.68);
    background:
        radial-gradient(circle at 100% 0%, rgba(255,122,0,.17), transparent 38%),
        linear-gradient(160deg, rgba(24,18,12,.98), rgba(5,5,5,.99));
}
.service-plan-card.is-featured::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.service-plan-card.is-featured .service-plan-action {
    border-color: rgba(255,122,0,.88);
    background: linear-gradient(135deg, #ff9500, #ff6500);
    box-shadow: 0 12px 26px rgba(255,122,0,.20);
}
.service-plan-card.is-featured .service-plan-action svg { color: #fff; }
.service-plan-card--combo.is-featured .service-plan-badge::before {
    content: "★";
    margin-right: 4px;
}
@media (max-width: 390px) {
    .plans-category-nav { width: 100%; }
    .plans-category-nav a { padding-inline: 9px; }
}
.service-plan-card > .service-plan-watermark { z-index: 0; }

/* V54 — hero mobile limpo, compacto e com hierarquia real */
.responsive-copy--desktop { display: none !important; }
.responsive-copy--mobile { display: initial !important; }

.hero {
    min-height: auto;
    padding: calc(var(--topbar) + env(safe-area-inset-top) + 24px) var(--gutter) 26px;
}
.hero-backdrop {
    background-position: 62% top;
    opacity: .56;
    filter: saturate(.88) contrast(1.08) brightness(.72);
    animation-duration: 24s;
}
.hero-overlay {
    background:
        linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.78) 58%, rgba(0,0,0,.52)),
        linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.68) 58%, #000 100%);
}
.hero::before {
    background:
        radial-gradient(circle at 12% 18%, rgba(255,122,0,.12), transparent 12rem),
        linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.20));
}
.hero::after {
    height: 120px;
}
.hero-content {
    max-width: 680px;
}
.hero .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: .10em;
}
.hero .eyebrow span {
    width: 27px;
    height: 6px;
}
.hero h1 {
    max-width: 560px;
    font-size: clamp(36px, 8.4vw, 48px);
    line-height: .94;
    letter-spacing: -.45px;
    text-wrap: balance;
}
.hero-lead {
    max-width: 520px;
    margin-top: 14px;
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255,255,255,.76);
}
.hero-service-grid {
    margin-top: 20px;
    gap: 9px;
}
.hero-service-grid a {
    min-height: 62px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
    padding: 10px 11px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,122,0,.08), transparent 44%),
        rgba(8,8,8,.66);
    box-shadow: 0 12px 26px rgba(0,0,0,.22);
}
.hero-service-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
}
.hero-service-icon svg {
    width: 18px;
    height: 18px;
}
.hero-service-grid strong {
    font-size: 12.5px;
    line-height: 1;
}
.hero-service-grid small {
    display: none;
}
.mobile-hero-section-label {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.09);
    align-items: center;
}
.mobile-hero-section-label span {
    font-size: 17px;
    letter-spacing: .02em;
}
.mobile-hero-section-label small {
    max-width: 145px;
    font-size: 8.5px;
    line-height: 1.3;
}
.hero-poster-wall {
    margin-top: 10px;
    grid-auto-columns: clamp(112px, 29vw, 140px);
    gap: 10px;
    padding-bottom: 10px;
}
.poster-tile {
    border-radius: 16px;
    box-shadow: 0 13px 28px rgba(0,0,0,.32);
}

@media (min-width: 600px) and (max-width: 1024px) {
    .hero {
        padding-top: calc(var(--topbar) + env(safe-area-inset-top) + 30px);
    }
    .hero h1 {
        max-width: 610px;
        font-size: clamp(44px, 6.4vw, 54px);
    }
    .hero-lead {
        max-width: 610px;
        font-size: 14px;
    }
    .hero-service-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .hero-service-grid a {
        min-height: 72px;
        grid-template-columns: 36px minmax(0, 1fr);
    }
    .hero-poster-wall {
        grid-auto-columns: 142px;
    }
}

@media (max-width: 420px) {
    .hero {
        padding-top: calc(var(--topbar) + env(safe-area-inset-top) + 18px);
    }
    .hero h1 {
        font-size: clamp(34px, 10vw, 40px);
    }
    .hero-lead {
        font-size: 12.6px;
    }
    .hero-service-grid {
        margin-top: 17px;
        gap: 8px;
    }
    .hero-service-grid a {
        min-height: 58px;
        padding: 9px;
    }
    .hero-service-grid strong {
        font-size: 11.5px;
    }
}


/* V55 — remove atalhos em cards e valoriza fundo TMDB cinematográfico */
.hero {
    padding: calc(var(--topbar) + env(safe-area-inset-top) + 20px) var(--gutter) 18px;
}
.hero-backdrop {
    background-position: center 12%;
    opacity: .78;
    filter: saturate(1.02) contrast(1.08) brightness(.68);
}
.hero-overlay {
    background:
        linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.40) 24%, rgba(0,0,0,.74) 58%, rgba(0,0,0,.94) 84%, #000 100%),
        linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.42) 54%, rgba(0,0,0,.62));
}
.hero::before {
    background:
        radial-gradient(circle at 16% 16%, rgba(255,122,0,.14), transparent 11rem),
        linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.20));
}
.hero::after {
    height: 150px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.72) 56%, #000 100%);
}
.hero-content {
    padding-bottom: 10px;
}
.hero h1 {
    max-width: 8.8em;
    font-size: clamp(34px, 9vw, 44px);
}
.hero-lead {
    max-width: 28rem;
    margin-top: 12px;
    color: rgba(255,255,255,.82);
}
.hero-service-grid {
    display: none !important;
}
.mobile-hero-section-label {
    position: relative;
    z-index: 2;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 0;
}
.mobile-hero-section-label span {
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.mobile-hero-section-label small {
    max-width: 180px;
    color: rgba(255,255,255,.58);
}
.hero-poster-wall {
    margin-top: 8px;
    padding-bottom: 12px;
}
.poster-tile {
    box-shadow: 0 18px 34px rgba(0,0,0,.40);
}
@media (min-width: 600px) and (max-width: 1024px) {
    .hero {
        padding-top: calc(var(--topbar) + env(safe-area-inset-top) + 28px);
        padding-bottom: 22px;
    }
    .hero h1 {
        max-width: 10.2em;
        font-size: clamp(42px, 6vw, 54px);
    }
    .hero-lead {
        max-width: 34rem;
        font-size: 14px;
    }
    .hero-backdrop {
        background-position: center 18%;
    }
}
@media (max-width: 420px) {
    .hero {
        padding-top: calc(var(--topbar) + env(safe-area-inset-top) + 16px);
    }
    .hero h1 {
        max-width: 8.1em;
        font-size: clamp(31px, 9.7vw, 38px);
    }
    .hero-lead {
        font-size: 12.4px;
        line-height: 1.52;
    }
    .mobile-hero-section-label {
        margin-top: 4px;
    }
    .mobile-hero-section-label span {
        font-size: 14px;
    }
    .mobile-hero-section-label small {
        max-width: 150px;
        font-size: 8px;
    }
    .hero-poster-wall {
        grid-auto-columns: clamp(104px, 30vw, 126px);
        gap: 9px;
    }
}


/* V56 — grid de posters no mobile, sem arrastar horizontal */
.hero-poster-wall {
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
    gap: 10px;
    overflow: visible;
    padding: 0;
    margin-top: 12px;
    scroll-snap-type: none;
}
.poster-tile {
    min-height: 112px;
    aspect-ratio: auto;
    border-radius: 16px;
}
.poster-tile.featured {
    grid-column: 2 / span 2;
    grid-row: 2 / span 2;
    min-height: 234px;
}
.poster-tile-indicator {
    width: 28px;
    height: 28px;
    right: 8px;
    bottom: 8px;
    border-radius: 10px;
}
.mobile-hero-section-label {
    margin-top: 10px;
    margin-bottom: 10px;
}
@media (min-width: 600px) and (max-width: 1024px) {
    .hero-poster-wall {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 12px;
    }
    .poster-tile {
        min-height: 148px;
    }
    .poster-tile.featured {
        grid-column: 4 / span 2;
        grid-row: 1 / span 2;
        min-height: 310px;
    }
}
@media (max-width: 420px) {
    .hero-poster-wall {
        gap: 8px;
    }
    .poster-tile {
        min-height: 96px;
        border-radius: 14px;
    }
    .poster-tile.featured {
        min-height: 198px;
    }
}
@media (max-width: 360px) {
    .hero-poster-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .poster-tile {
        min-height: 110px;
    }
    .poster-tile.featured {
        grid-column: 1 / span 2;
        grid-row: auto;
        min-height: 190px;
    }
}

/* V57 — campanha de indicação + compartilhar */
.referral-section {
    width: 100%;
    max-width: 760px;
    margin: 18px auto 0;
}
.referral-card {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 460px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 26px;
    overflow: hidden;
    background: #050505;
    box-shadow: 0 22px 46px rgba(0,0,0,.30);
}
.referral-card-media,
.referral-card-overlay {
    position: absolute;
    inset: 0;
}
.referral-card-media {
    background-size: cover;
    background-position: center;
}
.referral-card-overlay {
    background:
        linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.42) 28%, rgba(0,0,0,.82) 68%, rgba(0,0,0,.95) 100%),
        linear-gradient(90deg, rgba(255,122,0,.06), rgba(0,0,0,.12));
}
.referral-card-copy {
    position: relative;
    z-index: 2;
    padding: 18px;
}
.referral-card-copy small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,122,0,.24);
    background: rgba(255,122,0,.10);
    color: var(--orange);
    font-size: 8.4px;
    font-weight: 800;
    letter-spacing: .12em;
}
.referral-card-copy h2 {
    margin: 12px 0 10px;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: clamp(32px, 8.5vw, 44px);
    font-style: italic;
    line-height: .96;
    text-transform: uppercase;
}
.referral-card-copy p {
    margin: 0;
    color: #dbdbdb;
    font-size: 12.6px;
    line-height: 1.62;
}
.referral-highlights {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}
.referral-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(0,0,0,.34);
    backdrop-filter: blur(8px);
}
.referral-highlights svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    color: var(--orange);
}
.referral-highlights span {
    color: #efefef;
    font-size: 11.5px;
    line-height: 1.45;
}
.referral-actions {
    margin-top: 14px;
    display: grid;
}
.referral-actions .referral-whatsapp {
    width: 100%;
}
.referral-whatsapp {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.referral-whatsapp {
    background: linear-gradient(90deg, #ff7a00, #ff9a1a);
    color: #111;
    box-shadow: 0 16px 28px rgba(255,122,0,.20);
}
.referral-whatsapp svg { color: #111; width: 18px; height: 18px; }
@media (min-width: 700px) and (max-width: 1024px) {
    .referral-card {
        min-height: 390px;
    }
    .referral-card-overlay {
        background:
            linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.60) 44%, rgba(0,0,0,.26) 100%),
            linear-gradient(180deg, rgba(255,122,0,.08), rgba(0,0,0,.22));
    }
    .referral-card-copy {
        max-width: 56%;
        padding: 22px;
    }
}

/* V60 — escolha inteligente, FAQ e PWA mobile */
.plan-finder {
    width: 100%;
    margin: 16px 0 18px;
    border: 1px solid rgba(255,122,0,.20);
    border-radius: 23px;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 4%, rgba(255,122,0,.14), transparent 35%),
        linear-gradient(180deg, #111, #070707);
    box-shadow: 0 20px 42px rgba(0,0,0,.28);
}
.plan-finder-intro { padding: 18px 17px 15px; border-bottom: 1px solid rgba(255,255,255,.07); }
.plan-finder-kicker,
.plan-finder-match {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 0 9px;
    border: 1px solid rgba(255,122,0,.26);
    border-radius: 999px;
    background: rgba(255,122,0,.08);
    color: var(--orange);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
}
.plan-finder-intro h3 {
    margin: 11px 0 8px;
    font-family: Rajdhani, Inter, sans-serif;
    font-size: clamp(29px, 8.4vw, 38px);
    line-height: .98;
    text-transform: uppercase;
    font-style: italic;
}
.plan-finder-intro > p { margin: 0; color: #b8b8b8; font-size: 11.6px; line-height: 1.58; }
.plan-finder-progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 15px; }
.plan-finder-progress span { height: 3px; border-radius: 999px; background: rgba(255,255,255,.10); }
.plan-finder-progress span.is-active { background: var(--orange); box-shadow: 0 0 12px rgba(255,122,0,.30); }
.plan-finder-stage { padding: 17px; }
.plan-finder-step,
.plan-finder-result { display: none; }
.plan-finder-step.is-active,
.plan-finder-result.is-active { display: block; animation: finder-mobile-in .3s ease both; }
@keyframes finder-mobile-in { from { opacity: 0; transform: translate3d(8px,0,0); } to { opacity: 1; transform: none; } }
.plan-finder-step > small { color: var(--orange); font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.plan-finder-step h4,
.plan-finder-result h4 { margin: 7px 0 13px; font-family: Rajdhani, Inter, sans-serif; font-size: 25px; line-height: 1; text-transform: uppercase; }
.plan-finder-options { display: grid; gap: 8px; }
.plan-finder-options button {
    width: 100%;
    min-height: 69px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 11px;
    text-align: left;
    border: 1px solid rgba(255,255,255,.085);
    border-radius: 15px;
    background: rgba(255,255,255,.035);
    color: #fff;
}
.plan-finder-options button.is-selected { border-color: rgba(255,122,0,.44); background: rgba(255,122,0,.09); }
.plan-finder-options button > svg { flex: 0 0 auto; width: 21px; height: 21px; color: var(--orange); }
.plan-finder-options button span { min-width: 0; display: grid; gap: 3px; }
.plan-finder-options button b { font-size: 12.4px; line-height: 1.25; }
.plan-finder-options button small { color: #999; font-size: 10px; line-height: 1.38; }
.plan-finder-result > p { margin: 0; color: #bababa; font-size: 11.6px; line-height: 1.58; }
.plan-finder-result-actions { display: grid; gap: 8px; margin-top: 15px; }
.plan-finder-primary,
.plan-finder-reset { width: 100%; min-height: 46px; border-radius: 13px; font-weight: 800; }
.plan-finder-primary { border: 0; display: flex; align-items: center; justify-content: center; gap: 7px; background: linear-gradient(90deg,var(--orange),var(--orange-2)); color: #111; }
.plan-finder-primary svg { width: 15px; height: 15px; }
.plan-finder-reset { border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.035); color: #cfcfcf; }
.service-plan-card.is-recommended { border-color: rgba(255,122,0,.72) !important; box-shadow: 0 0 0 2px rgba(255,122,0,.14), 0 20px 38px rgba(255,122,0,.12) !important; }

.faq-section {
    width: calc(100% - (var(--gutter) * 2));
    margin: 26px var(--gutter) 0;
    padding: 17px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 23px;
    background:
        radial-gradient(circle at 92% 0%, rgba(255,122,0,.10), transparent 30%),
        linear-gradient(180deg,#0e0e0e,#060606);
    box-shadow: 0 19px 40px rgba(0,0,0,.26);
}
.faq-heading { display: grid; gap: 8px; margin-bottom: 14px; }
.faq-heading small { color: var(--orange); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.faq-heading h2 { margin: 5px 0 0; font-family: Rajdhani, Inter, sans-serif; font-size: clamp(30px,8.8vw,40px); line-height: .96; text-transform: uppercase; font-style: italic; }
.faq-heading > p { margin: 0; color: #aaa; font-size: 11.2px; line-height: 1.55; }
.faq-toolbar { display: grid; gap: 9px; margin-bottom: 11px; }
.faq-search { min-height: 45px; padding: 0 12px; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.09); border-radius: 13px; background: rgba(255,255,255,.035); }
.faq-search span { color: var(--orange); font-size: 22px; }
.faq-search input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: #fff; font: inherit; font-size: 11.5px; }
.faq-search input::placeholder { color: #777; }
.faq-filters { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.faq-filters::-webkit-scrollbar { display: none; }
.faq-filters button { flex: 0 0 auto; min-height: 34px; padding: 0 11px; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; background: rgba(255,255,255,.03); color: #999; font-size: 9.4px; font-weight: 800; }
.faq-filters button.is-active { border-color: rgba(255,122,0,.34); background: rgba(255,122,0,.09); color: var(--orange); }
.faq-list { display: grid; gap: 7px; }
.faq-item { border: 1px solid rgba(255,255,255,.07); border-radius: 14px; background: rgba(255,255,255,.025); overflow: hidden; }
.faq-question { width: 100%; min-height: 67px; padding: 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 0; background: transparent; color: #fff; text-align: left; }
.faq-question span { min-width: 0; display: grid; gap: 3px; }
.faq-question small { color: var(--orange); font-size: 7.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.faq-question b { font-size: 11.6px; line-height: 1.4; }
.faq-question i { position: relative; width: 26px; height: 26px; flex: 0 0 26px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.faq-question i::before,.faq-question i::after { content:""; position:absolute; left:50%; top:50%; width:9px; height:1.5px; background:#aaa; transform:translate(-50%,-50%); transition:transform .2s ease; }
.faq-question i::after { transform:translate(-50%,-50%) rotate(90deg); }
.faq-question[aria-expanded="true"] i { border-color:rgba(255,122,0,.30); background:rgba(255,122,0,.08); }
.faq-question[aria-expanded="true"] i::before,.faq-question[aria-expanded="true"] i::after { background:var(--orange); }
.faq-question[aria-expanded="true"] i::after { transform:translate(-50%,-50%) rotate(0); }
.faq-answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows .26s ease; }
.faq-answer > div { overflow:hidden; }
.faq-answer p { margin:0; padding:0 12px; color:#aaa; font-size:10.7px; line-height:1.62; transition:padding .26s ease; }
.faq-answer.is-open { grid-template-rows:1fr; }
.faq-answer.is-open p { padding:0 12px 13px; }
.faq-empty { margin: 8px 0 0; padding: 18px 10px; text-align:center; border:1px dashed rgba(255,255,255,.09); border-radius:12px; color:#888; font-size:10.5px; }

.pwa-install-card[hidden],
.pwa-ios-sheet[hidden] { display: none !important; }
.pwa-install-card {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(var(--bottom-nav) + env(safe-area-inset-bottom) + 10px);
    z-index: 86;
    display: grid;
    grid-template-columns: 46px minmax(0,1fr) auto;
    align-items: center;
    gap: 11px;
    padding: 12px 12px 12px 11px;
    border: 1px solid rgba(255,122,0,.28);
    border-radius: 18px;
    background: rgba(11,11,11,.96);
    box-shadow: 0 22px 50px rgba(0,0,0,.54), 0 0 0 1px rgba(255,255,255,.03) inset;
    backdrop-filter: blur(18px);
    animation: pwa-card-in .36s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes pwa-card-in { from { opacity:0; transform:translate3d(0,18px,0) scale(.98); } to { opacity:1; transform:none; } }
.pwa-install-card > img { width:46px; height:46px; object-fit:contain; border-radius:12px; padding:6px; background:#050505; border:1px solid rgba(255,255,255,.08); }
.pwa-install-card > div { min-width:0; display:grid; gap:2px; }
.pwa-install-card small { color:var(--orange); font-size:6.8px; font-weight:800; letter-spacing:.10em; }
.pwa-install-card strong { font-family:Rajdhani,Inter,sans-serif; font-size:15.5px; line-height:1.05; text-transform:uppercase; }
.pwa-install-card p { display:none; }
.pwa-install-action { min-height:38px; padding:0 11px; border:0; border-radius:11px; background:linear-gradient(90deg,var(--orange),var(--orange-2)); color:#111; font-size:9px; font-weight:800; text-transform:uppercase; }
.pwa-install-close { position:absolute; right:-3px; top:-9px; width:27px; height:27px; padding:0; display:grid; place-items:center; border:1px solid rgba(255,255,255,.10); border-radius:50%; background:#171717; color:#aaa; font-size:18px; line-height:1; }
.pwa-ios-sheet { position:fixed; inset:0; z-index:160; display:grid; align-items:end; }
.pwa-ios-backdrop { position:absolute; inset:0; background:rgba(0,0,0,.72); backdrop-filter:blur(8px); }
.pwa-ios-panel { position:relative; z-index:1; padding:10px 18px calc(18px + env(safe-area-inset-bottom)); border:1px solid rgba(255,255,255,.10); border-radius:26px 26px 0 0; background:linear-gradient(180deg,#151515,#070707); box-shadow:0 -24px 60px rgba(0,0,0,.45); }
.pwa-ios-handle { display:block; width:42px; height:4px; margin:0 auto 15px; border-radius:999px; background:rgba(255,255,255,.18); }
.pwa-ios-panel > small { color:var(--orange); font-size:8px; font-weight:800; letter-spacing:.13em; }
.pwa-ios-panel h3 { margin:6px 0 12px; font-family:Rajdhani,Inter,sans-serif; font-size:28px; text-transform:uppercase; }
.pwa-ios-panel ol { margin:0 0 14px; padding-left:20px; color:#c5c5c5; font-size:11.5px; line-height:1.65; }
.pwa-ios-panel button { width:100%; min-height:46px; border:0; border-radius:13px; background:linear-gradient(90deg,var(--orange),var(--orange-2)); color:#111; font-weight:800; }

@media (min-width: 700px) and (max-width: 1024px) {
    .plan-finder-options { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .plan-finder-options button { min-height: 90px; }
    .faq-section { max-width: 760px; margin-left:auto; margin-right:auto; }
    .pwa-install-card { left:16px; right:16px; width:auto; }
}
@media (prefers-reduced-motion: reduce) {
    .plan-finder-step.is-active,.plan-finder-result.is-active,.pwa-install-card { animation:none; }
    .faq-answer { transition:none; }
}
.smart-plan-section { width: calc(100% - (var(--gutter) * 2)); margin: 24px var(--gutter) 8px; }
