/* ============================================================
   HELLSIDE — style.css
   Dark streetwear premium stylesheet
   Paleta: #000 / #111 / #fff / #5a0000 (detalhes)
   ============================================================ */

/* ============================================================
   TELA DE ENTRADA — efeito vidro rachando
   ============================================================ */

/* Overlay fullscreen — cursor crosshair para indicar que pode clicar */
.entry {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;  /* fallback para browsers antigos */
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9998;
    cursor: crosshair;
    overflow: hidden;
    transition: opacity .5s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Textura noise no fundo */
.entry__noise {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
}

/* SVG onde as rachaduras são desenhadas */
.entry__svg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Conteúdo central */
.entry__content {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
    transition: opacity .2s ease;
}

/* "EST. MMXXVI" acima do logo */
.entry__pre {
    font-family: var(--font-b);
    font-size: 11px;
    letter-spacing: 8px;
    color: rgba(255,255,255,.28);
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .5s ease, transform .5s ease;
}

/* Logo principal */
.entry__logo {
    font-family: var(--font-h);
    font-size: clamp(52px, 13vw, 160px);
    letter-spacing: clamp(4px, 2vw, 12px);
    color: #fff;
    line-height: 1;
    margin: 0;
    max-width: 100%;
    text-align: center;
    opacity: 0;
    transform: scale(.92) translateY(14px);
    transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
    will-change: opacity, transform;
}

/* Linha vermelha abaixo do logo */
.entry__rule {
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
    margin: 22px 0 28px;
    transition: width .7s ease;
}

/* Texto interativo — muda a cada clique */
.entry__prompt {
    font-family: var(--font-b);
    font-size: 11px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: color .25s ease, opacity .5s ease, transform .5s ease;
}

@keyframes promptBlink {
    0%, 100% { opacity: .45; }
    50%       { opacity: .9; }
}

/* Dots de progresso — 3 cliques */
.entry__dots {
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: opacity .4s ease;
}

.entry__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.entry__dot.filled {
    background: var(--red-bright);
    border-color: var(--red-bright);
    box-shadow: 0 0 10px rgba(192,57,43,.7);
}

/* Tremida a cada clique */
.entry.shake {
    animation: entryShake .25s ease;
}

@keyframes entryShake {
    0%, 100% { transform: translate(0,0); }
    20%      { transform: translate(-5px, 2px); }
    40%      { transform: translate(5px, -3px); }
    60%      { transform: translate(-4px, 3px); }
    80%      { transform: translate(3px, -1px); }
}

/* Flash branco no momento do shatter */
.entry__flash {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 10001;
    pointer-events: none;
    animation: flashFade .4s ease forwards;
}

@keyframes flashFade {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Container dos fragmentos */
.entry__shards {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 3;
    pointer-events: none;
}

/* Cada fragmento triangular voa para fora */
.entry__shard {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #000;
    animation: shardFly .85s cubic-bezier(.36,.07,.19,.97) forwards;
    /* will-change e filter removidos — causavam crash do GPU compositor no iOS Safari */
}

@keyframes shardFly {
    0%   { transform: translate(0,0) rotate(0deg) scale(1); opacity: 1; }
    100% { transform: translate(var(--dx), var(--dy)) rotate(var(--rot)) scale(.5); opacity: 0; }
}

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

/* ── Tokens de design ── */
:root {
    --black:      #000000;
    --dark:       #111111;
    --dark-2:     #0d0d0d;
    --white:      #ffffff;
    --gray:       #666666;
    --gray-lt:    #999999;
    --red:        #5a0000;
    --red-glow:   #8b0000;
    --red-bright: #c0392b;

    --font-h:    'Bebas Neue', sans-serif;
    --font-b:    'Space Grotesk', sans-serif;

    --sp:  120px 0;   /* section padding */
    --max: 1400px;
    --t:   0.3s ease;
    --ts:  0.6s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-b);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Scrollbar fina vermelha */
::-webkit-scrollbar        { width: 3px; }
::-webkit-scrollbar-track  { background: var(--black); }
::-webkit-scrollbar-thumb  { background: var(--red); }

/* ── Container ── */
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
}

/* ============================================================
   CURSOR PERSONALIZADO
   ============================================================ */
.cursor {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width .25s, height .25s, border-color .25s, background .25s;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--white);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
}

.cursor.hover {
    width: 56px;
    height: 56px;
    border-color: var(--red-bright);
    background: rgba(90,0,0,.08);
}

/* ============================================================
   TIPOGRAFIA GLOBAL
   ============================================================ */
.section-title {
    font-family: var(--font-h);
    font-size: clamp(52px, 8vw, 96px);
    line-height: .88;
    letter-spacing: -.5px;
}

.label {
    display: block;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--red-bright);
    margin-bottom: 18px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-sub {
    margin-top: 14px;
    font-size: 15px;
    color: var(--gray-lt);
    letter-spacing: 1px;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    font-family: var(--font-b);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
}

/* shimmer ao hover */
.btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.06) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .5s ease;
}
.btn:hover::after { transform: translateX(100%); }

.btn--primary {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}
.btn--primary:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 0 28px rgba(90,0,0,.45);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.25);
}
.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.04);
}

.btn--lg { padding: 17px 42px; font-size: 13px; }

.btn--glow { animation: glowPulse 2.4s ease-in-out infinite; }

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 18px rgba(139,0,0,.3); }
    50%       { box-shadow: 0 0 48px rgba(139,0,0,.65), 0 0 80px rgba(90,0,0,.2); }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: auto;
    z-index: 900;
    padding: 22px 0;
    transition: padding var(--t), background var(--t), backdrop-filter var(--t), border-color var(--t);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    padding: 14px 0;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: rgba(255,255,255,.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.nav__logo {
    font-family: var(--font-h);
    font-size: 26px;
    letter-spacing: 5px;
    color: var(--white);
    text-decoration: none;
    position: relative;
}
.nav__logo::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--red-bright);
    transition: width var(--t);
}
.nav__logo:hover::after { width: 100%; }

/* Links */
.nav__menu {
    display: flex;
    list-style: none;
    gap: 44px;
}

.nav__link {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color var(--t);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--red-bright);
    transition: width var(--t);
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

/* Ações */
.nav__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Hambúrguer */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 901;
}
.nav__hamburger span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--white);
    transition: transform var(--t), opacity var(--t);
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Fundo radial vermelho sutil */
.hero__bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 60% 60% at 15% 55%, rgba(90,0,0,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 85% 20%, rgba(60,0,0,.1) 0%, transparent 60%),
        #000;
}

/* Scanlines — linhas horizontais sutis sobre o hero */
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(0,0,0,.06) 0px,
        rgba(0,0,0,.06) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    z-index: 1;
}

/* Textura noise via SVG inline */
.hero__noise {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
}

/* Badge de drop */
.hero__badge {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--red-bright);
    border: 1px solid rgba(90,0,0,.5);
    padding: 7px 20px;
    margin-bottom: 40px;
    animation: fadeUp .9s ease .2s both;
}

/* Título gigante */
.hero__title {
    font-family: var(--font-h);
    font-size: clamp(68px, 13vw, 190px);
    line-height: .84;
    letter-spacing: -1px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__line {
    display: block;
    animation: fadeUp .9s ease .4s both;
}

/* Segunda linha só outline */
.hero__line--stroke {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.45);
    animation-delay: .55s;
}

.hero__sub {
    font-size: 14px;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: var(--gray-lt);
    margin-bottom: 52px;
    animation: fadeUp .9s ease .7s both;
}

/* ── Glitch nas linhas do título ── */
.hero__line {
    position: relative;
}

/* canal vermelho */
.hero__line::before {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    font-family: var(--font-h);
    font-size: inherit;
    line-height: inherit;
    text-align: center;
    color: var(--red-bright);
    -webkit-text-stroke: 0;
    pointer-events: none;
    animation: glitchRed 8s infinite 3s;
    opacity: 0;
    clip-path: none;
}

/* canal ciano */
.hero__line::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    font-family: var(--font-h);
    font-size: inherit;
    line-height: inherit;
    text-align: center;
    color: rgba(100,210,255,.55);
    -webkit-text-stroke: 0;
    pointer-events: none;
    animation: glitchCyan 8s infinite 3.15s;
    opacity: 0;
    clip-path: none;
}

/* linha stroke (outline) — sobrescreve cor dos pseudo-elementos */
.hero__line--stroke::before { color: rgba(192,57,43,.8); }
.hero__line--stroke::after  { color: rgba(100,210,255,.4); }

@keyframes glitchRed {
    0%,  84%,  100% { opacity: 0; transform: none; clip-path: none; }
    85%  { opacity: .8; clip-path: polygon(0 8%,  100% 8%,  100% 26%, 0 26%); transform: translateX(-6px); }
    86%  { opacity: .8; clip-path: polygon(0 48%, 100% 48%, 100% 66%, 0 66%); transform: translateX(5px);  }
    87%  { opacity: .8; clip-path: polygon(0 74%, 100% 74%, 100% 88%, 0 88%); transform: translateX(-4px); }
    88%  { opacity: .4; clip-path: none; transform: translateX(2px); }
    89%  { opacity: .8; clip-path: polygon(0 22%, 100% 22%, 100% 42%, 0 42%); transform: translateX(-5px); }
    90%  { opacity: 0;  transform: none; clip-path: none; }
}

@keyframes glitchCyan {
    0%,  85.5%, 100% { opacity: 0; transform: none; clip-path: none; }
    86.5% { opacity: .55; clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%); transform: translateX(6px);  }
    87.5% { opacity: .55; clip-path: polygon(0 58%, 100% 58%, 100% 76%, 0 76%); transform: translateX(-5px); }
    88.5% { opacity: .55; clip-path: polygon(0 4%,  100% 4%,  100% 18%, 0 18%); transform: translateX(4px);  }
    89.5% { opacity: 0;  transform: none; clip-path: none; }
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    animation: fadeUp .9s ease .9s both;
}

/* Indicador de scroll */
.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: fadeUp .9s ease 1.2s both;
}
.hero__scroll span {
    font-size: 9px;
    letter-spacing: 4px;
    color: rgba(255,255,255,.25);
}
.hero__scroll-bar {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, rgba(255,255,255,.25), transparent);
    animation: scrollBlink 2s ease-in-out infinite;
}
@keyframes scrollBlink {
    0%, 100% { opacity: .3; }
    50%       { opacity: 1; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
    overflow: hidden;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
    padding: 18px 0;
}

.marquee__inner {
    display: flex;
    align-items: center;
    gap: 48px;
    white-space: nowrap;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
    font-family: var(--font-h);
    font-size: 19px;
    letter-spacing: 4px;
    color: rgba(255,255,255,.5);
}
.marquee__inner:hover { animation-play-state: paused; }

.marquee__sep { color: var(--red-bright); font-size: 13px; }

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   COLEÇÃO
   ============================================================ */
.collection {
    padding: var(--sp);
    background: var(--black);
}

/* Grid 3 colunas com gap mínimo (estética editorial) */
.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 72px;
}

/* Card */
.card {
    background: var(--dark);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* Área da imagem */
.card__img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--dark-2);
}

/* Placeholder dark elegante */
.card__placeholder {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: linear-gradient(145deg, #131313 0%, #0a0a0a 100%);
    transition: transform var(--ts);
    border: 1px solid rgba(255,255,255,.03);
}
.card:hover .card__placeholder { transform: scale(1.04); }

.card__placeholder svg { opacity: .1; }

.card__placeholder span {
    font-size: 9px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,.18);
}

/* Badge */
.card__badge {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(255,255,255,.9);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 5px 11px;
    z-index: 2;
}
.card__badge--red {
    background: var(--red);
    color: var(--white);
}

/* Overlay com botão comprar */
.card__hover {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--t);
    z-index: 3;
}
.card:hover .card__hover { opacity: 1; }

/* Info do card */
.card__info {
    padding: 18px 20px 22px;
    border-top: 1px solid rgba(255,255,255,.05);
}
.card__name {
    font-family: var(--font-h);
    font-size: 21px;
    letter-spacing: .5px;
    margin-bottom: 4px;
}
.card__col {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 10px;
}
.card__price {
    font-size: 14px;
    font-weight: 600;
}

.collection__cta { text-align: center; }

/* ============================================================
   SOBRE
   ============================================================ */
.about {
    padding: var(--sp);
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

/* Grade cyberpunk de fundo */
.about__grid-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

/* Cantos decorativos vermelhos */
.about::before, .about::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    pointer-events: none;
}
.about::before {
    top: 0; left: 0;
    border-top: 1px solid rgba(90,0,0,.35);
    border-left: 1px solid rgba(90,0,0,.35);
}
.about::after {
    bottom: 0; right: 0;
    border-bottom: 1px solid rgba(90,0,0,.35);
    border-right: 1px solid rgba(90,0,0,.35);
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about__accent-line {
    width: 56px;
    height: 2px;
    background: var(--red-bright);
    margin-top: 28px;
    box-shadow: 0 0 18px rgba(139,0,0,.5);
}

.about__text {
    font-size: 19px;
    line-height: 1.75;
    color: rgba(255,255,255,.85);
    margin-bottom: 22px;
}
.about__text strong { color: var(--white); font-weight: 700; }
.about__text--dim {
    font-size: 15px;
    color: var(--gray-lt);
    line-height: 1.85;
}

.about__stats {
    display: flex;
    gap: 44px;
    margin-top: 44px;
    padding-top: 44px;
    border-top: 1px solid rgba(255,255,255,.07);
}
.about__stat { display: flex; flex-direction: column; gap: 4px; }
.about__num {
    font-family: var(--font-h);
    font-size: 48px;
    line-height: 1;
}
.about__lbl {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
}

/* Bebas Neue não possui o glifo ∞ — usa Space Grotesk para esse stat */
.about__num--sym { font-family: var(--font-b); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
    padding: var(--sp);
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(90,0,0,.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta__content { position: relative; z-index: 1; }

.cta__title {
    font-family: var(--font-h);
    font-size: clamp(60px, 10vw, 130px);
    line-height: .88;
    margin: 22px 0 28px;
}

.cta__accent {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--red-bright);
    text-shadow: 0 0 60px rgba(139,0,0,.35);
}

.cta__sub {
    font-size: 15px;
    color: var(--gray-lt);
    letter-spacing: 2px;
    margin-bottom: 44px;
}

/* ============================================================
   MANIFESTO — terminal de digitação
   ============================================================ */
.manifesto {
    padding: var(--sp);
    background: var(--black);
}

/* Janela do terminal */
.manifesto__window {
    max-width: 780px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,.07);
    background: #050505;
    border-radius: 3px;
    overflow: hidden;
    box-shadow:
        0 0 80px rgba(0,0,0,.9),
        0 0  0 1px rgba(255,255,255,.03),
        inset 0 0 60px rgba(90,0,0,.04);
}

/* Barra de título */
.manifesto__bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 18px;
    background: #0c0c0c;
    border-bottom: 1px solid rgba(255,255,255,.05);
    user-select: none;
}

/* Dots decorativos */
.manifesto__dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.manifesto__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.manifesto__dots span:nth-child(1) { background: rgba(90,0,0,.7); }
.manifesto__dots span:nth-child(2) { background: rgba(90,0,0,.4); }
.manifesto__dots span:nth-child(3) { background: rgba(90,0,0,.2); }

.manifesto__title {
    flex: 1;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255,255,255,.22);
}

/* Botão pular */
.manifesto__skip {
    background: none;
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.25);
    font-family: var(--font-b);
    font-size: 10px;
    letter-spacing: 2px;
    padding: 4px 10px;
    cursor: pointer;
    transition: color var(--t), border-color var(--t);
    flex-shrink: 0;
}
.manifesto__skip:hover {
    color: rgba(255,255,255,.6);
    border-color: rgba(255,255,255,.3);
}
.manifesto__skip.hidden { display: none; }

/* Corpo do terminal */
.manifesto__body {
    padding: 36px 44px 52px;
    min-height: 360px;
}

/* Área de output */
.manifesto__output {
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(13px, 1.7vw, 15px);
    line-height: 2;
}

/* Tipos de linha */
.manifesto__line           { display: block; }
.manifesto__line--cmd      { color: rgba(255,255,255,.3); }
.manifesto__line--main     { color: rgba(255,255,255,.78); }
.manifesto__line--strong   { color: #fff; font-size: 1.05em; }
.manifesto__line--comment  { color: rgba(192,57,43,.8); }
.manifesto__line--blank    { display: block; height: .7em; }

/* Cursor piscante vermelho */
.manifesto__cursor {
    display: inline;
    color: var(--red-bright);
    font-family: 'Courier New', monospace;
    font-size: inherit;
    animation: cursorBlink .75s step-end infinite;
}
.manifesto__cursor.off { display: none; }

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

/* Mobile — manifesto e entry */
@media (max-width: 600px) {
    /* Manifesto */
    .manifesto__window {
        border-left: none;
        border-right: none;
        border-radius: 0;
        margin: 0 -28px; /* ocupa largura total ignorando padding do container */
    }
    .manifesto__body {
        padding: 20px 18px 36px;
        min-height: 280px;
    }
    .manifesto__output {
        font-size: 12px;
        line-height: 1.85;
    }
    .manifesto__bar-title {
        font-size: 9px;
        letter-spacing: 1px;
    }

    /* Entry — garante centralização no mobile */
    .entry__content {
        padding: 0 20px;
        text-align: center;
    }
    .entry__pre {
        font-size: 9px;
        letter-spacing: 5px;
    }
    .entry__prompt {
        font-size: 9px;
        letter-spacing: 4px;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,.05);
    padding: 72px 0 36px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 56px;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.footer__logo {
    font-family: var(--font-h);
    font-size: 34px;
    letter-spacing: 6px;
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}
.footer__tagline {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    font-style: italic;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.footer__nav a {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: color var(--t);
}
.footer__nav a:hover { color: var(--white); }

.footer__social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}
.footer__social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: color var(--t);
}
.footer__social-link:hover { color: var(--white); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__bottom p {
    font-size: 11px;
    color: rgba(255,255,255,.2);
    letter-spacing: 1px;
}
.footer__phrase { font-style: italic; color: rgba(255,255,255,.28) !important; }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 800;
    box-shadow: 0 4px 18px rgba(37,211,102,.4);
    transition: transform var(--t), box-shadow var(--t);
    animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 32px rgba(37,211,102,.65);
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,.4); }
    50%       { box-shadow: 0 4px 36px rgba(37,211,102,.6), 0 0 0 7px rgba(37,211,102,.07); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Atraso em cascata para os cards */
.products .card:nth-child(1) { transition-delay: .05s; }
.products .card:nth-child(2) { transition-delay: .15s; }
.products .card:nth-child(3) { transition-delay: .25s; }
.products .card:nth-child(4) { transition-delay: .05s; }
.products .card:nth-child(5) { transition-delay: .15s; }
.products .card:nth-child(6) { transition-delay: .25s; }

/* ── Animação hero ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVIDADE — Tablet ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
    .products { grid-template-columns: repeat(2, 1fr); }
    .about__layout { gap: 56px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__social { grid-column: 1 / -1; flex-direction: row; align-items: center; }
}

/* ============================================================
   RESPONSIVIDADE — Mobile ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
    :root { --sp: 80px 0; }

    /* Menu mobile deslizante */
    .nav__menu {
        position: fixed;
        top: 0; right: -100%;
        width: 72vw;
        max-width: 300px;
        height: 100vh;
        background: rgba(0,0,0,.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        transition: right .4s ease;
        border-left: 1px solid rgba(255,255,255,.06);
        z-index: 900;
    }
    .nav__menu.open { right: 0; }
    .nav__link { font-size: 13px; letter-spacing: 4px; }

    .nav__hamburger { display: flex; }
    /* Oculta botão de compra no header em mobile */
    .nav__actions .btn { display: none; }

    /* Hero */
    .hero__title { font-size: clamp(50px, 13vw, 80px); }
    .hero__actions { flex-direction: column; padding: 0 16px; }
    .hero__actions .btn { width: 100%; justify-content: center; }

    /* Produtos 1 coluna */
    .products { grid-template-columns: 1fr; gap: 1px; }

    /* Sobre */
    .about__layout { grid-template-columns: 1fr; gap: 40px; }
    .about__stats { gap: 28px; }

    /* Footer */
    .footer__grid { grid-template-columns: 1fr; gap: 36px; }
    .footer__social { flex-direction: row; align-items: center; }
    .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }

    /* Remove cursor custom em touch */
    .cursor, .cursor-dot { display: none; }
    body { cursor: auto; }

    /* Garante visibilidade da tela de entrada em mobile.
       CSS !important sobrepõe inline styles do JS, então o conteúdo
       aparece imediatamente independente de animações ou timers. */
    .entry__pre,
    .entry__logo,
    .entry__prompt,
    .entry__dots  { opacity: 1 !important; transform: none !important; }
    .entry__rule  { width: 100px !important; }
    .entry__prompt { animation: promptBlink 2.2s ease-in-out 0.5s infinite !important; }
}

@media (max-width: 480px) {
    .hero__title { font-size: clamp(40px, 13vw, 64px); }
    .about__stats { flex-direction: column; gap: 22px; }
    .wa-float { bottom: 20px; right: 18px; }
}
