/* ═══════════════════════════════════════════════════════════
   MEGA AUTO SOM — CSS Profissional
   Técnica: Hero em 4 planos com mask-image no logo
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #06090f;
  color: #d8e4f0;
  line-height: 1.65;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --c-bg:      #06090f;
  --c-surface: #0a101e;
  --c-card:    #0d1526;
  --c-border:  rgba(0,180,230,0.1);
  --c-cyan:    #00b8e6;
  --c-cyan-b:  #00deff;
  --c-cyan-s:  rgba(0,184,230,0.08);
  --c-purple:  #5e3fcb;
  --c-t1:      #edf3fb;
  --c-t2:      #8aaabf;
  --c-t3:      #405570;
  --r-sm:  6px;  --r-md: 12px;  --r-lg: 18px;
  --r-xl:  24px; --r-2xl: 32px; --r-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.wrap { max-width: 1200px; margin-inline: auto; padding-inline: clamp(16px,4vw,40px); }

/* ─── SECTIONS ───────────────────────────────────────────── */
.sec { padding-block: clamp(72px,10vw,110px); }
.sec-dark { background: var(--c-surface); }

.sec-head { text-align: center; margin-bottom: clamp(40px,6vw,64px); }
.sec-head h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem,4vw,2.8rem);
  font-weight: 900;
  color: var(--c-t1);
  line-height: 1.15;
  margin-bottom: 12px;
}
.sec-head h2 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--c-cyan), var(--c-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sec-head p { font-size: 1rem; color: var(--c-t2); max-width: 500px; margin-inline: auto; }

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-cyan);
  background: var(--c-cyan-s);
  border: 1px solid var(--c-border);
  padding: 4px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-green {
  display: inline-flex; align-items: center; gap: 10px;
  background: #22c55e; color: #fff;
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px; border-radius: var(--r-pill);
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
  transition: background .25s, transform .2s, box-shadow .25s;
  white-space: nowrap;
}
.btn-green:hover { background: #16a34a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(34,197,94,0.4); }
.btn-green.lg   { padding: 16px 34px; font-size: 1.02rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); color: var(--c-t1);
  font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.13);
  transition: background .25s, border-color .25s, transform .2s;
  white-space: nowrap;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-cyan {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(130deg, var(--c-cyan), var(--c-purple));
  color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px; border-radius: var(--r-pill);
  transition: opacity .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(0,184,230,0.2);
}
.btn-cyan:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,184,230,0.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--c-cyan);
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px; border-radius: var(--r-pill);
  border: 1.5px solid var(--c-cyan);
  transition: background .25s, transform .2s, box-shadow .25s;
}
.btn-outline:hover { background: var(--c-cyan-s); transform: translateY(-2px); box-shadow: 0 0 20px rgba(0,184,230,0.2); }
.btn-outline.lg { padding: 16px 34px; font-size: 1.02rem; }

.btn-ig {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(236,72,153,0.1); color: #f472b6;
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 24px; border-radius: var(--r-pill);
  border: 1.5px solid rgba(236,72,153,0.25);
  transition: background .25s, border-color .25s, transform .2s;
}
.btn-ig:hover { background: rgba(236,72,153,0.18); border-color: rgba(236,72,153,0.55); transform: translateY(-2px); }

/* ─── WHATSAPP FAB ───────────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 990;
  display: flex; align-items: center; gap: 10px;
  background: #22c55e; color: #fff;
  font-weight: 700; font-size: 0.88rem;
  padding: 13px 20px; border-radius: var(--r-pill);
  box-shadow: 0 4px 20px rgba(34,197,94,0.4);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.wa-fab svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-fab:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 10px 30px rgba(34,197,94,0.5); }
@media (max-width: 480px) { .wa-fab span { display: none; } .wa-fab { padding: 14px; } }

/* ─── NAVBAR ─────────────────────────────────────────────── */
#site-header {
  position: fixed; inset: 0 0 auto; z-index: 900;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
#site-header.scrolled {
  background: rgba(6,9,15,0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 rgba(0,180,230,0.07), 0 4px 24px rgba(0,0,0,0.6);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin-inline: auto;
  padding: 12px clamp(16px,4vw,40px); gap: 24px;
}

/* Logo no nav: usa mask para suavizar as bordas da imagem banner */
.nav-brand { flex-shrink: 0; }
.nav-logo-img {
  height: 44px; width: auto; object-fit: contain; display: block;
  /* mask elíptico: funde as bordas com o fundo transparente do nav */
  mask-image: radial-gradient(ellipse 88% 90% at 50% 50%, black 45%, rgba(0,0,0,.6) 68%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 88% 90% at 50% 50%, black 45%, rgba(0,0,0,.6) 68%, transparent 100%);
  transition: filter .25s, transform .25s;
}
.nav-brand:hover .nav-logo-img { filter: brightness(1.15); transform: scale(1.03); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 0.88rem; font-weight: 500; color: var(--c-t2);
  padding: 8px 14px; border-radius: var(--r-md);
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: var(--c-t1); background: rgba(255,255,255,0.06); }
.nav-wa {
  display: flex; align-items: center; gap: 7px;
  background: #22c55e; color: #fff;
  font-size: 0.84rem; font-weight: 700;
  padding: 9px 18px; border-radius: var(--r-pill);
  margin-left: 8px;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 2px 12px rgba(34,197,94,0.3);
}
.nav-wa:hover { background: #16a34a; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(34,197,94,0.4); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--c-cyan); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO (4 planos) ────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 100px 24px 60px;
}

/* Plano 1 — Cena: foto real do teto hexagonal */
.hero-scene {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-scene-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  background-color: #03050a;
  /* Colmeia com linhas ultrafinas (resolvido problema de distorção de escala) */
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(6,9,15,0) 0%, rgba(3,5,10,0.95) 90%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%2300b8e6' fill-opacity='0.5' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%, 56px 98px; /* Tamanho pequeno = linha fina e nítida */
  background-position: center center;
  background-repeat: no-repeat, repeat;
  filter: drop-shadow(0 0 4px rgba(0, 184, 230, 0.7));
  transform: scale(1.06);
  animation: sceneZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes sceneZoom {
  from { transform: scale(1.06) translateY(0); }
  to   { transform: scale(1.12) translateY(-2%); }
}

/* Logo em fluxo natural, com blend mode para integração perfeita */
.hero-logo-wrap {
  margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-blended {
  width: clamp(280px, 60vw, 650px);
  height: auto;
  object-fit: contain;
  /* Blend mode screen elimina os fundos pretos da imagem original, 
     deixando só os neons e as luzes perfeitamente fundidas. */
  /* Apaga fundos pretos/escuros. */
  mix-blend-mode: screen;
  /* Máscara radial suave: apaga todas as 4 bordas (cima, baixo, lados) para sumir com o caixote */
  mask-image: radial-gradient(ellipse 65% 55% at 50% 50%, black 40%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 50%, black 40%, transparent 95%);
  /* Força o fundo da imagem a virar preto absoluto para o screen funcionar bem sobre o vídeo */
  filter: contrast(1.4) brightness(0.9) drop-shadow(0 0 25px rgba(0,160,230,0.4));
  animation: logoPulse 5s ease-in-out infinite alternate;
}
@keyframes logoPulse {
  from { filter: contrast(1.4) brightness(0.9) drop-shadow(0 0 15px rgba(0,160,230,0.25)); }
  to   { filter: contrast(1.4) brightness(0.9) drop-shadow(0 0 35px rgba(0,200,255,0.6)); }
}


/* Plano 3 — Overlay direcional: escuro nos extremos, límpido no centro */
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    /* Topo: escurece para a navbar ficar legível */
    linear-gradient(to bottom,
      rgba(6,9,15,0.88) 0%,
      rgba(6,9,15,0.5)  12%,
      rgba(6,9,15,0.1)  30%,
      rgba(6,9,15,0.1)  60%,
      rgba(6,9,15,0.65) 80%,
      rgba(6,9,15,1)    100%
    ),
    /* Lados: vinheta suave */
    radial-gradient(ellipse 110% 100% at 50% 50%,
      transparent       45%,
      rgba(6,9,15,0.55) 100%
    );
}

/* Plano 4 — Conteúdo: fica sobre tudo */
.hero-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  max-width: 840px; width: 100%;
  margin-top: clamp(60px, 8vw, 100px);
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--c-t1);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.8);
}

.hero-sub {
  font-size: clamp(0.8rem, 1.8vw, 0.96rem);
  font-weight: 500;
  color: rgba(180,210,230,0.7);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: inline-flex; align-items: center;
  background: rgba(8,14,28,0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0,180,230,0.15);
  border-radius: var(--r-xl);
  padding: 16px 32px;
}
#about {
  background-color: var(--c-bg);
  padding: 60px 24px;
}
/* ─── VIDEO TOUR ─── */
#video-tour {
  background-color: var(--c-bg);
  padding: 0 24px 20px;
}
.video-container {
  width: 100%;
  max-width: fit-content; /* O container abraça exatamente a largura final do vídeo */
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(0, 184, 230, 0.15);
  background: #000;
  display: flex;
  justify-content: center;
}
.video-container video {
  max-width: 100%; 
  max-height: 65vh; /* Trava a altura máxima em 65% da tela (não fica gigante no PC) */
  width: auto;
  height: auto;
  display: block;
}

.stat { display: flex; flex-direction: column; align-items: center; gap: 3px; padding-inline: 24px; }
.stat strong {
  font-family: 'Orbitron', monospace;
  font-size: 1.45rem; font-weight: 900;
  color: var(--c-cyan); line-height: 1;
}
.stat span { font-size: 0.68rem; color: var(--c-t3); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-div { width: 1px; height: 32px; background: var(--c-border); flex-shrink: 0; }

.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; translate: -50% 0; z-index: 3;
  width: 24px; height: 40px;
  border: 2px solid rgba(0,184,230,0.22);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-ball {
  width: 4px; height: 8px;
  border-radius: 2px; background: var(--c-cyan);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { transform: translateY(0); opacity: 1; }
  60%      { transform: translateY(13px); opacity: 0.2; }
}

/* ─── TRUST STRIP ────────────────────────────────────────── */
.trust-strip {
  background: var(--c-surface);
  border-block: 1px solid var(--c-border);
  padding: 20px 0;
}
.ts-inner {
  max-width: 1200px; margin-inline: auto;
  padding-inline: clamp(16px,4vw,40px);
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 16px;
  font-size: 0.82rem; font-weight: 600; color: var(--c-t2);
}
.ts-sep { width: 1px; height: 18px; background: var(--c-border); flex-shrink: 0; }
@media (max-width: 600px) { .ts-sep { display: none; } }

/* ─── CARDS GRID ─────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.card:hover {
  border-color: rgba(0,184,230,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 28px rgba(0,184,230,0.07);
}
.card.featured { border-color: rgba(94,63,203,0.4); }
.card.featured:hover { border-color: rgba(94,63,203,0.7); }

.card-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: 0.68rem; font-weight: 800;
  background: linear-gradient(130deg, var(--c-cyan), var(--c-purple));
  color: #fff; padding: 4px 11px; border-radius: var(--r-pill);
}

.card-img { position: relative; height: 185px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-img img { transform: scale(1.08); }
.card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--c-card) 0%, transparent 55%);
}

.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.card-icon { font-size: 1.5rem; margin-bottom: 8px; }
.card-body h3 {
  font-family: 'Orbitron', monospace;
  font-size: 0.98rem; font-weight: 700;
  color: var(--c-t1); margin-bottom: 7px;
}
.card-body p { font-size: 0.84rem; color: var(--c-t2); line-height: 1.65; margin-bottom: 14px; }

.card-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-bottom: 18px; flex: 1;
}
.card-tags li {
  font-size: 0.7rem; font-weight: 600;
  color: var(--c-cyan); background: var(--c-cyan-s);
  border: 1px solid rgba(0,184,230,0.15);
  padding: 3px 9px; border-radius: var(--r-pill);
}

.card-link {
  display: block; text-align: center;
  font-size: 0.82rem; font-weight: 700;
  color: var(--c-t2); padding: 10px;
  border: 1px solid var(--c-border); border-radius: var(--r-lg);
  transition: color .2s, border-color .2s, background .2s;
  margin-top: auto;
}
.card-link:hover { color: var(--c-cyan); border-color: rgba(0,184,230,0.35); background: var(--c-cyan-s); }
.card.featured .card-link { color: #a78bfa; border-color: rgba(94,63,203,0.3); }
.card.featured .card-link:hover { color: #c4b5fd; border-color: rgba(94,63,203,0.6); background: rgba(94,63,203,0.08); }

/* ─── PELÍCULAS ──────────────────────────────────────────── */
.tab-bar {
  display: flex; justify-content: center; gap: 5px;
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r-pill); padding: 5px;
  max-width: 360px; margin-inline: auto; margin-bottom: 32px;
}
.tab {
  flex: 1; font-size: 0.85rem; font-weight: 600; color: var(--c-t3);
  background: none; border: none; border-radius: var(--r-pill);
  padding: 10px 14px; cursor: pointer;
  transition: color .25s, background .25s;
}
.tab.active, .tab:hover {
  background: linear-gradient(130deg, var(--c-cyan), var(--c-purple));
  color: #fff;
}

.tab-stage { position: relative; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: tabSlide .35s var(--ease); }
@keyframes tabSlide { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.pel-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center;
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: clamp(24px,5vw,50px);
}
.pel-text h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem; font-weight: 800;
  color: var(--c-cyan); margin-bottom: 12px;
}
.pel-text p { font-size: 0.9rem; color: var(--c-t2); line-height: 1.75; margin-bottom: 26px; }

.bars { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-row > span:first-child { font-size: 0.78rem; color: var(--c-t3); font-weight: 600; width: 130px; flex-shrink: 0; }
.bar-track { flex: 1; height: 5px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-purple));
  border-radius: 3px; transition: width 1.1s var(--ease);
}
.bar-fill.go { width: var(--w); }
.bar-row b { font-size: 0.74rem; font-weight: 700; color: var(--c-cyan); width: 56px; text-align: right; flex-shrink: 0; }

/* ─── GALERIA DE TRABALHOS ──────────────────────────────── */
.gal-filter { max-width: 460px; }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gal-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-card);
  cursor: pointer;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.gal-item:hover img { transform: scale(1.08); }
.gal-item[hidden] { display: none; }

.gal-more-wrap { display: flex; justify-content: center; margin-top: 28px; }
.gal-more-wrap[hidden] { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4,7,13,0.94);
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease);
  padding: 20px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-img { max-width: min(90vw, 900px); max-height: 85vh; border-radius: var(--r-md); object-fit: contain; }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; line-height: 1; cursor: pointer;
  transition: background .2s, transform .2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.16); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.08); }

.pel-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pbadge {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 18px 14px; text-align: center;
  font-size: 1.35rem; line-height: 1;
  display: flex; flex-direction: column; gap: 7px; align-items: center;
  transition: border-color .25s, background .25s;
}
.pbadge strong { font-size: 0.78rem; color: var(--c-t2); font-weight: 700; }
.pbadge:hover { border-color: rgba(0,184,230,0.3); background: var(--c-cyan-s); }

/* ─── ABOUT ──────────────────────────────────────────────── */
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-text .sec-head { text-align: left; }
.about-text .sec-head h2 { text-align: left; }
.about-text > p { font-size: 0.92rem; color: var(--c-t2); line-height: 1.75; margin-bottom: 12px; }

.about-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.about-list li { display: flex; align-items: flex-start; gap: 13px; }
.about-list li > span:first-child {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--c-cyan-s); border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.about-list div { display: flex; flex-direction: column; gap: 3px; padding-top: 5px; }
.about-list strong { font-size: 0.88rem; font-weight: 700; color: var(--c-t1); }
.about-list small { font-size: 0.78rem; color: var(--c-t3); }
.about-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.about-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.about-card-top { position: relative; height: 210px; overflow: hidden; }
.about-bg-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); transition: transform .5s var(--ease); }
.about-card:hover .about-bg-img { transform: scale(1.05); }
.about-card-top-ov {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6,9,15,0.35);
}
/* Logo no card "sobre": mask suaviza e integra com o fundo escuro */
.about-logo-img {
  width: clamp(180px, 65%, 300px);
  height: auto; object-fit: contain;
  mask-image: radial-gradient(ellipse 80% 84% at 50% 50%, black 30%, rgba(0,0,0,.8) 50%, rgba(0,0,0,.4) 68%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 84% at 50% 50%, black 30%, rgba(0,0,0,.8) 50%, rgba(0,0,0,.4) 68%, transparent 100%);
  filter: drop-shadow(0 0 18px rgba(0,160,230,0.5));
}
.about-card-info { padding: 20px 22px; display: flex; flex-direction: column; gap: 11px; }
.info-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.84rem; color: var(--c-t2);
}
.info-item > span:first-child { flex-shrink: 0; font-size: 1rem; margin-top: 1px; }
.info-item a { color: var(--c-cyan); transition: color .2s; }
.info-item a:hover { color: var(--c-cyan-b); }
#about-status {
  font-size: 0.8rem; font-weight: 700;
  padding: 6px 14px; border-radius: var(--r-pill);
  align-self: flex-start; border: 1px solid;
}
#about-status.open  { color: #4ade80; background: rgba(74,222,128,0.08);  border-color: rgba(74,222,128,0.22); }
#about-status.closed{ color: #f87171; background: rgba(248,113,113,0.08); border-color: rgba(248,113,113,0.22); }

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-sec {
  position: relative; overflow: hidden;
  padding-block: clamp(64px,9vw,100px);
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.22) saturate(1.5); }
.cta-bg-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6,9,15,0.55), rgba(6,9,15,0.45), rgba(6,9,15,0.7));
}
.cta-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px; flex-wrap: wrap;
}
.cta-content h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.4rem,3.5vw,2.2rem);
  font-weight: 900; color: var(--c-t1);
  margin-bottom: 10px; line-height: 1.2;
}
.cta-content p { font-size: 0.94rem; color: var(--c-t2); max-width: 440px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ─── CONTATO ────────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 24px; align-items: start;
}
.map-col { display: flex; flex-direction: column; gap: 12px; }
.map-wrap { height: 380px; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--c-border); }
.map-wrap iframe { width: 100%; height: 100%; filter: invert(93%) hue-rotate(195deg) saturate(0.55) brightness(0.8); }
.map-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.84rem; font-weight: 600; color: var(--c-cyan);
  background: var(--c-cyan-s); border: 1px solid rgba(0,184,230,0.2);
  padding: 10px 18px; border-radius: var(--r-pill); align-self: flex-start;
  transition: background .2s, border-color .2s, transform .2s;
}
.map-btn:hover { background: rgba(0,184,230,0.14); border-color: rgba(0,184,230,0.4); transform: translateX(3px); }

.hours-box {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: 22px; margin-bottom: 14px;
}
.hours-box h3 {
  font-family: 'Orbitron', monospace;
  font-size: 0.88rem; font-weight: 700; color: var(--c-cyan); margin-bottom: 16px;
}
#hours-list { display: flex; flex-direction: column; }
#hours-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.84rem; border-radius: 4px;
  transition: background .2s, padding .2s;
}
#hours-list li:last-child { border-bottom: none; }
#hours-list li:hover { background: rgba(0,184,230,0.04); padding-inline: 8px; }
#hours-list li > span:first-child { color: var(--c-t2); }
#hours-list li > span:last-child { font-weight: 600; color: var(--c-t1); }
#hours-list li.closed > span:last-child { color: #f87171; }
#hours-list li.today > span { color: var(--c-cyan); font-weight: 700; }
#hours-status {
  margin-top: 12px; text-align: center;
  font-size: 0.8rem; font-weight: 700;
  padding: 7px 14px; border-radius: var(--r-pill); border: 1px solid;
}
#hours-status.open  { color: #4ade80; background: rgba(74,222,128,0.08); border-color: rgba(74,222,128,0.2); }
#hours-status.closed{ color: #f87171; background: rgba(248,113,113,0.08); border-color: rgba(248,113,113,0.2); }

.clinks { display: flex; flex-direction: column; gap: 10px; }
.clink {
  display: flex; align-items: center; gap: 14px;
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 14px 18px;
  transition: border-color .25s, transform .2s, background .25s;
}
.clink:hover { transform: translateX(5px); }
.clink.wa:hover  { border-color: rgba(34,197,94,0.4);  background: rgba(34,197,94,0.06); }
.clink.ig:hover  { border-color: rgba(236,72,153,0.4); background: rgba(236,72,153,0.06); }
.clink.tel:hover { border-color: rgba(0,184,230,0.4);  background: var(--c-cyan-s); }
.clink-ic {
  width: 44px; height: 44px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.clink.wa  .clink-ic { background: rgba(34,197,94,0.1); color: #22c55e; }
.clink.ig  .clink-ic { background: rgba(236,72,153,0.1); color: #f472b6; }
.clink.tel .clink-ic { background: var(--c-cyan-s); color: var(--c-cyan); }
.clink-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.clink-text strong { font-size: 0.86rem; font-weight: 700; color: var(--c-t1); }
.clink-text span { font-size: 0.76rem; color: var(--c-t3); }
.clink > span:last-child { color: var(--c-t3); font-size: 1.1rem; }

/* ─── FOOTER ─────────────────────────────────────────────── */
#site-footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 48px; padding-block: 52px;
  border-bottom: 1px solid var(--c-border);
}
/* Logo no footer: mask para integrar na faixa escura */
.footer-logo {
  height: 44px; width: auto; object-fit: contain; display: block;
  margin-bottom: 14px;
  mask-image: radial-gradient(ellipse 88% 90% at 50% 50%, black 40%, rgba(0,0,0,.7) 65%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 88% 90% at 50% 50%, black 40%, rgba(0,0,0,.7) 65%, transparent 100%);
  filter: brightness(0.92) drop-shadow(0 0 6px rgba(0,184,230,0.15));
  transition: filter .25s;
}
.footer-logo:hover { filter: brightness(1.05) drop-shadow(0 0 12px rgba(0,184,230,0.3)); }
.footer-brand p { font-size: 0.82rem; color: var(--c-t3); line-height: 1.7; margin-bottom: 18px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-t3); transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.footer-social a:hover { color: var(--c-cyan); border-color: rgba(0,184,230,0.3); background: var(--c-cyan-s); transform: translateY(-2px); }
.footer-nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.footer-nav h4 {
  font-family: 'Orbitron', monospace;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--c-cyan); margin-bottom: 14px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 9px; }
.footer-nav a { font-size: 0.82rem; color: var(--c-t3); transition: color .2s, padding-left .2s; }
.footer-nav a:hover { color: var(--c-t1); padding-left: 4px; }
.footer-bottom { padding-block: 16px; }
.footer-bottom-inner {
  max-width: 1200px; margin-inline: auto;
  padding-inline: clamp(16px,4vw,40px);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.74rem; color: var(--c-t3);
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
[data-reveal] { opacity: 0; transition: opacity .65s var(--ease), transform .65s var(--ease); }
[data-reveal="fade-up"]    { transform: translateY(28px); }
[data-reveal="fade-right"] { transform: translateX(-30px); }
[data-reveal="fade-left"]  { transform: translateX(30px); }
[data-reveal].visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-text .sec-head { text-align: center; }
  .about-text .sec-head h2 { text-align: center; }
  .about-list { max-width: 520px; margin-inline: auto; }
  .about-btns { justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-content { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .pel-layout { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-nav { grid-template-columns: repeat(3,1fr); }
  .gal-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; inset: 0 0 auto;
    flex-direction: column; align-items: stretch;
    background: rgba(6,9,15,0.97);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 85px 24px 28px; gap: 4px;
    transform: translateY(-110%);
    transition: transform .4s var(--ease);
    z-index: 850; border-bottom: 1px solid var(--c-border);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link { padding: 14px; font-size: 1rem; text-align: center; }
  .nav-wa { margin: 8px 0 0; padding: 14px; font-size: 1rem; justify-content: center; }

  .cards-grid { grid-template-columns: 1fr; }
  .hero-content { margin-top: clamp(140px,40vw,220px); }
  .hero-stats { flex-direction: column; gap: 14px; padding: 18px 24px; }
  .stat-div { width: 50px; height: 1px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-green, .btn-ghost, .btn-cyan, .btn-outline { width: 100%; justify-content: center; }
  .footer-bottom-inner { flex-direction: column; gap: 5px; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .map-wrap { height: 300px; }
  .footer-nav { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
}

@media (max-width: 480px) {
  .pel-badges { grid-template-columns: 1fr 1fr; }
  .hero-logo-masked { width: clamp(260px, 88vw, 420px); }
  .lb-prev, .lb-next { width: 38px; height: 38px; font-size: 1.1rem; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-close { top: 10px; right: 10px; }
}
