/* ── KEYFRAMES ───────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 195, 6, 0); }
  50%       { box-shadow: 0 0 0 6px rgba(255, 195, 6, 0.12); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes glow-line {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
}

:root {
  --black: #050709;
  --graphite: #0c1116;
  --graphite-2: #121a20;
  --sand: #ffe580;
  --gold: #ffc306;
  --gold-light: #ffd740;
  --gold-deep: #d4a400;
  --blue: #0e5f86;
  --ocean: #24a1ba;
  --white: #F5F5F5;
  --muted: rgba(245, 245, 245, 0.7);
  --line: rgba(245, 245, 245, 0.14);
  --gold-line: rgba(255, 195, 6, 0.34);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --display: "Bebas Neue", "Anton", "Oswald", "Montserrat", sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 56px);
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.site-nav.is-scrolled {
  padding-block: 14px;
  background: rgba(5, 7, 9, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}

.nav-menu {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.nav-menu a {
  color: rgba(248, 242, 232, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--gold-light);
}

.nav-menu .nav-cta {
  color: var(--black);
  background: linear-gradient(135deg, var(--sand), var(--gold));
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  background: rgba(5, 7, 9, 0.45);
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 7px 9px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  opacity: 0.4;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.lang-btn img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.lang-btn:hover {
  opacity: 0.8;
}

.lang-btn.active {
  opacity: 1;
  background: rgba(255, 195, 6, 0.16);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(5, 7, 9, 0.42);
  color: var(--white);
  cursor: pointer;
  place-items: center;
  gap: 4px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

/* =============================================
   HERO - Cinematic Sports Poster
   Sunset aerial + ghost grapplers (baked into composite)
   Erich (white) IN FRONT of Fábio (black)
   ============================================= */

.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100svh;
  overflow: hidden;
  overflow-x: hidden;
  isolation: isolate;
  background: #0a0604;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Base image - atletas + sunset + ghost grapplers já compostos.
   object-fit: cover escala harmonicamente com o viewport em qualquer zoom. */
.hero-bg__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Cinematic wash - leve à esquerda (preserva atletas/sunset), grade à direita p/ texto */
.hero-bg__tone {
  position: absolute;
  inset: 0;
  background:
    /* Horizontal: protege metade esquerda (atletas), grade suave centro-direita p/ legibilidade */
    linear-gradient(90deg,
      rgba(5, 7, 9, 0.10) 0%,
      transparent 18%,
      transparent 48%,
      rgba(5, 7, 9, 0.35) 62%,
      rgba(5, 7, 9, 0.55) 80%,
      rgba(5, 7, 9, 0.62) 100%),
    /* Vertical: fade bottom dissolve para bg da próxima seção (#0c1116) */
    linear-gradient(180deg,
      rgba(5, 7, 9, 0.35) 0%,
      transparent 15%,
      transparent 50%,
      rgba(10, 14, 18, 0.55) 68%,
      rgba(12, 17, 22, 0.88) 82%,
      rgba(12, 17, 22, 1) 94%);
  pointer-events: none;
}

/* HERO INNER - full-bleed com padding vw p/ escalar com zoom */
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding:
    clamp(80px, 8vw, 150px)
    clamp(20px, 4vw, 80px)
    clamp(140px, 18vw, 260px);
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: clamp(280px, 38vw, 660px);
  text-align: left;
  padding-bottom: 0;
}

.hero-eyebrow {
  margin: 0 0 clamp(4px, 0.5vw, 10px);
  font-family: var(--display);
  font-size: clamp(14px, 1.4vw, 26px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
}

.hero-svg-title {
  display: block;
  width: 100%;
  margin-bottom: clamp(12px, 1.4vw, 24px);
}

.hero-svg-title svg {
  width: 100%;
  height: auto;
  display: block;
}

.kicker,
.eyebrow,
.panel-label,
.coach-role,
.package-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-light) 40%,
    #fff8c0 55%,
    var(--gold-light) 70%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 4s linear infinite;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.kicker-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 195, 6, 0.2);
}

/* ── HERO TITLE - Bebas Neue, cinematic display ─────── */
.hero-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0.01em;
}

.hero-title__line1,
.hero-title__line2 {
  display: block;
}

.hero-title__line1 {
  font-size: clamp(40px, 6.5vw, 220px);
  color: var(--white);
  letter-spacing: 0.02em;
  text-shadow: 0 0.4vw 1.6vw rgba(0, 0, 0, 0.55);
}

.hero-title__line2 {
  font-size: clamp(54px, 8.75vw, 300px);
  letter-spacing: 0.01em;
  margin-top: 0.04em;
  background: linear-gradient(180deg,
    var(--gold-light) 0%,
    var(--gold) 48%,
    var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0.6vw 1.8vw rgba(255, 195, 6, 0.22));
}

.hero-logo {
  display: block;
  width: clamp(240px, 44vw, 500px);
  height: auto;
  margin-bottom: clamp(16px, 2.4vw, 36px);
  filter: drop-shadow(0 4px 28px rgba(0, 0, 0, 0.65));
}

/* ── BJJ CAMP - hero headline ────────────────────── */
.hero-bjj-camp {
  display: block;
  margin: 0 0 clamp(14px, 2vw, 32px);
  font-family: var(--display);
  font-size: clamp(52px, 11vw, 148px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.03em;
  color: #1A6EDE;
  -webkit-text-stroke: clamp(2px, 0.28vw, 4px) var(--gold);
  text-shadow:
    3px 3px 0px #003A99,
    6px 6px 10px rgba(0, 0, 0, 0.45);
}

.hero-rule { display: none; }

/* ── COACHES NAMES ────────────────────────────────────── */
.hero-names {
  margin: clamp(18px, 1.8vw, 48px) 0 0;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 1.1vw, 34px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0.15vw 0.8vw rgba(0, 0, 0, 0.55);
}

/* ── META: LOCATION + DATE ────────────────────────────── */
.hero-meta {
  margin: clamp(12px, 1.2vw, 32px) 0 0;
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.4vw, 10px);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(11px, 0.85vw, 28px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-location {
  color: var(--gold);
}

.hero-date {
  color: var(--white);
  opacity: 0.92;
}

/* ── ACTIONS ─────────────────────────────────────────── */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1vw, 28px);
  margin-top: clamp(28px, 3vw, 72px);
}

.hero-actions .button {
  min-height: clamp(44px, 3.2vw, 88px);
  padding: 0 clamp(20px, 1.9vw, 56px);
  font-size: clamp(11px, 0.78vw, 22px);
  border-radius: clamp(6px, 0.45vw, 14px);
  gap: clamp(10px, 0.9vw, 26px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, gap 0.25s ease, color 0.2s, box-shadow 0.22s ease;
}

.button svg { transition: transform 0.25s ease; }
.button:hover { transform: translateY(-2px); gap: 16px; }
.button:hover svg { transform: translateX(3px); }

.button-primary {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 14px 36px rgba(255, 195, 6, 0.32);
}

.button-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button-secondary {
  background: rgba(5, 7, 9, 0.32);
  color: var(--gold);
  border-color: var(--gold);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.button-secondary:hover {
  background: rgba(255, 195, 6, 0.14);
}

/* ── SCROLL CUE ──────────────────────────────────────── */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 36px;
  height: 36px;
  transform: translateX(-50%);
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: cueBob 2.4s ease-in-out infinite;
}

.scroll-cue span {
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg) translateY(-2px);
}

@keyframes cueBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── STAGGER ENTRANCE - experience cards ─────────────── */
.experience-card:nth-child(1) { animation-delay: 0.05s; }
.experience-card:nth-child(2) { animation-delay: 0.12s; }
.experience-card:nth-child(3) { animation-delay: 0.19s; }
.experience-card:nth-child(4) { animation-delay: 0.26s; }
.experience-card:nth-child(5) { animation-delay: 0.33s; }
.experience-card:nth-child(6) { animation-delay: 0.40s; }

.experience-grid.is-revealed .experience-card {
  animation: fadeSlideUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── RESPONSIVE: TABLET (≤1024px) ────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    padding:
      clamp(80px, 9vw, 120px)
      clamp(20px, 4vw, 56px)
      clamp(70px, 8vw, 100px);
  }

  /* Em tablet o vw já produz tamanhos confortáveis;
     deixa o clamp do desktop continuar a escalar harmonicamente */
  .hero-title__line1 { font-size: clamp(46px, 7.4vw, 220px); }
  .hero-title__line2 { font-size: clamp(62px, 10vw, 300px); }
}

/* ──────────────────────────────────────────────────────
   MOBILE HERO REBUILD (≤768px) - mobile-first composition
   Desktop intacto. Tudo contido em 100vw, sem scroll horizontal.
   ────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* - Container: confinado em 100vw, sem overflow lateral - */
  .hero {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    overflow-x: hidden;
    min-height: 100svh;
  }

  /* - BG image: cover + centered, jamais overflow - */
  .hero-bg {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-bg__image {
    width: 100%;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  /* - Wash mobile: respira atleta no topo, escurece pé p/ texto - */
  .hero-bg__tone {
    background:
      linear-gradient(180deg,
        rgba(5, 7, 9, 0.45) 0%,
        rgba(5, 7, 9, 0.12) 14%,
        transparent 30%,
        rgba(5, 7, 9, 0.38) 56%,
        rgba(5, 7, 9, 0.78) 80%,
        rgba(5, 7, 9, 0.94) 100%);
  }

  /* - Hero inner: flex column, copy no terço inferior - */
  .hero-inner {
    width: 100%;
    max-width: 100vw;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding:
      clamp(80px, 14vw, 110px)
      clamp(16px, 5vw, 24px)
      clamp(120px, 22vw, 160px);
    gap: 0;
    grid-template-columns: none;
  }

  /* - Text block: centralizado, contido em 85vw - */
  .hero-copy {
    width: 100%;
    max-width: 85vw;
    text-align: center;
    padding: 0;
    margin: 0 auto;
  }

  .hero-bjj-camp {
    font-size: clamp(44px, 14vw, 96px);
    -webkit-text-stroke: 2px var(--gold);
    text-shadow: 2px 2px 0px #003A99, 4px 4px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.02em;
    margin-bottom: clamp(10px, 3vw, 18px);
  }

  .hero-logo {
    width: clamp(210px, 76vw, 360px);
    margin-left: auto;
    margin-right: auto;
  }

  /* - Title: clamp suggested by spec, line-height tight - */
  .hero-title {
    line-height: 0.9;
    letter-spacing: 0.01em;
  }

  .hero-title__line1 {
    font-size: clamp(3rem, 10vw, 5rem);
    color: var(--white);
    text-shadow: 0 0.4vw 1.6vw rgba(0, 0, 0, 0.55);
    overflow-wrap: break-word;
  }

  .hero-title__line2 {
    font-size: clamp(4rem, 13vw, 7rem);
    margin-top: 0.04em;
    overflow-wrap: break-word;
  }

  /* - Coaches name: centered, contained - */
  .hero-names {
    margin-top: clamp(14px, 3vw, 22px);
    font-size: clamp(0.75rem, 2.6vw, 0.95rem);
    letter-spacing: 0.16em;
    text-align: center;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  /* - Meta (location + date): centered column - */
  .hero-meta {
    margin-top: clamp(10px, 2vw, 16px);
    align-items: center;
    text-align: center;
    font-size: clamp(0.68rem, 2.2vw, 0.82rem);
    letter-spacing: 0.22em;
    gap: clamp(3px, 0.8vw, 6px);
  }

  /* - Actions: stacked column, centralized, max 320px - */
  .hero-actions {
    width: 100%;
    max-width: 320px;
    margin: clamp(22px, 4vw, 32px) auto 0;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
    padding: 0 22px;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    border-radius: 8px;
    gap: 10px;
  }

  /* Scroll cue gets in the way on mobile */
  .scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none; }
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 122px) clamp(20px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.experience {
  border-top: none;
  margin-top: -80px;
  padding-top: calc(clamp(40px, 5vw, 72px) + 80px);
  background:
    radial-gradient(circle at 80% 30%, rgba(14, 95, 134, 0.12), transparent 40%),
    var(--graphite);
}

.section:nth-of-type(even) {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 195, 6, 0.09), transparent 34%),
    var(--black);
}

.section-intro,
.experience-grid,
.coach-grid,
.timeline,
.package-grid,
.faq-grid,
.form-shell {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.section-intro {
  max-width: 720px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.section-intro--split {
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: 34px;
}

.section h2 {
  margin: 8px 0 0;
  max-width: 760px;
  font-size: clamp(26px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: break-word;
}

.section-intro p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 560px;
}

/* ── EXPERIENCE GRID - 3 colunas com hover Netflix ───── */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
}

.experience-card {
  aspect-ratio: 4 / 5;
  min-height: 360px;
  padding: clamp(16px, 1.8vw, 24px);
  border: 1px solid rgba(248, 242, 232, 0.12);
  background-color: rgba(255, 255, 255, 0.025);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
  transform-origin: center center;
  transition:
    transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.38s ease,
    box-shadow 0.38s ease,
    z-index 0s 0.38s;
  z-index: 1;
}

.experience-card:hover {
  border-color: rgba(255, 195, 6, 0.5);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 195, 6, 0.18),
    0 0 50px rgba(255, 195, 6, 0.07);
  transform: scale(1.06) translateY(-6px);
  transition:
    transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.38s ease,
    box-shadow 0.38s ease,
    z-index 0s 0s;
  z-index: 10;
}

/* cards das bordas expandem para dentro */
.experience-card:nth-child(3n+1) { transform-origin: left center; }
.experience-card:nth-child(3n)   { transform-origin: right center; }

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5, 7, 9, 0.04) 0%,
      rgba(5, 7, 9, 0.04) 40%,
      rgba(5, 7, 9, 0.78) 72%,
      rgba(5, 7, 9, 0.97) 100%);
  pointer-events: none;
  transition: background 0.38s ease;
}

.experience-card:hover::before {
  background:
    linear-gradient(180deg,
      rgba(5, 7, 9, 0.18) 0%,
      rgba(5, 7, 9, 0.08) 35%,
      rgba(5, 7, 9, 0.82) 68%,
      rgba(5, 7, 9, 0.98) 100%);
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
  transition: border-color 0.38s ease;
}

.experience-card:hover::after {
  border-color: rgba(255, 195, 6, 0.15);
}

.card-photo--training {
  background-image: url("assets/photos/card-treino-desktop.webp");
}

.card-photo--recovery {
  background-image: url("assets/photos/recovery_new.jpeg");
}

.card-photo--tourism {
  background-image: url("assets/photos/card-turismo-desktop.webp");
}

/* TODO: trocar a imagem para a do Capofit quando o cliente enviar */
.card-photo--capofit {
  background-image: url("assets/photos/card-network-desktop.webp");
}

.card-photo--five {
  background-image: url("assets/photos/card-five-desktop.webp");
}

.card-photo--churrasco {
  background-image: url("assets/photos/card-churrasco-desktop.webp");
}

.experience-card span,
.experience-card h3,
.experience-card p {
  position: relative;
}

.experience-card span {
  position: absolute;
  top: clamp(18px, 2vw, 26px);
  left: clamp(18px, 2vw, 26px);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.experience-card h3 {
  margin: 10px 0 0;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 0.92;
  text-transform: uppercase;
  transition: transform 0.38s ease;
}

.experience-card:hover h3 {
  transform: translateY(-4px);
}

.experience-card p {
  margin: 0;
  max-width: 31ch;
  color: rgba(248, 242, 232, 0.82);
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.32s ease 0.06s, transform 0.32s ease 0.06s;
  max-height: 0;
  overflow: hidden;
}

.experience-card:hover p {
  opacity: 1;
  transform: translateY(0);
  max-height: 100px;
}

/* Plaquinha "by Studio Mormaii Floripa" — aparece junto com o texto */
.card-plate {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  opacity: 0;
  transform: translateY(-42px);
  transition: opacity 0.45s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.experience-card:hover .card-plate,
.experience-card.is-in-view .card-plate {
  opacity: 1;
  transform: translateY(0);
}

.card-plate__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 7px 13px;
  border-radius: 9px;
  background: rgba(5, 7, 9, 0.78);
  border: 1px solid var(--gold-line);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
  transform: rotate(-7deg);
  transform-origin: top center;
}

.experience-card:hover .card-plate__inner,
.experience-card.is-in-view .card-plate__inner {
  animation: cardPlateSway 3s ease-in-out 0.55s infinite;
}

@keyframes cardPlateSway {
  0%, 100% { transform: rotate(-7deg); }
  25% { transform: rotate(-11deg); }
  75% { transform: rotate(-3deg); }
}

.card-plate__l1 {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.card-plate__by {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.card-plate__main {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-plate__sub {
  color: #fff;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .card-plate,
  .card-plate__inner {
    transition: none;
    animation: none;
  }
}

.coach-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.coach-card,
.package-card,
.timeline article,
.faq details,
.form-shell {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.coach-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 520px;
  overflow: hidden;
}

.coach-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
}

/* PNG recortado (fundo transparente) - body inteiro visível + gradient atmosférico atrás */
.coach-card__img--cutout {
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.6))
          drop-shadow(0 0 24px rgba(255, 195, 6, 0.18))
          contrast(1.05);
  background:
    radial-gradient(ellipse 70% 60% at 50% 70%,
      rgba(255, 195, 6, 0.18) 0%,
      rgba(255, 195, 6, 0.06) 35%,
      transparent 65%),
    linear-gradient(180deg,
      rgba(15, 22, 30, 0.55) 0%,
      rgba(5, 7, 9, 0.85) 55%,
      rgba(5, 7, 9, 0.95) 100%);
}

/* Placeholder pra coaches sem foto ainda - mesma área da img, atmosférico */
.coach-card__photo-pending {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(ellipse 65% 55% at 50% 50%,
      rgba(255, 195, 6, 0.12) 0%,
      rgba(255, 195, 6, 0.04) 38%,
      transparent 70%),
    linear-gradient(180deg,
      rgba(15, 22, 30, 0.7) 0%,
      rgba(5, 7, 9, 0.95) 60%,
      rgba(5, 7, 9, 1) 100%);
  border-right: 1px solid var(--gold-line);
}

.coach-card__photo-pending span {
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: rgba(5, 7, 9, 0.55);
}

.coach-card div {
  padding: clamp(26px, 4vw, 42px);
  display: flex;
  flex-direction: column;
}

.coach-card--primary {
  grid-template-columns: 40% 1fr;
}

.coach-card--primary div {
  padding: clamp(20px, 3vw, 34px);
}

.coach-card--primary li {
  font-size: 13px;
  line-height: 1.4;
}

.coach-card h3,
.package-card h3 {
  margin: 8px 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.95;
  text-transform: uppercase;
}

.coach-card h3 {
  font-size: clamp(22px, 2.5vw, 36px);
  overflow-wrap: break-word;
}

.coach-card ul,
.package-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.coach-card li,
.package-card li {
  position: relative;
  padding-left: 18px;
}

.coach-card li::before,
.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  padding: clamp(24px, 3vw, 34px);
}

.timeline span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.timeline h3 {
  margin: 28px 0 10px;
  font-size: 26px;
  text-transform: uppercase;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.package-card {
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
}

.package-card--featured {
  border-color: var(--gold-line);
  background:
    linear-gradient(145deg, rgba(255, 195, 6, 0.11), transparent 44%),
    rgba(255, 255, 255, 0.025);
}

.package-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.package-card > p:not(.package-tag) {
  margin: 0 0 24px;
  color: var(--muted);
}

.package-card ul,
.coach-card ul {
  padding-bottom: clamp(20px, 2.5vw, 36px);
}

.package-card .button {
  width: 100%;
  margin-top: auto;
}

.faq-grid {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.faq details {
  padding: 22px 24px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.faq p {
  margin: 14px 0 0;
  color: var(--muted);
}

.faq-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.faq-list li {
  position: relative;
  padding-left: 18px;
}

.faq-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.form-section {
  background:
    linear-gradient(rgba(5, 7, 9, 0.78), rgba(5, 7, 9, 0.9)),
    url("assets/photos/floripa-aerial.webp") center / cover fixed;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 58px);
  padding: clamp(28px, 5vw, 54px);
  backdrop-filter: blur(16px);
  background: rgba(5, 7, 9, 0.62);
}

.form-shell h2 {
  margin: 8px 0 12px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.96;
  text-transform: uppercase;
}

.form-shell p {
  color: var(--muted);
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input {
  min-height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0 14px;
  outline: none;
  font-weight: 400;
}

input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 195, 6, 0.12);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

/* ── intl-tel-input - override pro design dark do form ──────────── */
.iti {
  width: 100%;
  display: block;
}

.iti input[type="tel"] {
  width: 100%;
  padding-left: 86px !important;
}

.iti__flag-container {
  background: rgba(255, 255, 255, 0.06);
  border-right: 1px solid var(--line);
}

.iti__selected-flag {
  padding: 0 12px 0 14px;
}

.iti__selected-flag:hover,
.iti__selected-flag:focus {
  background: rgba(255, 255, 255, 0.08);
}

.iti__country-list {
  background: rgba(12, 17, 22, 0.98);
  color: var(--white);
  border: 1px solid var(--gold-line);
  max-height: 240px;
  font-size: 14px;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background: rgba(255, 195, 6, 0.18);
}

.iti__divider {
  border-bottom-color: var(--gold-line);
}

.iti__dial-code {
  color: var(--gold);
}

.iti__search-input {
  color: var(--black);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
}

.iti__search-input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.form-error {
  color: #ff9a9a;
  margin: 0;
}

.form-success {
  align-self: center;
}

.form-success h3 {
  margin: 0 0 10px;
  font-size: 32px;
  text-transform: uppercase;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 5vw, 58px);
  border-top: 1px solid var(--line);
  background: var(--black);
  color: rgba(248, 242, 232, 0.6);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__logo {
  width: clamp(120px, 14vw, 168px);
  height: auto;
}

.footer__tagline {
  margin: 0;
  max-width: 230px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.footer__right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 6vw, 80px);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__title {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer a {
  color: rgba(248, 242, 232, 0.82);
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--gold);
}

.footer__lgpd {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: rgba(248, 242, 232, 0.42);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== Banner de cookies (consentimento LGPD) ===== */
.cookie-banner {
  position: fixed;
  left: clamp(12px, 3vw, 24px);
  right: clamp(12px, 3vw, 24px);
  bottom: clamp(12px, 3vw, 24px);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 940px;
  margin-inline: auto;
  padding: 16px 20px;
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  background: rgba(12, 17, 22, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__text {
  margin: 0;
  flex: 1 1 280px;
  color: rgba(245, 245, 245, 0.82);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-banner__text a {
  color: var(--gold);
  white-space: nowrap;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  border-radius: 8px;
  padding: 10px 22px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-banner__btn--ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
}

.cookie-banner__btn--ghost:hover {
  color: var(--white);
  border-color: var(--muted);
}

.cookie-banner__btn--accept {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--black);
}

.cookie-banner__btn--accept:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

@media (max-width: 560px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 12px;
    padding: 13px 15px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .cookie-banner__text {
    flex: none;
    font-size: 12px;
    line-height: 1.4;
  }
  .cookie-banner__actions {
    justify-content: center;
    gap: 8px;
  }
  .cookie-banner__btn {
    flex: 1;
    padding: 9px 14px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 880px) {
  .site-nav {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .nav-menu {
    position: fixed;
    inset: 74px 14px auto;
    display: none;
    padding: 20px;
    background: rgba(5, 7, 9, 0.94);
    border: 1px solid var(--line);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: stretch;
    z-index: 30;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a,
  .nav-menu .nav-cta {
    padding: 14px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: center;
    gap: clamp(20px, 2.6vw, 36px);
  }

  .hero-visual {
    width: min(620px, 100%);
    min-height: 560px;
    margin-top: 72px;
  }

  .hero-portrait--primary {
    left: 128px;
    width: min(58vw, 380px);
    height: 540px;
  }

  /* Old hero design rules - superseded by ≤900px mobile block. Kept for safety. */
  .hero-copy {
    grid-column: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  /* hero-bg__image + hero-bg__tone overrides removed -
     o bloco ≤900px (acima neste arquivo) já trata o mobile;
     manter aqui causaria conflito de cascade */

  .hero-panel {
    position: static;
    margin: -32px 0 72px;
    width: min(100% - 40px, 620px);
  }

  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .experience-card {
    min-height: 320px;
  }

  .section-intro--split,
  .coach-grid,
  .timeline,
  .package-grid,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .coach-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-nav {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 8px;
  }

  .brand {
    margin-right: auto;
  }

  .brand-logo {
    height: 38px;
  }

  .lang-switch {
    display: flex;
    position: fixed;
    top: 16px;
    right: auto;
    left: clamp(205px, 67vw, 268px);
    z-index: 31;
    width: 58px;
    flex: 0 0 auto;
    justify-self: end;
    order: 2;
  }

  .lang-btn {
    width: 29px;
    padding: 7px 0;
    justify-content: center;
  }

  .lang-btn img {
    width: 20px;
    height: 14px;
  }

  .menu-toggle {
    position: fixed;
    top: 16px;
    right: auto;
    left: clamp(274px, 82vw, 334px);
    z-index: 32;
    flex: 0 0 auto;
    order: 3;
    width: 38px;
    height: 38px;
    padding: 9px;
  }

  /* Hero ≤620px - governado totalmente pelo bloco ≤768px (mobile rebuild).
     Aqui só removemos elementos de hero design antigo que ainda existam. */
  .hero-panel {
    display: none;
  }

  .scroll-cue {
    position: static;
    margin: 0 auto 10px;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .experience {
    padding-top: 34px;
  }

  .experience .section-intro {
    margin-bottom: 18px;
  }

  .experience .section-intro h2 {
    font-size: 25px;
    line-height: 1.08;
  }

  .experience .section-intro p:last-child {
    display: none;
  }

  .experience-card {
    aspect-ratio: 4 / 5;
    min-height: 360px;
    padding: clamp(18px, 5vw, 26px);
  }

  .experience-card:hover {
    box-shadow: none;
    transform: none;
  }

  .card-photo--training {
    background-image: url("assets/photos/card-treino-mobile.webp");
  }

  .card-photo--recovery {
    background-image: url("assets/photos/recovery_new.jpeg");
  }

  .card-photo--five {
    background-image: url("assets/photos/card-five-desktop.webp");
  }

  .card-photo--capofit {
    background-image: url("assets/photos/card-network-mobile.webp");
  }

  .card-photo--tourism {
    background-image: url("assets/photos/card-turismo-mobile.webp");
  }

  .card-photo--churrasco {
    background-image: url("assets/photos/card-churrasco-mobile.webp");
  }

  .experience-card span {
    font-size: 12px;
  }

  .experience-card h3 {
    font-size: clamp(22px, 6.5vw, 30px);
    line-height: 0.95;
    margin: 10px 0 8px;
  }

  .experience-card p {
    display: block;
    font-size: 14px;
    line-height: 1.45;
    max-width: 38ch;
  }

  /* Efeito por card: quando o card está no viewport, h3 sobe e p aparece;
     ao sair, desfaz. JS adiciona/remove .is-in-view via IntersectionObserver. */
  .experience-card p {
    transition:
      opacity 0.45s ease,
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      max-height 0.5s ease;
  }

  .experience-card.is-in-view h3 {
    transform: translateY(-8px);
  }

  .experience-card.is-in-view p {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
  }

  .coach-card {
    grid-template-columns: 1fr;
  }

  .coach-card img {
    height: 360px;
    object-position: center top;
  }

  .coach-card__img--cutout {
    object-fit: cover;
    object-position: center top;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    justify-items: center;
  }

  .footer__left {
    align-items: center;
  }

  .footer__tagline {
    max-width: 280px;
  }

  .footer__cols {
    justify-content: center;
    gap: 40px;
  }

  .footer__col {
    align-items: center;
  }

  .footer__lgpd {
    margin-inline: auto;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
}

/* ── iPhone SE / telas ≤ 390px ───────────────────── */
@media (max-width: 390px) {
  .section {
    padding-inline: clamp(14px, 4vw, 20px);
  }

  .section h2 {
    font-size: clamp(22px, 8vw, 32px);
  }

  .section-intro p:last-child {
    font-size: 13px;
  }

  .experience-card h3 {
    font-size: clamp(20px, 7vw, 26px);
  }

  .coach-card div {
    padding: 18px 16px;
  }

  .package-card {
    padding: 22px 18px;
  }

  .form-shell {
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Coach Modal ─────────────────────────────────── */
.coach-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.coach-modal[hidden] { display: none; }

.coach-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 9, 0.88);
  backdrop-filter: blur(6px);
}

.coach-modal__panel {
  position: relative;
  background: var(--graphite);
  border: 1px solid var(--line);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.coach-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.coach-modal__close:hover { color: var(--white); }

.coach-modal__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin: 0 0 24px;
  line-height: 1;
}

.coach-modal__body p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.coach-modal__body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 8px;
}

.coach-modal__body li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.coach-modal__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.coach-modal__close-bottom {
  display: block;
  margin: 32px auto 0;
  background: none;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 32px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.coach-modal__close-bottom:hover {
  background: var(--gold);
  color: var(--graphite);
}

/* ─── Botão Saiba mais ────────────────────────────── */
.coach-more-btn {
  margin-top: auto;
  background: none;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.coach-more-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── COACH CARDS - stagger entrance ──────────────────── */
.coach-grid.is-revealed .coach-card:nth-child(1) { animation: fadeSlideUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both; }
.coach-grid.is-revealed .coach-card:nth-child(2) { animation: fadeSlideUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both; }
.coach-grid.is-revealed .coach-card:nth-child(3) { animation: fadeSlideUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both; }
.coach-grid.is-revealed .coach-card:nth-child(4) { animation: fadeSlideUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.46s both; }

/* ── COACH CARDS - hover ──────────────────────────────── */
.coach-card {
  position: relative;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.coach-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 195, 6, 0.38);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 195, 6, 0.12);
}

/* Linha gold que expande pelo rodapé no hover */
.coach-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-light));
  transition: width 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.coach-card:hover::after { width: 100%; }

/* Imagem: scale sutil no hover */
.coach-card img {
  transition: transform 0.5s ease, filter 0.5s ease;
}

.coach-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.08) brightness(1.04);
}

/* Nome: glow dourado no hover */
.coach-card h3 {
  transition: text-shadow 0.35s ease;
}

.coach-card:hover h3 {
  text-shadow: 0 0 40px rgba(255, 195, 6, 0.22);
}

/* Stats: deslizam da esquerda em cascata no hover */
.coach-card li {
  opacity: 0.72;
  transform: translateX(-4px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.coach-card:hover li { opacity: 1; transform: translateX(0); }
.coach-card:hover li:nth-child(1) { transition-delay: 0s; }
.coach-card:hover li:nth-child(2) { transition-delay: 0.04s; }
.coach-card:hover li:nth-child(3) { transition-delay: 0.08s; }
.coach-card:hover li:nth-child(4) { transition-delay: 0.12s; }
.coach-card:hover li:nth-child(5) { transition-delay: 0.16s; }
.coach-card:hover li:nth-child(6) { transition-delay: 0.20s; }

/* ── PACKAGE CARDS - hover lift ──────────────────────── */
.package-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.package-card--featured:hover {
  border-color: rgba(255, 195, 6, 0.62);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 50px rgba(255, 195, 6, 0.07);
}

/* ── FAQ - hover / estado aberto ─────────────────────── */
.faq details {
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq details:hover {
  border-color: rgba(255, 195, 6, 0.22);
}

.faq details[open] {
  border-color: rgba(255, 195, 6, 0.18);
  background: rgba(255, 195, 6, 0.03);
}

.faq summary {
  transition: color 0.2s ease;
}

.faq summary:hover {
  color: var(--gold-light);
}

/* ============================================================
   PACOTES → Lotes e Valores (integrado na seção #packages)
   ============================================================ */
.price-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.price-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.2vw, 24px);
}

.price-card__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.price-card--featured {
  border-color: var(--gold-line);
  background:
    linear-gradient(180deg, rgba(255, 195, 6, 0.05), transparent 40%),
    rgba(255, 255, 255, 0.03);
}

.price-tag {
  display: inline-block;
  width: fit-content;
  margin: 0;
  padding: 7px 14px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.price-card__head h3 {
  margin: 10px 0 2px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 0.95;
  text-transform: uppercase;
  font-family: var(--display);
}

.price-dates {
  margin: 4px 0 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-duration {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.lote-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lote {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(18px, 2.2vw, 26px);
  background: rgba(5, 7, 9, 0.4);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.lote__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.lote__name {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lote__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lote__badge--open {
  color: var(--black);
  background: var(--gold);
}

.lote__badge--soon {
  color: var(--muted);
  background: rgba(245, 245, 245, 0.06);
  border: 1px solid var(--line);
}

.lote__lock {
  flex-shrink: 0;
}

.lote__from {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lote__price {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.01em;
}

.lote__price-value {
  background: linear-gradient(120deg, var(--sand), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lote__installments {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.lote--active .lote__cta {
  width: 100%;
  margin-top: 18px;
}

.lote__purchase {
  display: flex;
  flex-direction: column;
}

.lote__qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.lote__qty[hidden] {
  display: none;
}

.lote__qty-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lote__qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lote__qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(5, 7, 9, 0.4);
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lote__qty-btn:hover {
  border-color: var(--gold);
  background: rgba(255, 195, 6, 0.12);
}

.lote__qty-input {
  width: 46px;
  height: 30px;
  min-height: 0;
  padding: 0;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(5, 7, 9, 0.4);
  color: var(--white);
  font-size: 14px;
  -moz-appearance: textfield;
}

.lote__qty-input::-webkit-inner-spin-button,
.lote__qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.lote__qty-error {
  margin: 8px 0 0;
  color: #ff6b6b;
  font-size: 12px;
}

.lote--active .lote__cta.is-loading {
  opacity: 0.7;
  cursor: wait;
}

.lote--locked {
  opacity: 0.5;
  filter: grayscale(0.9);
}

.lote--locked .lote__price--locked {
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 44px);
  color: var(--muted);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.lote--locked .lote__cta {
  width: 100%;
  margin-top: 16px;
  border-color: var(--line);
  color: var(--muted);
  background: transparent;
  cursor: not-allowed;
}

.lote--locked .lote__cta:hover {
  transform: none;
  gap: 12px;
  background: transparent;
}

.lote-includes {
  border-top: 1px solid var(--line);
  padding-top: clamp(18px, 2.4vw, 26px);
}

.lote-includes__title {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lote-includes ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.lote-includes li {
  position: relative;
  padding-left: 18px;
  line-height: 1.4;
}

.lote-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.prices-currency-note {
  width: min(var(--max), 100%);
  max-width: 760px;
  margin: clamp(30px, 4vw, 48px) auto 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
  text-align: center;
}

.prices-currency-note__base {
  display: block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

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

/* ===== Lotes: urgência, desconto, economia, anchoring ===== */
.urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 16px;
  border-radius: 999px;
  width: fit-content;
  align-self: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: urgencyPulse 1.7s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes urgencyDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 8px currentColor; }
  50% { transform: scale(1.4); box-shadow: 0 0 14px currentColor, 0 0 5px currentColor; }
}

.urgency--hot {
  color: #ff5b35;
  background: rgba(255, 91, 53, 0.12);
  border: 1px solid rgba(255, 91, 53, 0.4);
}

.urgency--low {
  color: var(--gold);
  background: rgba(255, 195, 6, 0.1);
  border: 1px solid var(--gold-line);
}

.urgency .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  animation: urgencyDot 1.7s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .urgency,
  .urgency .dot {
    animation: none;
  }
}

.lote__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.lote__discount {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--black);
  background: var(--gold);
}

.lote__discount--muted {
  color: var(--muted);
  background: rgba(245, 245, 245, 0.08);
  border: 1px solid var(--line);
}

.lote__was {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.lote__was .lote__money {
  text-decoration: line-through;
  text-decoration-color: rgba(245, 245, 245, 0.45);
}

.lote--active .lote__price {
  margin-top: 2px;
}

.lote__save {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 12px 0 0;
  padding: 8px 13px;
  border-radius: 8px;
  background: rgba(54, 211, 132, 0.12);
  border: 1px solid rgba(54, 211, 132, 0.35);
  color: #36d384;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lote__save-check {
  font-weight: 900;
}

.lote__locked-body {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.lote__price-sm {
  font-family: var(--display);
  font-size: 30px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.lote__final {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Seletor de moeda (segmentado) — acima do preço no Lote 1 */
.cur-seg {
  display: inline-flex;
  margin: 0 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(5, 7, 9, 0.5);
}

.cur-seg button {
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 7px 13px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.cur-seg button:last-child {
  border-right: 0;
}

.cur-seg button:hover {
  color: var(--white);
}

.cur-seg button.on {
  color: var(--black);
  background: var(--gold);
  font-weight: 700;
}

/* ── LOCALIZAÇÃO ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.location-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 480px;
  background: var(--graphite);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  background: rgba(255, 195, 6, 0.04);
  color: var(--gold);
}

.location-address > svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.location-address div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.location-address strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.location-address span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.location-stays {
  padding-right: 4px;
}

.location-stays__title {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-stays__category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 10px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.location-stays__category::before,
.location-stays__category::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.location-stays__category:first-of-type {
  margin-top: 0;
}

.location-stays__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.location-stays__list .location-stay:not(:first-child) {
  display: none;
}

.location-stays__list.expanded .location-stay:not(:first-child) {
  display: flex;
  animation: stayFadeIn 0.2s ease;
}

@keyframes stayFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.location-stays__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  padding: 7px 0;
  margin-top: 6px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.location-stays__toggle:hover {
  color: var(--gold);
  border-color: var(--gold-line);
}

.location-stays__chevron {
  transition: transform 0.25s ease;
}

.location-stays__toggle[aria-expanded="true"] .location-stays__chevron {
  transform: rotate(180deg);
}

.location-stay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.location-stay:hover,
.location-stay--active {
  border-color: var(--gold-line);
  background: rgba(255, 195, 6, 0.04);
}

.location-stay--all {
  cursor: pointer;
  margin-top: 4px;
  border-style: dashed;
}

.location-stay__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.location-stay__name {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.location-stay__meta {
  color: var(--muted);
  font-size: 11px;
}

.location-stay__badge {
  flex-shrink: 0;
  background: rgba(255, 195, 6, 0.1);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  padding: 5px 7px;
  text-align: center;
  min-width: 42px;
}

.location-stay__badge-num {
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.location-stay__badge-star {
  font-size: 9px;
  line-height: 1.4;
}

.location-stay__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}

.location-stay__route {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.location-stay__route:hover {
  color: var(--gold);
  border-color: var(--gold-line);
}

.location-stay__book {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  padding: 3px 8px;
  border: 1px solid var(--gold-line);
  border-radius: 5px;
  transition: background 0.15s ease;
  display: inline-block;
}

.location-stay__book:hover {
  background: rgba(255, 195, 6, 0.08);
}

.lfw {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lfw__dest {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.lfw__fields {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.lfw__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  cursor: pointer;
  position: relative;
}

.lfw__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.lfw__input--hidden {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.lfw__display {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 10px;
  cursor: pointer;
  transition: border-color 0.15s ease;
  user-select: none;
}

.lfw__field:hover .lfw__display {
  border-color: var(--gold-line);
}


.location-flights-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  align-self: flex-end;
  background: var(--gold);
  border: none;
  border-radius: 10px;
  color: #000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 16px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s ease;
}

.location-flights-btn:hover {
  filter: brightness(1.08);
}


.location-flights-btn svg {
  flex-shrink: 0;
}

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

  .location-map {
    height: 320px;
  }
}

@media (max-width: 520px) {
  .lfw__fields {
    flex-wrap: wrap;
  }

  .lfw__field {
    flex: 1;
    min-width: 120px;
  }

  .location-flights-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* ── NOTA DE PREÇO (parcelamento selecionado) ── */
.lote__price-note {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.lote__price-note[hidden] {
  display: none;
}

/* ── SELETOR DE FORMA DE PAGAMENTO ── */
.lote__pay-opts {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lote__pay-opts[hidden] {
  display: none;
}

.lote__pay-label {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.lote__pay-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  user-select: none;
}

.lote__pay-option:hover {
  border-color: rgba(255, 195, 6, 0.3);
  background: rgba(255, 195, 6, 0.03);
}

.lote__pay-option--active {
  border-color: var(--gold-line);
  background: rgba(255, 195, 6, 0.05);
}

.lote__pay-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease;
}

.lote__pay-option--active .lote__pay-radio {
  border-color: var(--gold);
}

.lote__pay-radio::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.lote__pay-option--active .lote__pay-radio::after {
  opacity: 1;
}

.lote__pay-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.lote__pay-title {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.lote__pay-sub {
  color: var(--muted);
  font-size: 11px;
}

.lote__pay-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  flex-shrink: 0;
}

.lote__pay-price {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  text-align: right;
}

.lote__pay-price-sub {
  color: var(--muted);
  font-size: 10px;
  text-align: right;
  white-space: nowrap;
}

/* ── CUPOM DE DESCONTO ── */
.lote__coupon-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.lote__coupon-row[hidden] {
  display: none;
}

.lote__coupon-input {
  flex: 1;
  padding: 9px 12px;
  background: rgba(5, 7, 9, 0.5);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s ease;
}

.lote__coupon-input::placeholder {
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.lote__coupon-input:focus {
  border-color: var(--gold-line);
  outline: none;
}

.lote__coupon-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lote__coupon-btn {
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid var(--gold-line);
  background: transparent;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
}

.lote__coupon-btn:hover:not(:disabled) {
  background: rgba(255, 195, 6, 0.1);
}

.lote__coupon-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.lote__coupon-feedback {
  margin: 5px 0 0;
  font-size: 12px;
  min-height: 16px;
}

.lote__coupon-feedback--ok {
  color: #4caf82;
}

.lote__coupon-feedback--err {
  color: #ff6b6b;
}

/* ============================================================
   Terms Acceptance Modal
   ============================================================ */
.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.terms-modal[hidden] { display: none; }

.terms-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.terms-modal__box {
  position: relative;
  z-index: 1;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  width: min(680px, 94vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.terms-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.terms-modal__title {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.terms-modal__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}
.terms-modal__close:hover { color: #fff; }

.terms-modal__body {
  overflow-y: auto;
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.terms-modal__preview { display: flex; flex-direction: column; gap: 14px; }

.terms-modal__doc-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.terms-modal__doc-title-full {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0;
}
.terms-modal__doc-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.terms-modal__toggle {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  font-size: 12px;
  padding: 7px 13px;
  transition: border-color 0.2s, color 0.2s;
}
.terms-modal__toggle:hover { border-color: rgba(255,255,255,0.35); color: #fff; }
.terms-modal__toggle-arrow { font-size: 10px; transition: transform 0.25s; display: inline-block; }
.terms-modal__toggle.is-open .terms-modal__toggle-arrow { transform: rotate(180deg); }

.terms-modal__text {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-height: 360px;
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
}
.terms-modal__text[hidden] { display: none; }

/* ── contract inner typography ─────────────────────────────────────── */
.terms-modal__text .terms-doc__title {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  text-align: center;
  margin: 0 0 5px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.terms-modal__text .terms-doc__event {
  font-size: 10.5px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.terms-modal__text .terms-doc__intro {
  font-style: italic;
  color: rgba(255,255,255,0.58);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.terms-modal__text .terms-section {
  margin-bottom: 14px;
}
.terms-modal__text .terms-section__title {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.88);
  margin: 0 0 7px;
  padding: 6px 0 5px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.terms-modal__text .terms-section p {
  margin: 0 0 5px;
}
.terms-modal__text .terms-sub {
  padding-left: 10px;
  border-left: 2px solid rgba(255,255,255,0.12);
  margin: 0 0 6px;
}
.terms-modal__text .terms-sub__num {
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  margin-right: 3px;
}
.terms-modal__text .terms-declaration {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.terms-modal__text .terms-declaration__title {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.88);
  margin: 0 0 8px;
}
.terms-modal__text .terms-declaration p {
  margin: 0 0 4px;
  color: rgba(255,255,255,0.6);
}

.terms-modal__form { display: flex; flex-direction: column; gap: 16px; }

.terms-modal__checks { display: flex; flex-direction: column; gap: 10px; }

.terms-modal__check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  cursor: pointer;
  line-height: 1.4;
}
.terms-modal__check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-accent, #e5c67a);
  cursor: pointer;
}

.terms-modal__fields { display: flex; flex-direction: column; gap: 10px; }

.terms-modal__input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  padding: 10px 14px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.terms-modal__input:focus { border-color: rgba(255,255,255,0.4); }
.terms-modal__input::placeholder { color: rgba(255,255,255,0.38); }

.terms-modal__error {
  color: #f87171;
  font-size: 13px;
  margin: 0;
}
.terms-modal__error[hidden] { display: none; }

.terms-modal__submit { width: 100%; }
.terms-modal__submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── AI CHAT WIDGET ───────────────────────────────────── */
@keyframes aichat-pop {
  from { opacity: 0; transform: scale(0.9) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes aichat-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes aichat-typing {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.35; }
  40%           { transform: scale(1);   opacity: 1; }
}

/* ── Online Badge ── */
.aichat__online-badge {
  position: fixed;
  bottom: 100px;
  right: 56px;
  transform: translateX(50%) translateY(6px);
  background: #fff;
  color: #222;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 10px 4px 8px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  pointer-events: none;
  z-index: 9990;
  transition: opacity 0.35s ease, transform 0.35s ease;
  white-space: nowrap;
}
.aichat__online-badge.visible {
  opacity: 1;
  transform: translateX(50%) translateY(0);
}
.aichat__online-badge__dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── FAB Button — posição fixa independente da janela ── */
.aichat__fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9991;
  width: 72px;
  height: 72px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
  transition: transform 0.2s ease, filter 0.2s ease;
}
.aichat__fab:hover {
  transform: scale(1.09);
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.6));
}
.aichat__fab-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* ── Chat Window — posição fixa, abre acima do FAB ── */
.aichat__window {
  position: fixed;
  bottom: 100px; /* 20px FAB bottom + 68px FAB height + 12px gap */
  right: 20px;
  z-index: 9990;
  width: 340px;
  max-height: 520px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: aichat-pop 0.25s cubic-bezier(0.22,1,0.36,1) both;
}
.aichat__window[hidden] { display: none; }

/* ── Header — fundo escuro com mascote ── */
.aichat__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 10px;
  background: linear-gradient(135deg, #1a1c22 0%, #111318 100%);
  flex-shrink: 0;
}
.aichat__header-mascot {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.aichat__header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.aichat__header-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.3px;
}
.aichat__header-status {
  font-size: 11px;
  color: #4ade80;
  letter-spacing: 0.2px;
}
.aichat__close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  line-height: 1;
  transition: color 0.15s ease, background 0.15s ease;
  flex-shrink: 0;
}
.aichat__close-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ── Messages — fundo branco ── */
.aichat__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f7f8fa;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.15) transparent;
}
.aichat__messages::-webkit-scrollbar { width: 4px; }
.aichat__messages::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 4px;
}

.aichat__msg {
  max-width: 86%;
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.55;
  animation: aichat-msg-in 0.2s ease both;
  word-break: break-word;
}
.aichat__msg--bot {
  background: #fff;
  color: #1a1a1a;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.aichat__msg--user {
  background: linear-gradient(135deg, #c9a227 0%, #e0bc50 100%);
  color: #1a1100;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}
.aichat__msg--action {
  align-self: center;
  background: rgba(201,162,39,0.1);
  color: rgba(0,0,0,0.45);
  font-size: 11.5px;
  border-radius: 20px;
  padding: 4px 12px;
  max-width: 100%;
  text-align: center;
  animation: aichat-msg-in 0.2s ease both;
}

/* Typing indicator */
.aichat__typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 11px 14px;
  background: #fff;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  animation: aichat-msg-in 0.2s ease both;
}
.aichat__typing span {
  width: 7px;
  height: 7px;
  background: #aaa;
  border-radius: 50%;
  display: inline-block;
  animation: aichat-typing 1.2s infinite ease-in-out;
}
.aichat__typing span:nth-child(2) { animation-delay: 0.2s; }
.aichat__typing span:nth-child(3) { animation-delay: 0.4s; }

/* ── Footer ── */
.aichat__footer {
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
  background: #fff;
}
.aichat__input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.aichat__input {
  flex: 1;
  background: #f2f3f5;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #1a1a1a;
  font-size: 13.5px;
  font-family: inherit;
  padding: 9px 13px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.aichat__input::placeholder { color: #aaa; }
.aichat__input:focus {
  border-color: rgba(201,162,39,0.5);
  background: #fff;
}
.aichat__send-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #c9a227 0%, #ddb93e 100%);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
  box-shadow: 0 2px 8px rgba(201,162,39,0.35);
}
.aichat__send-btn:hover { transform: scale(1.08); }
.aichat__send-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ── Bold dentro das mensagens do bot ── */
.aichat__msg--bot strong { font-weight: 700; color: #111; }

/* ── Mascot popup (auto, 15s) ── */
@keyframes aichat-mascot-in {
  from { opacity: 0; transform: translateY(60px) scale(0.8); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.aichat__mascot-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9992;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  cursor: pointer;
  animation: aichat-mascot-in 0.45s cubic-bezier(0.22,1,0.36,1) both;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.aichat__mascot-popup--hide {
  opacity: 0;
  transform: translateY(60px) scale(0.8);
}
@keyframes aichat-bubble-in {
  from { opacity: 0; transform: translateY(12px) scale(0.88); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
@keyframes aichat-bubble-out {
  from { opacity: 1; transform: translateY(0)  scale(1); }
  to   { opacity: 0; transform: translateY(-8px) scale(0.9); }
}
.aichat__mascot-bubble {
  background: #fff;
  border-radius: 14px 14px 4px 14px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  max-width: 200px;
  line-height: 1.45;
  margin-bottom: 10px;
  position: relative;
  animation: aichat-bubble-in 0.38s cubic-bezier(0.22,1,0.36,1) both;
}
/* Seta aponta para a cabeça do robô (centro do topo da imagem) */
.aichat__mascot-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
}
.aichat__mascot-bubble--cta {
  background: #C9A227;
  color: #111;
  font-weight: 800;
  font-size: 13px;
  border-radius: 14px 14px 4px 14px;
}
.aichat__mascot-bubble--cta::after {
  border-top-color: #C9A227;
}
.aichat__mascot-img {
  width: 150px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.35));
}

/* ── Destaque da seção quando a IA faz scroll ── */
@keyframes aichat-section-pulse {
  0%, 100% { box-shadow: none; }
  30%, 70%  { box-shadow: 0 0 0 4px rgba(201,162,39,0.35), 0 0 24px rgba(201,162,39,0.12); }
}
.aichat-highlight {
  animation: aichat-section-pulse 0.7s ease 3;
  scroll-margin-top: 80px;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .aichat__fab { right: 14px; bottom: 14px; }
  .aichat__window { width: calc(100vw - 28px); right: 14px; bottom: 94px; max-height: 68vh; }
  .aichat__mascot-popup { right: 14px; bottom: 14px; }
  .aichat__mascot-img { width: 120px; }
  .aichat__mascot-bubble { font-size: 12px; max-width: 170px; }
}

/* Chat bottom-sheet no mobile quando aberto */
@media (max-width: 600px) {
  .aichat--open .aichat__window {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 88dvh;
    max-height: 88dvh;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.22);
    animation: aichat-sheet-in 0.3s cubic-bezier(0.22,1,0.36,1) both;
  }
  @keyframes aichat-sheet-in {
    from { transform: translateY(100%); opacity: 0.6; }
    to   { transform: translateY(0);    opacity: 1; }
  }
  .aichat--open .aichat__fab {
    display: none;
  }
  .aichat--open .aichat__online-badge {
    display: none;
  }
}
