/* Fonts */
@font-face {
    font-family: 'Thunder';
    src: url('./assets/fonts/Thunder-BlackLC.ttf') format('truetype');
    font-weight: 900;
}

@font-face {
    font-family: 'Thunder';
    src: url('./assets/fonts/Thunder-BoldLC.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Phonk';
    src: url('./assets/fonts/PhonkSans-Light.otf') format('opentype');
    font-weight: 300;
}

:root {
    --bg-base: #0A0A0F;
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    /* zinc-400 */
    --brand-purple: #7B3AED;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --bezier-spring: cubic-bezier(0.32, 0.72, 0, 1);
}

html {
    scroll-behavior: smooth;
}

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

#dot-grid {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Ambient glow - minimal */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

.glow-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 58, 237, 0.15) 0%, transparent 70%);
}

.glow-2 {
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 58, 237, 0.15) 0%, transparent 70%);
}

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
.hero-headline,
.section-title,
.editorial-headline,
.cta-headline {
    font-family: 'Thunder', Impact, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.eyebrow-tag,
.section-tag,
.timeline-num {
    font-family: 'Phonk', 'Courier New', monospace;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    color: var(--brand-purple);
}

.eyebrow-tag {
    display: inline-block;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(3rem, 7vw, 6rem);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 3rem;
}

.editorial-headline {
    font-size: clamp(4rem, 8vw, 6rem);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s var(--bezier-spring), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: scale(1.04);
}

.nav-actions .btn {
    padding: 0.45rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 500;
    background: transparent;
    color: var(--text-main);
    border: none;
    border-radius: 0;
    position: relative;
    clip-path: polygon(
        8px 0%, 100% 0%, 
        100% calc(100% - 8px), 
        calc(100% - 8px) 100%, 
        0% 100%, 0% 8px
    );
    transition: all 0.3s ease;
}

.nav-actions .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(123, 58, 237, 0.08);
    clip-path: polygon(
        8px 0%, 100% 0%, 
        100% calc(100% - 8px), 
        calc(100% - 8px) 100%, 
        0% 100%, 0% 8px
    );
    border: 1px solid rgba(123, 58, 237, 0.5);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-actions .btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 6px;
    border-top: 1px solid var(--brand-purple);
    border-left: 1px solid var(--brand-purple);
}

.nav-actions .btn:hover::before {
    background: rgba(123, 58, 237, 0.18);
    border-color: var(--brand-purple);
    box-shadow: 0 0 12px rgba(123, 58, 237, 0.3);
}

.nav-actions .btn:hover {
    color: var(--text-main);
    transform: none;
}

.nav-actions .btn .btn-icon {
    width: 18px;
    height: 18px;
    margin-left: 6px;
    margin-right: -4px;
    background: transparent;
    border-radius: 0;
}

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

.btn-primary {
    background-color: var(--text-main);
    color: var(--bg-base);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 0 24px rgba(123, 58, 237, 0.22);
}

.btn-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    margin-left: 12px;
    margin-right: -12px;
    transition: transform 0.3s var(--bezier-spring);
}

.btn:hover .btn-icon {
    transform: translate(4px, -1px) scale(1.05);
}

/* Island Nav - Glassmorphism */
.island-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease,
                box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Ao rolar: embaça e escurece pra não conflitar com os elementos da página */
.island-nav.scrolled {
    background: rgba(10, 10, 15, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.6);
}

.nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    max-width: 1320px;
    margin: 0 auto;
    padding: 1.25rem 2.5rem;
}

/* logo à esquerda · páginas no centro · CTA à direita */
.nav-inner > .brand-logo  { justify-self: start; }
.nav-inner > .nav-links   { justify-self: center; }
.nav-inner > .nav-actions { justify-self: end; }

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    text-decoration: none;
    font-family: 'Phonk', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.15em;
}

.nav-links {
    display: flex;
    gap: 2.75rem;
}

.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1.2rem;
  background: transparent;
}

.nav-link-solutions {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s ease;
  cursor: pointer;
}
.nav-link-solutions:hover {
  color: var(--text-main);
}
.nav-links a, .nav-link, .nav-link-solutions {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--text-main);
}

.chevron {
  transition: transform 0.3s ease;
}
.nav-item-dropdown:hover .chevron {
  transform: rotate(180deg);
}

.solutions-dropdown {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(-8px);
  z-index: 200;
}
.nav-item-dropdown:hover .solutions-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-inner {
  background: #0F0F1A;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.5rem;
  width: 280px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.dropdown-item:hover {
  background: rgba(123, 58, 237, 0.08);
}

.dropdown-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(123, 58, 237, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
  color: var(--brand-purple);
  margin-top: 2px;
}

.dropdown-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.dropdown-item-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
}
.dropdown-item-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}

.nav-actions .btn {
    padding: 0.75rem 1.5rem;
}

/* Desktop vs Mobile utilities */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

/* Sections */
.section {
    padding: 4rem 0;
    position: relative;
}

.section-divider {
    border: none;
    height: 1px;
    background-color: var(--glass-border);
    margin: 0;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 5rem;
}

/* === Camada HUD da hero (tech brutalista) === */
.hero-hud {
    position: absolute;
    inset: 7rem 2.5rem 3rem 2.5rem;
    z-index: 4;
    pointer-events: none;
}
.hud-corner {
    position: absolute;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(123, 58, 237, 0.6);
}
.hud-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.hud-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.hud-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.hud-br { bottom: 0; right: 0; border-left: none; border-top: none; }
.hud-label {
    position: absolute;
    font-family: 'Phonk', 'Courier New', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    white-space: nowrap;
}
.hud-tl-label { top: -0.35rem; left: 40px; }
.hud-tr-label { top: -0.35rem; right: 40px; }
.hud-bl-label { bottom: -0.35rem; left: 40px; }
.hud-crosshair {
    position: absolute;
    right: -1px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
}
.hud-crosshair::before,
.hud-crosshair::after {
    content: '';
    position: absolute;
    background: rgba(123, 58, 237, 0.7);
}
.hud-crosshair::before { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.hud-crosshair::after  { top: 50%; left: 0; height: 1px; width: 100%; transform: translateY(-50%); }
@media (max-width: 768px) {
    .hero-hud { display: none; }
}

/* === Hero PRISMA: bg full-bleed + mensagem centralizada === */
.hero-prism .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('assets/images/hero-bg.png') center / cover no-repeat;
}
.hero-prism .hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 58% 50% at 50% 50%, rgba(10, 10, 15, 0.82) 0%, rgba(10, 10, 15, 0.42) 45%, transparent 74%),
        linear-gradient(to bottom, rgba(10, 10, 15, 0.78) 0%, transparent 24%, transparent 70%, rgba(10, 10, 15, 0.97) 100%);
}
.hero-prism .container {
    position: relative;
    z-index: 2;          /* texto acima do scrim */
}
.hero-centered {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-centered .hero-body {
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}
.hero-centered .hero-actions {
    justify-content: center;
}

/* HUD extra (mais denso, mas nas bordas) */
.hud-br-label { bottom: -0.35rem; right: 40px; }
.hud-ticks-left {
    position: absolute;
    left: -2px;
    top: 28%;
    width: 9px;
    height: 44%;
    background-image: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 13px);
}

/* Moldura HUD em volta da mensagem (estilo Valorant) */
.hero-frame {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: 2.75rem 3.25rem;
}
.frame-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(123, 58, 237, 0.75);
}
.fc-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.fc-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.fc-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.fc-br { bottom: 0; right: 0; border-left: none; border-top: none; }
.frame-tick {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
}
.frame-tick-l { left: -7px; }
.frame-tick-r { right: -7px; }
.frame-tick::before,
.frame-tick::after {
    content: '';
    position: absolute;
    background: rgba(123, 58, 237, 0.85);
}
.frame-tick::before { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.frame-tick::after  { top: 50%; left: 0; height: 1px; width: 100%; transform: translateY(-50%); }

/* Legibilidade do texto da hero sobre o prisma */
.hero-prism .hero-headline,
.hero-prism .hero-centered .eyebrow-tag,
.hero-prism .hero-body {
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
}
.hero-prism .hero-centered .eyebrow-tag {
    color: rgba(255, 255, 255, 0.9);
}
.hero-prism .hero-body {
    color: rgba(255, 255, 255, 0.82);
}

/* Logo do nav um pouco maior (escopado, não afeta o rodapé) */
.brand-logo .logo-img {
    height: 38px;
}

/* === Animações sutis do HUD (hero viva, não estática) === */
/* Mira do canto direito girando devagar (tracking) */
@keyframes hudSpin {
    from { transform: translateY(-50%) rotate(0deg); }
    to   { transform: translateY(-50%) rotate(360deg); }
}
.hud-crosshair { animation: hudSpin 18s linear infinite; }

/* Colchetes "respirando" (glow pulsante, escalonado) */
@keyframes hudBreathe {
    0%, 100% { opacity: 0.45; }
    50%      { opacity: 1; }
}
.hud-corner { animation: hudBreathe 4s ease-in-out infinite; }
.hud-corner.hud-tr { animation-delay: 1s; }
.hud-corner.hud-bl { animation-delay: 2s; }
.hud-corner.hud-br { animation-delay: 3s; }
.frame-corner { animation: hudBreathe 4.5s ease-in-out infinite; }
.frame-corner.fc-tr { animation-delay: 1.1s; }
.frame-corner.fc-bl { animation-delay: 2.2s; }
.frame-corner.fc-br { animation-delay: 3.3s; }

/* Reticles laterais da moldura pulsando */
@keyframes hudTickPulse {
    0%, 100% { opacity: 0.5; }
    50%      { opacity: 1; }
}
.frame-tick { animation: hudTickPulse 3s ease-in-out infinite; }
.frame-tick-r { animation-delay: 1.5s; }

/* Sweep tipo radar na escala de ticks */
.hud-ticks-left { overflow: hidden; }
.hud-ticks-left::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 14px;
    background: linear-gradient(to bottom, transparent, rgba(123, 58, 237, 0.9), transparent);
    animation: hudSweep 4s ease-in-out infinite;
}
@keyframes hudSweep {
    0%   { top: -14px; }
    100% { top: 100%; }
}

/* Fade-in do HUD ao carregar */
@keyframes hudFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.hero-hud { animation: hudFadeIn 1.2s ease 0.2s both; }

@media (prefers-reduced-motion: reduce) {
    .hud-crosshair,
    .hud-corner,
    .frame-corner,
    .frame-tick,
    .hud-ticks-left::after,
    .hero-hud {
        animation: none;
    }
}

/* ============================================================
   RITMO DE SEÇÕES (claro/escuro) + HUD de seção
============================================================ */

/* Seção clara — quebra o tudo-escuro, vira âncora de credibilidade */
.section-light {
    position: relative;
    z-index: 1;
    background-color: #ECECF0;
    color: #0e0e14;
}
.section-light .section-title,
.section-light .editorial-headline,
.section-light .content-title,
.section-light .card-title,
.section-light .timeline-title,
.section-light .case-company {
    color: #0e0e14;
}
.section-light .eyebrow-tag,
.section-light .section-tag {
    color: var(--brand-purple);
}
.section-light p,
.section-light .card-desc,
.section-light .timeline-desc,
.section-light .stat-label,
.section-light .case-desc {
    color: #4a4a55;
}
.section-light .stat-num,
.section-light .timeline-num,
.section-light .case-metric,
.section-light .case-label {
    color: var(--brand-purple);
}
.section-light .glass-panel,
.section-light .bento-card,
.section-light .case-card,
.section-light .timeline-item,
.section-light .feature-card {
    background: rgba(0, 0, 0, 0.035);
    border-color: rgba(0, 0, 0, 0.12);
}
.section-light .stat-grid,
.section-light .big-stat-grid {
    border-top-color: rgba(0, 0, 0, 0.12);
}

/* Colchetes de canto por seção (HUD sutil, sem markup extra) */
.section-framed { position: relative; }
.section-framed::before,
.section-framed::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1px solid var(--glass-border);
    pointer-events: none;
}
.section-framed::before { top: 26px; left: 26px; border-right: none; border-bottom: none; }
.section-framed::after { bottom: 26px; right: 26px; border-left: none; border-top: none; }
.section-light.section-framed::before,
.section-light.section-framed::after { border-color: rgba(0, 0, 0, 0.18); }

/* Logo wall — monocromático branco (qualquer logo transparente vira branca) */
.client-logo {
    width: 130px;
    height: 48px;
    flex-shrink: 0;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.55;
    transition: opacity 0.3s ease;
}
.client-logo:hover { opacity: 1; }
.logo-placeholder { color: rgba(255, 255, 255, 0.4); }

/* === Método: showcase de etapas (auto-alterna + imagem ao lado) === */
.steps-showcase {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3.5rem;
}
.steps-list { display: flex; flex-direction: column; }
.step-item {
    position: relative;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    border-top: 1px solid var(--glass-border);
    padding: 1.6rem 1.25rem;
    cursor: pointer;
    transition: background 0.3s ease;
}
.steps-list .step-item:last-child { border-bottom: 1px solid var(--glass-border); }
.step-item.is-active { background: rgba(255, 255, 255, 0.02); }
.step-progress {
    position: absolute;
    left: -1px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--brand-purple);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
}
.step-item.is-active .step-progress {
    opacity: 1;
    animation: stepFill 6s linear forwards;
}
@keyframes stepFill {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
}
.step-row { display: flex; align-items: center; gap: 1rem; }
.step-num {
    font-family: 'Phonk', 'Courier New', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--brand-purple);
    opacity: 0.55;
    transition: opacity 0.3s ease;
}
.step-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    margin: 0;
}
.step-item.is-active .step-num,
.step-item.is-active .step-title { opacity: 1; }
.step-desc {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    padding-left: 2.6rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    transition: max-height 0.45s ease, opacity 0.4s ease, margin-top 0.4s ease;
}
.step-item.is-active .step-desc {
    max-height: 160px;
    opacity: 1;
    margin-top: 0.85rem;
}

.steps-media {
    position: relative;
    aspect-ratio: 4 / 3;
    /* sem overflow/frame: os PNGs (com glow transparente) aparecem inteiros */
}
.step-media-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: step-float 5.5s ease-in-out infinite;
    will-change: transform;
}
@keyframes step-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}
.step-media {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(28px) scale(0.97);
    filter: blur(6px);
    transition: opacity 0.6s ease,
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.6s ease;
    pointer-events: none;
}
.step-media.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}
.step-media img { width: 100%; height: 100%; object-fit: contain; display: block; }
/* Zoom específico das imagens das etapas 2 e 3 */
.step-media[data-step="1"] img { transform: scale(1.35); }
.step-media[data-step="2"] img { transform: scale(1.32); }
.step-media-label {
    font-family: 'Phonk', 'Courier New', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

@media (max-width: 860px) {
    .steps-showcase { grid-template-columns: 1fr; gap: 2rem; }
}
@media (prefers-reduced-motion: reduce) {
    .step-item.is-active .step-progress { animation: none; transform: scaleY(1); }
    .step-media-inner { animation: none; }
}

/* HUD espalhado pela seção do Método (nas bordas, fora da área da imagem) */
.metodo-hud {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.mhud-label {
    position: absolute;
    font-family: 'Phonk', 'Courier New', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.mhud-tl { top: 2.2rem; left: 1.8rem; color: var(--brand-purple); }
.mhud-tr { top: 2.2rem; right: 1.8rem; color: var(--brand-purple); }
.mhud-bl { bottom: 2.2rem; left: 1.8rem; }
.mhud-ticks {
    position: absolute;
    top: 37%;
    width: 9px;
    height: 26%;
    background-image: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 13px);
}
.mhud-ticks-l { left: 1.4rem; }
.mhud-ticks-r { right: 1.4rem; }
.mhud-cross {
    position: absolute;
    width: 14px;
    height: 14px;
}
.mhud-cross-bl { bottom: 4rem; left: 1.7rem; }
.mhud-cross-tr { top: 4rem; right: 1.7rem; }
.mhud-cross::before,
.mhud-cross::after {
    content: '';
    position: absolute;
    background: rgba(123, 58, 237, 0.7);
}
.mhud-cross::before { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.mhud-cross::after  { top: 50%; left: 0; height: 1px; width: 100%; transform: translateY(-50%); }
@media (max-width: 860px) { .metodo-hud { display: none; } }

/* === DIFERENCIAL com brandbooks flutuantes (grandes, à esquerda) === */
.diferencial-section {
    position: relative;
}
/* --- Diferencial: acordeão horizontal Growth | RevOps --- */
.diferencial-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0.75rem auto 0;
    max-width: 620px;
}
.diferencial-acc {
    display: flex;
    gap: 14px;
    margin-top: 2rem;
    min-height: 300px;
}
.diferencial-acc.acc-measuring,
.diferencial-acc.acc-measuring * { transition: none !important; }
.acc-panel {
    position: relative;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 100px;
    min-width: 88px;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    background: var(--glass-bg);
    overflow: hidden;
    transition: flex-grow 0.55s var(--bezier-spring), border-color 0.4s ease, background 0.4s ease;
}
.acc-panel.is-open {
    flex-grow: 1;
    border-color: rgba(123, 58, 237, 0.45);
    background:
        radial-gradient(700px circle at 100% -10%, rgba(123, 58, 237, 0.14), transparent 55%),
        var(--glass-bg);
}
/* Rótulo vertical (estado fechado) */
.acc-spine {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: opacity 0.35s ease, color 0.3s ease;
}
.acc-spine:hover { color: var(--text-main); }
.acc-spine-num {
    font-family: 'Phonk', 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--brand-purple);
}
.acc-spine-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Thunder', Impact, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 1.7rem;
    color: inherit;
}
.acc-panel.is-open .acc-spine { opacity: 0; pointer-events: none; }
/* Conteúdo (estado aberto) */
.acc-content {
    position: relative;
    z-index: 1;
    height: 100%;
    min-width: 680px;
    display: flex;
    align-items: stretch;
    opacity: 0;
    transition: opacity 0.4s ease 0.18s;
    pointer-events: none;
}
.acc-panel.is-open .acc-content { opacity: 1; pointer-events: auto; }
.acc-text {
    flex: 1 1 auto;
    min-width: 0;
    padding: 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.acc-media {
    flex: 0 0 40%;
    position: relative;
    margin: 14px 14px 14px 0;
    border-radius: 4px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
}
.acc-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(123, 58, 237, 0.12), transparent 55%);
    pointer-events: none;
}
.acc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.acc-eyebrow {
    display: inline-block;
    font-family: 'Phonk', 'Courier New', monospace;
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-purple);
}
.acc-title {
    font-family: 'Thunder', Impact, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.9;
    font-size: clamp(2.4rem, 4.4vw, 3.2rem);
    color: var(--text-main);
    margin: 0.35rem 0 0.55rem;
}
.acc-lead {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.45;
    max-width: 48ch;
    margin-bottom: 1.1rem;
}
.acc-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    max-width: 480px;
}
.acc-list li {
    position: relative;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.94rem;
    line-height: 1.35;
}
.acc-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background: var(--brand-purple);
    transform: rotate(45deg);
}
@media (max-width: 900px) {
    .diferencial-acc { flex-direction: column; min-height: 0; gap: 16px; margin-top: 2rem; }
    .acc-panel { flex: none; width: 100%; border-color: rgba(123, 58, 237, 0.28); }
    .acc-spine { display: none; }
    .acc-content { position: static; opacity: 1; pointer-events: auto; min-width: 0; height: auto; flex-direction: column-reverse; }
    .acc-text { padding: 1.75rem; }
    .acc-media { flex: none; margin: 0; border-radius: 0; height: 200px; }
    .acc-list { grid-template-columns: 1fr; gap: 0.8rem; max-width: none; }
    .acc-title { font-size: 2.4rem; }
}
@media (prefers-reduced-motion: reduce) {
    .acc-panel, .acc-content, .acc-spine { transition: none; }
}
.diferencial-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin-left: auto;   /* empurra o texto pra direita */
}
.diferencial-content p { margin-top: 1.25rem; }
.diferencial-content .stat-grid { margin-top: 2.5rem; }

/* Brandbooks flutuantes — grandes, rotação uniforme (a arte já vem inclinada) */
.diferencial-brandbooks {
    position: absolute;
    left: 0;
    top: 0;
    width: 66%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.brandbook {
    position: absolute;
    top: 50%;
    width: 620px;
    max-width: 86%;
    transform: translateY(calc(-50% + var(--y, 0px)));
    animation: bbFloat 7s ease-in-out infinite;
}
@keyframes bbFloat {
    0%, 100% { transform: translateY(calc(-50% + var(--y, 0px))); }
    50%      { transform: translateY(calc(-50% + var(--y, 0px) - 20px)); }
}
/* distância igual entre as 3 (mesmo passo horizontal e vertical), conjunto centralizado */
.bb-1 { left: 16%; --y: -105px; z-index: 3; }
.bb-2 { left: 27%; --y: 0px;    z-index: 2; animation-delay: 0.7s; animation-duration: 8s; }
.bb-3 { left: 38%; --y: 105px;  z-index: 1; animation-delay: 1.3s; animation-duration: 6.5s; }

@media (max-width: 900px) {
    .diferencial-section { min-height: 0; flex-direction: column; }
    .diferencial-content { max-width: 100%; margin-left: 0; }
    .diferencial-brandbooks { position: relative; width: 100%; height: 460px; margin-top: 2.5rem; }
    .brandbook { width: 240px; max-width: 56%; }
    .bb-1 { --y: -110px; left: 4%; }
    .bb-2 { --y: 0px;    left: 30%; }
    .bb-3 { --y: 110px;  left: 16%; }
}
@media (prefers-reduced-motion: reduce) {
    .brandbook { animation: none; }
}

.layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-body {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.abstract-structure {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dashboard da hero (home) — glow já vem na imagem, tratamento mínimo */
.hero-visual { min-width: 0; }   /* deixa o dashboard vazar sem expandir a coluna do grid */
.hero-dash {
    display: block;
    width: 150%;
    max-width: none;
    height: auto;
    position: relative;
    left: 6%;                     /* empurra um pouco mais pra direita */
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    animation: heroDashFloat 5.5s ease-in-out infinite;
}
@keyframes heroDashFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-24px); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-dash { animation: none; }
}
@media (max-width: 900px) {
    .hero-dash { width: 100%; left: 0; }   /* no mobile, volta a caber */
}

.plate {
    position: absolute;
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
}

.plate-1 {
    width: 80%;
    height: 80%;
    transform: rotate(-5deg);
    border-color: rgba(123, 58, 237, 0.3);
}

.plate-2 {
    width: 60%;
    height: 60%;
    transform: rotate(5deg);
    background: rgba(123, 58, 237, 0.05);
}

.plate-3 {
    width: 40%;
    height: 40%;
    border: 1px solid rgba(123, 58, 237, 0.6);
    border-radius: 1rem;
}

/* Logo Wall */
.logo-wall-section {
    background: #111118;
    margin: 0;
    padding: 2.5rem 0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.marquee-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 2rem));
    }

    /* -50% to account for duplication */
}

.logo-placeholder {
    color: var(--text-muted);
    height: 40px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.logo-placeholder:hover {
    opacity: 1;
}

/* Pilares (Bento Grid) - Glassmorphism applied here */
.bento-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.5rem;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1px;
    /* Inner bezel space */
    transition: border-color 0.3s ease;
}

.glass-panel:hover {
    border-color: rgba(123, 58, 237, 0.4);
}

.card-inner {
    background: rgba(10, 10, 15, 0.4);
    border-radius: 9px;
    padding: 2.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(123, 58, 237, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.card-title {
    font-family: 'Thunder', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.card-link span {
    transition: transform 0.3s var(--bezier-spring);
}

.card-link:hover {
    color: var(--brand-purple);
}

.card-link:hover span {
    transform: translateX(4px);
}

/* Diferencial Split */
.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.editorial-headline {
    line-height: 0.85;
}

.editorial-content {
    max-width: 500px;
}

.content-title {
    font-size: 2rem;
    margin: 1rem 0 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.editorial-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-item {
    border-left: 2px solid var(--brand-purple);
    padding-left: 1rem;
}

.stat-num {
    display: block;
    font-family: 'Thunder', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--text-main);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Cases de Sucesso */
/* ===== CASES — HUD cyberpunk + imagem ===== */
.case-showcase {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 3.5rem;
}

/* --- Painel HUD (esquerda) --- */
.case-hud {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2.25rem;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(123, 58, 237, 0.07), transparent 60%),
        var(--glass-bg);
    overflow: hidden;
}
.case-hud::before {
    /* linha de dados no topo */
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-purple) 20%, var(--brand-purple) 80%, transparent);
    opacity: 0.55;
}
.case-hud::after {
    /* grade sutil de fundo */
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(120% 80% at 0% 0%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(120% 80% at 0% 0%, #000 30%, transparent 75%);
    pointer-events: none;
}
.case-hud > * { position: relative; z-index: 1; }

/* colchetes de canto */
.case-bracket {
    position: absolute;
    width: 13px; height: 13px;
    border: 0 solid var(--brand-purple);
    z-index: 2;
    pointer-events: none;
}
.case-bracket.tl { top: 10px; left: 10px; border-top-width: 2px; border-left-width: 2px; }
.case-bracket.tr { top: 10px; right: 10px; border-top-width: 2px; border-right-width: 2px; }
.case-bracket.bl { bottom: 10px; left: 10px; border-bottom-width: 2px; border-left-width: 2px; }
.case-bracket.br { bottom: 10px; right: 10px; border-bottom-width: 2px; border-right-width: 2px; }

.case-hud-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.case-tag {
    font-family: 'Phonk', 'Courier New', monospace;
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-purple);
}
.case-id {
    font-family: 'Phonk', 'Courier New', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    opacity: 0.7;
}
.case-name {
    font-family: 'Thunder', Impact, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: 0.02em;
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: var(--text-main);
    margin: 0;
}
.case-sector {
    font-family: 'Phonk', 'Courier New', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0.6rem 0 1.75rem;
}

/* leitores de métrica */
.case-readouts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.readout {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.1rem 1rem 1.1rem 0;
}
.readout + .readout {
    padding-left: 1.25rem;
    border-left: 1px solid var(--glass-border);
}
.readout-num {
    font-family: 'Thunder', Impact, sans-serif;
    font-weight: 700;
    line-height: 1.05;
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    color: var(--text-main);
    letter-spacing: 0.015em;
}
.readout-x {
    color: var(--brand-purple);
    text-shadow: 0 0 14px rgba(123, 58, 237, 0.55);
}
.readout-lbl {
    font-family: 'Phonk', 'Courier New', monospace;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.2;
}
.case-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 1.5rem 0 0;
    max-width: 44ch;
}

/* --- Card flip (direita) — PNG transparente, sem fundo --- */
.case-flip {
    position: relative;
    perspective: 1600px;
    min-height: 360px;
    cursor: pointer;
    outline: none;
}
.case-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    transform-style: preserve-3d;
    transition: transform 0.9s cubic-bezier(0.72, 0, 0.24, 1);
}
.case-flip.is-flipped .case-flip-inner { transform: rotateY(180deg); }
.case-face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.case-face--back { transform: rotateY(180deg); }
.case-face img {
    max-width: 100%;
    max-height: 420px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.45));
}
/* navegação */
.case-nav {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.case-dot {
    width: 9px; height: 9px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.case-dot.is-active {
    background: var(--brand-purple);
    border-color: var(--brand-purple);
    transform: scale(1.15);
    box-shadow: 0 0 12px rgba(123, 58, 237, 0.7);
}
/* efeito de decodificação no HUD */
.case-hud.is-decoding .readout-num,
.case-hud.is-decoding .case-name { color: var(--brand-purple); }
.case-tick {
    position: absolute;
    width: 16px; height: 16px;
    z-index: 2;
    pointer-events: none;
}
.case-tick::before, .case-tick::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
}
.case-tick::before { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.case-tick::after  { top: 50%; left: 0; height: 1px; width: 100%; transform: translateY(-50%); }
.case-tick.tl { top: 12px; left: 12px; }
.case-tick.br { bottom: 12px; right: 12px; }

@media (max-width: 900px) {
    .case-showcase { grid-template-columns: 1fr; gap: 1.75rem; }
    .case-flip { order: -1; min-height: 280px; }
    .case-face img { max-height: 300px; }
    .case-hud { padding: 2rem 1.5rem; }
    .case-readouts { grid-template-columns: 1fr 1fr; }
    .readout:nth-child(3) { grid-column: 1 / -1; border-left: 0; padding-left: 0; border-top: 1px solid var(--glass-border); }
}
@media (max-width: 480px) {
    .case-readouts { grid-template-columns: 1fr; }
    .readout + .readout { border-left: 0; padding-left: 0; border-top: 1px solid var(--glass-border); }
    .readout:nth-child(3) { border-top: 1px solid var(--glass-border); }
}

/* Como Funciona */
/* ===== Como Funciona — stepper conectado ===== */
.process-section {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 42px 42px;
}
.process-section .container { max-width: 1540px; }
.proc-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.proc-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-top: 2px solid var(--brand-purple);
    border-radius: 6px;
    padding: 1.75rem 1.4rem;
}
/* Topo do card: número grande + rótulo mono, no lugar da antiga imagem */
.proc-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 0.85rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid var(--glass-border);
}
.proc-badge {
    font-family: 'Thunder', Impact, sans-serif;
    font-weight: 900;
    font-size: 3.2rem;
    line-height: 0.8;
    letter-spacing: 0.01em;
    color: var(--brand-purple);
}
.proc-step-lbl {
    font-family: 'Phonk', 'Courier New', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.proc-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-main);
    margin: 0;
}
.proc-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 0.6rem;
}
.proc-deliver {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.7rem 0.9rem;
    border: 1px dashed rgba(123, 58, 237, 0.4);
    border-radius: 4px;
    background: rgba(123, 58, 237, 0.05);
}
.proc-deliver-lbl {
    font-family: 'Phonk', 'Courier New', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-purple);
}
.proc-deliver-val {
    font-size: 0.8rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.85);
}

/* CTA — 2 colunas: texto à esquerda, form à direita (sem caixa) */
.cta-split {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 4rem;
    align-items: center;
}
.cta-copy { text-align: left; }
.cta-split .cta-headline {
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    line-height: 0.95;
    margin: 0.75rem 0 1.25rem;
}
.cta-desc {
    color: var(--text-muted);
    max-width: 46ch;
    margin: 0 0 1.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
}
.cta-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0 0 1.75rem;
    padding: 0;
}
.cta-list li {
    position: relative;
    padding-left: 1.75rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    line-height: 1.45;
}
.cta-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 9px;
    height: 9px;
    background: var(--brand-purple);
    transform: rotate(45deg);
}
.cta-reassure {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
    padding-left: 1rem;
    border-left: 2px solid var(--brand-purple);
    margin: 0;
    max-width: 44ch;
}
.cta-form { width: 100%; }

@media (max-width: 900px) {
    .cta-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .cta-desc, .cta-reassure { max-width: none; }
}

.mock-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select {
    width: 100%;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-purple);
}

.ghl-comment {
    color: var(--brand-purple);
    font-family: monospace;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.mock-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Slot do embed GHL — sem moldura: o form (escuro via GHL) fica solto na coluna */
.ghl-slot {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* o iframe do GHL, quando colado, ocupa a largura toda e some com a borda dupla */
.ghl-slot iframe {
    width: 100% !important;
    border: none !important;
    background: transparent !important;
}
/* enquanto o embed não entra, mostra o hint; some assim que houver um iframe */
.ghl-slot:has(iframe) .ghl-slot-hint,
.ghl-slot:has(iframe) .ghl-slot-corner { display: none; }
.ghl-slot-hint {
    font-family: 'Phonk', 'Courier New', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.ghl-slot-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 0 solid var(--brand-purple);
    pointer-events: none;
}
.ghl-slot-corner.tl { top: 10px; left: 10px; border-top-width: 2px; border-left-width: 2px; }
.ghl-slot-corner.br { bottom: 10px; right: 10px; border-bottom-width: 2px; border-right-width: 2px; }

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Thunder', sans-serif;
    font-size: 1.25rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.footer-links p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--text-main); }

@media (max-width: 600px) {
    .footer-container { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-links { justify-content: center; }
}

/* Utility & Animations */
.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 2rem;
}

.fade-up-element {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
    transition: opacity 0.8s var(--bezier-spring),
        transform 0.8s var(--bezier-spring),
        filter 0.8s var(--bezier-spring);
    will-change: transform, opacity, filter;
}

.fade-up-element.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Hamburger & Mobile Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 200;
}

.hamburger .line {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: transform 0.3s var(--bezier-spring);
    transform-origin: center;
}

.hamburger .line-1 {
    transform: translateY(-4px);
}

.hamburger .line-2 {
    transform: translateY(4px);
}

.hamburger.active .line-1 {
    transform: translateY(1px) rotate(45deg);
}

.hamburger.active .line-2 {
    transform: translateY(-1px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 2rem;
    font-family: 'Thunder', sans-serif;
    text-transform: uppercase;
}

.stagger-link {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--bezier-spring);
}

.mobile-menu-overlay.active .stagger-link {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .proc-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .layout-split {
        grid-template-columns: 1fr;
    }

    .island-nav {
        top: 0;
        width: 100%;
    }

    .nav-inner {
        display: flex;
        justify-content: space-between;
        padding: 1rem 1.25rem;
    }

    .proc-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .cta-inner {
        padding: 3rem 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

#particle-blur-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

#particle-blur-overlay.active {
    opacity: 1;
}

/* --- PERFORMANCE PAGE --- */

/* Performance Hero Section */
.page-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 10rem;
    padding-bottom: 6rem;
}

.hero-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-metrics .metric-item {
    display: flex;
    flex-direction: column;
}

.hero-metrics .metric-item .stat-num {
    font-family: 'Thunder', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--brand-purple);
    font-weight: 900;
}

.hero-metrics .metric-item .stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Feature Cards */
.feature-card {
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1.5rem;
    background: var(--glass-bg);
    transition: border-color 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(123, 58, 237, 0.4);
}

.feature-card .card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.feature-card .card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Frentes Grid (páginas de pilar) — adapta-se a 3 ou 4 cards */
.frentes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

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

/* Deliverables Grid */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.deliverable-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.deliverable-icon {
    color: var(--brand-purple);
    flex-shrink: 0;
}

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

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

/* --- SOBRE PAGE --- */
.page-hero.centered {
  align-items: center;
  text-align: center;
}
.page-hero.centered .hero-body {
  margin: 1.5rem auto 3rem;
}
.big-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 3rem;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2.5rem;
  background: var(--glass-bg);
  transition: border-color 0.3s ease;
}
.team-card:hover {
  border-color: rgba(123, 58, 237, 0.4);
}
.team-photo {
  width: 100%;
  height: 240px;
  background: #1a1a2e;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
}
.team-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.team-bullets li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.team-bullets li::before {
  content: "//";
  color: var(--brand-purple);
  font-family: 'Phonk', monospace;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .big-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

/* ===================================================================
   PÁGINAS INTERNAS (PILARES) — layout full-bleed alternado
   Identidade própria vs. home: hero em Thunder, faixas zigue-zague,
   números gigantes e fundo de "trilhos" no lugar das partículas.
=================================================================== */

/* Fundo distinto: trilhos verticais sutis (a home usa o dot-grid) */
body.internal-page::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        to right,
        rgba(123, 58, 237, 0.05) 0,
        rgba(123, 58, 237, 0.05) 1px,
        transparent 1px,
        transparent 140px
    );
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
            mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}

/* HERO do pilar — título gigante em Thunder */
.pillar-hero {
    padding-top: 12rem;
    padding-bottom: 5rem;
}
.pillar-hero .eyebrow-tag {
    display: block;
    margin-bottom: 1rem;
}
.pillar-hero-title {
    font-family: 'Thunder', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(3.5rem, 12vw, 10rem);
    line-height: 0.82;
    letter-spacing: -0.01em;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}
.pillar-hero-sub {
    max-width: 52ch;
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

/* Hero com imagem vazando pela direita */
.pillar-hero.has-visual {
    position: relative;
}
.pillar-hero.has-visual .pillar-hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}
.pillar-hero-image {
    position: absolute;
    top: 9.5rem;
    left: 55%;
    width: 46vw;          /* extrapola a borda direita -> cortada pela tela */
    z-index: 1;
    pointer-events: none;
}
.pillar-hero-image img {
    display: block;
    width: 100%;
    height: auto;
    /* PNG já é transparente: nada de borda/box-shadow retangular.
       drop-shadow acompanha o formato real do dashboard. */
    filter: drop-shadow(0 24px 55px rgba(0, 0, 0, 0.55))
            drop-shadow(0 0 38px rgba(123, 58, 237, 0.22));
    animation: heroFloat 6s ease-in-out infinite;
}

/* float sutil — aplicado no img para não conflitar com o fade-up do wrapper */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
    .pillar-hero-image img { animation: none; }
}

@media (max-width: 1024px) {
    .pillar-hero.has-visual .pillar-hero-content {
        max-width: 100%;
    }
    .pillar-hero-image {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin-top: 2.5rem;
    }
}

/* FRENTES — faixas full-bleed alternadas (zigue-zague) */
.frentes-stack {
    margin-top: 2rem;
}
.frente-row {
    position: relative;
    overflow: hidden;            /* corta a imagem de fundo exatamente na faixa */
    border-top: 1px solid var(--glass-border);
    transition: background-color 0.45s ease, box-shadow 0.55s ease;
}
.frente-row:last-child {
    border-bottom: 1px solid var(--glass-border);
}
.frente-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.018);
}

/* HOVER — feixe de luz indireto no vidro, com refração nas bordas */
.frente-row::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    background:
        linear-gradient(115deg, transparent 38%, rgba(123, 58, 237, 0.07) 50%, transparent 62%),
        radial-gradient(140% 90% at 50% 0%, rgba(123, 58, 237, 0.10), transparent 55%),
        radial-gradient(140% 90% at 50% 100%, rgba(123, 58, 237, 0.08), transparent 55%);
}
.frente-row:hover {
    background-color: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(123, 58, 237, 0.55),
                inset 0 -1px 0 rgba(123, 58, 237, 0.55),
                inset 0 0 70px rgba(123, 58, 237, 0.08);
}
.frente-row:hover::after { opacity: 1; }
.frente-row:hover .frente-bg { opacity: 0.72; }
.frente-row:hover .frente-bignum {
    -webkit-text-stroke-color: rgba(123, 58, 237, 1);
}
.frente-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    padding: 5.5rem 0;
}
.frente-row:nth-child(even) .frente-visual { order: 2; }
.frente-row:nth-child(even) .frente-text   { order: 1; }

/* bloco visual: número gigante contornado */
.frente-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}
.frente-bignum {
    position: relative;
    z-index: 1;
    font-family: 'Thunder', sans-serif;
    font-weight: 900;
    font-size: clamp(9rem, 22vw, 18rem);
    line-height: 0.7;
    color: rgba(10, 10, 15, 0.5);   /* fill escuro fraquinho: abafa a imagem por dentro do número */
    -webkit-text-stroke: 1.5px rgba(123, 58, 237, 0.9);
    user-select: none;
    transition: -webkit-text-stroke-color 0.4s ease;
}

/* imagem decorativa atrás do número (ex.: feed social na frente 02) */
.frente-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 118%;
    max-width: none;
    z-index: 0;
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.5s ease;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 38%, transparent 75%);
            mask-image: radial-gradient(ellipse at center, #000 38%, transparent 75%);
}

/* texto da frente */
.frente-tag-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.frente-icon-sm {
    color: var(--brand-purple);
    display: inline-flex;
}
.frente-label {
    font-family: 'Phonk', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--brand-purple);
    text-transform: uppercase;
}
.frente-title {
    font-family: 'Thunder', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 0.9;
    color: var(--text-main);
    margin: 0.75rem 0 1.25rem;
}
.frente-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 48ch;
}

/* faixa de fechamento (abordagem) */
.pillar-statement {
    text-align: center;
    padding: 5rem 0;
}
.pillar-statement h2 {
    font-family: 'Thunder', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.92;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}
.pillar-statement p {
    max-width: 60ch;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .frente-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 3.5rem 0;
    }
    .frente-row:nth-child(even) .frente-visual { order: 0; }
    .frente-row:nth-child(even) .frente-text   { order: 0; }
    .frente-visual { min-height: 120px; justify-content: flex-start; }
    .frente-bignum { font-size: 7rem; }
}