/* Aura Fitness · iteración 3: disciplinas diagonales, coaching compacto y widget */

.hero-lead {
  display: contents;
}

#inicio.hero {
  background: #070707;
}

#inicio.hero::before {
  pointer-events: none;
}

#inicio .hero-video {
  opacity: 1;
  pointer-events: none !important;
  -webkit-user-select: none;
  user-select: none;
}

.hero-stats-panel {
  display: contents;
}

#inicio .hero-video::-webkit-media-controls,
#inicio .hero-video::-webkit-media-controls-enclosure,
#inicio .hero-video::-webkit-media-controls-panel,
#inicio .hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}

.cta-final h2 > span {
  display: block;
}

.classes-section {
  padding: 104px 22px 84px;
  background:
    radial-gradient(circle at 12% 0%, rgba(214,255,63,.13), transparent 27%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.classes-section::before {
  content: none;
}

#tarifas .section-head h2 {
  font-size: clamp(50px, 4.35vw, 56px);
}

.classes-wrap {
  max-width: 1380px;
  margin: 0 auto;
}

.classes-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.classes-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.classes-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(214,255,63,.12);
}

.classes-editorial h2 {
  max-width: none;
  font-size: clamp(58px, 8vw, 112px);
  line-height: .82;
}

.classes-stats {
  display: flex;
  align-items: center;
  min-width: 410px;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.classes-stats > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: center;
  flex: 1;
  padding: 0 22px;
}

.classes-stats > div + div {
  border-left: 1px solid rgba(255,255,255,.16);
}

.classes-stats strong {
  color: var(--brand);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -.07em;
}

.classes-stats span {
  max-width: 136px;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.classes-stripe {
  display: flex;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  background: #0d0d0d;
  box-shadow: 0 35px 100px rgba(0,0,0,.45);
}

.class-slice {
  --slice-accent: 214, 255, 63;
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 480px;
  margin-left: -18px;
  overflow: hidden;
  isolation: isolate;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  transition: flex-grow .45s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}

.class-slice:first-child {
  margin-left: 0;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.class-slice:last-child {
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.class-slice:hover {
  flex-grow: 1.48;
  z-index: 3;
}

.class-slice-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  filter: saturate(.72) contrast(1.08);
  transform: scale(1.03);
  transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}

.class-slice:hover .class-slice-photo {
  filter: saturate(.95) contrast(1.05);
  transform: scale(1.09);
}

.class-slice::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 22%, rgba(0,0,0,.9) 100%),
    linear-gradient(135deg, rgba(var(--slice-accent),.28), transparent 55%);
}

.class-slice::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.28);
  transform: rotate(2deg);
  transform-origin: center;
}

.class-slice-copy {
  position: absolute;
  left: clamp(24px, 2.2vw, 36px);
  right: 18px;
  bottom: 28px;
  color: #fff;
}

.class-slice-copy > span {
  display: block;
  margin-bottom: 13px;
  color: rgb(var(--slice-accent));
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .1em;
}

.class-slice-copy h3 {
  margin: 0;
  min-height: 1.72em;
  font-size: clamp(25px, 2.45vw, 42px);
  line-height: .86;
  letter-spacing: -.065em;
}

.class-slice-copy p {
  margin: 13px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.class-slice-functional { --slice-accent: 167, 255, 125; }
.class-slice-cross { --slice-accent: 214, 255, 63; }
.class-slice-abs { --slice-accent: 255, 91, 91; }
.class-slice-baile { --slice-accent: 84, 204, 255; }
.class-slice-pilates { --slice-accent: 255, 171, 96; }
.class-slice-yoga { --slice-accent: 239, 142, 255; }

.class-slice-functional .class-slice-photo { background-image: url("img/funcional.webp"); background-position: 42% center; }
.class-slice-cross .class-slice-photo { background-image: url("img/cross-training.webp"); background-position: 54% center; }
.class-slice-abs .class-slice-photo { background-image: url("img/hiit.webp"); background-position: 58% center; }
.class-slice-baile .class-slice-photo { background-image: url("img/baile.webp"); background-position: 44% center; }
.class-slice-pilates .class-slice-photo { background-image: url("img/pilates.webp"); background-position: 47% center; }
.class-slice-yoga .class-slice-photo { background-image: url("img/yoga.webp"); background-position: 53% center; }

.classes-cta {
  display: block;
  margin-top: 18px;
  padding: 0 4px 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.classes-cta strong {
  font-size: 17px;
}

.classes-cta span {
  margin-top: 4px;
}

.widget-nudge {
  position: fixed;
  right: 78px;
  bottom: 78px;
  z-index: 9998;
  width: 52px;
  height: 90px;
  color: var(--brand);
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 9px 15px rgba(0,0,0,.55));
  transform: translateY(10px) scale(.9);
  transition: opacity .3s ease, transform .3s ease;
}

.widget-nudge.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.widget-nudge svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: widgetArrow 1.45s ease-in-out infinite;
}

.widget-nudge path {
  stroke-dasharray: 112;
  stroke-dashoffset: 112;
  animation: widgetTrace 2.4s cubic-bezier(.55,0,.2,1) infinite;
}

.whatsapp-float {
  right: auto !important;
  left: 24px !important;
}

.coaching-section {
  padding: 62px 22px 74px;
  background:
    radial-gradient(circle at 92% 0%, rgba(214,255,63,.32), transparent 23%),
    #f4f4ef;
}

.coaching-section::after {
  content: none;
}

.coaching-kicker {
  margin-bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  background: #111;
}

.coaching-kicker span {
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(214,255,63,.12);
}

.coaching-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(470px, .96fr);
  gap: 16px;
  align-items: stretch;
}

.coaching-summary {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.coaching-summary .coaching-kicker {
  align-self: flex-start;
}

.coaching-compact {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(210px, .92fr);
  flex: 1;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 34px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 24px 60px rgba(0,0,0,.08);
  backdrop-filter: blur(18px);
}

.coaching-compact-intro,
.coaching-compact-title,
.coaching-compact > .coaching-formats {
  min-width: 0;
  padding: 30px;
}

.coaching-compact-title {
  border-left: 1px solid rgba(0,0,0,.09);
}

.coaching-compact-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coaching-compact-intro h2 {
  margin: 0;
  font-size: clamp(52px, 4.85vw, 74px);
  line-height: .78;
  letter-spacing: -.085em;
}

.coaching-compact-intro h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.6px #0a0a0a;
}

.coaching-compact-intro p {
  margin: 25px 0 0;
  color: rgba(0,0,0,.5);
  font-size: 14px;
  line-height: 1.5;
}

.coaching-compact-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(214,255,63,.13), rgba(255,255,255,.08) 58%);
}

.coaching-compact-title::after {
  content: "AURA";
  position: absolute;
  right: -12px;
  bottom: -18px;
  color: rgba(0,0,0,.025);
  font-size: 96px;
  line-height: .8;
  font-weight: 950;
  letter-spacing: -.09em;
}

.coaching-compact-title h3 {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0;
  font-size: clamp(36px, 2.85vw, 46px);
  line-height: .82;
  letter-spacing: -.075em;
}

.coaching-compact-ratio {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 19px;
  color: var(--brand);
  font-size: clamp(86px, 7vw, 112px);
  line-height: .62;
  font-weight: 950;
  letter-spacing: .04em;
  font-kerning: none;
}

.coaching-compact > .coaching-formats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 16px;
  border-top: 1px solid rgba(0,0,0,.09);
}

.coaching-compact .coaching-formats article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 86px;
  padding: 14px 11px;
  border-radius: 18px;
  background: rgba(247,247,242,.78);
}

.coaching-compact .coaching-formats article > span {
  position: static;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--brand);
  background: #101010;
  font-size: 27px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.055em;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.coaching-compact .coaching-formats h3 {
  margin: 0 0 5px;
  font-size: clamp(24px, 1.7vw, 27px);
  line-height: 1;
  letter-spacing: -.045em;
}

.coaching-compact .coaching-formats article:last-child h3 {
  font-size: clamp(23px, 1.62vw, 26px);
}

.coaching-compact .coaching-formats strong {
  position: static;
  display: block;
  color: rgba(0,0,0,.5);
  font-size: 9.5px;
  line-height: 1.15;
  letter-spacing: .065em;
}

.coaching-booking {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0;
  margin: 50px 0 0;
  padding: 20px;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 30px;
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(16px);
}

.coaching-booking-widget {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
}

.coaching-booking-widget vg-guest-booking {
  display: block;
  width: 100%;
}

.services-section {
  max-width: none;
  margin: 0;
  padding: 60px 22px 24px;
  border-top: 1px solid var(--line);
  background: #050505;
}

.services-wrap {
  max-width: var(--max);
  margin: 0 auto;
}

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

.service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card);
}

.service-card-copy {
  padding: 32px 32px 24px;
}

.service-card-copy .service-card-kicker {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.service-card-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: .95;
  letter-spacing: -.055em;
}

.service-card-copy > p:not(.service-card-kicker) {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.service-card-copy a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.service-card-photo {
  flex: 1;
  min-height: 320px;
  margin: 0;
  background-position: center;
  background-size: cover;
}

.service-card-photo-supplements {
  background-image: url("img/suplementos-iogenix.webp");
}

.service-card-photo-nutrition {
  background-image: url("img/asesoramiento-nutricional.webp");
}

.app-section {
  max-width: none;
  margin: 0;
  padding: 24px 22px 60px;
  background: #050505;
}

.app-section .app-block {
  max-width: var(--max);
  margin: 0 auto;
}

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

@keyframes widgetTrace {
  0% { stroke-dashoffset: 112; opacity: .25; }
  42%, 78% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

@media (min-width: 941px) {
  .coaching-compact-ratio {
    margin-bottom: 27px;
  }

  .coaching-compact-title h3 {
    font-size: clamp(39px, 2.75vw, 45px);
    letter-spacing: -.085em;
  }
}

@media (max-width: 1120px) {
  .classes-editorial {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .classes-stats {
    width: min(100%, 430px);
  }

  .class-slice-copy {
    left: 26px;
  }

  .class-slice-copy h3 {
    font-size: clamp(24px, 3vw, 34px);
  }

  .coaching-layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  }

  .coaching-compact-intro,
  .coaching-compact-title {
    padding: 26px;
  }

  .coaching-compact-intro h2 {
    font-size: clamp(46px, 5vw, 62px);
  }
}

@media (max-width: 940px) {
  .coaching-layout {
    grid-template-columns: 1fr;
  }

  .coaching-compact {
    min-height: 0;
  }

  .coaching-booking {
    margin-top: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .classes-section,
  .coaching-section {
    padding-top: 78px;
    padding-bottom: 70px;
  }

  .classes-stripe {
    min-height: 350px;
    overflow: hidden;
    border-radius: 28px;
  }

  .class-slice,
  .class-slice:first-child,
  .class-slice:last-child {
    flex: 1 1 0;
    min-width: 0;
    min-height: 350px;
    margin-left: -7px;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  }

  .class-slice:first-child {
    margin-left: 0;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  }

  .class-slice:hover {
    flex-grow: 1;
  }

  .class-slice-copy {
    left: clamp(10px, 2vw, 18px);
    right: 6px;
    bottom: 18px;
  }

  .class-slice-copy > span {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .class-slice-copy h3 {
    min-height: 1.8em;
    font-size: clamp(13px, 2.8vw, 23px);
    line-height: .9;
    overflow-wrap: anywhere;
  }

  .class-slice-copy p {
    margin-top: 8px;
    font-size: 8px;
  }

  .coaching-compact-intro,
  .coaching-compact-title {
    padding: 30px;
  }

  .coaching-booking { gap: 0; }
}

@media (max-width: 620px) {
  .classes-section,
  .coaching-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .classes-editorial h2 {
    font-size: clamp(52px, 16vw, 78px);
  }

  .classes-stats {
    min-width: 0;
  }

  .classes-stats > div {
    padding: 0 14px;
  }

  .classes-stats > div:first-child {
    padding-left: 2px;
  }

  .classes-stats strong {
    font-size: 31px;
  }

  .classes-stripe {
    min-height: clamp(245px, 74vw, 310px);
    margin-right: 0;
    border-right: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
  }

  .class-slice,
  .class-slice:first-child,
  .class-slice:last-child {
    flex: 1 1 0;
    min-width: 0;
    min-height: clamp(245px, 74vw, 310px);
    margin-left: -4px;
    clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
  }

  .class-slice:first-child {
    margin-left: 0;
    clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);
  }

  .class-slice:last-child {
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
  }

  .class-slice:last-child::after {
    content: none;
  }

  .class-slice-copy {
    top: auto;
    right: auto;
    bottom: 14px;
    left: 50%;
    display: flex;
    width: auto;
    height: 224px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    transform: translateX(-50%);
  }

  .class-slice-copy > span {
    order: 2;
    display: block;
    height: 29px;
    margin: 9px 0 0;
    font-size: clamp(13px, 3.65vw, 15px);
    line-height: 1;
    letter-spacing: .08em;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
  }

  .class-slice-copy h3 {
    order: 1;
    height: 174px;
    min-height: 174px;
    overflow-wrap: normal;
    font-size: clamp(15px, 4.15vw, 18px);
    line-height: 1;
    letter-spacing: -.02em;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
  }

  .class-slice-copy h3 br {
    display: none;
  }

  .class-slice-copy p {
    display: none;
  }

  .classes-cta {
    align-items: flex-start;
    gap: 16px;
    padding-top: 1px;
  }

  .widget-nudge {
    right: 78px;
    bottom: 72px;
    width: 50px;
    height: 82px;
  }

  .whatsapp-float {
    left: 14px !important;
  }

  .coaching-kicker {
    max-width: 100%;
    font-size: 10px;
  }

  .coaching-compact {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .coaching-compact-intro,
  .coaching-compact-title,
  .coaching-compact > .coaching-formats {
    padding: 26px 24px;
  }

  .coaching-compact-intro h2 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .coaching-compact-intro h2 em {
    display: block;
    width: 100%;
    max-width: none;
    padding-right: 0;
    color: transparent;
    font-size: clamp(42px, 12.4vw, 50px);
    line-height: .9;
    letter-spacing: -.012em;
    white-space: nowrap;
    font-kerning: none;
    -webkit-text-stroke: 1.25px #0a0a0a;
    -webkit-text-fill-color: transparent;
  }

  .coaching-compact-intro p {
    margin-top: 22px;
  }

  .coaching-compact-title {
    min-height: 160px;
    border-top: 1px solid rgba(0,0,0,.09);
    border-left: 0;
  }

  .coaching-compact-title h3 {
    font-size: clamp(40px, 12.5vw, 54px);
  }

  .coaching-compact-ratio {
    margin-bottom: 22px;
    font-size: clamp(76px, 23vw, 106px);
  }

  .coaching-compact > .coaching-formats {
    display: flex;
    flex-direction: column;
    padding: 18px;
    border-top: 1px solid rgba(0,0,0,.09);
  }

  .coaching-compact .coaching-formats article {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 78px;
  }

  .coaching-compact .coaching-formats article > span {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .coaching-compact .coaching-formats h3 {
    font-size: 25px;
  }

  .coaching-booking {
    padding: 18px;
    border-radius: 25px;
  }

  .coaching-booking-widget {
    border-radius: 18px;
  }

  .services-section,
  .app-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-section { padding-bottom: 18px; }
  .app-section { padding-top: 18px; }

  .app-section .app-block {
    background:
      linear-gradient(180deg, rgba(7,7,7,.92), rgba(7,7,7,.72)),
      url('img/app.webp') 82% center / cover no-repeat;
  }

  .service-card-copy {
    padding: 26px 24px 22px;
  }

  .service-card-photo {
    min-height: 260px;
  }
}

@media (max-width: 520px) {
  .service-card-copy h3 {
    font-size: 38px;
    line-height: .95;
  }

  #inicio.hero {
    min-height: auto;
    align-items: stretch;
  }

  #inicio .hero-content {
    max-width: none;
    padding: 0;
  }

  #inicio .hero-lead {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    justify-content: flex-end;
    padding: 132px 18px clamp(180px, 22svh, 200px);
  }

  #inicio .hero-lead .hero-actions {
    position: relative;
    z-index: 5;
    margin-top: 28px;
    isolation: isolate;
    pointer-events: auto;
  }

  #inicio .hero-lead .hero-actions .btn {
    position: relative;
    z-index: 1;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
  }

  #inicio .hero-lead .hero-actions .btn:active {
    transform: scale(.985);
  }

  #inicio .hero-stats {
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto repeat(2, minmax(148px, auto));
    gap: 10px;
    margin: 0;
    padding: 0;
  }

  #inicio .hero-stats-panel {
    position: relative;
    z-index: 3;
    display: block;
    margin-top: -56px;
    padding: 16px 14px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(214,255,63,.14);
    border-radius: 34px;
    background:
      radial-gradient(circle at 96% 4%, rgba(214,255,63,.1), transparent 28%),
      linear-gradient(180deg, #0c0d09 0%, #070707 22%, #050505 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.06),
      inset 0 -1px 0 rgba(214,255,63,.05),
      0 -26px 70px rgba(0,0,0,.5),
      0 22px 54px rgba(0,0,0,.28);
  }

  #inicio .stat {
    position: relative;
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 18px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(214,255,63,.24);
    border-radius: 26px;
    background:
      radial-gradient(circle at 100% 0%, rgba(214,255,63,.12), transparent 44%),
      linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.022) 48%, rgba(214,255,63,.035)),
      rgba(5,7,4,.78);
    -webkit-backdrop-filter: blur(16px) saturate(145%);
    backdrop-filter: blur(16px) saturate(145%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.14),
      inset 0 -1px 0 rgba(214,255,63,.05),
      0 18px 42px rgba(0,0,0,.3);
  }

  #inicio .stat strong {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    color: var(--brand);
    font-size: clamp(25px, 7.2vw, 31px);
    line-height: 1;
  }

  #inicio .stat span {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,.74);
    width: 100%;
    margin-top: 0;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -.005em;
    text-align: left;
    text-wrap: balance;
  }

  #inicio .stat:first-child {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 154px;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    text-align: left;
    background:
      radial-gradient(circle at 94% 6%, rgba(214,255,63,.17), transparent 42%),
      linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.022) 48%, rgba(214,255,63,.04)),
      rgba(5,7,4,.8);
  }

  #inicio .stat:first-child strong {
    margin-bottom: 0;
    color: var(--brand);
    font-size: clamp(40px, 11.7vw, 52px);
    line-height: .86;
    letter-spacing: -.065em;
    white-space: nowrap;
  }

  #inicio .stat:first-child span {
    display: block;
    max-width: 72%;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
  }

  #inicio .stat:first-child::after {
    content: "365";
    position: absolute;
    right: -9px;
    bottom: -21px;
    z-index: 1;
    color: rgba(214,255,63,.075);
    font-size: 92px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.09em;
    transform: rotate(-5deg);
  }

  #inicio .stat:first-child::before {
    content: "";
    position: absolute;
    inset: -30% auto -30% -48%;
    z-index: 3;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
    transform: skewX(-18deg);
  }

  #inicio .stat:nth-child(2) {
    grid-column: 1 / 7;
    grid-row: 2 / span 2;
    display: flex;
    min-height: 296px;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 18px 16px;
    text-align: left;
    border-color: rgba(214,255,63,.3);
    background:
      linear-gradient(118deg, transparent 0 68%, rgba(214,255,63,.08) 68% 69%, transparent 69%),
      radial-gradient(circle at 15% 100%, rgba(214,255,63,.15), transparent 42%),
      linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.018) 50%),
      rgba(5,7,4,.82);
  }

  #inicio .stat:nth-child(2) strong {
    color: var(--brand);
    font-size: clamp(34px, 10vw, 40px);
    line-height: .9;
    letter-spacing: -.06em;
    -webkit-text-stroke: 0;
    text-shadow: 0 0 28px rgba(214,255,63,.12);
    white-space: nowrap;
  }

  #inicio .stat:nth-child(2) span {
    display: block;
    max-width: 100%;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
  }

  #inicio .stat:nth-child(3),
  #inicio .stat:nth-child(4) {
    grid-column: 7 / -1;
    display: flex;
    min-height: 143px;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 18px 16px;
    text-align: left;
  }

  #inicio .stat:nth-child(3) {
    grid-row: 2;
    background:
      radial-gradient(circle at 100% 100%, rgba(214,255,63,.14), transparent 48%),
      linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.02) 50%, rgba(214,255,63,.035)),
      rgba(5,7,4,.8);
  }

  #inicio .stat:nth-child(3) strong {
    color: var(--brand);
    font-size: clamp(27px, 7.7vw, 31px);
    line-height: .95;
    letter-spacing: -.045em;
  }

  #inicio .stat:nth-child(3) span {
    display: block;
    max-width: 100%;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
  }

  #inicio .stat:nth-child(3)::after {
    content: "12";
    position: absolute;
    right: -4px;
    bottom: -22px;
    z-index: 1;
    color: rgba(214,255,63,.07);
    font-size: 80px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.08em;
    transform: rotate(-5deg);
  }

  #inicio .stat:nth-child(3)::before {
    content: "";
    position: absolute;
    inset: -30% auto -30% -48%;
    z-index: 3;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    transform: skewX(-18deg);
  }

  #inicio .stat:nth-child(4) {
    grid-row: 3;
    border-color: rgba(214,255,63,.25);
    background:
      linear-gradient(118deg, transparent 0 68%, rgba(214,255,63,.08) 68% 69%, transparent 69%),
      radial-gradient(circle at 15% 100%, rgba(214,255,63,.14), transparent 42%),
      linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.018) 50%),
      rgba(5,7,4,.82);
  }

  #inicio .stat:nth-child(4) strong {
    color: var(--brand);
    font-size: clamp(27px, 7.7vw, 31px);
    line-height: .95;
    letter-spacing: -.045em;
    -webkit-text-stroke: 0;
    text-shadow: none;
  }

  #inicio .stat:nth-child(4) span {
    display: block;
    max-width: 100%;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
  }

  #inicio .hero-stats-panel.is-visible .stat:nth-child(1)::before {
    animation: auraStatsShine 1.05s cubic-bezier(.2,.7,.2,1) .12s both;
  }

  #inicio .hero-stats-panel.is-visible .stat:nth-child(3)::before {
    animation: auraStatsShine 1.05s cubic-bezier(.2,.7,.2,1) .58s both;
  }

  #inicio .hero-stats-panel.is-visible .stat:nth-child(2) {
    animation: auraStatsGlow 1.1s ease .3s both;
  }

  #inicio .hero-stats-panel.is-visible .stat:nth-child(4) {
    animation: auraStatsGlow 1.1s ease .76s both;
  }

  #inicio .hero-video {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: 100svh;
    min-height: 0;
    max-height: 100svh;
    object-fit: cover;
    object-position: center top;
    filter: none;
  }

  #inicio.hero::before {
    inset: 0 0 auto;
    height: 100svh;
    background:
      radial-gradient(circle at 76% 18%, rgba(214,255,63,.14), transparent 30%),
      linear-gradient(180deg, rgba(7,7,7,.28) 0%, rgba(7,7,7,.14) 38svh, rgba(7,7,7,.62) 78svh, rgba(7,7,7,.9) 100%);
  }

  .cta-final {
    padding: 82px 18px 60px;
  }

  .cta-final h2 {
    font-size: clamp(46px, 15vw, 64px);
    line-height: .86;
  }

  #tarifas .section-head h2 {
    font-size: clamp(31px, 9.7vw, 44px);
    line-height: .92;
  }

  #tarifas .membership-line {
    display: block;
    white-space: nowrap;
  }

  #tarifas .pricing-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 16px;
  }

  #tarifas .pricing-note strong {
    margin-top: 1px;
    font-size: 18px;
    line-height: 1.1;
    white-space: nowrap;
  }
}

.pricing-note-copy {
  min-width: 0;
  text-align: right;
}

.pricing-note-copy > span,
.pricing-note-copy > small {
  display: block;
}

.pricing-note-copy > span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 520px) {
  #tarifas .pricing-note {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 20px;
  }

  #tarifas .pricing-note strong {
    align-self: flex-start;
    margin: 0;
    font-size: 20px;
    line-height: 1.1;
  }

  #tarifas .pricing-note-copy {
    width: 100%;
  }

  #tarifas .pricing-note-copy > span {
    font-size: 14px;
    line-height: 1.4;
  }

  #tarifas .pricing-note-copy > small {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.09);
    font-size: 10.5px;
    line-height: 1.45;
  }
}

.pricing-note-copy > small {
  margin-top: 5px;
  color: rgba(255,255,255,.46);
  font-size: 11px;
  line-height: 1.35;
}

@keyframes auraStatsShine {
  from { transform: translateX(0) skewX(-18deg); }
  to { transform: translateX(520%) skewX(-18deg); }
}

@keyframes auraStatsGlow {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.14),
      inset 0 -1px 0 rgba(214,255,63,.05),
      0 18px 42px rgba(0,0,0,.3);
  }
  48% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.18),
      inset 0 -1px 0 rgba(214,255,63,.09),
      0 0 32px rgba(214,255,63,.16),
      0 18px 42px rgba(0,0,0,.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .widget-nudge svg,
  .widget-nudge path {
    animation: none !important;
  }

  .widget-nudge path {
    stroke-dashoffset: 0;
  }

  #inicio .hero-stats-panel .stat {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  #inicio .hero-stats-panel .stat:nth-child(1)::before,
  #inicio .hero-stats-panel .stat:nth-child(3)::before {
    animation: none !important;
  }
}
