/* ==========================================================================
   LACHESKI FITNESS — Landing Page
   Folha de estilos principal
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIÁVEIS (edite aqui as cores da marca)
   -------------------------------------------------------------------------- */
:root {
  /* Paleta da marca */
  --color-black: #050505;
  --color-black-soft: #0D0D0D;
  --color-red: #C8141A;
  --color-red-dark: #97090E;
  --color-red-bright: #E31E24;
  --color-wine: #6B0D0D;
  --color-wine-light: #841212;
  --color-offwhite: #FFFFFF;
  --color-offwhite-dim: rgba(255, 255, 255, 0.68);
  --color-offwhite-faint: rgba(255, 255, 255, 0.42);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-strong: rgba(255, 255, 255, 0.2);

  /* Tipografia */
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-signature: 'Caveat', cursive;

  /* Layout */
  --container-max: 1200px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --section-padding: clamp(80px, 11vw, 144px);

  /* Sombras e transições */
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-red: 0 12px 32px rgba(200, 20, 26, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease);

  --header-height: 84px;
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* remove o realce azul padrão do Chrome/Android ao tocar em elementos
     clicáveis (links, botões), que destoa da identidade preto/vermelho */
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}

body {
  background-color: var(--color-black);
  color: var(--color-offwhite);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  /* overflow-x fica no <html>, não aqui: se ficasse aqui, o overflow-y
     computado do body deixaria de ser "visible" (vira "auto" por regra do
     spec de overflow), e o Bootstrap Scrollspy passa a usar o próprio
     <body> como root do IntersectionObserver em vez da viewport, quebrando
     a detecção de seção ativa ao rolar. */
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* texto só para leitores de tela e buscadores (não aparece na tela) */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::selection {
  background: var(--color-red);
  color: var(--color-offwhite);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   3. UTILITÁRIOS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: var(--section-padding);
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 16px;
}

.section-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--color-red);
}

.section-title {
  font-size: clamp(28px, 4.4vw, 44px);
  max-width: 720px;
}

.section-title--center {
  margin-inline: auto;
  text-align: center;
}

.section-lead {
  color: var(--color-offwhite-dim);
  font-size: clamp(16px, 1.6vw, 18px);
  max-width: 620px;
  margin-top: 18px;
}

.accent {
  color: var(--color-red);
}

.accent--underline {
  position: relative;
  display: inline-block;
  font-size: 1.15em;
  padding-bottom: 0.12em;
}

.accent--underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64%;
  height: 4px;
  border-radius: 2px;
  background: var(--color-red);
  box-shadow: 0 0 16px rgba(200, 20, 26, 0.6);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn__arrow {
  width: 14px !important;
  height: 14px !important;
  transition: transform var(--transition);
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-offwhite);
  box-shadow: var(--shadow-red);
}

.btn--primary:hover {
  background: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(200, 20, 26, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--color-offwhite);
  border-color: var(--color-border-strong);
}

.btn--outline:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 20px 42px;
  font-size: 16px;
}

/* Reveal ao rolar */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   4. CABEÇALHO
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}

.header.is-scrolled {
  background: rgba(10, 10, 10, 0.9);
  border-bottom-color: var(--color-border);
}

.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo img {
  height: clamp(54px, 5.5vw, 66px);
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-list {
  display: flex;
  gap: 32px;
}

.header__nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-offwhite-dim);
  padding-block: 6px;
  transition: color var(--transition);
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: width var(--transition);
}

.header__nav-link:hover,
.header__nav-link.is-active {
  color: var(--color-offwhite);
}

.header__nav-link.is-active::after {
  width: 100%;
}

.header__cta {
  display: inline-flex;
}

.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

/* Ícone de haltere: deitado (fechado) e em pé (aberto), como um botão de
   menu "hambúrguer" temático da marca. */
.header__burger-icon {
  width: 34px;
  height: 26px;
  color: var(--color-offwhite);
  transition: transform 0.45s var(--ease), color var(--transition);
}

.header__burger[aria-expanded="true"] .header__burger-icon {
  transform: rotate(90deg);
  color: var(--color-red);
}

/* --------------------------------------------------------------------------
   7. SOBRE
   -------------------------------------------------------------------------- */
.sobre {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 8vw, 96px);
}

.sobre__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 46% 55% at 8% 12%, rgba(200, 20, 26, 0.16), transparent 65%),
    radial-gradient(ellipse 40% 45% at 96% 88%, rgba(107, 13, 13, 0.28), transparent 65%);
  pointer-events: none;
}

.sobre__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.sobre__media {
  position: relative;
}

.sobre__photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 4;
}

.sobre__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.08);
}

/* Duas fotos que alternam (Taekwondo / Educação Física) */
.sobre__photo-frame .sobre__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s var(--ease), transform 6s ease-out;
}

.sobre__photo-frame .sobre__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.sobre__slide-tabs {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.6);
}

.sobre__slide-tab {
  position: relative;
  overflow: hidden;
  padding: 6px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-offwhite-dim);
  font: 600 0.72rem var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.sobre__slide-tab:hover {
  color: var(--color-offwhite);
}

.sobre__slide-tab.is-active {
  color: #fff;
  background: var(--color-red);
}

/* barrinha de tempo até trocar de foto */
.sobre__slide-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  transform-origin: left;
  animation: sobre-timer var(--slide-time, 5s) linear forwards;
}

@keyframes sobre-timer {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@media (max-width: 640px) {
  .sobre__slide-tabs {
    top: 12px;
    right: 12px;
  }

  .sobre__slide-tab {
    padding: 5px 9px;
    font-size: 0.62rem;
    letter-spacing: 0.03em;
  }
}

.sobre__photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.15) 0%, transparent 30%, transparent 55%, rgba(5, 5, 5, 0.55) 82%, rgba(5, 5, 5, 0.92) 100%);
}

.sobre__photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.sobre__photo-overlay .sobre__photo-logo {
  align-self: flex-start;
  width: auto;
  height: 64px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.sobre__photo-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 14px;
  border-left: 2px solid var(--color-red);
  margin-top: auto;
  margin-bottom: 18px;
}

.sobre__photo-tags li {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-offwhite);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.sobre__photo-signature {
  font-family: var(--font-signature);
  font-size: 32px;
  line-height: 1;
  color: var(--color-offwhite);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.sobre__photo-signature span {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-offwhite-faint);
  margin-top: 2px;
}

.sobre__badge-float {
  position: absolute;
  z-index: 3;
  bottom: -18px;
  right: -14px;
  background: var(--color-red);
  color: var(--color-offwhite);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(200, 20, 26, 0.5);
  text-align: center;
  line-height: 1.1;
}

.sobre__badge-float strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
}

.sobre__badge-float span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.sobre__text {
  font-size: 16px;
  color: var(--color-offwhite-dim);
  margin-top: 16px;
}

.sobre__credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

/* 3 cartões: Nome e Experiência lado a lado, Formação (texto maior) embaixo */
.sobre__credentials .credential:nth-child(2) {
  grid-column: 1 / -1;
  order: 1;
}

.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.credential:hover {
  border-color: var(--color-red);
  background: rgba(200, 20, 26, 0.06);
  transform: translateY(-2px);
}

.credential__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(200, 20, 26, 0.14);
  color: var(--color-red);
}

.credential__icon svg {
  width: 18px;
  height: 18px;
}

.credential__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 3px;
}

.credential__value {
  font-family: var(--font-heading);
  font-size: 15px;
}

.sobre__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, rgba(200, 20, 26, 0.1), rgba(255, 255, 255, 0.02));
}

.sobre__cta-text {
  font-size: 13.5px;
  color: var(--color-offwhite-dim);
  line-height: 1.4;
}

.sobre__cta-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-offwhite);
  margin-bottom: 2px;
}

/* --------------------------------------------------------------------------
   7.1 MÍDIA & COMUNICAÇÃO (colagem de fotos)
   As molduras são inclinadas levemente (efeito "fotos jogadas sobre a mesa")
   e se endireitam no hover. A barra de busca central é decorativa.
   -------------------------------------------------------------------------- */
.midia {
  position: relative;
  overflow: hidden;
  background: var(--color-black-soft);
  border-block: 1px solid var(--color-border);
}

.midia__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 42% 48% at 88% 10%, rgba(200, 20, 26, 0.16), transparent 66%),
    radial-gradient(ellipse 46% 52% at 6% 92%, rgba(107, 13, 13, 0.26), transparent 66%);
}

.midia > .container {
  position: relative;
  z-index: 1;
}

.midia__head {
  max-width: 760px;
}

.midia__head .section-lead {
  max-width: 560px;
}

/* Palco da colagem ------------------------------------------------------- */
.midia__stage {
  position: relative;
  margin-top: clamp(40px, 6vw, 68px);
}

.midia__collage {
  /* Colagem "fotos jogadas sobre a mesa": cada foto é posicionada em % dentro
     do palco, então o conjunto inteiro (incluindo as sobreposições) escala
     junto com a largura da tela. No celular vira uma lista simples. */
  position: relative;
  max-width: 1080px;
  margin-inline: auto;
  aspect-ratio: 108 / 86;
}

.midia__shot {
  position: absolute;
  margin: 0;
  transition: transform var(--transition), filter var(--transition);
}

.midia__shot--1 {
  left: 2%;
  top: 0;
  width: 45%;
  height: 40%;
  z-index: 1;
  transform: rotate(-5deg);
}

.midia__shot--2 {
  left: 45%;
  top: 8%;
  width: 41%;
  height: 56%;
  z-index: 2;
  transform: rotate(2.6deg);
}

.midia__shot--3 {
  left: 1%;
  top: 50%;
  width: 44%;
  height: 40%;
  z-index: 3;
  transform: rotate(-2deg);
}

.midia__shot--4 {
  left: 43%;
  top: 58%;
  width: 40%;
  height: 42%;
  z-index: 4;
  transform: rotate(3deg);
}

.midia__shot:hover {
  transform: rotate(0deg) scale(1.04);
  z-index: 6;
}

.midia__shot-frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-strong);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
  padding: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.midia__shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 8px);
}

.midia__shot:hover .midia__shot-frame {
  border-color: rgba(200, 20, 26, 0.55);
  box-shadow: var(--shadow-soft), var(--shadow-red);
}

/* Barra de busca decorativa ---------------------------------------------- */
.midia__search {
  position: absolute;
  left: 50%;
  top: 46.5%;
  z-index: 10; /* sempre na frente das fotos, mesmo com o mouse em cima delas */
  transform: translate(-50%, -50%);
  width: min(460px, 48%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--color-border-strong);
  background: rgba(5, 5, 5, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  pointer-events: none;
}

.midia__search svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-offwhite-faint);
}

.midia__search-mic {
  color: var(--color-red);
}

.midia__search-text {
  flex: 1;
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 600;
  color: var(--color-offwhite-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.midia__search-text mark {
  background: rgba(200, 20, 26, 0.9);
  color: var(--color-offwhite);
  padding: 0 2px;
  border-radius: 3px;
}

.midia__caret {
  display: inline-block;
  width: 1.5px;
  height: 1em;
  margin-left: 2px;
  vertical-align: -0.14em;
  background: var(--color-red);
  animation: midia-caret 1.1s steps(1) infinite;
}

@keyframes midia-caret {
  50% { opacity: 0; }
}

/* Rodapé da seção: números + frase de fechamento -------------------------- */
.midia__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  margin-top: clamp(40px, 6vw, 64px);
}

.midia__facts {
  display: grid;
  gap: 14px;
}

.midia__fact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  font-size: 15px;
  color: var(--color-offwhite-dim);
  transition: border-color var(--transition), transform var(--transition);
}

.midia__fact:hover {
  border-color: rgba(200, 20, 26, 0.45);
  transform: translateX(4px);
}

.midia__fact strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--color-offwhite);
}

.midia__fact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(200, 20, 26, 0.14);
  border: 1px solid rgba(200, 20, 26, 0.32);
  color: var(--color-red);
}

.midia__fact-icon svg {
  width: 20px;
  height: 20px;
}

.midia__quote {
  position: relative;
  padding: clamp(22px, 3vw, 30px) clamp(22px, 3vw, 32px);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-red);
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, rgba(200, 20, 26, 0.1), rgba(255, 255, 255, 0.02));
}

.midia__quote p {
  font-family: var(--font-heading);
  font-size: clamp(17px, 2.1vw, 21px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-offwhite-dim);
}

.midia__quote strong {
  font-weight: 800;
  color: var(--color-offwhite);
}

/* Setas decorativas ------------------------------------------------------- */
.midia__arrow {
  position: absolute;
  color: rgba(200, 20, 26, 0.55);
  pointer-events: none;
}

.midia__arrow--top {
  width: clamp(58px, 6vw, 82px);
  top: clamp(-54px, -4vw, -30px);
  left: clamp(-6px, 1vw, 24px);
}

.midia__arrow--bottom {
  width: clamp(52px, 5vw, 72px);
  top: -34px;
  left: -46px;
  transform: rotate(-12deg);
}

@media (max-width: 1080px) {
  .midia__arrow--bottom {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   10. PLANOS PRESENCIAIS
   -------------------------------------------------------------------------- */
.planos {
  background: var(--color-black-soft);
  border-block: 1px solid var(--color-border);
}

.planos__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 48px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-strong);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-red);
}

.plan-card--highlight {
  background: linear-gradient(160deg, var(--color-wine), var(--color-black));
  border-color: var(--color-red);
  transform: scale(1.04);
}

.plan-card--highlight:hover {
  transform: scale(1.04) translateY(-6px);
}

.plan-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-red);
  color: var(--color-offwhite);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-red);
}

.plan-card__freq {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: normal;
  margin-top: 8px;
}

.plan-card__price {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2vw, 26px);
  color: var(--color-red);
  margin-top: 14px;
}

.plan-card__price span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-offwhite-faint);
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.plan-card__economy {
  font-size: 12px;
  color: var(--color-offwhite-dim);
  margin-top: 10px;
  min-height: 32px;
}

.plan-card .btn {
  margin-top: 20px;
  width: 100%;
  padding: 13px 16px;
  font-size: 13.5px;
}

.planos__note {
  text-align: center;
  color: var(--color-offwhite-faint);
  font-size: 13.5px;
  margin-top: 32px;
}

/* --------------------------------------------------------------------------
   15. RODAPÉ
   -------------------------------------------------------------------------- */
.footer {
  padding-block: 56px 32px;
  border-top: 1px solid var(--color-border);
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__brand img {
  height: 80px;
  width: auto;
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 14px;
  color: var(--color-offwhite-dim);
}

.footer__meta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.footer__meta a:hover {
  color: var(--color-red);
}

.footer__meta svg {
  width: 16px;
  height: 16px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  padding-block: 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 13.5px;
  color: var(--color-offwhite-dim);
}

.footer__nav a {
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--color-red);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--color-offwhite-faint);
}

/* --------------------------------------------------------------------------
   16. BOTÃO FLUTUANTE DO WHATSAPP
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: #0A0A0A;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-ring 2.4s ease-out infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   17. RESPONSIVO
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  

  

  

  

  

  

  

  

  

  .planos__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .plan-card--highlight {
    transform: none;
  }

  .plan-card--highlight:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 920px) {
  .header__nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    /* altura explícita via vh: o .header tem backdrop-filter, o que o torna o
       bloco de referência para elementos fixed dentro dele — "bottom: 0"
       ficaria relativo aos 84px do cabeçalho, não à tela inteira. */
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background: var(--color-black);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 32px 24px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-top: 1px solid var(--color-border);
  }

  .header__nav.is-open {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    gap: 8px;
  }

  .header__nav-link {
    display: block;
    font-size: 20px;
    padding-block: 12px;
    border-bottom: 1px solid var(--color-border);
  }

  .header__cta {
    width: 100%;
  }

  .header__cta .btn {
    width: 100%;
  }

  .header__burger {
    display: flex;
  }

  .sobre__grid {
    grid-template-columns: 1fr;
  }

  .sobre__media {
    width: 100%;
    max-width: 440px;
    margin-inline: auto;
  }

  .midia__collage {
    max-width: 680px;
  }

  .midia__search {
    width: min(340px, 74%);
    padding: 12px 16px;
  }

  .midia__footer {
    grid-template-columns: 1fr;
  }

  .midia__arrow--top {
    display: none;
  }

  

  

  .planos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  

  
}

@media (max-width: 640px) {
  .container {
    padding-inline: 20px;
  }

  

  

  

  

  

  

  
  

  

  

  

  

  .planos__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .midia__collage {
    aspect-ratio: auto;
    display: grid;
    gap: 20px;
    max-width: 360px;
  }

  .midia__shot--1,
  .midia__shot--2,
  .midia__shot--3,
  .midia__shot--4 {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
  }

  .midia__shot-frame {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  /* No celular a barra de busca sai de cima das fotos e vira um rótulo
     estático no topo da colagem. */
  .midia__search {
    position: static;
    transform: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 22px;
  }

  .midia__stage {
    display: flex;
    flex-direction: column-reverse;
  }

  .sobre__credentials {
    grid-template-columns: 1fr;
  }

  .sobre__badge-float {
    right: 12px;
    bottom: -14px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
  }

  .sobre__badge-float strong {
    font-size: 16px;
  }

  .sobre__badge-float span {
    font-size: 8px;
  }

  .sobre__cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .sobre__cta .btn {
    width: 100%;
  }

  .sobre__photo-signature {
    font-size: 26px;
  }

  /* celular: logo à esquerda, Instagram à direita; endereço embaixo */
  .footer__top {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 20px 24px;
  }

  .footer__meta {
    display: contents;
  }

  .footer__meta a {
    justify-self: end;
  }

  .footer__meta span {
    grid-column: 1 / -1;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* --------------------------------------------------------------------------
   18. TELA DE ABERTURA (LOADING SCREEN)
   Splash inicial com o logo (halter) animado — toca uma vez por sessão.
   As cores e fontes usam as mesmas variáveis do site (seção 1), então
   qualquer ajuste de identidade feito lá se reflete aqui automaticamente.
   -------------------------------------------------------------------------- */
html.ls-lock {
  overflow: hidden;
}

.ls {
  --ls-bg: var(--color-black);
  --ls-plate: var(--color-black-soft);
  --ls-accent: var(--color-red);
  --ls-accent-rgb: 200, 20, 26;
  --ls-bone: var(--color-offwhite);
  --ls-mist: var(--color-offwhite-faint);
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ls-bg);
  color: var(--ls-bone);
}

.ls * {
  box-sizing: border-box;
}

/* Saída em dissolução: desfoca, clareia e expande suavemente, como fumaça
   se dissipando, em vez de deslizar para fora. */
.ls.is-exit {
  opacity: 0;
  filter: blur(28px);
  transform: scale(1.08);
  visibility: hidden;
  transition: opacity 1.2s ease, filter 1.2s ease, transform 1.2s ease, visibility 0s 1.2s;
}

.ls.is-done {
  display: none;
}

.ls__grid {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse 55% 50% at 50% 46%, #000, transparent);
  mask-image: radial-gradient(ellipse 55% 50% at 50% 46%, #000, transparent);
}

.ls__glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 50% 42%, rgba(var(--ls-accent-rgb), 0.16), transparent 50%);
}

.ls__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 3vh, 26px);
  padding: 0 16px;
  text-align: center;
}

/* halter animado */
.ls .loader {
  display: block;
  width: min(70vw, 340px);
  height: auto;
  overflow: visible;
  opacity: 0;
}

.ls .loader path.fill {
  fill: rgba(var(--ls-accent-rgb), 0.16);
}

.ls .loader .dash path {
  fill: none;
  stroke: var(--ls-accent);
  stroke-width: 1px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ls .loader .dash path.big {
  stroke-width: 2px;
  filter: drop-shadow(0 0 3px var(--ls-accent));
}

.ls .loader .dash path.pulse {
  stroke: var(--ls-bone);
  stroke-width: 0.9px;
}

.ls__name {
  position: relative;
  margin: 0;
  font: 800 clamp(28px, 6.6vw, 52px)/1 var(--font-heading);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
}

/* Efeito de luz: brilho suave ao redor do texto, uma única vez, pouco
   antes da tela de abertura sair (classe .is-boom, via JS). */
.is-boom .ls__name {
  animation: ls-glow 1s ease-out forwards;
}

@keyframes ls-glow {
  0%, 100% {
    filter: none;
  }
  45% {
    filter: drop-shadow(0 0 14px rgba(200, 20, 26, 0.75)) drop-shadow(0 0 32px rgba(255, 255, 255, 0.3));
  }
}

.ls__name em {
  font-style: normal;
  font-weight: 800;
  color: var(--ls-accent);
}

.ls__role {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font: 700 clamp(11px, 2.2vw, 13px)/1 var(--font-body);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ls-accent);
  opacity: 0;
  transform: translateY(10px);
}

.ls__role i {
  display: block;
  height: 1px;
  width: clamp(24px, 8vw, 56px);
  background: var(--ls-accent);
  transform: scaleX(0);
}

.ls__role i:first-child {
  transform-origin: 100% 50%;
}

.ls__role i:last-child {
  transform-origin: 0 50%;
}

.ls__role span {
  margin-right: -0.4em;
}

.is-playing .ls__grid { animation: ls-in 1.2s ease-out 0.1s forwards; }
.is-playing .ls__glow { animation: ls-in 1.6s ease-out 0.2s forwards; }
.is-playing .loader { animation: ls-pop 0.9s cubic-bezier(0.2, 0.9, 0.2, 1) 0.1s forwards; }
.is-playing .ls__name { animation: ls-rise 0.9s cubic-bezier(0.2, 0.9, 0.2, 1) 0.7s forwards; }
.is-playing .ls__role { animation: ls-rise 0.8s cubic-bezier(0.2, 0.9, 0.2, 1) 1.3s forwards; }
.is-playing .ls__role i { animation: ls-line 0.7s cubic-bezier(0.2, 0.9, 0.2, 1) 1.5s forwards; }

.is-playing .loader path.fill {
  animation: ls-fill 4s ease-in-out infinite;
}

.is-playing .loader .dash path {
  animation: ls-dashArray var(--sped, 2s) ease-in-out infinite, ls-dashOffset var(--sped, 2s) linear infinite;
}

@keyframes ls-in {
  to { opacity: 1; }
}
@keyframes ls-pop {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: none; }
}
@keyframes ls-rise {
  to { opacity: 1; transform: none; filter: none; }
}
@keyframes ls-line {
  to { transform: scaleX(1); }
}
@keyframes ls-dashArray {
  0% { stroke-dasharray: 0 1 359 0; }
  50% { stroke-dasharray: 0 359 1 0; }
  100% { stroke-dasharray: 359 1 0 0; }
}
@keyframes ls-dashOffset {
  0% { stroke-dashoffset: -5; }
  100% { stroke-dashoffset: -365; }
}
@keyframes ls-fill {
  30%, 55% { fill: rgba(var(--ls-accent-rgb), 0); }
}

@media (prefers-reduced-motion: reduce) {
  .ls * {
    animation-duration: 0.01s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
  }
}

/* --------------------------------------------------------------------------
   TEAM LACHESKI — carrossel de fotos inclinado + chamada em destaque
   -------------------------------------------------------------------------- */
.team {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(560px, 62vw, 820px);
  overflow: hidden;
  isolation: isolate;
  contain: layout paint;
  background: var(--color-black);
}

/* Faixas de fotos (montadas pelo script a partir de .team__photos) */
.team__marquee {
  position: absolute;
  inset: -12% -10%;
  z-index: -2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  transform: rotate(-6deg);
}

.team__row {
  display: flex;
  width: max-content;
  gap: 12px;
  will-change: transform;
  animation: team-scroll var(--team-speed, 60s) linear infinite;
}

/* pausa o movimento quando a seção não está na tela */
.team.is-paused .team__row {
  animation-play-state: paused;
}

.team__row--reverse {
  animation-direction: reverse;
}

.team__row img,
.team__photos img {
  flex: none;
  height: clamp(150px, 17vw, 250px);
  aspect-ratio: 4 / 3;
  width: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* sem script: mostra a lista simples */
.team__photos {
  display: flex;
  gap: 12px;
}

@keyframes team-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Escurece as fotos no centro para o texto saltar à frente */
.team::before,
.team::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.team::before {
  background:
    radial-gradient(ellipse 48% 52% at 50% 50%, rgba(5, 5, 5, 0.94) 20%, rgba(5, 5, 5, 0.65) 70%, rgba(5, 5, 5, 0.4)),
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200, 20, 26, 0.35), transparent 70%);
}

.team::after {
  background: linear-gradient(180deg, var(--color-black) 0%, transparent 16%, transparent 84%, var(--color-black) 100%);
}

/* Chamada */
.team__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: 80px;
}

.team__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(227, 30, 36, 0.5);
  border-radius: 999px;
  background: rgba(200, 20, 26, 0.14);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team__chip svg {
  width: 14px;
  height: 14px;
  color: var(--color-red-bright);
  animation: team-beat 1.4s ease-in-out infinite;
}

@keyframes team-beat {
  0%, 100% { transform: scale(1); }
  15%      { transform: scale(1.3); }
  30%      { transform: scale(1); }
  45%      { transform: scale(1.2); }
}

.team__title {
  margin-top: 22px;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 8.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

.team__title-small {
  display: block;
  margin-bottom: 10px;
  font-size: 0.26em;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-offwhite-dim);
}

.team__title-red {
  color: var(--color-red-bright);
  text-shadow: 0 0 40px rgba(227, 30, 36, 0.55), 0 10px 50px rgba(0, 0, 0, 0.8);
}

.team__topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 860px;
  margin-top: 26px;
  list-style: none;
  text-align: left;
}

.team__topics li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(5, 5, 5, 0.7);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-offwhite);
}

/* o último tópico (mais longo) ocupa a linha inteira */
.team__topics li:last-child {
  grid-column: 1 / -1;
}

.team__topic-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.team__topic-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-red-bright);
  text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}

.team__topic-more:hover {
  gap: 8px;
  color: #fff;
}

.team__topic-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--color-red-bright);
  background: rgba(200, 20, 26, 0.14);
  border: 1px solid rgba(227, 30, 36, 0.35);
}

.team__topic-icon svg {
  width: 19px;
  height: 19px;
}

@media (max-width: 640px) {
  /* celular: fotos visíveis no topo, conteúdo embaixo */
  .team {
    display: block;
    min-height: 0;
    padding-bottom: 64px;
  }

  .team__marquee {
    position: relative;
    inset: auto;
    height: 380px;
    margin-inline: -25%;
    justify-content: flex-start;
    padding-top: 40px;
  }

  .team__row img,
  .team__photos img {
    height: 130px;
  }

  /* escurece só a parte de baixo das fotos, onde entra o título */
  .team::before {
    background: linear-gradient(180deg, transparent 0, transparent 200px, rgba(5, 5, 5, 0.85) 320px, var(--color-black) 390px);
  }

  .team::after {
    background: linear-gradient(180deg, var(--color-black) 0%, transparent 60px);
  }

  .team__content {
    margin-top: -120px;
    padding-block: 0;
  }

  .team__title {
    font-size: 3.4rem;
  }

  /* 2 primeiros lado a lado; os 2 últimos em linhas inteiras */
  .team__topics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 18px;
  }

  .team__topics li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
  }

  .team__topics li:nth-child(n+3) {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }

  .team__topic-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
  }

  .team__topic-more {
    font-size: 0.72rem;
  }

  .team__topic-icon svg {
    width: 15px;
    height: 15px;
  }

  .team__actions {
    margin-top: 24px;
  }
}

.team__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.team__actions .btn--outline {
  background: rgba(5, 5, 5, 0.75);
}

@media (max-width: 640px) {
  .team__marquee {
    gap: 8px;
  }

  .team__row {
    gap: 8px;
  }

  .team__row img,
  .team__photos img {
    border-radius: var(--radius-sm);
  }

  .team__actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team__row {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   PÁGINA TEAM (team.html) — feed de posts estilo Instagram
   -------------------------------------------------------------------------- */

@keyframes post-like {
  50% { transform: scale(1.3); }
}

/* Foto ampliada em tela cheia */
.visor {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}

.visor::backdrop {
  background: rgba(0, 0, 0, 0.94);
}

.visor[open] {
  display: grid;
  place-items: center;
  animation: visor-in 0.3s var(--ease);
}

@keyframes visor-in {
  from { opacity: 0; transform: scale(0.96); }
}

.visor__img {
  max-width: min(92vw, 1400px);
  max-height: 88vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.visor__btn {
  position: fixed;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(20, 20, 20, 0.8);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.visor__btn:hover {
  background: var(--color-red);
  border-color: var(--color-red);
}

.visor__btn svg {
  width: 24px;
  height: 24px;
}

.visor__close {
  top: 20px;
  right: 20px;
}

.visor__prev,
.visor__next {
  top: 50%;
  transform: translateY(-50%);
}

.visor__prev {
  left: 20px;
}

.visor__next {
  right: 20px;
}

.visor__count {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-offwhite-dim);
}

@media (max-width: 640px) {
  .visor__img {
    max-width: 100vw;
    border-radius: 0;
  }

  .visor__prev,
  .visor__next {
    top: auto;
    bottom: 14px;
    transform: none;
  }

  .visor__close {
    top: 14px;
    right: 14px;
  }
}

/* --------------------------------------------------------------------------
   ONDE TUDO COMEÇOU — Taekwondo e conquistas
   -------------------------------------------------------------------------- */
.historia {
  position: relative;
  overflow: hidden;
}

.historia__head {
  position: relative;
  min-height: clamp(150px, 20vw, 260px);
}

.historia__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-top: 10px;
}

/* foto das medalhas "saindo" por cima da faixa de fotos */
.historia__fotos .historia__medalhas {
  position: absolute;
  right: 0;
  bottom: calc(100% - 70px); /* sobe acima da faixa, sobrepondo 70px dela */
  z-index: 3;
  width: clamp(130px, 22vw, 290px);
  margin: 0;
  overflow: hidden;
  aspect-ratio: 9 / 11;
  border: 4px solid var(--color-black);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(227, 30, 36, 0.5);
  transform: rotate(3deg);
  transition: transform var(--transition);
}

.historia__medalhas:hover {
  transform: rotate(0deg) scale(1.03);
}

.historia__medalhas img,
.historia__fotos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.historia__fotos {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: clamp(16px, 2vw, 24px);
}

.historia__fotos figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  background: var(--color-black-soft);
}

.historia__fotos img {
  transition: transform 0.8s var(--ease);
}

.historia__fotos figure:hover img {
  transform: scale(1.05);
}

.historia__subtitle {
  margin-top: 0.1em;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6.5vw, 5.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

/* Texto + conquistas */
.historia__body {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  margin-top: clamp(48px, 7vw, 88px);
}

.historia__frase {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.historia__quote {
  margin-top: 24px;
  padding-left: 18px;
  border-left: 3px solid var(--color-red);
  font-size: 1.08rem;
  color: var(--color-offwhite-dim);
}

.historia__quote p + p {
  margin-top: 12px;
}

.historia__quote strong {
  color: var(--color-offwhite);
}

.historia__conquistas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
}

.conquista {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.conquista:hover {
  border-color: rgba(227, 30, 36, 0.5);
  background: rgba(200, 20, 26, 0.06);
  transform: translateY(-3px);
}

.conquista__icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: #f5c542;
  background: rgba(245, 197, 66, 0.1);
  border: 1px solid rgba(245, 197, 66, 0.3);
}

.conquista__icon svg {
  width: 24px;
  height: 24px;
}

.conquista__valor {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-red-bright);
}

.conquista__texto {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-offwhite-dim);
}

/* Campeão Mundial em destaque, ocupando a linha toda */
.conquista--destaque {
  grid-column: 1 / -1;
  border-color: transparent;
  background: linear-gradient(135deg, var(--color-red-bright), var(--color-red-dark));
  box-shadow: var(--shadow-red);
}

.conquista--destaque:hover {
  border-color: transparent;
  background: linear-gradient(135deg, var(--color-red-bright), var(--color-red));
}

.conquista--destaque .conquista__icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

.conquista--destaque .conquista__valor {
  font-size: 2.1rem;
  color: #fff;
}

.conquista--destaque .conquista__texto {
  font-size: 1.05rem;
  color: #fff;
}

@media (max-width: 920px) {
  .historia__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .historia__head {
    min-height: 0;
  }

  .historia__title {
    font-size: 12vw;
  }

  /* 2 colunas maiores; a foto das medalhas entra na grade (2x2) */
  .historia__fotos {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-top: 20px;
  }

  .historia__fotos .historia__medalhas {
    position: static;
    width: auto;
    aspect-ratio: 3 / 4;
    border: 0;
    border-radius: var(--radius-sm);
    box-shadow: none;
    transform: none;
  }

  .historia__subtitle {
    font-size: 11vw;
  }

  /* conquistas compactas: 2 por linha, o Mundial ocupa a linha toda */
  .historia__conquistas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .conquista {
    column-gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
  }

  .conquista__icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .conquista__icon svg {
    width: 17px;
    height: 17px;
  }

  .conquista__valor {
    font-size: 1.25rem;
  }

  .conquista__texto {
    font-size: 0.74rem;
    line-height: 1.3;
  }

  .conquista--destaque .conquista__valor {
    font-size: 1.5rem;
  }

  .conquista--destaque .conquista__texto {
    font-size: 0.86rem;
  }
}

/* --------------------------------------------------------------------------
   POPUP DE VÍDEO (botões com data-video)
   Vídeo em card com controles próprios + WhatsApp e "Avançar" embaixo.
   -------------------------------------------------------------------------- */
.video-pop {
  width: 100vw;
  height: 100svh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 16px;
  border: 0;
  background: transparent;
}

.video-pop::backdrop {
  background: rgba(0, 0, 0, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.video-pop[open] {
  display: grid;
  place-items: center;
  animation: visor-in 0.3s var(--ease);
}

.video-pop__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* largura limitada também pela altura da tela, para o vídeo não ser cortado */
  width: min(420px, 100%, calc((100svh - 120px) * 0.5625 + 20px));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(120% 50% at 50% 0%, rgba(200, 20, 26, 0.22), transparent 60%),
    #0d0d0d;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(200, 20, 26, 0.15);
}

/* vídeo em pé; a altura se ajusta para os botões sempre caberem na tela */
.video-pop__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: calc(100svh - 32px - 20px - 12px - 56px);
  border-radius: 20px;
  background: #000;
  cursor: pointer;
}

.video-pop__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-pop__frame:focus {
  outline: none;
}

/* sombra em cima e embaixo para os ícones aparecerem */
.video-pop__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.55));
}

.video-pop__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.25s;
}

.video-pop__play svg {
  width: 76px;
  height: 76px;
  padding: 22px 20px 22px 26px;
  border-radius: 50%;
  color: #fff;
  background: rgba(200, 20, 26, 0.85);
  box-shadow: 0 0 40px rgba(227, 30, 36, 0.5);
}

.video-pop__frame.is-paused .video-pop__play {
  opacity: 1;
}

.video-pop__progress {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.video-pop__progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--color-red-bright);
  transition: width 0.25s linear;
}

.video-pop__icon {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.video-pop__icon:hover {
  background: var(--color-red);
  border-color: var(--color-red);
}

.video-pop__icon svg {
  width: 18px;
  height: 18px;
}

.video-pop__close {
  top: 12px;
  right: 12px;
}

.video-pop__sound {
  top: 12px;
  left: 12px;
}

.video-pop__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.video-pop__wa {
  justify-content: center;
  gap: 10px;
  padding-inline: 16px;
  white-space: nowrap;
}

.video-pop__wa svg {
  width: 20px;
  height: 20px;
}

.video-pop__skip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font: 600 0.95rem var(--font-body);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.video-pop__skip:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.video-pop__skip svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 380px) {
  .video-pop__wa {
    font-size: 0.88rem;
  }
}

/* --------------------------------------------------------------------------
   FAIXA DE TRANSIÇÃO ("E isso foi só o começo...")
   -------------------------------------------------------------------------- */
.faixa {
  position: relative;
  padding-block: clamp(28px, 4vw, 44px);
  border-block: 1px solid var(--color-border);
  background:
    radial-gradient(ellipse 40% 120% at 50% 50%, rgba(200, 20, 26, 0.12), transparent 70%),
    var(--color-black-soft);
  overflow: hidden;
}

.faixa__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.faixa__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.7));
}

.faixa__line:last-child {
  background: linear-gradient(90deg, rgba(227, 30, 36, 0.7), transparent);
}

.faixa__texto {
  flex: none;
  font-family: var(--font-signature);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-offwhite);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

@media (max-width: 640px) {
  .faixa__line {
    flex-basis: 20px;
  }
}

/* Animação de escrita: a frase aparece da esquerda para a direita, como
   uma caneta passando, quando a faixa entra na tela. Depois as linhas crescem. */
.faixa__texto {
  -webkit-mask-image: linear-gradient(90deg, #000 45%, transparent 55%);
  mask-image: linear-gradient(90deg, #000 45%, transparent 55%);
  -webkit-mask-size: 250% 100%;
  mask-size: 250% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
}

.faixa__line {
  transform: scaleX(0);
  transform-origin: right center;
}

.faixa__line:last-child {
  transform-origin: left center;
}

.faixa__inner.is-visible .faixa__texto {
  animation: faixa-escrita 2.6s cubic-bezier(0.45, 0.05, 0.35, 1) 0.3s forwards;
}

.faixa__inner.is-visible .faixa__line {
  animation: faixa-linha 1s var(--ease) 2.3s forwards;
}

@keyframes faixa-escrita {
  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}

@keyframes faixa-linha {
  to { transform: scaleX(1); }
}

/* --------------------------------------------------------------------------
   FINAL — pôster "E essa é a minha história"
   Camadas: foto de fundo > título > recorte da pessoa > textos
   -------------------------------------------------------------------------- */
.final {
  background:
    radial-gradient(ellipse 50% 60% at 50% 45%, rgba(200, 20, 26, 0.18), transparent 70%),
    var(--color-black);
}

.final__poster {
  position: relative;
  container-type: inline-size;
  width: min(620px, 100%);
  margin-inline: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-strong);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 80px rgba(200, 20, 26, 0.2);
  background: #1a1a1a;
}

.final__bg,
.final__person {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* aproxima a foto (fundo e recorte juntos, para continuarem alinhados) */
  transform: scale(1.3);
  transform-origin: 45% 78%;
}

/* fundo em preto e branco escurecido, como no pôster */
.final__bg {
  z-index: 0;
  filter: grayscale(1) brightness(0.45) contrast(1.1);
}

.final__title {
  position: absolute;
  top: 2cqw;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Bebas Neue', var(--font-heading);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.final__title span {
  white-space: nowrap;
}

.final__title span:first-child {
  font-size: 30cqw;
}

.final__title span:last-child {
  font-size: 20.5cqw;
}

.final__curve {
  position: absolute;
  top: 38%;
  right: 0;
  z-index: 1;
  width: 34%;
  color: rgba(255, 255, 255, 0.7);
}

/* pessoa recortada por cima do título */
.final__person {
  z-index: 2;
  filter: brightness(1.02);
}

/* escurece a parte de baixo para os textos */
.final__poster::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  z-index: 3;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
  pointer-events: none;
}

.final__text {
  position: absolute;
  left: 6cqw;
  bottom: 6cqw;
  z-index: 4;
  max-width: 44cqw;
  font-size: clamp(0.8rem, 3.6cqw, 1.2rem);
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.final__sign {
  position: absolute;
  right: 5cqw;
  bottom: 9cqw;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Great Vibes', var(--font-signature);
  font-size: clamp(1.6rem, 8.5cqw, 3.2rem);
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
  transform: rotate(-6deg);
}

.final__sign small {
  margin-top: 0.3em;
  font-family: var(--font-body);
  font-size: clamp(0.55rem, 2.2cqw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.85);
}

.final__cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ==========================================================================
   HERO PREMIUM (primeira dobra) — cenário escuro com luzes vermelhas,
   foto recortada do treinador integrada ao fundo, glass nos números.
   ========================================================================== */
.hx {
  position: relative;
  min-height: max(760px, 100svh);
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height);
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

/* ---------- cenário ---------- */
.hx__scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hx__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 40% 40%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 70% at 40% 40%, #000 30%, transparent 80%);
}

.hx__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hx__glow--a {
  right: 4%;
  top: 8%;
  width: 46vw;
  height: 70%;
  background: radial-gradient(circle, rgba(200, 20, 26, 0.55), transparent 65%);
  animation: hx-breathe 7s ease-in-out infinite;
}

.hx__glow--b {
  left: -10%;
  bottom: -20%;
  width: 45vw;
  height: 55%;
  background: radial-gradient(circle, rgba(120, 10, 12, 0.45), transparent 65%);
}

@keyframes hx-breathe {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.06); }
}

/* luzes de academia (faixas de neon vermelho na diagonal) */
.hx__beam {
  position: absolute;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #ff2a30 30%, #ff2a30 70%, transparent);
  box-shadow: 0 0 18px 4px rgba(227, 30, 36, 0.65), 0 0 60px 12px rgba(227, 30, 36, 0.3);
  transform-origin: left center;
}

.hx__beam--1 { right: -6%; top: 11%; width: 30vw; transform: rotate(-24deg); }
.hx__beam--2 { right: 18%; top: 17%; width: 20vw; transform: rotate(-12deg); opacity: 0.55; filter: blur(1.5px); }
.hx__beam--3 { right: -4%; top: 56%; width: 16vw; transform: rotate(-24deg); opacity: 0.8; }

/* "letreiro" LACHESKI FITNESS desfocado na parede, atrás do treinador */
.hx__wall {
  position: absolute;
  right: -1%;
  top: 24%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 7vw, 7.5rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.07);
  transform: rotate(-10deg);
  filter: blur(2px);
}

.hx__wall small {
  font-size: 0.42em;
  letter-spacing: 0.5em;
  color: rgba(227, 30, 36, 0.35);
}

/* foto do treinador */
.hx__photo {
  position: absolute;
  right: 9%;
  bottom: 0;
  height: calc(100% - var(--header-height) - 10px);
  aspect-ratio: 893 / 1387;
  will-change: transform;
}

.hx__person {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  filter: contrast(1.12) saturate(0.85) brightness(0.92) drop-shadow(0 0 40px rgba(0, 0, 0, 0.8));
}

/* luz de contorno vermelha: pinta só a silhueta, vinda da direita */
.hx__rim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(255, 40, 46, 0.55) 0%, transparent 38%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.95) 0%, transparent 28%);
  -webkit-mask: url("../assets/hero/treinador.webp") bottom / contain no-repeat;
  mask: url("../assets/hero/treinador.webp") bottom / contain no-repeat;
  mix-blend-mode: normal;
}

/* formas geométricas vermelhas no canto inferior direito */
.hx__shape {
  position: absolute;
  right: -2%;
  bottom: -2%;
  background: linear-gradient(135deg, var(--color-red-bright), var(--color-red-dark));
  transform: skewX(-38deg);
  transform-origin: bottom right;
}

.hx__shape--1 {
  width: 5vw;
  height: 32%;
  box-shadow: 0 0 50px rgba(227, 30, 36, 0.45);
}

.hx__shape--2 {
  right: 6%;
  width: 1.2vw;
  height: 20%;
  opacity: 0.75;
}

/* vinheta + fusão da foto com o fundo */
.hx__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.92) 30%, rgba(5, 5, 5, 0.2) 55%, transparent 70%),
    linear-gradient(0deg, #050505 0%, transparent 22%),
    radial-gradient(ellipse 120% 100% at 60% 40%, transparent 55%, rgba(0, 0, 0, 0.7) 100%);
}

/* ---------- conteúdo ---------- */
.hx__layout {
  position: static; /* as palavras laterais se posicionam pela seção inteira */
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 48px 24px;
}

.hx__content {
  max-width: 640px;
}

.hx__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-offwhite-dim);
}

.hx__eyebrow span {
  width: 38px;
  height: 2px;
  background: var(--color-red-bright);
}

.hx__title {
  margin-top: 22px;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.6vw, 5.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #fff;
}

.hx__title-red {
  color: var(--color-red-bright);
  text-shadow: 0 0 40px rgba(227, 30, 36, 0.35);
}

.hx__text {
  margin-top: 26px;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.hx__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 34px;
}

.hx__cta {
  box-shadow: 0 10px 40px rgba(227, 30, 36, 0.45);
}

.hx__cta:hover {
  box-shadow: 0 14px 50px rgba(227, 30, 36, 0.65);
}

.hx__play {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.hx__play-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.hx__play-icon svg {
  width: 18px;
  height: 18px;
  margin-left: 3px;
}

.hx__play:hover .hx__play-icon {
  background: var(--color-red);
  border-color: var(--color-red);
  transform: scale(1.06);
}

.hx__play-text {
  position: relative;
  padding-bottom: 6px;
}

/* sublinhado com trecho vermelho que cresce no hover */
.hx__play-text::before,
.hx__play-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

.hx__play-text::before {
  right: 0;
  background: rgba(255, 255, 255, 0.25);
}

.hx__play-text::after {
  width: 40%;
  background: var(--color-red-bright);
  transition: width var(--transition);
}

.hx__play:hover .hx__play-text::after {
  width: 100%;
}

/* números em vidro */
.hx__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  padding: 22px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)), rgba(10, 10, 10, 0.55);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hx__stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-inline: 20px;
}

.hx__stat + .hx__stat {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hx__stat-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--color-red-bright);
  background: rgba(200, 20, 26, 0.12);
  border: 1px solid rgba(227, 30, 36, 0.25);
}

.hx__stat-icon svg {
  width: 21px;
  height: 21px;
}

.hx__stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.hx__stat-label {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--color-offwhite-dim);
}

/* palavras verticais à direita */
.hx__side {
  position: absolute;
  right: 1.2vw;
  top: 50%;
  padding-left: 18px;
  border-left: 2px solid var(--color-red-bright);
  list-style: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  line-height: 2.1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* rodapé do hero */
.hx__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 30px;
}

.hx__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hx__brand span {
  width: 38px;
  height: 2px;
  background: var(--color-red-bright);
}

.hx__scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.hx__scroll svg {
  width: 16px;
  height: 16px;
  animation: hx-bounce 1.8s ease-in-out infinite;
}

.hx__mouse {
  position: relative;
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
}

.hx__mouse i {
  position: absolute;
  left: 50%;
  top: 6px;
  width: 2px;
  height: 6px;
  margin-left: -1px;
  border-radius: 2px;
  background: #fff;
  animation: hx-wheel 1.8s ease-in-out infinite;
}

@keyframes hx-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

@keyframes hx-wheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* entrada suave dos textos */
.hx-in {
  opacity: 0;
  transform: translateY(24px);
  animation: hx-in 0.9s var(--ease) forwards;
  animation-delay: calc(0.35s + var(--d, 0) * 0.12s);
}

@keyframes hx-in {
  to { opacity: 1; transform: none; }
}

/* enquanto a tela de abertura toca, os textos esperam */
html.ls-lock .hx-in {
  animation-play-state: paused;
}

/* ---------- WhatsApp flutuante redesenhado ---------- */
.whatsapp-float {
  width: 56px;
  height: 56px;
  background: rgba(12, 12, 12, 0.85);
  border: 1px solid rgba(37, 211, 102, 0.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55), 0 0 24px rgba(37, 211, 102, 0.18);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  color: #25D366;
}

.whatsapp-float::before {
  background: transparent;
  border: 1px solid rgba(37, 211, 102, 0.5);
}

/* ---------- tablet ---------- */
@media (max-width: 1080px) {
  .hx__photo {
    right: -4%;
    height: 86%;
  }

  .hx__side {
    display: none;
  }

  .hx__vignette {
    background:
      linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.9) 40%, rgba(5, 5, 5, 0.3) 70%, transparent 85%),
      linear-gradient(0deg, #050505 0%, transparent 22%);
  }
}

/* ---------- celular: foto em cima, conteúdo embaixo ---------- */
@media (max-width: 720px) {
  .hx {
    min-height: 0;
  }

  .hx__scene {
    top: var(--header-height);
    bottom: auto;
    height: 112vw;
    max-height: 540px;
  }

  .hx__photo {
    right: 50%;
    bottom: 0;
    height: 100%;
    transform: translateX(50%);
  }

  .hx__wall {
    top: 12%;
    right: 50%;
    align-items: center;
    font-size: 17vw;
    transform: translateX(50%) rotate(-8deg);
  }

  .hx__beam--1 { width: 60vw; top: 18%; }
  .hx__beam--2 { display: none; }
  .hx__beam--3 { width: 34vw; top: 62%; }

  .hx__shape--1 { width: 10vw; height: 26%; }
  .hx__shape--2 { width: 2.5vw; height: 16%; right: 12%; }

  .hx__glow--a {
    right: 50%;
    width: 110vw;
    transform: translateX(50%);
    animation: none;
  }

  .hx__vignette {
    background:
      linear-gradient(0deg, #050505 2%, rgba(5, 5, 5, 0.6) 22%, transparent 45%),
      radial-gradient(ellipse 110% 90% at 50% 40%, transparent 55%, rgba(0, 0, 0, 0.75) 100%);
  }

  .hx__layout {
    display: block;
    padding-top: calc(min(112vw, 540px) - 150px);
    padding-bottom: 16px;
    text-align: center;
  }

  .hx__eyebrow {
    justify-content: center;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  .hx__eyebrow span {
    width: 22px;
  }

  .hx__title {
    margin-top: 14px;
    font-size: 11vw;
  }

  .hx__text {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .hx__br {
    display: none;
  }

  .hx__actions {
    flex-direction: column;
    gap: 18px;
    margin-top: 26px;
  }

  .hx__cta {
    width: 100%;
    justify-content: center;
  }

  .hx__stats {
    margin-top: 30px;
    padding: 16px 4px;
  }

  .hx__stat {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-inline: 6px;
    text-align: center;
  }

  .hx__stat-icon {
    width: 34px;
    height: 34px;
  }

  .hx__stat-icon svg {
    width: 17px;
    height: 17px;
  }

  .hx__stat-value {
    font-size: 1.15rem;
  }

  .hx__stat-label {
    font-size: 0.7rem;
  }

  /* celular: frase de marca e "role para descobrir" ficam ocultos */
  .hx__bottom {
    display: none;
  }

  .hx {
    padding-bottom: 40px;
  }

  .hx__brand {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-align: center;
  }

  .hx__brand span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hx-in {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hx__glow--a,
  .hx__scroll svg,
  .hx__mouse i {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   POPUPS "VER MAIS" (seção Team)
   -------------------------------------------------------------------------- */
.info-pop {
  width: min(620px, calc(100vw - 32px));
  max-height: calc(100svh - 40px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  color: var(--color-offwhite);
  overflow: visible;
}

.info-pop::backdrop {
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.info-pop[open] {
  animation: visor-in 0.35s var(--ease);
}

.info-pop__box {
  position: relative;
  max-height: calc(100svh - 40px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(120% 60% at 100% 0%, rgba(200, 20, 26, 0.2), transparent 60%),
    #0d0d0d;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

.info-pop__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.info-pop__close:hover {
  background: var(--color-red);
  border-color: var(--color-red);
}

.info-pop__close svg {
  width: 18px;
  height: 18px;
}

.info-pop__tag {
  padding-right: 48px; /* espaço do X */
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-red-bright);
}

.info-pop__tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--color-red-bright);
}

.info-pop__title {
  margin-top: 12px;
  padding-right: 40px;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.info-pop__intro {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-offwhite-dim);
}

.info-pop__h {
  margin-top: 26px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.info-pop__list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.info-pop__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  line-height: 1.45;
}

.info-pop__list svg {
  flex: none;
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-red);
}

.info-pop__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
}

.info-pop__steps li {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--color-offwhite-dim);
}

.info-pop__steps span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-red-bright);
}

.info-pop__steps strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.9rem;
  color: #fff;
}

.info-pop__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.info-pop__price {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}

.info-pop__price small {
  margin-inline: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-offwhite-dim);
}

.info-pop__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}

@media (max-width: 640px) {
  .info-pop__steps {
    grid-template-columns: 1fr;
  }

  .info-pop__btns,
  .info-pop__btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   FINAL — tela cheia, no mesmo estilo cinematográfico do início
   (vale para todas as telas; ajustes do celular logo abaixo)
   -------------------------------------------------------------------------- */
@media all {
  .final {
    position: relative;
    padding: 0;
    background: #050505;
  }

  .final > .container {
    max-width: none;
    padding: 0;
  }

  .final__poster {
    width: 100%;
    height: max(720px, 100svh);
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background:
      radial-gradient(ellipse 40% 60% at 62% 45%, rgba(200, 20, 26, 0.35), transparent 70%),
      radial-gradient(ellipse 35% 45% at 5% 95%, rgba(120, 10, 12, 0.35), transparent 70%),
      #050505;
  }

  /* grade técnica sutil */
  .final__poster::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, #000 30%, transparent 80%);
    mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, #000 30%, transparent 80%);
  }

  /* no computador o cenário é feito em CSS (sem a foto de fundo) */
  .final__bg {
    display: none;
  }

  /* título grande de ponta a ponta */
  .final__title {
    top: 9%;
    line-height: 0.84;
  }

  .final__title span:first-child {
    font-size: min(13vw, 21svh);
  }

  .final__title span:last-child {
    font-size: min(13vw, 21svh);
  }

  /* treinador na frente do título, ocupando a altura toda */
  .final__person {
    left: 50%;
    right: auto;
    bottom: 0;
    top: auto;
    width: auto;
    height: 113%;
    max-width: none;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    object-position: bottom;
    transform: translateX(-46%);
    filter: contrast(1.08) drop-shadow(0 0 60px rgba(0, 0, 0, 0.7));
    /* some aos poucos embaixo, escondendo o corte da mesa */
    -webkit-mask-image: linear-gradient(180deg, #000 52%, transparent 76%);
    mask-image: linear-gradient(180deg, #000 52%, transparent 76%);
  }

  .final__curve {
    top: 34%;
    right: 12%;
    width: 16vw;
  }

  /* escurece embaixo e nas laterais para os textos */
  .final__poster::after {
    inset: 0;
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.95) 0%, transparent 32%),
      radial-gradient(ellipse 110% 100% at 50% 40%, transparent 55%, rgba(0, 0, 0, 0.75) 100%);
  }

  .final__text {
    left: max(40px, calc((100vw - 1200px) / 2 + 24px));
    bottom: 64px;
    max-width: 340px;
    font-size: 1.3rem;
  }

  .final__sign {
    right: max(40px, calc((100vw - 1200px) / 2 + 24px));
    bottom: 70px;
    font-size: 3.4rem;
  }

  .final__sign small {
    font-size: 0.8rem;
  }

  /* botão dentro da cena, embaixo e no centro */
  .final__cta {
    position: absolute;
    left: 50%;
    bottom: 56px;
    z-index: 5;
    margin: 0;
    transform: translateX(-50%);
  }
}

/* FINAL — ajustes do cenário em telas menores (tablet e celular) */
@media (max-width: 1023px) {
  .final__poster {
    height: max(620px, 100svh);
  }

  .final__title {
    top: 10%;
  }

  .final__title span:first-child {
    font-size: 24vw;
  }

  .final__title span:last-child {
    font-size: 17vw;
  }

  .final__person {
    height: 110%;
    max-width: none; /* senão a regra geral de img encolhe o recorte */
  }

  .final__curve {
    top: 40%;
    right: 2%;
    width: 30vw;
  }

  /* textos e botão empilhados embaixo */
  .final__text {
    left: 20px;
    bottom: 104px;
    max-width: 52%;
    font-size: 0.95rem;
  }

  .final__sign {
    right: 16px;
    bottom: 110px;
    font-size: 2.1rem;
  }

  .final__sign small {
    font-size: 0.55rem;
  }

  .final__cta {
    left: 20px;
    right: 20px;
    bottom: 28px;
    transform: none;
  }

  .final__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* celular: sem o botão "Vamos juntos"; frase e assinatura descem */
@media (max-width: 720px) {
  .final__cta {
    display: none;
  }

  /* assinatura em cima, frase embaixo, ambas centralizadas (sem sobrepor) */
  .final__sign {
    left: 0;
    right: 0;
    bottom: 96px;
    font-size: 2.3rem;
    transform: rotate(-4deg);
  }

  .final__text {
    left: 24px;
    right: 24px;
    bottom: 32px;
    max-width: none;
    text-align: center;
    font-size: 0.98rem;
  }
}

/* PLANOS — celular: cards lado a lado, arrasta para o lado (carrossel com "encaixe") */
@media (max-width: 640px) {
  .planos__grid {
    display: flex;
    gap: 14px;
    max-width: none;
    margin-inline: -20px; /* vai até a borda da tela */
    padding: 18px 20px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .planos__grid::-webkit-scrollbar {
    display: none;
  }

  .planos__grid .plan-card {
    flex: 0 0 78%; /* mostra um pedaço do próximo card, indicando que dá pra arrastar */
    scroll-snap-align: start;
  }

  /* com o carrossel, os cards já aparecem sem esperar a animação de rolagem */
  .planos__grid .plan-card.reveal {
    opacity: 1;
    transform: none;
  }
}

/* PLANOS — aviso "arraste" + bolinhas (só no celular) */
.planos__swipe {
  display: none;
}

@media (max-width: 640px) {
  .planos__swipe {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
  }

  .planos__swipe-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-offwhite-dim);
  }

  .planos__swipe-hint svg {
    width: 22px;
    height: 22px;
    color: var(--color-red-bright);
    animation: planos-swipe 1.6s ease-in-out infinite;
  }

  .planos__swipe-hint.is-done svg {
    animation: none;
  }

  @keyframes planos-swipe {
    0%, 100% { transform: translateX(6px) rotate(-8deg); }
    50%      { transform: translateX(-8px) rotate(-8deg); }
  }

  .planos__dots {
    display: flex;
    gap: 6px;
  }

  .planos__dots i {
    width: 6px;
    height: 6px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.25);
    transition: width var(--transition), background var(--transition);
  }

  .planos__dots i.is-active {
    width: 20px;
    background: var(--color-red-bright);
  }
}

/* --------------------------------------------------------------------------
   MÍDIA — botão ▶ nas fotos + popup do podcast
   -------------------------------------------------------------------------- */
/* Botão ▶ premium: anel de vidro fosco + círculo branco com o play,
   anel que se expande suavemente; no hover o centro fica vermelho */
.midia__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #0a0a0a;
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}

/* círculo branco interno */
.midia__play::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}

/* anel que se expande */
.midia__play::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  animation: midia-play-ring 2.6s cubic-bezier(0.2, 0.6, 0.3, 1) infinite;
  pointer-events: none;
}

@keyframes midia-play-ring {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.55); opacity: 0; }
}

.midia__play[hidden] {
  display: none;
}

.midia__play svg {
  /* o triângulo já está no centro óptico do desenho: sem deslocamento extra */
  position: relative;
  z-index: 1;
  display: block;
  width: 22px;
  height: 22px;
  transition: color 0.4s var(--ease);
}

.midia__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  border-color: rgba(227, 30, 36, 0.7);
  background: rgba(200, 20, 26, 0.25);
}

.midia__play:hover::before {
  background: var(--color-red-bright);
  transform: scale(1.04);
}

.midia__play:hover svg {
  color: #fff;
}

.midia__play:hover::after {
  border-color: rgba(227, 30, 36, 0.8);
}

@media (max-width: 640px) {
  .midia__play {
    width: 62px;
    height: 62px;
  }

  .midia__play::before {
    inset: 9px;
  }

  .midia__play svg {
    width: 17px;
    height: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .midia__play::after {
    animation: none;
  }
}

.pod-pop {
  width: min(960px, calc(100vw - 32px));
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.pod-pop::backdrop {
  background: rgba(0, 0, 0, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.pod-pop[open] {
  animation: visor-in 0.3s var(--ease);
}

.pod-pop__box {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: #0d0d0d;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(200, 20, 26, 0.15);
}

.pod-pop__media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: #000;
}

.pod-pop__media.is-audio {
  aspect-ratio: auto;
  height: 352px;
}

.pod-pop__media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.pod-pop__close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  background: #151515;
  cursor: pointer;
  transition: background var(--transition);
}

.pod-pop__close:hover {
  background: var(--color-red);
}

.pod-pop__close svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 640px) {
  .pod-pop__close {
    top: -52px;
    right: 0;
  }
}

.pod-pop__yt {
  display: block;
  padding: 12px 6px 4px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-offwhite-dim);
  transition: color var(--transition);
}

.pod-pop__yt:hover {
  color: var(--color-red-bright);
}

.pod-pop__yt[hidden] {
  display: none;
}

/* MÍDIA — celular: esconde a 3ª foto (mesmo episódio da foto 2) */
@media (max-width: 640px) {
  .midia__shot--3 {
    display: none;
  }
}

/* ==========================================================================
   PÁGINA TEAM (team.html) — apresentação, feed editorial e chamada final
   ========================================================================== */
.tpage {
  padding-top: var(--header-height);
  background:
    radial-gradient(ellipse 45% 35% at 100% 0%, rgba(200, 20, 26, 0.16), transparent 70%),
    radial-gradient(ellipse 35% 30% at 0% 40%, rgba(120, 10, 12, 0.14), transparent 70%),
    #050505;
}

.tpage .container {
  max-width: 1280px;
}

.tlabel {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* duas barrinhas inclinadas vermelhas */
.tlabel i {
  width: 16px;
  height: 12px;
  background: linear-gradient(90deg, var(--color-red-bright) 0 35%, transparent 35% 60%, var(--color-red-bright) 60%);
  transform: skewX(-22deg);
}

.ttitle {
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: #fff;
}

.ttitle span {
  color: var(--color-red-bright);
}

/* ---------- apresentação ---------- */
.thero {
  padding-block: clamp(48px, 7vw, 88px) clamp(36px, 5vw, 56px);
}

.thero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  padding-bottom: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.thero__text {
  max-width: 440px;
  margin-top: 24px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.tprofile {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px 26px;
  padding-left: clamp(0px, 4vw, 56px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.tprofile__avatar {
  display: grid;
  place-items: center;
  width: 118px;
  aspect-ratio: 1;
  padding: 4px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, var(--color-red-bright), #ff7a3d, var(--color-red-dark), var(--color-red-bright));
  box-shadow: 0 0 40px rgba(227, 30, 36, 0.25);
}

.tprofile__avatar img {
  width: 100%;
  height: 100%;
  padding: 18%;
  object-fit: contain;
  border-radius: 50%;
  border: 4px solid #050505;
  background: #0d0d0d;
}

.tprofile__user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.tprofile__user svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.tprofile__user:hover svg {
  color: var(--color-red-bright);
}

.tprofile__name {
  margin-top: 4px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.tprofile__bio {
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-offwhite-dim);
}

.tprofile__stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.tprofile__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 8px;
  font-size: 0.8rem;
  color: var(--color-offwhite-dim);
  text-align: center;
}

.tprofile__stats li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.tprofile__stats strong {
  font-size: 0.95rem;
  color: #fff;
}

.tprofile__follow {
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border: 1.5px solid var(--color-red-bright);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition);
}

.tprofile__follow > svg:first-child {
  width: 20px;
  height: 20px;
  color: var(--color-red-bright);
  transition: color var(--transition);
}

.tprofile__follow .btn__arrow {
  width: 16px;
  height: 16px;
  color: var(--color-red-bright);
}

.tprofile__follow:hover {
  background: var(--color-red);
  box-shadow: var(--shadow-red);
}

.tprofile__follow:hover svg {
  color: #fff !important;
}

/* ---------- filtros ---------- */
.tfeed {
  padding-bottom: clamp(56px, 8vw, 96px);
}

.tfilters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.tfilter {
  padding: 11px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  font: 700 0.74rem var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.tfilter:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.tfilter.is-active {
  border-color: var(--color-red);
  background: var(--color-red);
  color: #fff;
  box-shadow: 0 8px 24px rgba(227, 30, 36, 0.35);
}

/* ---------- grade de cards ---------- */
.tgrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.tcard {
  position: relative;
  grid-column: span 2;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: #0d0d0d;
  isolation: isolate;
  animation: tcard-in 0.5s var(--ease) both;
}

.tcard--big {
  grid-column: span 3;
  aspect-ratio: 8 / 7;
}

/* com filtro ativo, todos os cards ficam do mesmo tamanho */
.tgrid.is-filtered .tcard {
  grid-column: span 2;
  aspect-ratio: 4 / 5;
}

.tcard[hidden] {
  display: none;
}

@keyframes tcard-in {
  from { opacity: 0; transform: translateY(14px); }
}

.tcard img,
.tcard video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

/* gradiente escuro embaixo e leve em cima */
.tcard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 22%, transparent 48%, rgba(0, 0, 0, 0.92) 100%);
  transition: opacity 0.4s;
}

.tcard:hover img,
.tcard:hover video {
  transform: scale(1.05);
}

.tcard:hover {
  border-color: rgba(227, 30, 36, 0.45);
  box-shadow: 0 0 40px rgba(227, 30, 36, 0.12);
}

/* botão invisível que cobre o card inteiro (abre a foto / toca o vídeo) */
.tcard__hit {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.tcard--video .tcard__hit {
  cursor: pointer;
}

.tcard__hit:focus-visible {
  outline: 2px solid var(--color-red-bright);
  outline-offset: -4px;
  border-radius: 14px;
}

.tcard__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.tcard__tag svg {
  width: 15px;
  height: 15px;
  color: var(--color-red-bright);
}

.tcard__ig {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.85);
}

.tcard__ig svg {
  width: 100%;
  height: 100%;
}

.tcard__caption {
  position: absolute;
  left: 18px;
  right: 60px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tcard__caption strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.tcard--big .tcard__caption strong {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.tcard__caption small {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

.tcard__arrow {
  position: absolute;
  right: 16px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.tcard__arrow svg {
  width: 16px;
  height: 16px;
}

.tcard:hover .tcard__arrow {
  background: var(--color-red);
  border-color: var(--color-red);
  transform: translateX(3px);
}

/* vídeo: play no meio enquanto parado */
.tcard__play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: opacity 0.3s;
}

.tcard__play::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #fff;
}

.tcard__play svg {
  position: relative;
  width: 20px;
  height: 20px;
  color: #0a0a0a;
}

.tcard--video:not(.is-paused) .tcard__play {
  opacity: 0;
}

.tcard--video:not(.is-paused)::after {
  opacity: 0.4;
}

/* ---------- chamada final ---------- */
.tcta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 9vw, 110px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 60% 90% at 90% 50%, rgba(200, 20, 26, 0.35), transparent 70%),
    #070707;
  isolation: isolate;
}

.tcta__bg {
  position: absolute;
  inset: 0 0 0 40%;
  z-index: -1;
}

.tcta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2) brightness(0.55);
  mix-blend-mode: luminosity;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 45%);
  mask-image: linear-gradient(90deg, transparent, #000 45%);
}

/* tom vermelho sobre a foto */
.tcta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #070707 0%, rgba(120, 10, 12, 0.35) 55%, rgba(200, 20, 26, 0.25) 100%);
  mix-blend-mode: multiply;
}

.tcta__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}

.tcta__side {
  padding-left: clamp(0px, 4vw, 48px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.tcta__side p {
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.tcta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tcta__btns .btn {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tcta__wa {
  border-color: var(--color-red-bright);
  background: rgba(5, 5, 5, 0.6);
}

.tcta__wa svg {
  width: 18px;
  height: 18px;
}

/* ---------- tablet ---------- */
@media (max-width: 1023px) {
  .thero__grid {
    grid-template-columns: 1fr;
  }

  .tprofile {
    padding-left: 0;
    padding-top: 32px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .tgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tcard,
  .tcard--big,
  .tgrid.is-filtered .tcard {
    grid-column: span 1;
    aspect-ratio: 4 / 5;
  }

  .tcard--big {
    grid-column: span 2;
    aspect-ratio: 16 / 11;
  }

  .tcta__grid {
    grid-template-columns: 1fr;
  }

  .tcta__side {
    padding-left: 0;
    border-left: 0;
  }

  .tcta__bg {
    inset: 0;
  }
}

/* ---------- celular ---------- */
@media (max-width: 640px) {
  .ttitle {
    font-size: 11vw;
  }

  .tprofile {
    grid-template-columns: auto 1fr;
    gap: 18px 16px;
  }

  .tprofile__avatar {
    width: 88px;
  }

  .tprofile__user {
    font-size: 1.05rem;
  }

  .tprofile__stats li {
    font-size: 0.72rem;
  }

  .tprofile__stats strong {
    font-size: 0.82rem;
  }

  .tprofile__follow {
    width: 100%;
    justify-content: center;
  }

  /* filtros arrastáveis numa linha só */
  .tfilters {
    flex-wrap: nowrap;
    margin-inline: -20px;
    padding-inline: 20px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .tfilters::-webkit-scrollbar {
    display: none;
  }

  .tfilter {
    flex: none;
    padding: 10px 18px;
  }

  .tgrid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tcard,
  .tcard--big,
  .tgrid.is-filtered .tcard {
    grid-column: span 1;
    aspect-ratio: 4 / 5;
  }

  .tcta__btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Avatar como "story" do Instagram: anel colorido girando + etiqueta */
.tprofile__story {
  position: relative;
  isolation: isolate;
  background: none;
  text-decoration: none;
  transition: transform 0.35s var(--ease);
}

.tprofile__story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #feda75, #fa7e1e, #d62976, #962fbf, #e31e24, #feda75);
  animation: story-spin 4s linear infinite;
}

.tprofile__story:hover {
  transform: scale(1.05);
}

.tprofile__story:hover::before {
  animation-duration: 1.4s;
}

@keyframes story-spin {
  to { transform: rotate(360deg); }
}

.tprofile__story-tag {
  position: absolute;
  left: 50%;
  bottom: -8px;
  padding: 3px 10px;
  border: 2px solid #050505;
  border-radius: 6px;
  background: linear-gradient(90deg, #d62976, #e31e24);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .tprofile__story::before {
    animation: none;
  }
}

/* TEAM — celular: perfil (story) em cima, título embaixo */
@media (max-width: 640px) {
  .thero__grid {
    gap: 28px;
  }

  .tprofile {
    order: -1;
    padding-top: 0;
    padding-bottom: 28px;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .tprofile__stats strong {
    white-space: nowrap;
  }
}

/* Story mais chamativo: maior, anel mais grosso, brilho pulsando e etiqueta "● VER STORIES" */
.tprofile__story {
  width: 136px;
  padding: 5px;
}

/* halo colorido que pulsa em volta, chamando o clique */
.tprofile__story::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #feda75, #fa7e1e, #d62976, #962fbf, #e31e24, #feda75);
  filter: blur(14px);
  opacity: 0.55;
  animation: story-glow 2.2s ease-in-out infinite;
}

@keyframes story-glow {
  0%, 100% { opacity: 0.35; transform: scale(0.96); }
  50%      { opacity: 0.8;  transform: scale(1.12); }
}

.tprofile__story img {
  border-width: 5px;
}

.tprofile__story-tag {
  bottom: -12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 3px solid #050505;
  border-radius: 999px;
  background: linear-gradient(90deg, #d62976, #e31e24 60%, #fa7e1e);
  box-shadow: 0 6px 18px rgba(214, 41, 118, 0.45);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

/* bolinha branca piscando, como "ao vivo" */
.tprofile__story-tag i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: story-dot 1.2s ease-in-out infinite;
}

@keyframes story-dot {
  50% { opacity: 0.25; }
}

.tprofile__story:hover .tprofile__story-tag {
  background: linear-gradient(90deg, #e31e24, #fa7e1e);
}

@media (max-width: 640px) {
  .tprofile__story {
    width: 112px;
    padding: 4px;
  }

  .tprofile__story img {
    border-width: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tprofile__story::after,
  .tprofile__story-tag i {
    animation: none;
  }
}
