/* ============================================================
   NEO RIO — Design System
   Refs: CRYOX + Abvtek
   Revisado: espaçamento, contraste, responsividade, a11y
   ============================================================ */

/* ---- Tokens ---- */
:root {
  --green:        #00403a;
  --green-mid:    #044940;
  --green-deep:   #012a24;
  --accent:       #81d742;
  --light:        #f3f2f0;
  --light-2:      #eae9e6;
  --text:         #363430;
  --text-muted:   #6b6861;
  --white:        #ffffff;

  --font:   "Barlow", system-ui, sans-serif;
  --ease:   cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Espaçamento responsivo */
  --pad-x:  clamp(1.25rem, 5vw, 3rem);
  --pad-y:  clamp(4rem, 10vh, 7rem);
  --gap:    clamp(2rem, 4vw, 4rem);

  /* Tamanhos de fonte display */
  --fs-hero:    clamp(2.75rem, 8vw, 7rem);
  --fs-h2:      clamp(2.25rem, 5.5vw, 4.5rem);
  --fs-h3:      clamp(1.75rem, 3vw, 2.75rem);

  --max: 1320px;
  --nav-h: 72px;
  --section-pad: clamp(3rem, 6vh, 5rem);
  /* Alinhamento lateral único — borda esquerda do conteúdo */
  --content-left: calc((100vw - min(var(--max), 100vw)) / 2 + var(--pad-x));

  /* Textura de marca */
  --bg-texture: url("../assets/images/bg.png");
}

/* Superfície com textura bg.png sobre verde profundo */
.surface-texture {
  background-color: var(--green-deep);
  background-image: var(--bg-texture);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---- Seção tela cheia ---- */
.section-screen {
  min-height: 100svh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.section-screen:not(.hero):not(.video-section):not(.photo-gallery):not(.reel) {
  padding-top: calc(var(--nav-h) + var(--section-pad));
  padding-bottom: var(--section-pad);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* Focus visible — acessibilidade */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---- Layout helpers ---- */
.site-wrap,
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ---- Tipografia utilitária ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 1.5em;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* Link sublinhado animado (Abvtek) */
.link-ul {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 3px;
}
.link-ul::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.link-ul:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

/* ---- Section com foto de fundo ---- */
.section-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.section-bg__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.section-bg__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section-bg__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.section-bg--dark .section-bg__overlay {
  background: linear-gradient(
    to bottom,
    rgba(1,42,36,0.9) 0%,
    rgba(1,42,36,0.94) 100%
  );
}
.section-bg--light .section-bg__overlay {
  background: linear-gradient(
    105deg,
    rgba(243,242,240,0.97) 0%,
    rgba(243,242,240,0.9) 42%,
    rgba(243,242,240,0.72) 100%
  );
}

/* Galeria unificada — palco + labels */
.photo-gallery {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + var(--section-pad));
  padding-bottom: var(--section-pad);
  overflow: hidden;
  background: var(--green-deep);
  color: var(--white);
}

.photo-gallery__head {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.photo-gallery__intro {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 36rem;
}

.photo-gallery__intro .eyebrow { margin-bottom: 0; }

.photo-gallery__intro h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
}

.photo-gallery__intro h2 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.photo-gallery__showcase {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: clamp(1rem, 2vh, 1.75rem);
}

.photo-gallery__stage {
  flex: 1;
  position: relative;
  min-height: clamp(360px, 58vh, 720px);
  overflow: hidden;
  background: #000;
  cursor: zoom-in;
  border: none;
  padding: 0;
  text-align: left;
  color: inherit;
  font: inherit;
}

.photo-gallery__stage:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.photo-gallery__slides {
  position: absolute;
  inset: 0;
}

.photo-gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.photo-gallery__slide.is-active { opacity: 1; }

.photo-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 7s ease;
}

.photo-gallery__slide.is-active img { transform: scale(1); }

.photo-gallery__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(1,42,36,0.88) 0%, rgba(1,42,36,0.35) 38%, transparent 68%),
    linear-gradient(to right, rgba(1,42,36,0.55) 0%, transparent 55%);
}

.photo-gallery__meta {
  position: absolute;
  left: var(--content-left);
  right: clamp(1rem, 18vw, 22rem);
  bottom: clamp(1.25rem, 2.5vh, 2rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.photo-gallery__counter {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.photo-gallery__label {
  font-size: clamp(1.35rem, 2.8vw, 2.25rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--accent);
}

.photo-gallery__desc {
  font-size: clamp(0.875rem, 1.15vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 34rem;
}

.photo-gallery__hint {
  margin-top: 0.35rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.photo-gallery__nav {
  flex-shrink: 0;
  display: flex;
  gap: 0.625rem;
  overflow-x: auto;
  padding: 0.875rem var(--content-left);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.photo-gallery__nav::-webkit-scrollbar { display: none; }

.photo-gallery__nav-item {
  flex: 0 0 clamp(88px, 9vw, 128px);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--white);
  cursor: pointer;
  opacity: 0.5;
  scroll-snap-align: start;
  transition: opacity 0.3s;
}

.photo-gallery__nav-item.is-active { opacity: 1; }

.photo-gallery__nav-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.photo-gallery__nav-thumb {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.photo-gallery__nav-item.is-active .photo-gallery__nav-thumb {
  border-color: var(--accent);
}

.photo-gallery__nav-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.photo-gallery__nav-item:hover .photo-gallery__nav-thumb img { transform: scale(1.06); }

.photo-gallery__nav-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: left;
}

/* Botão preenchido */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.875em 1.75em;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn--accent {
  background: var(--accent);
  color: var(--green-deep);
}
.btn--accent:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--green-deep);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid rgba(0,64,58,0.2);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-1px);
}

/* ================================================================
   NAVEGAÇÃO
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--content-left);
  background: rgba(1, 42, 36, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(129,215,66,0.15);
  transition: box-shadow 0.4s ease;
}

/* Links âncora desktop */
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}

.nav__links a {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.is-active { color: var(--accent); }
.nav__links a.is-active::after { width: 100%; }

.nav__logo img {
  height: 2.75rem;
  width: auto;
  /* mantém logo visível sem filter problemático */
  filter: brightness(0) invert(1);
}

.nav__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  color: var(--white);
}
.nav__menu-btn span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.4s var(--ease), opacity 0.25s;
  transform-origin: center;
}
.nav__menu-btn.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__menu-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__menu-btn.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Overlay fullscreen */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--green-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--nav-h) + 2rem) var(--content-left) 3rem;
  gap: 0;
  clip-path: circle(0% at calc(100% - var(--pad-x) - 23px) calc(var(--nav-h) / 2));
  transition: clip-path 0.7s var(--ease);
  pointer-events: none;
  overflow: hidden;
}
.nav-overlay.is-open {
  clip-path: circle(170% at calc(100% - var(--pad-x) - 23px) calc(var(--nav-h) / 2));
  pointer-events: auto;
}
.nav-overlay a {
  font-size: clamp(1.75rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  line-height: 1.15;
  padding: 0.1em 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  transition: color 0.25s, padding-left 0.3s var(--ease-out);
}
.nav-overlay a:last-child { border-bottom: none; }
.nav-overlay a:hover {
  color: var(--accent);
  padding-left: 0.5em;
}
/* Número de ordem nos links */
.nav-overlay a::before {
  content: attr(data-num);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  vertical-align: super;
  margin-right: 0.5em;
}

/* ================================================================
   HERO — fullscreen slideshow (CRYOX)
   ================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero,
.contact {
  background-color: var(--green-deep);
  background-image: var(--bg-texture);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Vídeo de fundo do hero */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__video-fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__video-fallback img {
  width: 100%; height: 100%;
  object-fit: cover;
}


/* Gradiente em camadas para máxima legibilidade do texto */
.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(1,42,36,0.5) 0%, transparent 30%),
    linear-gradient(to top,    rgba(1,42,36,0.92) 0%, rgba(1,42,36,0.25) 60%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(4rem, 8vh, 6rem);
}

.hero__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  /* controle de largura para 2 colunas em telas grandes */
  max-width: 18ch;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.hero__desc {
  max-width: 30rem;
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.875rem; }

/* ================================================================
   REEL — split: copy esquerda + vídeo vertical direita
   ================================================================ */
.reel {
  background: var(--green-deep);
  color: var(--white);
  overflow: hidden;
  padding: 0;
}

.reel__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 100svh;
  align-items: stretch;
}

/* ---- Coluna esquerda: copy ---- */
.reel__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: calc(var(--nav-h) + var(--section-pad)) var(--pad-x) var(--section-pad) var(--content-left);
  border-right: 1px solid rgba(255,255,255,0.07);
}

.reel__copy-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reel__title {
  font-size: clamp(1.75rem, 2.5vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
}
.reel__title em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.reel__copy-mid {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.reel__meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reel__counter {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.38);
}

.reel__clip-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 26rem;
}

/* ---- Lista de capítulos (vertical) ---- */
.reel__chapters {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}

.reel__chapter {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0;
  padding-left: 0.75rem;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid transparent;
  background: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  text-align: left;
  transition: color 0.25s, border-color 0.25s, padding-left 0.25s;
}

.reel__chapter:last-child { border-bottom: none; }

.reel__chapter.is-active {
  color: var(--white);
  border-left-color: var(--accent);
  padding-left: 1rem;
}

.reel__chapter:hover:not(.is-active) {
  color: rgba(255,255,255,0.75);
  padding-left: 1rem;
}

.reel__chapter-num {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
  width: 1.25rem;
}
.reel__chapter.is-active .reel__chapter-num { opacity: 1; }

.reel__chapter-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.reel__chapter-name {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.reel__chapter-bar {
  height: 1px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.reel__chapter-bar div {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.1s linear;
}

.reel__chapter-arrow {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.25s;
}
.reel__chapter.is-active .reel__chapter-arrow,
.reel__chapter:hover .reel__chapter-arrow { opacity: 0.6; }

/* ---- Coluna direita: vídeo ---- */
.reel__stage {
  position: relative;
  overflow: hidden;
  background: #000;
  min-height: 100svh;
}

.reel__video,
.reel__media-img,
.reel__media-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Fade na troca de slides */
.reel__media-img,
.reel__media-vid {
  transition: opacity 0.5s ease;
}

/* Badge "foto" / "vídeo" */
.reel__slide-type {
  position: absolute;
  top: clamp(1rem, 2vh, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  z-index: 3;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  pointer-events: none;
}

.reel__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 35%);
}

/* Setas de navegação prev/next */
.reel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, background 0.22s, border-color 0.22s, color 0.22s;
  backdrop-filter: blur(6px);
  padding: 0;
}
.reel__arrow svg { width: 1.125rem; height: 1.125rem; }
.reel__arrow--prev { left: 0.875rem; }
.reel__arrow--next { right: 0.875rem; }
.reel__stage:hover .reel__arrow { opacity: 1; }
.reel__arrow:hover {
  background: rgba(0,64,58,0.75);
  border-color: var(--accent);
  color: var(--white);
}

/* Play/pause — apenas para imagens (vídeos ocultam via .is-video no stage) */
.reel__controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.reel__play-btn {
  pointer-events: auto;
  width: 3.5rem;
  height: 3.5rem;
  border: 1.5px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, background 0.25s, border-color 0.25s;
  backdrop-filter: blur(4px);
  padding: 0;
}
.reel__play-btn svg { width: 1.25rem; height: 1.25rem; }
.reel__stage:hover .reel__play-btn,
.reel__stage:focus-within .reel__play-btn { opacity: 1; }
.reel__play-btn:hover {
  background: rgba(0,64,58,0.7);
  border-color: var(--accent);
}

/* Em modo vídeo: esconde play/pause */
.reel__stage.is-video .reel__controls { display: none; }

/* Thumbnails nos capítulos */
.reel__chapter-thumbs {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.reel__chapter-thumb-btn {
  width: clamp(32px, 4vw, 44px);
  height: clamp(24px, 3vw, 32px);
  overflow: hidden;
  border: 1.5px solid transparent;
  background: rgba(255,255,255,0.07);
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.55;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel__chapter-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.reel__chapter-thumb-btn.is-active {
  border-color: var(--accent);
  opacity: 1;
}

.reel__chapter-thumb-btn:hover:not(.is-active) {
  border-color: rgba(255,255,255,0.3);
  opacity: 0.85;
}

.reel__chapter-thumb-btn.is-video {
  color: rgba(255,255,255,0.5);
  font-size: 0.625rem;
}
.reel__chapter-thumb-btn.is-video.is-active { color: var(--accent); }
.reel__chapter-thumb-btn.is-video svg { width: 0.875rem; height: 0.875rem; }

/* Barra de progresso */
.reel__progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.12);
  z-index: 3;
}
.reel__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.1s linear;
}

/* UI mobile sobre o stage (oculta no desktop) */
.reel__stage-ui {
  display: none;
}

.reel__stage-chapters {
  display: flex;
  gap: 0.375rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reel__stage-chapters::-webkit-scrollbar { display: none; }

.reel__stage-chapter-btn {
  flex-shrink: 0;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.28);
  color: rgba(255,255,255,0.72);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  backdrop-filter: blur(6px);
}
.reel__stage-chapter-btn.is-active {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(0,64,58,0.72);
}

/* ================================================================
   HERO — variantes de layout (switcher A / B)
   ================================================================ */


/* =================================================================
   HERO — layout fixo: conteúdo esquerda + vídeo vertical direita
   ================================================================= */

/* Conteúdo alinhado ao topo */
.hero { justify-content: flex-start; }
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + clamp(6rem, 15vh, 12rem));
  padding-bottom: clamp(3rem, 6vh, 5rem);
}

/* Vídeo coluna direita */
.hero__split-video {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 46vw;
  max-width: 680px;
  min-width: 240px;
  overflow: hidden;
  z-index: 0;
  background: var(--green-deep);
}
.hero__slot {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}

.hero__slot img,
.hero__slot video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Zoom Ken Burns nas imagens */
.hero__slot img {
  transform: scale(1.08);
  transition: transform 6s ease-out, opacity 0s;
}

.hero__slot.is-active img {
  transform: scale(1);
}

#heroSlotA { z-index: 1; }
#heroSlotB { z-index: 2; }

/* Persona — entre mídia e texto, atrás do copy */
.hero__persona {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  left: 50%;
  bottom: clamp(3.25rem, 6.5vh, 4.5rem);
  height: calc(100% - var(--nav-h) - clamp(3.25rem, 6.5vh, 4.5rem));
  width: clamp(300px, 44vw, 580px);
  transform: translateX(-36%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero__persona img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}


/* Gradiente só na coluna esquerda — não cobre o vídeo */
.hero__gradient {
  background:
    linear-gradient(to bottom, rgba(1,42,36,0.55) 0%, transparent 14%),
    linear-gradient(to top,    rgba(1,42,36,0.3) 0%, transparent 10%);
  -webkit-mask-image: linear-gradient(to right, black 40%, transparent 60%);
  mask-image:         linear-gradient(to right, black 40%, transparent 60%);
}

/* Texto alinhado à borda esquerda do grid — acima da persona */
.hero__content {
  margin-inline: 0;
  width: 100%;
  max-width: 100%;
  padding-left:  var(--content-left);
  padding-right: clamp(26vw, 32vw, 36vw);
  position: relative;
  z-index: 2;
}

/* H1 preenche a coluna esquerda (~54vw): escala fluida */
.hero__title {
  font-size: clamp(2.25rem, 4.6vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: none;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
  display: block;
}
.hero__desc {
  max-width: 30rem;
  color: rgba(255,255,255,0.8);
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* ================================================================
   MARQUEE — faixa ticker
   ================================================================ */
.marquee {
  background: var(--green);
  color: var(--white);
  padding: 0.875rem 0;
  overflow: hidden;
  border-top:    1px solid rgba(129,215,66,0.18);
  border-bottom: 1px solid rgba(129,215,66,0.18);
}

/* Marquee dentro da hero: fixo na base da viewport inicial */
.hero__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: slideMarquee 28s linear infinite;
  will-change: transform;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__item {
  flex-shrink: 0;
  padding: 0 1.75rem;
  font-size: clamp(0.75rem, 1.5vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.marquee__item::after {
  content: "◆";
  color: var(--accent);
  font-size: 0.45em;
}
@keyframes slideMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   VÍDEO — split fullscreen (Abvtek)
   ================================================================ */
.video-section {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.video-section__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 0;
  align-items: stretch;
}

.video-section__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: calc(var(--nav-h) + 2rem) var(--pad-x) 2rem var(--content-left);
  background: var(--green-deep);
  color: var(--white);
}

.video-section__copy .eyebrow { color: var(--accent); }
.video-section__copy .link-ul { color: var(--accent); align-self: flex-start; }

.video-section__title {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--white);
}
.video-section__title span { color: rgba(255,255,255,0.45); font-weight: 500; }

.video-section__desc {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.72;
  color: rgba(255,255,255,0.72);
  max-width: 28rem;
}

.video-section__player {
  position: relative;
  background: #000;
  min-height: 280px;
  height: 100%;
}

.video-section__embed {
  position: absolute;
  inset: 0;
}

.video-section__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ================================================================
   ESPAÇO — horizontal scroll (CRYOX)
   ================================================================ */
.h-scroll-section {
  background: var(--light);
  overflow: hidden;
  padding-bottom: 0;
}
.h-scroll-section__header {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
}
.h-scroll-section__left {}
.h-scroll-section__title {
  font-size: var(--fs-h2);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--green);
}
.h-scroll-section__title span { color: var(--text-muted); font-weight: 500; }
.h-scroll-section__sub {
  margin-top: 1rem;
  max-width: 30rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}
.h-scroll-section__hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-shrink: 0;
}
.h-scroll-section__hint svg { width: 1.25rem; opacity: 0.5; }

.h-scroll-wrap {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 0 var(--section-pad);
  overflow: hidden;
  gap: 0;
  min-height: 0;
  align-items: stretch;
}

.h-scroll-panel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: var(--green-deep);
}
.h-scroll-panel + .h-scroll-panel {
  border-left: 1px solid rgba(255,255,255,0.12);
}
.h-scroll-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.h-scroll-panel:hover img { transform: scale(1.04); }

.h-scroll-panel__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(to top, rgba(1,42,36,0.92) 0%, transparent 100%);
  color: var(--white);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.h-scroll-panel__info h3 {
  font-size: var(--fs-h3);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.0;
}
.h-scroll-panel__info .link-ul { color: var(--accent); flex-shrink: 0; }

/* ================================================================
   DIFERENCIAIS — bento 3 colunas (CRYOX)
   ================================================================ */
.benefits {
  color: var(--white);
  overflow: hidden;
}
.benefits .section-bg__photo img { object-position: center; }
.benefits .section-bg__overlay {
  background: linear-gradient(
    to bottom,
    rgba(1,42,36,0.5) 0%,
    rgba(1,42,36,0.68) 100%
  );
}

.benefits__shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vh, 2rem);
  min-height: 0;
}

.benefits__header { flex-shrink: 0; }
.benefits__header .eyebrow { margin-bottom: 0.75rem; }
.benefits__header h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
}
.benefits__header h2 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.benefits__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  min-height: 0;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.benefit-card__img {
  flex: 1;
  min-height: 140px;
  overflow: hidden;
}
.benefit-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.benefit-card:hover .benefit-card__img img { transform: scale(1.04); }

.benefit-card__body {
  flex-shrink: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-card__num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.benefit-card h3 {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
}

.benefit-card p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
}

/* ================================================================
   PLANOS — cards lado a lado
   ================================================================ */
.planos {
  justify-content: center;
  background: var(--green-deep);
}
.planos__shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}
.planos__header {
  padding-bottom: clamp(1.25rem, 2.5vh, 2rem);
  flex-shrink: 0;
}
.planos__header h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
}
.planos__header h2 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}
.planos__header > p {
  margin-top: 1.25rem;
  max-width: 34rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}

.planos__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  align-items: stretch;
  min-height: 0;
  overflow: visible;
  padding-block: 0.75rem;
}

.plano-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--green-deep);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  min-height: 0;
  overflow: visible;
  color: var(--white);
}

.plano-card__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.plano-card__name {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--accent);
}

.plano-card__price {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}

.plano-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  min-height: 0;
  overflow-y: auto;
}

.plano-card__features li {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.72);
}

.plano-card__features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.875em;
}

.plano-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Botão outline sobre fundo verde escuro */
.plano-card:not(.plano-card--featured) .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.plano-card:not(.plano-card--featured) .btn--outline:hover {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
}

/* Card em destaque (meio) — fundo branco */
.plano-card--featured {
  padding: clamp(2.25rem, 3.5vw, 2.5rem) clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.5rem, 3vw, 2rem);
  background: rgba(255,255,255,0.97);
  border: none;
  box-shadow: 0 24px 56px rgba(0,0,0,0.28);
  transform: scale(1.03);
  z-index: 1;
  color: var(--text);
}

.plano-card__badge {
  position: absolute;
  top: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: var(--accent);
  color: var(--green-deep);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}

.plano-card--featured .plano-card__head {
  margin-top: 0.75rem;
  border-bottom-color: rgba(0,64,58,0.1);
}

.plano-card--featured .plano-card__name {
  color: var(--green);
}

.plano-card--featured .plano-card__price {
  color: var(--text-muted);
}

.plano-card--featured .plano-card__features li {
  color: var(--text-muted);
}

.plano-card--featured .btn {
  align-self: stretch;
  justify-content: center;
}

/* ================================================================
   EQUIPE — retratos editoriais
   ================================================================ */
.team {
  background: var(--light);
  overflow: hidden;
}

.team__shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vh, 2rem);
  min-height: 0;
}

.team__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.team__head-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 36rem;
}

.team__head .eyebrow { margin-bottom: 0; }

.team__head h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--green);
}

.team__head h2 em {
  font-style: normal;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
}

.team__intro {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 32rem;
}

.team__stat {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: right;
  flex-shrink: 0;
}

.team__stat span {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.team__grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.2vw, 1rem);
  align-items: stretch;
}

.team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(1,42,36,0.08);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(1,42,36,0.12);
}

.team-card__photo {
  aspect-ratio: 4 / 5;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--green-deep);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--ease);
}

.team-card:hover .team-card__photo img { transform: scale(1.04); }

.team-card__body {
  flex: 1;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1rem, 1.8vw, 1.25rem);
  border-top: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 6.5rem;
}

.team-card__num {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.team-card h3 {
  font-size: clamp(0.9375rem, 1.6vw, 1.2rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--green);
}

.team-card p {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
}

/* ================================================================
   FAQ — título visível + accordion (CRYOX)
   ================================================================ */
.faq-section {
  background: var(--white);
  overflow: hidden;
}

.faq-section__shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vh, 1.5rem);
  min-height: 0;
}

.faq-section__head { flex-shrink: 0; }
.faq-section__head .eyebrow { margin-bottom: 0.5rem; color: var(--green); }
.faq-section__head .eyebrow::before { background: var(--accent); }
.faq-section__head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--green);
}
.faq-section__head h2 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.faq-section__grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(220px, 38%) 1fr;
  gap: clamp(1rem, 2vw, 1.75rem);
  min-height: 0;
  align-items: stretch;
}

.faq-section__figure {
  margin: 0;
  overflow: hidden;
  background: var(--green);
  min-height: 0;
  height: 100%;
  box-shadow: 0 16px 48px rgba(1,42,36,0.12);
}
.faq-section__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.faq-section__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.25rem;
}

.faq-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: clamp(3.25rem, 9vh, 4.75rem);
  background: var(--light);
  border: 1px solid rgba(0,64,58,0.08);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.faq-item.is-open {
  flex: 1.6;
  background: var(--white);
  border-color: rgba(0,64,58,0.14);
  box-shadow: 0 8px 28px rgba(1,42,36,0.07);
}

.faq-item__q {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: clamp(0.875rem, 1.8vh, 1.25rem) clamp(1rem, 2vw, 1.35rem);
  text-align: left;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.35;
}
.faq-item.is-open .faq-item__q {
  color: var(--green-deep);
  flex: 0 0 auto;
}

.faq-item__num {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  min-width: 1.75rem;
}
.faq-item__icon {
  margin-left: auto;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: 1.5px solid rgba(0,64,58,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--green);
  transition: transform 0.35s var(--ease), border-color 0.3s, color 0.3s, background 0.3s;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--green-deep);
  background: var(--accent);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-item.is-open .faq-item__a { max-height: 500px; }
.faq-item__a p {
  padding: 0 1.35rem clamp(1rem, 2vh, 1.35rem);
  padding-left: calc(1.35rem + 1.75rem);
  color: var(--text-muted);
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  line-height: 1.65;
}

/* ================================================================
   LOCALIZAÇÃO
   ================================================================ */
.location {
  justify-content: center;
  padding-top: calc(var(--nav-h) + var(--section-pad));
  padding-bottom: var(--section-pad);
}
.location .section-bg__photo img { object-position: center right; }
.location__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--gap);
  align-items: center;
  min-height: 0;
}

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

.location__info h2 {
  font-size: var(--fs-h3);
  font-weight: 800;
  text-transform: uppercase;
  /* verde escuro sobre fundo claro: contraste ~7:1 ✓ */
  color: var(--green);
  line-height: 1.1;
}

.location__info > p {
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
}

.location__details { display: flex; flex-direction: column; gap: 0; }
.location__detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0,64,58,0.1);
}
.location__detail:last-child { border-bottom: 1px solid rgba(0,64,58,0.1); }
.location__detail strong {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}
.location__detail span {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.location__cta { margin-top: 0.5rem; align-self: flex-start; }

.location__map {
  height: min(52vh, 420px);
  min-height: 240px;
  overflow: hidden;
  background: var(--green);
  box-shadow: 0 20px 60px rgba(1,42,36,0.14);
}
.location__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ================================================================
   CONTATO + FORMULÁRIO
   ================================================================ */
.contact {
  color: var(--white);
  justify-content: center;
  padding-top: calc(var(--nav-h) + var(--section-pad));
  padding-bottom: var(--section-pad);
}
.contact__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--gap);
  align-items: start;
  min-height: 0;
  overflow-y: auto;
}

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

.contact__logo {
  height: 3rem;
  width: auto;
  max-width: none;
  align-self: flex-start;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.contact__headline {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
}
.contact__headline em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.contact__about {
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  font-size: 0.9375rem;
  max-width: 30rem;
}
.contact__legal {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.55;
}

.contact__links { display: flex; flex-direction: column; gap: 0; }
.contact__link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.25s;
}
.contact__link:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.contact__link:hover { color: var(--accent); }
.contact__link-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  background: rgba(1, 42, 36, 0.82);
  border: 1px solid rgba(129, 215, 66, 0.22);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.contact__link-icon svg {
  width: 0.875rem;
  height: 0.875rem;
  display: block;
  flex-shrink: 0;
}
.contact__link:hover .contact__link-icon {
  border-color: var(--accent);
  color: var(--white);
}

.contact__hours { display: flex; flex-direction: column; gap: 0.5rem; }
.contact__hours h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  padding: 0.375rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Formulário */
.form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.form__subtitle { font-size: 0.875rem; color: rgba(255,255,255,0.45); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-field input:hover,
.form-field textarea:hover,
.form-field select:hover { background: rgba(255,255,255,0.1); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.09);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field select option { background: var(--green-deep); color: var(--white); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--green);
  background-image: none;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(129,215,66,0.12);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.8125rem;
  /* rgba(255,255,255,0.65) sobre #00403a ≈ 4.7:1 ✓ */
  color: rgba(255,255,255,0.65);
}
.footer__copy a { color: var(--accent); }
.footer__copy a:hover { text-decoration: underline; }
.footer__social a {
  display: inline-flex;
  width: 2.375rem;
  height: 2.375rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  transition: border-color 0.25s, color 0.25s;
}
.footer__social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 700;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}
.wa-float svg { width: 1.625rem; height: 1.625rem; fill: white; }

/* ================================================================
   COOKIE BANNER
   ================================================================ */
.cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 600;
  background: var(--white);
  padding: 1.25rem var(--content-left);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  box-shadow: 0 -2px 32px rgba(0,0,0,0.1);
  border-top: 1px solid rgba(0,64,58,0.08);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}
.cookie.is-visible { transform: translateY(0); }
.cookie p {
  flex: 1;
  font-size: 0.8125rem;
  color: var(--text-muted);
  min-width: 220px;
  line-height: 1.55;
}
.cookie a { color: var(--green); text-decoration: underline; }

/* ================================================================
   LIGHTBOX
   ================================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(1,42,36,0.96);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.lightbox__close:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(129,215,66,0.08);
}

/* ================================================================
   ANIMAÇÃO REVEAL ON SCROLL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ================================================================
   RESPONSIVIDADE
   ================================================================ */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .reel__inner { grid-template-columns: 1fr 1fr; }
  .reel__copy { padding-left: var(--pad-x); }

  .hero__split-video { width: 50vw; max-width: none; }
  .hero__content { padding-right: 52vw; }
  .hero__persona {
    width: clamp(260px, 40vw, 480px);
    transform: translateX(-32%);
  }

  .video-section__grid { grid-template-columns: 1fr; }
  .video-section__player {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .video-section__copy {
    padding-top: calc(var(--nav-h) + 1.5rem);
    padding-bottom: 1.5rem;
  }

  .benefits__grid { grid-template-columns: 1fr; }
  .benefit-card { flex-direction: row; min-height: auto; }
  .benefit-card__img {
    flex: 0 0 38%;
    min-height: 160px;
    max-height: none;
  }

  .team__head { align-items: flex-start; }
  .team__stat { text-align: left; }
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .photo-gallery__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .photo-gallery__stage {
    min-height: clamp(300px, 48vh, 520px);
  }

  .faq-section__grid { grid-template-columns: 1fr; }
  .faq-section__figure {
    height: clamp(200px, 32vh, 320px);
  }
  .faq-section__list {
    max-height: none;
    overflow: visible;
    height: auto;
  }
  .faq-item,
  .faq-item.is-open { flex: none; min-height: auto; }

  .location__inner { grid-template-columns: 1fr; }
  .location__map { max-width: 560px; width: 100%; }
  .contact__grid { grid-template-columns: 1fr; overflow: visible; }
  .planos__grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .plano-card--featured {
    transform: none;
    order: -1;
  }
}

/* Desktop: ocultar hamburger */
@media (min-width: 901px) {
  .nav__menu-btn { display: none; }
}

/* Tablet/Mobile: ocultar links âncora, manter hamburger */
@media (max-width: 900px) {
  .nav__links { display: none; }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  :root {
    --pad-x: 1.25rem;
    --pad-y: 3.5rem;
    --gap: 2rem;
    --nav-h: 64px;
    --section-pad: clamp(2.25rem, 5vh, 3.5rem);
  }

  /* ---- Hero mobile: empilhado + persona entre vídeo e texto ---- */
  .hero {
    --hero-video-h: clamp(60svh, 78vw, 72svh);
    --hero-content-overlap: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100svh;
    position: relative;
    overflow: hidden;
  }
  .hero__split-video {
    position: relative;
    flex: 0 0 var(--hero-video-h);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    order: 1;
    z-index: 0;
  }
  .hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: var(--hero-video-h);
    z-index: 0;
    mask-image: none;
    -webkit-mask-image: none;
    background:
      linear-gradient(to bottom, rgba(1,42,36,0.35) 0%, transparent 28%),
      linear-gradient(to top, var(--green-deep) 0%, rgba(1,42,36,0.55) 45%, transparent 100%);
    pointer-events: none;
  }
  .hero__persona {
    display: flex;
    position: absolute;
    z-index: 1;
    top: calc(var(--nav-h) + 10px);
    bottom: calc(100% - var(--hero-video-h) + var(--hero-content-overlap));
    left: 50%;
    width: clamp(195px, 61.5vw, 300px);
    height: auto;
    transform: translateX(-50%);
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
  }
  .hero__persona img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
  }
  .hero__content {
    order: 2;
    position: relative;
    z-index: 2;
    flex: 1;
    margin-top: calc(-1 * var(--hero-content-overlap));
    padding: clamp(1.75rem, 4vw, 2.25rem) var(--pad-x) clamp(1rem, 2.5vh, 1.5rem);
    padding-top: clamp(1.75rem, 4vw, 2.25rem);
    padding-right: var(--pad-x);
    background-color: var(--green-deep);
    background-image: var(--bg-texture);
    background-size: cover;
    background-position: center;
    border-radius: 1.25rem 1.25rem 0 0;
    box-shadow: 0 -12px 40px rgba(0,0,0,0.22);
  }
  .hero__title { font-size: clamp(2rem, 9vw, 3.25rem); max-width: none; }
  .hero__desc  { max-width: none; font-size: 1rem; }
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__marquee {
    position: relative;
    order: 3;
    z-index: 3;
    flex-shrink: 0;
  }

  /* ---- Reel mobile: stage primeiro, controles sobre a mídia ---- */
  .reel__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 100svh;
  }
  .reel__copy {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: calc(var(--nav-h) + 1.25rem) var(--pad-x) 1rem;
    border-right: none;
    border-bottom: none;
    justify-content: flex-start;
  }
  .reel__copy-mid,
  .reel__chapters { display: none; }
  .reel__title { font-size: clamp(1.5rem, 6.5vw, 2rem); }
  .reel__stage {
    min-height: clamp(360px, 68svh, 620px);
    margin-inline: var(--pad-x);
    margin-bottom: var(--section-pad);
    border-radius: 0.75rem;
    overflow: hidden;
  }
  .reel__overlay {
    background:
      linear-gradient(to top, rgba(1,42,36,0.92) 0%, rgba(1,42,36,0.45) 38%, transparent 68%);
  }
  .reel__arrow {
    opacity: 1;
    width: 2.25rem;
    height: 2.25rem;
  }
  .reel__arrow--prev { left: 0.625rem; }
  .reel__arrow--next { right: 0.625rem; }
  .reel__controls { display: none; }
  .reel__slide-type {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.3rem 0.5rem;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
  }
  .reel__stage-ui {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 0 0.875rem 0.875rem;
    pointer-events: none;
  }
  .reel__stage-ui-head,
  .reel__stage-caption,
  .reel__stage-chapters { pointer-events: auto; }
  .reel__stage-ui-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .reel__stage-chapter {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .reel__stage-counter {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
    flex-shrink: 0;
  }
  .reel__stage-caption {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.88);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .reel__progress {
    z-index: 5;
    height: 2px;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }
  .team__stat { display: none; }

  .photo-gallery__intro h2 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .photo-gallery__meta {
    left: var(--pad-x);
    right: var(--pad-x);
  }
  .photo-gallery__stage { min-height: clamp(280px, 52vw, 440px); }
  .photo-gallery__nav { padding-inline: var(--pad-x); }

  .benefit-card { flex-direction: column; }
  .benefit-card__img { flex: 0 0 auto; min-height: 180px; }

  .form-row { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* Pequeno (≤ 480px) */
@media (max-width: 480px) {
  .nav-overlay a { font-size: 1.75rem; }
  .h-scroll-panel { min-height: 0; }
  .faq-item__q { font-size: 1rem; gap: 0.75rem; padding: 1rem 1.125rem; }
}

/* Reduz movimento para quem prefere */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track { animation: none; }
  .photo-gallery__slide img { transform: none !important; }
}
