/* ============================================================
   Togni Odontologia — linguagem de design "Fort" adaptada
   Marca: azul tom sobre tom + turquesa neon.
   Títulos: Utendo · Corpo: Poppins.
   ============================================================ */

/* ===================== FONTES ===================== */
@font-face {
  font-family: "Utendo";
  src: url("../fonts/Utendo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Utendo";
  src: url("../fonts/Utendo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===================== VARIÁVEIS ===================== */
:root {
  --dark-0: #041420;   /* fundo mais profundo */
  --dark-1: #06202f;
  --dark-2: #08283f;
  --dark-3: #0d3a5c;
  --blue: #4db8e8;      /* azul claro Togni */
  --blue-soft: #a9dcf4;
  --neon: #2ff0e0;      /* turquesa neon */
  --text: #eaf6fc;
  --text-dim: #bcd7ea;
  --line: rgba(77, 184, 232, .14);

  --font-display: "Utendo", "Poppins", sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark-0);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

section[id] { scroll-margin-top: 110px; }

.skip-link {
  position: absolute;
  left: -999px; top: 0;
  z-index: 2000;
  background: var(--neon);
  color: var(--dark-0);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Blobs de gradiente */
.decor-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: .55;
}
.decor-blob-1 {
  width: 620px; height: 620px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(77, 184, 232, .38), transparent 70%);
  animation: blob-float 12s ease-in-out infinite;
}
.decor-blob-2 {
  width: 480px; height: 480px;
  bottom: -160px; left: -140px;
  background: radial-gradient(circle, rgba(47, 240, 224, .28), transparent 70%);
  animation: blob-float 15s ease-in-out infinite reverse;
}
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 40px) scale(1.08); }
}

/* ============================================================
   BARRA DE PROGRESSO
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  z-index: 200;
  background: linear-gradient(90deg, var(--blue), var(--neon));
  box-shadow: 0 0 10px rgba(47, 240, 224, .7);
}

/* ============================================================
   HEADER / MENU
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .35s, padding .35s, box-shadow .35s;
}
/* Scrim para legibilidade sobre o céu claro do hero */
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4, 20, 32, .55), transparent);
  pointer-events: none;
  transition: opacity .35s;
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(4, 20, 32, .85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(47, 240, 224, .12), 0 12px 34px rgba(0, 0, 0, .45);
}
.header.scrolled::before { opacity: 0; }

.header .container { width: min(1400px, 95%); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 46px; width: auto; display: block; }

.nav {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nav-link {
  position: relative;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
  transition: color .25s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--neon));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
  box-shadow: 0 0 8px rgba(47, 240, 224, .8);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active {
  color: var(--neon);
  text-shadow: 0 0 12px rgba(47, 240, 224, .6);
}
.nav-link.active::after { transform: scaleX(1); }

.header-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-insta {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  color: var(--neon);
  transition: color .3s, filter .3s, transform .3s;
}
.header-insta svg { width: 24px; height: 24px; }
.header-insta:hover {
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(47, 240, 224, .8));
  transform: translateY(-1px);
}

.header-contact {
  margin-top: 10px;
  border-top: 1px solid var(--line);
}
.header.scrolled .header-contact { display: none; }

.header-contact-inner {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding-top: 9px;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .25s;
}
.contact-item svg {
  width: 14px; height: 14px;
  color: var(--neon);
  filter: drop-shadow(0 0 4px rgba(47, 240, 224, .5));
}
.contact-item:hover { color: var(--neon); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.menu-toggle span {
  width: 26px; height: 2px;
  background: var(--neon);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  box-shadow: 0 0 6px rgba(47, 240, 224, .6);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-3);
}

.hero-bg { position: absolute; inset: 0; }

.hero-photo {
  position: absolute;
  inset: 0;
  background: url("../img/hero.jpg") center right / cover no-repeat;
  background-attachment: fixed;
}

@keyframes pulse {
  0%, 100% { opacity: .35; }
  50% { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 30, .9) 0%, rgba(4, 18, 30, .55) 44%, rgba(4, 18, 30, .1) 100%),
    linear-gradient(180deg, rgba(4, 18, 30, .35) 0%, rgba(4, 18, 30, .1) 40%, rgba(4, 18, 30, .5) 100%);
}

.hero-inner { position: relative; z-index: 2; }

.hero-content {
  max-width: 720px;
  padding: 150px 0 120px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 28px;
}
.tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.4vw, 4.1rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .3px;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}
.hero-title .neon {
  color: var(--neon);
  text-shadow: 0 0 30px rgba(47, 240, 224, .35);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-block;
  font-size: .98rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 0;
  transition: transform .25s, box-shadow .3s, background .3s;
}
.btn-primary {
  color: var(--dark-0);
  background: linear-gradient(90deg, var(--blue), var(--neon));
  box-shadow: 0 0 24px rgba(47, 240, 224, .35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(47, 240, 224, .55);
}
.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(77, 184, 232, .45);
  background: rgba(77, 184, 232, .05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: rgba(77, 184, 232, .16);
  border-color: var(--neon);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(47, 240, 224, .5), inset 0 0 18px rgba(47, 240, 224, .15);
}

/* Indicador de rolagem */
.scroll-indicator {
  position: absolute;
  left: 50%; bottom: 34px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(47, 240, 224, .7);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  box-shadow: 0 0 12px rgba(47, 240, 224, .25), inset 0 0 8px rgba(47, 240, 224, .1);
}
.wheel {
  width: 3px; height: 8px;
  margin-top: 7px;
  border-radius: 3px;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: wheel-scroll 1.8s ease-in-out infinite;
}
@keyframes wheel-scroll {
  0% { opacity: 1; transform: translateY(0); }
  60% { opacity: 0; transform: translateY(14px); }
  61% { opacity: 0; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}
.scroll-arrows { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.scroll-arrows span {
  width: 8px; height: 8px;
  border-right: 2px solid var(--neon);
  border-bottom: 2px solid var(--neon);
  transform: rotate(45deg);
  opacity: 0;
  animation: arrows-fade 1.8s ease-in-out infinite;
}
.scroll-arrows span:nth-child(2) { animation-delay: .25s; margin-top: -4px; }
@keyframes arrows-fade {
  0% { opacity: 0; }
  40% { opacity: 1; }
  80%, 100% { opacity: 0; }
}

.hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  background: linear-gradient(transparent, var(--dark-3));
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   VÍDEO — bordas superior/inferior suavizadas
   ============================================================ */
.video {
  position: relative;
  background: var(--dark-3);
  padding: clamp(30px, 6vw, 70px) 0 0;
}
.video-frame {
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  /* Suaviza topo e base, fundindo o vídeo no fundo do site */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 100%);
}
.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}
.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84px; height: 84px;
  z-index: 3;
  display: grid;
  place-items: center;
  color: var(--dark-0);
  background: var(--neon);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(2, 8, 20, .5), 0 0 26px rgba(47, 240, 224, .4);
  transition: transform .25s, box-shadow .25s;
}
.video-play svg { width: 34px; height: 34px; margin-left: 4px; }
.video-play:hover { transform: scale(1.08); box-shadow: 0 8px 34px rgba(2, 8, 20, .55), 0 0 40px rgba(47, 240, 224, .6); }
.video-frame.playing .video-play { display: none; }

/* ============================================================
   TRATAMENTOS
   ============================================================ */
.tratamentos {
  position: relative;
  padding: clamp(70px, 10vw, 120px) 0;
  background: linear-gradient(165deg, var(--dark-3) 0%, #2b8fce 100%);
  overflow: hidden;
}
.trat-decor { position: absolute; inset: 0; pointer-events: none; }
.decor-blob-t1 {
  width: 560px; height: 560px;
  top: -140px; left: -180px;
  background: radial-gradient(circle, rgba(77, 184, 232, .18), transparent 70%);
}
.decor-blob-t2 {
  width: 520px; height: 520px;
  bottom: -160px; right: -160px;
  background: radial-gradient(circle, rgba(47, 240, 224, .14), transparent 70%);
}
.tratamentos .container { position: relative; z-index: 1; }

.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 6vw, 58px);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}
.section-title .neon { color: var(--neon); text-shadow: 0 0 24px rgba(47, 240, 224, .35); }
.sec-sub {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dim);
}

.trat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
}

.trat-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: none;
  border-radius: 0;
  background: #0e3a5b;
  transition: transform .3s, box-shadow .3s, background .3s;
}
.trat-btn:hover {
  transform: translateY(-4px);
  background: var(--neon);
  box-shadow: 0 14px 40px rgba(2, 8, 20, .45), 0 0 36px rgba(47, 240, 224, .6);
}

.trat-ic {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--neon);
  filter: drop-shadow(0 0 8px rgba(47, 240, 224, .3));
  transition: color .3s, filter .3s;
}
.trat-ic svg { width: 44px; height: 44px; }
.trat-btn:hover .trat-ic { color: var(--dark-0); filter: none; }

.trat-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }

.trat-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  transition: color .3s;
}
.trat-desc {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--text-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .3s;
}
.trat-btn:hover .trat-title { color: var(--dark-0); }
.trat-btn:hover .trat-desc { color: rgba(4, 20, 32, .78); }

.trat-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(48px, 7vw, 80px);
}

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

/* ============================================================
   ESPECIALIDADES (PARALLAX)
   ============================================================ */
.especialidades {
  position: relative;
  padding: clamp(80px, 11vw, 130px) 0;
  background: url("../img/parallax.jpg") center center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.esp-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 20, 32, .72) 0%, rgba(6, 32, 51, .58) 50%, rgba(4, 20, 32, .72) 100%);
}
.especialidades .container { position: relative; z-index: 1; }
.especialidades .sec-sub { color: #dbeefb; }

.esp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
}

.esp-card {
  padding: 26px 24px;
  border: 1px solid transparent;
  background: rgba(6, 30, 48, .62);
  transition: transform .3s, border-color .3s, background .3s;
}
.esp-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon);
  background: rgba(6, 30, 48, .46);
}
.esp-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.22;
  color: #fff;
  margin-bottom: 10px;
  transition: color .3s, text-shadow .3s;
}
.esp-card:hover .esp-title {
  color: var(--neon);
  text-shadow: 0 0 16px rgba(47, 240, 224, .6);
}
.esp-desc {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-dim);
}

.esp-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 6vw, 64px);
}

@media (max-width: 900px) {
  .esp-grid { grid-template-columns: repeat(2, 1fr); }
  .especialidades { background-attachment: scroll; }
}
@media (max-width: 600px) {
  .esp-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   QUEM SOMOS
   ============================================================ */
.quem-somos {
  position: relative;
  padding: clamp(80px, 11vw, 130px) 0;
  background: linear-gradient(165deg, var(--dark-3) 0%, #2b8fce 100%);
  overflow: hidden;
}
.quem-somos .container { position: relative; z-index: 1; }

.qs-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
  gap: clamp(32px, 5vw, 60px);
}

.qs-text .section-title { margin-bottom: 22px; }
.qs-lead,
.qs-history {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #fff;
}
.qs-lead { margin-bottom: 20px; }
.qs-history { margin-bottom: 30px; }
.qs-lead .hl,
.qs-history .hl { color: #fff; font-weight: 500; }

.qs-brand {
  width: 100%;
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.qs-brand-img { width: 100%; max-width: 620px; height: auto; display: block; }

.qs-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Galeria da clínica */
.galeria-sec {
  position: relative;
  background: #14567f;
  padding: clamp(40px, 5vw, 64px) 0;
  overflow: hidden;
}
.galeria-sec .container { position: relative; z-index: 1; }
.galeria-decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.gb1, .gb2, .gb3 { opacity: 1; filter: blur(80px); }
.gb1 {
  width: 560px; height: 560px;
  top: -160px; left: -120px;
  background: radial-gradient(circle, rgba(77, 184, 232, .95), rgba(77, 184, 232, .35) 45%, transparent 72%);
}
.gb2 {
  width: 500px; height: 500px;
  bottom: -170px; right: -110px;
  background: radial-gradient(circle, rgba(47, 240, 224, .9), rgba(47, 240, 224, .3) 45%, transparent 72%);
}
.gb3 {
  width: 460px; height: 460px;
  top: 35%; left: 52%;
  background: radial-gradient(circle, rgba(77, 184, 232, .8), rgba(47, 240, 224, .3) 50%, transparent 74%);
}
.galeria-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.galeria-title .neon { color: var(--neon); }
.galeria-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
}
.galeria-track {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.galeria-track::-webkit-scrollbar { display: none; }

.galeria-item {
  position: relative;
  flex: 0 0 auto;
  height: clamp(150px, 17vw, 195px);
  width: clamp(225px, 26vw, 290px);
  padding: 0;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: start;
  display: block;
  transition: border-color .35s;
}
.galeria-item:hover { border-color: var(--neon); }
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .35s, transform .35s;
}
.galeria-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 127, 184, .5);
  opacity: 0;
  transition: opacity .35s;
}
.galeria-item:hover img { filter: blur(3px); transform: scale(1.06); }
.galeria-item:hover::after { opacity: 1; }
.galeria-lupa {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .35s, transform .35s;
}
.galeria-lupa svg { width: 40px; height: 40px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.galeria-item:hover .galeria-lupa { opacity: 1; transform: scale(1); }

.galeria-arrow {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--neon);
  background: none;
  border: none;
  transition: transform .2s, color .3s, opacity .3s;
}
.galeria-arrow svg { width: 30px; height: 30px; }
.galeria-arrow:hover { transform: scale(1.15); color: #fff; }
.galeria-arrow:disabled { opacity: .3; cursor: default; }
.galeria-arrow:disabled:hover { transform: none; color: var(--neon); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 12, 20, .92);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: none;
  border-radius: 0;
  cursor: pointer;
  z-index: 2;
  transition: background .25s, box-shadow .25s, color .25s;
}
.lightbox-close:hover {
  background: var(--azul);
  color: #fff;
  box-shadow: 0 0 26px rgba(47, 240, 224, .7);
}
.lightbox-close svg { width: 24px; height: 24px; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: none;
  border-radius: 0;
  cursor: pointer;
  z-index: 2;
  transition: background .25s, box-shadow .25s;
}
.lightbox-nav:hover {
  background: var(--azul);
  box-shadow: 0 0 26px rgba(47, 240, 224, .7);
}
.lightbox-nav svg { width: 26px; height: 26px; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.stats-parallax {
  position: relative;
  padding: clamp(70px, 10vw, 110px) 0;
  background: url("../img/parallax-02.jpg") center 28% / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.stats-parallax-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 20, 32, .78) 0%, rgba(6, 32, 51, .66) 50%, rgba(4, 20, 32, .78) 100%);
}
.stats-parallax .container { position: relative; z-index: 1; }

.qs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.qs-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.qs-ring {
  position: relative;
  width: clamp(150px, 18vw, 190px);
  aspect-ratio: 1;
}
.qs-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring-track {
  fill: rgba(6, 32, 47, .8);
  stroke: rgba(255, 255, 255, .14);
  stroke-width: 5;
}
.ring-prog {
  fill: none;
  stroke: var(--neon);
  stroke-width: 5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(47, 240, 224, .55));
}
.qs-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.qs-plus { color: var(--neon); }
.qs-label {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}

@media (max-width: 900px) {
  .qs-inner { grid-template-columns: 1fr; }
  .qs-media { order: -1; max-width: 460px; margin: 0 auto; }
  .stats-parallax { background-attachment: scroll; }
}
@media (max-width: 600px) {
  .qs-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   EQUIPE
   ============================================================ */
.equipe {
  position: relative;
  padding: clamp(80px, 11vw, 130px) 0;
  background: linear-gradient(165deg, var(--dark-3) 0%, #2b8fce 100%);
  overflow: hidden;
}
.equipe .container { position: relative; z-index: 1; }

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.equipe-card {
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  overflow: hidden;
  transition: border-color .35s, box-shadow .35s, transform .35s;
}
.equipe-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon);
  box-shadow: 0 0 34px rgba(47, 240, 224, .4), 0 16px 40px rgba(2, 8, 20, .4);
}
.equipe-foto {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 0;
}
.equipe-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.equipe-card:hover .equipe-foto img { transform: scale(1.07); }
.equipe-info {
  flex: 1;
  padding: 18px;
  background: rgba(5, 24, 38, .6);
  transition: background .35s;
}
.equipe-card:hover .equipe-info { background: rgba(5, 24, 38, .75); }
.equipe-nome {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.equipe-cro {
  display: block;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--neon);
  margin-top: 4px;
}
.equipe-desc {
  font-family: var(--font-body);
  font-size: .86rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-dim);
  margin-top: 10px;
}

.equipe-completa {
  margin-top: clamp(48px, 7vw, 72px);
  text-align: center;
}
.equipe-funcoes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.equipe-cargo {
  font-family: var(--font-body);
  font-size: .86rem;
  font-weight: 600;
  color: var(--text);
  padding: 9px 16px;
  border: 1px solid rgba(77, 184, 232, .45);
  background: rgba(77, 184, 232, .05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .3s, border-color .3s, box-shadow .3s, transform .3s;
}
.equipe-cargo:hover {
  background: rgba(77, 184, 232, .16);
  border-color: var(--neon);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(47, 240, 224, .5), inset 0 0 18px rgba(47, 240, 224, .15);
}

@media (max-width: 1080px) {
  .equipe-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .equipe-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .equipe-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TECNOLOGIA (PARALLAX)
   ============================================================ */
.tecnologia {
  position: relative;
  padding: clamp(80px, 11vw, 130px) 0;
  background: url("../img/parallax-03.jpg") center center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.tec-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 18, 30, .88) 0%, rgba(4, 18, 30, .6) 45%, rgba(4, 18, 30, .25) 100%),
    linear-gradient(180deg, rgba(4, 18, 30, .4), rgba(4, 18, 30, .55));
}
.tec-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
}
.tec-text { max-width: 640px; }
.tec-title { margin-bottom: 22px; }
.tec-media { display: flex; justify-content: center; }
.tec-media img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .45));
}

@media (max-width: 900px) {
  .tec-inner { grid-template-columns: 1fr; text-align: center; }
  .tec-text { max-width: none; }
  .tec-text .hero-actions { justify-content: center; }
  .tec-media { order: -1; }
  .tec-media img { max-width: 260px; }
  .tecnologia { background-attachment: scroll; }
}

/* ============================================================
   LABORATÓRIO
   ============================================================ */
.laboratorio {
  position: relative;
  padding: clamp(80px, 11vw, 130px) 0;
  background: linear-gradient(165deg, var(--dark-3) 0%, #2b8fce 100%);
  overflow: hidden;
}
.laboratorio .container { position: relative; z-index: 1; }
.lab-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 60px);
}
.lab-text { max-width: 620px; }
.lab-text .section-title { margin-bottom: 22px; }
.lab-desc {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: #eaf6fc;
  margin-bottom: 32px;
}
.lab-desc .hl { color: #fff; font-weight: 600; }
.lab-media { display: flex; justify-content: center; }
.lab-media img {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 40px rgba(0, 0, 0, .4));
}

@media (max-width: 900px) {
  .lab-inner { grid-template-columns: 1fr; text-align: center; }
  .lab-text { max-width: none; }
  .lab-media { order: -1; }
  .lab-media img { max-width: 340px; }
}

/* ============================================================
   DEPOIMENTOS (PARALLAX)
   ============================================================ */
.depoimentos {
  position: relative;
  padding: clamp(80px, 11vw, 130px) 0;
  background: url("../img/depoimentos.jpg") center center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.dep-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 20, 32, .8) 0%, rgba(6, 32, 51, .68) 50%, rgba(4, 20, 32, .8) 100%);
}
.depoimentos .container { position: relative; z-index: 1; }
.depoimentos .sec-sub { color: #dbeefb; }
.depoimentos .sec-sub .hl { color: #fff; font-weight: 600; }

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dep-card {
  margin: 0;
  padding: 30px 26px;
  border: 1px solid transparent;
  background: rgba(6, 30, 48, .34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .3s, border-color .3s, box-shadow .3s, background .3s;
}
.dep-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon);
  background: rgba(6, 30, 48, .5);
  box-shadow: 0 16px 44px rgba(2, 8, 20, .5), 0 0 40px rgba(47, 240, 224, .35);
}
.dep-stars {
  color: #ffc65a;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.dep-texto {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  color: #fff;
  margin: 0 0 18px;
}
.dep-fonte {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--neon);
}
.dep-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 6vw, 60px);
}

@media (max-width: 900px) {
  .dep-grid { grid-template-columns: 1fr; }
  .depoimentos { background-attachment: scroll; }
}

/* ============================================================
   REDES SOCIAIS (CARROSSEL INSTAGRAM)
   ============================================================ */
.social {
  position: relative;
  padding: clamp(70px, 10vw, 110px) 0;
  background: var(--dark-1);
  overflow: hidden;
}
.social .container { position: relative; z-index: 1; }
.social-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(32px, 5vw, 48px);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.social-ic {
  width: 30px; height: 30px;
  color: var(--neon);
  filter: drop-shadow(0 0 8px rgba(47, 240, 224, .5));
}
.social-handle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--neon);
  transition: text-shadow .25s;
}
.social-handle:hover { text-shadow: 0 0 12px rgba(47, 240, 224, .7); }

.social-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-track {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 16px;
  scrollbar-width: none;
}
.social-track::-webkit-scrollbar { display: none; }
.social-embed {
  flex: 0 0 340px;
  scroll-snap-align: center;
  height: 540px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(77, 184, 232, .18);
  box-shadow: 0 14px 40px rgba(2, 8, 20, .5);
}
.social-arrow {
  flex-shrink: 0;
  z-index: 3;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--neon);
  background: none;
  border: none;
  transition: transform .2s, color .3s, opacity .3s;
}
.social-arrow svg { width: 30px; height: 30px; }
.social-arrow:hover { transform: scale(1.15); color: #fff; }
.social-arrow:disabled { opacity: .3; cursor: default; }
.social-arrow:disabled:hover { transform: none; color: var(--neon); }
.social-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(36px, 5vw, 52px);
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato {
  position: relative;
  padding: clamp(80px, 11vw, 130px) 0;
  background: url("../img/contato.jpg") center center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.contato-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 20, 32, .82) 0%, rgba(6, 32, 51, .72) 50%, rgba(4, 20, 32, .82) 100%);
}
.contato .container { position: relative; z-index: 1; }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.contato-info { display: flex; flex-direction: column; gap: 24px; }
.contato-item { display: flex; align-items: flex-start; gap: 16px; }
.contato-ic {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  color: var(--neon);
  filter: drop-shadow(0 0 8px rgba(47, 240, 224, .35));
}
.contato-ic svg { width: 26px; height: 26px; }
.contato-item h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.contato-item p, .contato-item a {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.6;
  color: #dbeefb;
  text-decoration: none;
}
.contato-item a:hover { color: var(--neon); }

.contato-social { display: flex; gap: 14px; margin-top: 4px; }
.contato-social a {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  color: var(--neon);
  transition: color .3s, transform .3s, filter .3s;
}
.contato-social a svg { width: 28px; height: 28px; }
.contato-social a:hover { color: #fff; transform: translateY(-2px); filter: drop-shadow(0 0 10px rgba(47, 240, 224, .8)); }

.contato-form {
  padding: clamp(24px, 3vw, 34px);
  background: rgba(5, 24, 38, .38);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(77, 184, 232, .16);
}
.contato-form .form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.contato-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contato-form .form-row .form-field { margin-bottom: 18px; }
.contato-form label {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue-soft);
}
.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: rgba(3, 12, 20, .55);
  border: 1px solid rgba(77, 184, 232, .28);
  border-radius: 0;
  outline: none;
  resize: vertical;
  transition: border-color .25s, box-shadow .25s;
}
.contato-form input::placeholder,
.contato-form textarea::placeholder { color: rgba(168, 200, 224, .5); }
.contato-form input:focus,
.contato-form textarea:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(47, 240, 224, .14);
}
.contato-btn { display: block; width: fit-content; margin-left: auto; margin-top: 4px; border: none; cursor: pointer; font-family: var(--font-body); }

/* Mapa full-bleed */
.mapa { width: 100%; line-height: 0; }
.mapa iframe {
  width: 100%;
  height: clamp(320px, 42vw, 460px);
  border: 0;
  display: block;
  filter: grayscale(.2);
}

/* Rodapé / mapa do site */
.site-footer { position: relative; background: var(--dark-0); overflow: hidden; }
.footer-grid, .footer-bottom { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 48px;
}
.footer-selo { width: 100%; max-width: 300px; height: auto; display: block; margin-top: 22px; }
.footer-brand p {
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 320px;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  color: var(--neon);
  transition: color .3s, transform .3s, filter .3s;
}
.footer-social a svg { width: 24px; height: 24px; }
.footer-social a:hover { color: #fff; transform: translateY(-2px); filter: drop-shadow(0 0 10px rgba(47, 240, 224, .8)); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col:not(.footer-brand) a {
  display: block;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text-dim);
  text-decoration: none;
  padding: 6px 0;
  transition: color .25s, padding-left .25s;
}
.footer-col:not(.footer-brand) a:hover { color: var(--neon); padding-left: 5px; }

.footer-bottom { border-top: 1px solid rgba(77, 184, 232, .12); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: .8rem;
  color: var(--text-dim);
}
.footer-credito {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-soft);
  text-decoration: none;
  transition: color .25s;
}
.footer-credito:hover { color: var(--neon); }
.footer-credito img { display: block; }

@media (max-width: 900px) {
  .contato-grid { grid-template-columns: 1fr; }
  .contato { background-attachment: scroll; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .contato-form .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ============================================================
   BOTÃO WHATSAPP FLUTUANTE
   ============================================================ */
.whats-btn {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 150;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .4), 0 0 0 0 rgba(37, 211, 102, .6);
  animation: whats-pulse 2.4s ease-out infinite;
  transition: transform .25s;
}
.whats-btn svg { width: 30px; height: 30px; }
.whats-btn:hover { transform: scale(1.1); }
@keyframes whats-pulse {
  0% { box-shadow: 0 6px 20px rgba(0, 0, 0, .4), 0 0 0 0 rgba(37, 211, 102, .55); }
  70% { box-shadow: 0 6px 20px rgba(0, 0, 0, .4), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 6px 20px rgba(0, 0, 0, .4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .menu-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(4, 18, 30, .97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.7, 0, .3, 1);
  }
  .nav.open { transform: translateX(0); }
  .nav-links { flex: none; flex-direction: column; gap: 26px; }
  .nav-link { font-size: 1.2rem; }
  .header-insta { margin: 0 auto; width: 46px; height: 46px; }
  .header-insta svg { width: 24px; height: 24px; }

  .header-contact-inner { justify-content: center; gap: 16px; flex-wrap: wrap; }
  .contact-item { font-size: .78rem; }

  .hero-content { padding: 130px 0 90px; }
  .whats-btn { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

@media (max-width: 640px) {
  .header-contact-inner { gap: 14px; }
  .contact-item:last-child {
    max-width: 62vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .hero-actions .btn { flex: 1 1 auto; text-align: center; }
}

/* background-attachment fixed falha em mobile: usa scroll */
@media (max-width: 900px), (hover: none) {
  .hero-photo { background-attachment: scroll; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-photo { background-attachment: scroll; }
  .tag-dot, .wheel, .scroll-arrows span, .whats-btn, .decor-blob { animation: none; }
}

/* ============================================================
   AJUSTES MOBILE (só ≤900px; NÃO afeta o desktop)
   ============================================================ */
@media (max-width: 900px) {
  /* Hero: altura dinâmica (evita corte com a barra do navegador) */
  .hero { min-height: 100dvh; }

  /* Alvos de toque ≥44px */
  .menu-toggle { width: 44px; height: 44px; padding: 9px; }
  .footer-social a,
  .contato-social a { width: 44px; height: 44px; }
  .footer-col:not(.footer-brand) a { padding: 10px 0; }

  /* Legibilidade: fontes mínimas */
  .contact-item { font-size: .84rem; padding: 4px 0; }
  .footer-bottom-inner { font-size: .85rem; }
}

@media (max-width: 980px) {
  /* Remove tarja de telefone/e-mail abaixo do menu */
  .header-contact { display: none; }
  /* Botão de menu (hambúrguer) à direita */
  .menu-toggle { margin-left: auto; }
}

/* ============================================================
   MOBILE / TOUCH: remove efeitos de hover (não afeta o desktop)
   Só se aplica a dispositivos sem mouse (hover: none).
   ============================================================ */
@media (hover: none) {
  .nav-link:hover, .header-insta:hover, .contact-item:hover,
  .btn-primary:hover, .btn-ghost:hover, .video-play:hover,
  .trat-btn:hover, .esp-card:hover, .galeria-item:hover,
  .galeria-arrow:hover, .lightbox-close:hover, .lightbox-nav:hover,
  .equipe-card:hover, .equipe-cargo:hover, .dep-card:hover,
  .social-handle:hover, .social-arrow:hover, .contato-item a:hover,
  .contato-social a:hover, .footer-social a:hover,
  .footer-col:not(.footer-brand) a:hover, .whats-btn:hover, .footer-credito:hover {
    transform: none !important;
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
  }
  .nav-link:hover { color: var(--text) !important; }
  .nav-link:hover::after { transform: scaleX(0) !important; }
  .header-insta:hover { color: var(--neon) !important; }
  .contact-item:hover { color: var(--text-dim) !important; }
  .btn-primary:hover { box-shadow: 0 0 24px rgba(47, 240, 224, .35) !important; }
  .btn-ghost:hover { background: rgba(77, 184, 232, .05) !important; border-color: rgba(77, 184, 232, .45) !important; }
  .video-play:hover { box-shadow: 0 8px 30px rgba(2, 8, 20, .5), 0 0 26px rgba(47, 240, 224, .4) !important; }
  .trat-btn:hover { background: #0e3a5b !important; }
  .trat-btn:hover .trat-ic { color: var(--neon) !important; filter: drop-shadow(0 0 8px rgba(47, 240, 224, .3)) !important; }
  .trat-btn:hover .trat-title { color: #fff !important; }
  .trat-btn:hover .trat-desc { color: var(--text-dim) !important; }
  .esp-card:hover { border-color: transparent !important; background: rgba(6, 30, 48, .62) !important; }
  .esp-card:hover .esp-title { color: #fff !important; text-shadow: none !important; }
  .galeria-item:hover { border-color: transparent !important; }
  .galeria-item:hover img { transform: none !important; filter: none !important; }
  .galeria-item:hover::after { opacity: 0 !important; }
  .galeria-item:hover .galeria-lupa { opacity: 0 !important; transform: scale(.85) !important; }
  .galeria-arrow:hover, .social-arrow:hover { color: var(--neon) !important; }
  .lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, .1) !important; }
  .equipe-card:hover { border-color: transparent !important; }
  .equipe-card:hover .equipe-foto img { transform: none !important; }
  .equipe-card:hover .equipe-info { background: rgba(5, 24, 38, .6) !important; }
  .equipe-cargo:hover { background: rgba(77, 184, 232, .05) !important; border-color: rgba(77, 184, 232, .45) !important; color: var(--text) !important; }
  .dep-card:hover { border-color: transparent !important; background: rgba(6, 30, 48, .34) !important; }
  .contato-item a:hover { color: #dbeefb !important; }
  .contato-social a:hover { color: var(--neon) !important; }
  .footer-social a:hover { color: var(--neon) !important; }
  .footer-col:not(.footer-brand) a:hover { color: var(--text-dim) !important; padding-left: 0 !important; }
  .footer-credito:hover { color: var(--blue-soft) !important; }
}

@media (max-width: 900px) {
  /* Botão de play do vídeo: metade do tamanho */
  .video-play { width: 42px; height: 42px; }
  .video-play svg { width: 17px; height: 17px; margin-left: 2px; }

  /* Remove malha3dbg (não faz sentido no mobile) */
  .malha3dbg-canvas { display: none; }

  /* Equipe: só os principais (remove funções/cargos) */
  .equipe-completa { display: none; }

  /* Remove seção de posts do Instagram */
  .social { display: none; }

  /* Contato: fundo específico para mobile */
  .contato { background-image: url("../img/contato-mobile.jpg"); }
}
