/* Variant 2: boxed, chip-led layout for /clube/yoga/iniv2 */
.variant-v2 {
  background: #fbf2ea;
  color: #25284a;
}

.variant-v2 .site-header {
  color: #ffffff;
}

.variant-v2 .site-header__link {
  color: rgba(255, 255, 255, 0.82);
}

.variant-v2 .site-header__logo img {
  filter: brightness(0) invert(1);
}

.variant-v2 .site-header__menu span {
  background-color: #ffffff;
}

.variant-v2 .v2-page {
  background:
    radial-gradient(circle at 8% 10%, rgba(220, 0, 180, 0.16), transparent 25%),
    radial-gradient(circle at 88% 24%, rgba(255, 80, 0, 0.14), transparent 30%),
    linear-gradient(180deg, #fff6ef 0%, #fbf2ea 44%, #ffffff 100%);
}

.v2-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 128px 0 86px;
  isolation: isolate;
}

.v2-hero::before,
.v2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.v2-hero::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0.98) 0%, rgba(255, 247, 241, 0.92) 38%, rgba(255, 238, 226, 0.48) 60%, rgba(255, 238, 226, 0.14) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(255, 209, 202, 0.42) 100%);
}

.v2-hero::after {
  z-index: 0;
  background:
    radial-gradient(circle at 14% 74%, rgba(255, 54, 71, 0.24), transparent 26%),
    radial-gradient(circle at 28% 36%, rgba(220, 0, 180, 0.14), transparent 24%);
  filter: blur(8px);
}

.v2-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.v2-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(1.04) contrast(1.02);
}

.v2-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.v2-hero__copy {
  max-width: 720px;
}

.v2-eyebrow,
.v2-card-kicker,
.v2-image-card span,
.v2-benefit-tiles span,
.v2-price-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #7c2ca2;
  font-family: "Figtree", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-hero__title {
  margin: 20px 0 18px;
  color: #25284a;
  font-family: "Aconchego", "Montserrat", sans-serif;
  font-size: clamp(76px, 8.8vw, 132px);
  font-weight: 900;
  line-height: 0.88;
}

.v2-hero__title em {
  display: inline-block;
  font-family: "Aconchego", "Montserrat", sans-serif;
  font-size: 0.82em;
  font-style: italic;
  font-weight: 420;
  background: linear-gradient(92deg, #b000d7 0%, #e000b7 48%, #ff452f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.v2-hero__lead {
  max-width: 660px;
  margin: 0;
  color: #353966;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 650;
  line-height: 1.48; /* WCAG 1.4.12: mínimo 1.5 recomendado; 1.32 era comprimido demais */
}

.v2-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.v2-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid rgba(77, 83, 140, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #3f4477;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(39, 42, 71, 0.08);
}

.v2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}

.variant-v2 .hero-cta {
  margin-top: 0;
  opacity: 1;
  transform: none;
  animation: none;
}

.v2-hero__micro {
  color: #4d538c;
  font-size: 15px;
  font-weight: 800;
}

.v2-hero__panel {
  align-self: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 30px 90px rgba(39, 42, 71, 0.18);
  backdrop-filter: blur(18px);
}

.v2-live-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: #ffffff;
  color: #25284a;
}

@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(224, 0, 94, 0.65); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 106, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 106, 53, 0); }
}

.v2-live-card__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: live-pulse 1.8s ease-out infinite;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
}

.v2-live-card strong,
.v2-live-card span {
  display: block;
}

.v2-live-card strong {
  font-size: 16px;
  line-height: 1.2;
}

.v2-live-card div > span {
  margin-top: 4px;
  color: #6f5c88;
  font-size: 14px;
  font-weight: 700;
}

.v2-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.v2-hero__stats div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 246, 239, 0.92), rgba(255, 255, 255, 0.68));
}

.v2-hero__stats strong {
  display: block;
  color: #dc00b4;
  font-family: "Aconchego", "Montserrat", sans-serif;
  font-size: 42px;
  line-height: 0.95;
}

.v2-hero__stats span {
  display: block;
  margin-top: 8px;
  color: #3f4477;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

/* ─── COUNTDOWN BAR ───────────────────────────────────────────────────────── */
.v2-countdown-bar {
  position: relative;
  z-index: 2;
  margin-top: -36px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  border-radius: 12px;
  background: #1a1d40;
  box-shadow: 0 18px 60px rgba(37, 40, 74, 0.32);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.v2-countdown-bar__label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.v2-countdown-bar__label svg {
  animation: live-pulse 1.8s ease-out infinite;
  border-radius: 50%;
  flex-shrink: 0;
}

.v2-cd-label-mobile { display: none; }
.v2-cd-label-desktop { display: inline; }

.v2-countdown-bar__units {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.v2-countdown-bar__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 12px;
}

.v2-countdown-bar__unit strong {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #ff6eb0, #ffaa72);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.v2-countdown-bar__unit span {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}

.v2-countdown-bar__sep {
  font-size: 22px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 2px;
  padding-bottom: 16px;
}

.v2-countdown-bar__cta {
  white-space: nowrap;
  padding: 10px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #e0005e, #ff6a35);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.v2-countdown-bar__cta:hover { opacity: 0.88; }

@media (max-width: 768px) {
  .v2-countdown-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-top: 0;
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.45);
    padding: 7px 12px 9px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px 10px;
  }
  /* Linha 1: label ocupa 100% — empurra o resto para linha 2 */
  .v2-countdown-bar__label {
    flex: 0 0 100%;
    justify-content: center;
    white-space: nowrap;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-align: center;
  }
  .v2-countdown-bar__label svg { display: none; }
  #cd-date { display: none; }
  .v2-cd-label-desktop { display: none; }
  .v2-cd-label-mobile {
    display: inline;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    font-size: 10px;
  }
  /* Linha 2: units + CTA ficam juntos */
  .v2-countdown-bar__units { flex: 0 0 auto; }
  .v2-countdown-bar__cta {
    flex: 0 0 auto;
    padding: 7px 12px;
    font-size: 11px;
    white-space: nowrap;
  }
  .v2-countdown-bar__unit strong { font-size: 16px; }
  .v2-countdown-bar__unit span { font-size: 8px; }
  .v2-countdown-bar__unit { min-width: 32px; padding: 4px 5px; }
  .v2-countdown-bar__sep { font-size: 14px; padding-bottom: 10px; margin: 0 1px; }
  .variant-v2 .v2-page { padding-bottom: 78px; }
}

.v2-section {
  padding: 48px 0;
  position: relative;
}

.v2-section--light {
  background: #fbf2ea;
}

.v2-section--white {
  background: #ffffff;
}

.v2-section--peach {
  background:
    radial-gradient(circle at 10% 80%, rgba(255, 54, 71, 0.14), transparent 26%),
    linear-gradient(135deg, #fff7ef 0%, #ffe6d8 100%);
}

.v2-section--dark {
  background:
    radial-gradient(circle at 88% 12%, rgba(220, 0, 180, 0.24), transparent 28%),
    linear-gradient(135deg, #151731 0%, #25284a 100%);
  color: #ffffff;
}

.v2-section-head {
  max-width: 860px;
  margin: 0 0 28px;
}

.v2-section-head--compact {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.v2-section-head h2,
.v2-split-block h2,
.v2-club-copy h2 {
  margin: 8px 0 0;
  color: #25284a;
  font-family: "Aconchego", "Montserrat", sans-serif;
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 850;
  line-height: 1.05;
}

.v2-section--dark .v2-section-head h2,
.v2-section--dark .v2-eyebrow {
  color: #ffffff;
}

.v2-section-head p,
.v2-split-block p,
.v2-club-copy p {
  margin: 12px 0 0;
  color: #5f648f;
  font-size: 17px;
  line-height: 1.55;
}

.v2-card-grid {
  display: grid;
  gap: 14px;
}

.v2-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v2-info-card,
.v2-mini-card,
.v2-image-card,
.v2-authority-card,
.v2-price-card {
  border-radius: 12px;
}

.v2-info-card {
  min-height: auto;
  padding: 20px;
  border: 1px solid rgba(77, 83, 140, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(39, 42, 71, 0.07);
}

.v2-info-card h3 {
  margin: 12px 0 8px;
  color: #25284a;
  font-family: "Aconchego", "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 850;
  line-height: 1.1;
}

.v2-info-card p {
  margin: 0;
  color: #5f648f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.48;
}

.v2-split-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 44px;
  align-items: center;
}

.v2-split-block__image {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  height: 360px;
  align-self: center;
  /* NÃO usar aspect-ratio aqui: em grid, aspect-ratio + align-self:stretch
     faz o browser alargar a largura da figura para manter o ratio,
     vazando para fora da coluna e sobrepondo o conteúdo adjacente. */
}

.v2-split-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.v2-split-block__content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Escopo: h2 na seção pêssego deve ser menor que o clamp global
   (o clamp global chega a ~86px, ilegível ao lado de uma imagem) */
.v2-section--peach .v2-split-block h2 {
  font-size: clamp(26px, 2.8vw, 44px);
  line-height: 1.25;
}

/* Mini-cards refatorados: chips compactos em grid 2-col
   Antes: 6 cards × ~75px + gaps = ~480px
   Depois: 3 linhas × ~48px + gaps = ~164px */
.v2-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.v2-mini-card {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(77, 83, 140, 0.12);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 20px rgba(39, 42, 71, 0.06);
  min-height: 0;
}

.v2-mini-card--accent {
  background: linear-gradient(135deg, #bb00d4 0%, #ff2a67 62%, #c8002a 100%);
  color: #ffffff;
  border-color: transparent;
}

.v2-mini-card span {
  display: none; /* kicker oculto no chip mode */
}

.v2-mini-card strong {
  color: inherit;
  font-size: 15px;
  line-height: 1.3;
}

.v2-moment-grid,
.v2-teacher-grid,
.v2-benefit-tiles {
  display: grid;
  gap: 14px;
}

/* ─── CINEMA SECTION ──────────────────────────────────────────────────────── */
.v2-cinema {
  position: relative;
  height: 58vh;
  min-height: 400px;
  max-height: 640px;
  overflow: hidden;
  isolation: isolate;
}

.v2-cinema__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: -2;
}

.v2-cinema__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(8, 10, 28, 0.64) 0%,
      rgba(8, 10, 28, 0.18) 40%,
      rgba(8, 10, 28, 0.78) 100%
    );
}

.v2-cinema__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 36px;
}

.v2-cinema__caption .v2-eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.v2-cinema__caption h2 {
  margin: 8px 0 0;
  max-width: 640px;
  color: #ffffff;
  font-family: "Aconchego", "Montserrat", sans-serif;
  font-size: clamp(24px, 2.8vw, 44px);
  font-weight: 850;
  line-height: 1.08;
}

.v2-cinema__caption h2 em {
  font-style: italic;
  color: #ffb6e5;
}

.v2-cinema__panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 20px;
}

.v2-cinema__panel {
  padding: 0 24px 0 0;
}

.v2-cinema__panel + .v2-cinema__panel {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 24px;
  padding-right: 0;
}

.v2-cinema__panel span {
  display: block;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb6e5;
  margin-bottom: 6px;
}

.v2-cinema__panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.4;
}

/* mobile */
@media (max-width: 768px) {
  .v2-cinema {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .v2-cinema__bg {
    position: relative;
    height: 260px;
    width: 100%;
  }

  .v2-cinema__overlay {
    display: none;
  }

  .v2-cinema__inner {
    position: relative;
    height: auto;
    background: #0d0f26;
    padding: 28px 20px;
    gap: 24px;
  }

  .v2-cinema__caption h2 {
    color: #ffffff;
    font-size: clamp(24px, 8vw, 36px);
  }

  .v2-cinema__panels {
    grid-template-columns: 1fr;
    border-top: none;
    padding-top: 0;
    gap: 16px;
  }

  .v2-cinema__panel,
  .v2-cinema__panel + .v2-cinema__panel {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 0 0;
  }
}

.v2-image-card p {
  margin: 0;
  color: #5f648f;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.44;
}

/* ─── VOCÊ SÓ PRECISA DE ─────────────────────────────────────────────────── */
.v2-precisa {
  padding: 56px 0;
}

.v2-section-head--light h2 {
  color: #ffffff;
}

.v2-section-head--light p {
  color: rgba(255, 255, 255, 0.75);
}

.v2-precisa-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.v2-precisa-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.v2-precisa-card__photo {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.v2-precisa-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.v2-precisa-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0005e, #ff6a35);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.v2-precisa-card__caption {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  padding: 0 4px;
}

@media (max-width: 768px) {
  .v2-precisa-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ─── AUTHORITY CARDS (professores) ──────────────────────────────────────── */
.v2-authority-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.v2-authority-card {
  overflow: hidden;
  background: #12152e;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Foto ocupa ~60% do card — proporção portrait */
.v2-authority-card__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.v2-authority-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

/* Alinhamento de olhar por especialista — object-position ajusta o crop vertical */
/* Edno: position absolute + top negativo desloca a imagem para cima sem gap */
.v2-authority-card:nth-child(1) .v2-authority-card__photo img {
  position: absolute;
  top: -12%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center top;
  transform: none;
  transition: transform 0.5s ease;
}
.v2-authority-card:nth-child(1):hover .v2-authority-card__photo img {
  transform: scale(1.04);
}
/* Maísa: deslocamento maior para subir o rosto */
.v2-authority-card:nth-child(2) .v2-authority-card__photo img {
  position: absolute;
  top: -18%;
  left: 0;
  width: 100%;
  height: 126%;
  object-fit: cover;
  object-position: center top;
  transform: none;
  transition: transform 0.5s ease;
}
.v2-authority-card:nth-child(2):hover .v2-authority-card__photo img {
  transform: scale(1.04);
}
/* Ana Sou: sentada ao ar livre — rosto no terço superior */
.v2-authority-card:nth-child(3) .v2-authority-card__photo img { object-position: center top; }
/* Fabiano: close portrait — rosto já grande, ajuste leve */
.v2-authority-card:nth-child(4) .v2-authority-card__photo img { object-position: center 15%; }

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

/* Gradiente overlay sobre a foto para o texto legível */
.v2-authority-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 38%,
    rgba(8, 10, 28, 0.60) 68%,
    rgba(8, 10, 28, 0.92) 100%
  );
  pointer-events: none;
}

/* Nome + tag sobrepostos na foto */
.v2-authority-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  z-index: 1;
}

.v2-authority-tag {
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 8px;
  background: rgba(255, 182, 229, 0.18);
  border: 1px solid rgba(255, 182, 229, 0.38);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffb6e5;
}

.v2-authority-card__overlay h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Aconchego", "Montserrat", sans-serif;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1;
}

/* Body abaixo da foto */
.v2-authority-card__body {
  padding: 14px 18px 18px;
  background: #12152e;
}

.v2-authority-cred {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 10px;
  background: rgba(220, 0, 180, 0.14);
  border: 1px solid rgba(220, 0, 180, 0.28);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #e06de8;
}

.v2-authority-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.42;
}

.v2-club-shell {
  display: grid;
  /* minmax(0, 1fr) em vez de minmax(380px, 1fr): o min fixo de 380px causava overflow em tablets 768-1080px */
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.v2-benefit-tiles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-benefit-tiles article {
  min-height: 150px;
  padding: 22px;
  border-radius: 8px;
  color: #ffffff;
  /* endpoint escurecido de #ff3647 → #c8002a para garantir contraste ≥4.5:1 com texto branco (WCAG 1.4.3) */
  background: linear-gradient(135deg, #c000d6 0%, #e0008a 56%, #c8002a 100%);
  box-shadow: 0 18px 50px rgba(220, 0, 180, 0.14);
}

.v2-benefit-tiles article:nth-child(2),
.v2-benefit-tiles article:nth-child(5) {
  background: #ffffff;
  color: #25284a;
}

.v2-benefit-tiles article:nth-child(3),
.v2-benefit-tiles article:nth-child(6) {
  background: #25284a;
}

.v2-benefit-tiles span {
  color: inherit;
  opacity: 0.72;
}

.v2-benefit-tiles strong {
  display: block;
  margin-top: 28px;
  font-family: "Aconchego", "Montserrat", sans-serif;
  font-size: 28px;
  line-height: 1.15;
}

.v2-price {
  padding-bottom: 112px;
}

.v2-price-compare {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.1fr);
  gap: 12px;
  align-items: stretch;
  max-width: 980px;
  margin: 36px auto 0;
}

.v2-price-card {
  display: grid;
  align-content: center;
  min-height: 230px;
  padding: 30px;
  text-align: center;
}

.v2-price-card--muted {
  border: 1px dashed rgba(77, 83, 140, 0.42);
  background: #ffffff;
  color: #25284a;
}

.v2-price-card--hot {
  background: linear-gradient(135deg, #b800d9 0%, #e800a8 52%, #ff3647 100%);
  color: #ffffff;
  box-shadow: 0 26px 70px rgba(220, 0, 180, 0.22);
}

.v2-price-card span {
  margin: 0 auto;
  color: inherit;
  opacity: 0.78;
}

.v2-price-card strong {
  display: block;
  margin-top: 14px;
  font-family: "Aconchego", "Montserrat", sans-serif;
  font-size: clamp(54px, 5vw, 82px);
  line-height: 0.92;
}

.v2-price-card p {
  max-width: 270px;
  margin: 14px auto 0;
  color: inherit;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.3;
  opacity: 0.84;
}

.v2-price-pill {
  align-self: center;
  min-width: 174px;
  padding: 14px 18px;
  border: 1px solid rgba(77, 83, 140, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #4d538c;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 16px 40px rgba(39, 42, 71, 0.08);
}

.v2-price__close {
  max-width: 760px;
  margin: 38px auto 0;
  color: #25284a;
  font-family: "Aconchego", "Montserrat", sans-serif;
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 780;
  line-height: 1;
  text-align: center;
}

@media (max-width: 1080px) {
  .v2-hero__grid,
  .v2-split-block,
  .v2-club-shell {
    grid-template-columns: 1fr;
  }

  .v2-split-block__image {
    display: none;
  }

  .v2-split-block__content {
    gap: 24px;
  }

  .v2-card-grid--four,
  .v2-authority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-hero__panel {
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .variant-v2 .site-header__link {
    display: none;
  }

  .v2-hero {
    min-height: auto;
    padding: 80px 0 48px;
  }

  .v2-hero__media {
    height: 340px;
    bottom: auto;
  }

  .v2-hero__media img {
    object-position: 64% top;
  }

  .v2-hero::before {
    background:
      linear-gradient(180deg, rgba(8, 10, 28, 0.18) 0%, rgba(8, 10, 28, 0.52) 55%, rgba(8, 10, 28, 0.82) 100%);
  }

  .v2-hero__grid {
    gap: 28px;
  }

  .v2-hero__copy {
    padding-top: 180px;
  }

  .v2-hero__title {
    font-size: clamp(60px, 18vw, 78px);
  }

  .v2-hero__lead {
    font-size: 20px;
  }

  .v2-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .v2-hero__panel {
    padding: 10px;
  }

  .v2-hero__stats {
    grid-template-columns: 1fr 1fr;
  }

  .v2-proof-strip {
    margin-top: 0;
    background: #25284a;
  }

  .v2-proof-strip__grid {
    grid-template-columns: 1fr 1fr;
    border-radius: 0;
    box-shadow: none;
  }

  .v2-section {
    padding: 52px 0;
  }

  .v2-section-head h2,
  .v2-split-block h2,
  .v2-club-copy h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .v2-card-grid--four,
  .v2-authority-grid,
  .v2-benefit-tiles {
    grid-template-columns: 1fr;
  }

  /* moment-grid mobile: colapsa 2-col editorial para 1 coluna linear */
  .v2-moment-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .v2-image-card--feature {
    grid-row: auto;
  }

  .v2-image-card--feature img,
  .v2-image-card img {
    aspect-ratio: 1.45 / 1;
    height: auto;
    max-height: none;
  }

  .v2-info-card {
    min-height: auto;
  }

  .v2-price-compare {
    grid-template-columns: 1fr;
  }

  .v2-price-pill {
    margin: -2px auto;
  }
}

@media (max-width: 480px) {
  .v2-hero__stats {
    grid-template-columns: 1fr;
  }

  .v2-proof-strip__grid {
    grid-template-columns: 1fr;
  }

  .v2-hero__panel,
  .v2-info-card,
  .v2-mini-card,
  .v2-image-card div,
  .v2-authority-card__body {
    padding: 14px;
  }

  .v2-price-card {
    min-height: 190px;
    padding: 24px 18px;
  }
}

/* ============================================================
   V2 REFINAMENTOS VISUAIS
   Herói escuro · teacher cards sólidos · info cards com âncora
   prova social · urgência
   ============================================================ */

/* --- HERO: dark navy + compressão vertical para caber no fold --- */

.v2-hero {
  background: linear-gradient(135deg, #151731 0%, #1f2248 100%);
  min-height: 100svh;
  padding: 76px 0 52px;
}

.v2-hero__grid {
  gap: 28px;
}

.v2-hero__title {
  font-size: clamp(62px, 7.4vw, 108px);
  margin: 12px 0 12px;
}

.v2-hero__lead {
  font-size: clamp(18px, 1.7vw, 23px);
}

.v2-chip-row {
  margin-top: 16px;
}

.v2-hero__actions {
  margin-top: 20px;
}

.v2-hero__stats div {
  min-height: 88px;
}

.v2-hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(15, 17, 40, 0.97) 0%,
      rgba(21, 23, 49, 0.92) 42%,
      rgba(21, 23, 49, 0.52) 65%,
      rgba(21, 23, 49, 0.10) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 58%,
      rgba(10, 12, 32, 0.65) 100%
    );
}

.v2-hero__title {
  color: #ffffff;
}

.v2-hero__lead {
  color: rgba(255, 255, 255, 0.80);
}

/* WCAG 1.4.3: 0.62 → 0.82 para garantir contraste ≥4.5:1 sobre hero escuro */
.v2-hero__micro {
  color: rgba(255, 255, 255, 0.82);
}

.v2-hero .v2-eyebrow {
  color: #ffb6e5;
}

.v2-hero .v2-chip {
  border-color: rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.v2-chip--urgent {
  border-color: rgba(220, 0, 180, 0.45) !important;
  background: rgba(220, 0, 180, 0.18) !important;
  color: #ffb6e5 !important;
}

.v2-hero__panel {
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(15, 17, 40, 0.74);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.v2-live-card {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

/* WCAG 1.4.3: 0.56 → 0.78 */
.v2-live-card div > span {
  color: rgba(255, 255, 255, 0.78);
}

.v2-hero__stats div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.09);
}

/* WCAG 1.4.3: 0.72 → 0.85 */
.v2-hero__stats span {
  color: rgba(255, 255, 255, 0.85);
}

/* ─── FOCUS STATES (WCAG 2.4.7 – Focus Visible) ──────────────────────────────
   O v2 sobrescreve backgrounds escuros onde o focus ring do v1 pode ficar
   invisível. Este bloco garante visibilidade em todos os contextos do v2.     */
.variant-v2 :focus-visible {
  outline: 3px solid #ffb6e5;
  outline-offset: 3px;
  border-radius: 4px;
}

.variant-v2 .btn:focus-visible,
.variant-v2 .clube-checkout__cta:focus-visible,
@media (max-width: 768px) {
  .variant-v2 .sticky-cta { display: none !important; }
}

.variant-v2 .sticky-cta:focus-visible {
  outline: 3px solid #ffb6e5;
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(255, 182, 229, 0.28);
}

@media (max-width: 768px) {
  .v2-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(15, 17, 40, 0.20) 0%,
        rgba(15, 17, 40, 0.82) 44%,
        rgba(15, 17, 40, 0.98) 68%,
        #0f1128 100%
      ),
      linear-gradient(
        90deg,
        rgba(15, 17, 40, 0.40),
        rgba(21, 23, 49, 0.72)
      );
  }
}

/* --- INFO CARDS: faixa de cor no topo ---------------------- */

.v2-info-card {
  position: relative;
  overflow: hidden;
}

.v2-info-card::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #b000d7 0%, #e000b7 50%, #ff452f 100%);
  margin: -24px -24px 20px;
  border-radius: 8px 8px 0 0;
  pointer-events: none;
}

/* --- AUTHORITY CARDS: acento de cor por professor ---------- */
.v2-authority-card:nth-child(1) { border-color: rgba(176, 0, 215, 0.32); }
.v2-authority-card:nth-child(2) { border-color: rgba(255, 182, 229, 0.22); }
.v2-authority-card:nth-child(3) { border-color: rgba(0, 160, 100, 0.24); }
.v2-authority-card:nth-child(4) { border-color: rgba(255, 80, 0, 0.24); }

/* --- PROVA SOCIAL: 3 depoimentos em grid ------------------- */

.v2-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.v2-testimonial {
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.v2-testimonial--accent {
  background: linear-gradient(135deg, #bb00d4 0%, #ff2a67 62%, #ff5434 100%);
  border-color: transparent;
}

.v2-testimonial p {
  margin: 0;
  color: rgba(255, 255, 255, 0.90);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.52;
}

.v2-testimonial cite {
  color: rgba(255, 255, 255, 0.50);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-style: normal;
}

.v2-social-proof .v2-section-head h2 {
  color: #ffffff;
}

@media (max-width: 768px) {
  .v2-testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Hero instructors block ── */
.hero-instructors {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-instructors__avatars {
  display: inline-flex;
}
.hero-instructors__avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(255,255,255,.4);
  background: #f9f5ef;
  box-shadow: 0 2px 6px rgba(45,18,72,.18);
}
.hero-instructors__avatars img + img { margin-left: -12px; }
.hero-instructors__label {
  margin: 0;
  font-family: "Figtree", -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  line-height: 1.35;
}
.hero-instructors__label strong { font-weight: 700; color: #fff; }

