/* ============================================================
   MARU TRAINER — styles.css
   Paleta: negro profundo + magenta vibrante + blanco
   Tipografía: Bebas Neue (display) + Barlow (cuerpo)
   ============================================================ */

/* ---- VARIABLES ---- */
:root {
  --magenta:     #ec27abde;
  --magenta-alt: #ec27abde;
  --magenta-dim: rgba(204, 0, 204, 0.15);
  --bg:          #0d0d0d;
  --bg-2:        #111111;
  --bg-3:        #181818;
  --white:       #ffffff;
  --grey:        #888888;
  --grey-dim:    rgba(255,255,255,0.07);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --radius:       4px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --section-pad:  clamp(4rem, 8vw, 8rem);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- frase ---- */
.about-banner__overlay{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 2rem;
}

.about-banner__title{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lema-grande{
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;

  color: var(--magenta);

  text-shadow:
    0 0 10px rgba(255,108,206,.25);
}

.texto-frase{
  max-width: 750px;
  margin: 0 auto;

  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  font-weight: 400;

  color: var(--white);
  opacity: .92;
}

/* ---- BOTONES ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--magenta);
  color: var(--white);
  border-color: var(--magenta);
}
.btn--primary:hover {
  background: var(--magenta-alt);
  border-color: var(--magenta-alt);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(204, 0, 204, 0.45);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  transform: translateY(-3px);
}
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ---- TÍTULOS DE SECCIÓN ---- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

/* ---- WATERMARKS ---- */
.watermark {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 14rem);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}
.watermark--right  { right: -2rem; top: 50%; transform: translateY(-50%) rotate(90deg); transform-origin: right center; }
.watermark--left   { left:  -2rem; top: 50%; transform: translateY(-50%) rotate(-90deg); transform-origin: left center; }
.watermark--bottom { bottom: 1rem; left: 50%; transform: translateX(-50%); font-size: clamp(3rem, 8vw, 7rem); }
.watermark--center { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.watermark--outline { -webkit-text-stroke: 1px rgba(204, 0, 204, 0.2); color: transparent; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s;  }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s;  }


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 70px;
  display: flex;
  align-items: center;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(204,0,204,0.12);
  transition: background var(--transition);
}
.navbar.scrolled { background: rgba(13,13,13,0.98); }
.navbar__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color var(--transition);
}
.navbar__logo:hover { color: var(--magenta); }

/* Logo imagen: altura fija, ancho auto para mantener ratio */
.navbar__logo-img {
  margin-top: 5%;
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Si el archivo no existe, el onerror lo oculta */
}
.navbar__logo-fallback {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar__icon { flex-shrink: 0; }
.navbar__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--white);
}
.navbar__logo:hover .navbar__brand { color: var(--magenta); }

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.navbar__link {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  color: var(--white);
  position: relative;
  transition: color var(--transition);
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--magenta);
  transition: width var(--transition);
}
.navbar__link:hover { color: var(--magenta); }
.navbar__link:hover::after { width: 100%; }
.navbar__link.active { color: var(--magenta); }
.navbar__link.active::after { width: 100%; }
.navbar__cta { margin-left: 1rem; }

/* Hamburger mobile */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO — con video de fondo
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 70px;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
}

/* Video de fondo */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55) saturate(0.9);
}

/* Imagen fallback (también de fondo) */
.hero__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  height: 100%;
  object-position: center top;
  filter: brightness(0.5);
}

/* Overlay degradado sobre video/imagen */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(13,13,13,0.92) 0%,
    rgba(13,13,13,0.75) 50%,
    rgba(13,13,13,0.35) 100%
  );
}

/* Círculo decorativo fondo */
.hero::before {
  content: '';
  position: absolute;
  width: clamp(300px, 60vw, 700px);
  height: clamp(300px, 60vw, 700px);
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.03);
  top: 50%; left: 10%;
  transform: translate(-30%, -50%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 5% 4rem 8%;
  max-width: 700px;
}
.hero__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  letter-spacing: 0.3em;
  color: var(--grey);
  text-transform: lowercase;
  margin-bottom: 0.5rem;
}
.hero__name {
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 13rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Indicador scroll */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 8%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--magenta), transparent);
}

/* Líneas diagonales decorativas */
.hero__img-wrap::after {
  content: '';
  position: absolute;
  top: 10%; right: 0;
  width: 60px; height: 80%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(204,0,204,0.5) 6px,
    rgba(204,0,204,0.5) 8px
  );
  z-index: 3;
}


/* ============================================================
   SOBRE MARU — 2 columnas + Certificaciones
   ============================================================ */
.about {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4rem;
  padding: var(--section-pad) 8%;
  background: var(--bg-2);
  overflow: hidden;
  align-items: center;
}

/* Columna texto */
.about__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.75rem;
}
.about__text { z-index: 2; }
.about__bio {
  margin: 1.5rem 0 1rem;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 500px;
}
.about__bio + .about__bio { margin-top: 0; }
.about__bio + .btn { margin-top: 1.5rem; }

/* Columna imagen */
.about__media {
  position: relative;
  z-index: 2;
  height: 520px;
}
.about__media-inner {
  position: relative;
  height: 100%;
}
.about__img {
  border-radius: var(--radius);
  height: 100%;
  object-position: center top;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}
.about__media-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 100px;
  background: var(--magenta);
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
}
/* Badge flotante +5 años */
.about__badge {
  position: absolute;
  top: 2rem; left: -1.5rem;
  background: var(--magenta);
  color: var(--white);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 30px rgba(204,0,204,0.4);
  z-index: 3;
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}
.about__badge-txt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Certificaciones — ocupa ambas columnas (fila completa) */
.certs {
  grid-column: 1 / -1;
  z-index: 2;
}
.certs__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.certs__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.cert-card {
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.cert-card:hover {
  border-color: var(--magenta);
  box-shadow: 0 8px 24px rgba(204,0,204,0.2);
  transform: translateY(-4px);
}
.cert-card__icon {
  width: 40px; height: 40px;
  background: var(--magenta-dim);
  border: 1px solid var(--magenta);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.cert-card:hover .cert-card__icon {
  background: var(--magenta);
  color: var(--white);
}
.cert-card__name {
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
}


/* ============================================================
   ABOUT BANNER
   ============================================================ */
.about-banner {
  position: relative;
  height: clamp(300px, 55vw, 600px);
  overflow: hidden;
  background: var(--bg);
}
.about-banner__img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-position: center 30%;
  filter: brightness(0.45);
}
.about-banner__overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
}
.about-banner__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1.05;
}
.about-banner__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 18px;
  background: var(--magenta);
  z-index: 3;
}


/* ============================================================
   MISIÓN & VISIÓN
   ============================================================ */
.mission {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.8fr;
  gap: 3rem;
  padding: var(--section-pad) 5%;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  align-items: center;
}
.mission__img-col { position: relative; height: 420px; }
.mission__img { border-radius: var(--radius); clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%); }
.mission__img-accent {
  position: absolute;
  bottom: -15px; right: -15px;
  width: 80px; height: 80px;
  background: var(--magenta);
  z-index: -1;
}
.mission__subtitle {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.6);
}
.mission__cards { display: flex; flex-direction: column; gap: 2rem; }
.mission__card-title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.mission__card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; }
.mission__coach-col { position: relative; height: 500px; overflow: hidden; }
.mission__coach-img { border-radius: var(--radius); height: 100%; object-position: top; }


/* ============================================================
   SERVICIOS
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
  min-height: 700px;
}
.services__imgs { display: grid; grid-template-rows: 1fr; }
.services__img-top,
.services__img-bottom { position: relative; overflow: hidden; height: 700px; }
.services__img-top img,
.services__img-bottom img { filter: brightness(0.7); transition: filter var(--transition); }
.services__img-top:hover img,
.services__img-bottom:hover img { filter: brightness(0.9); }
.services__img-bar {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 14px;
  background: var(--magenta);
  z-index: 2;
}
.services__list {
  padding: 5rem 5% 5rem 4%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.services__list .section-title { margin-bottom: 2rem; }
.service-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.service-item:last-child { border-bottom: none; }
.service-item__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: var(--magenta-dim);
  border: 1px solid var(--magenta);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  transition: var(--transition);
}
.service-item:hover .service-item__icon {
  background: var(--magenta);
  color: var(--white);
}
.service-item__body { flex: 1; }
.service-item__title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 0.06em;
  color: var(--magenta);
  margin-bottom: 0.5rem;
}
.service-item__body p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.service-item__btn { font-size: 0.78rem; padding: 0.45rem 1.2rem; }
.services__diag {
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 8px,
    rgba(204,0,204,0.3) 8px, rgba(204,0,204,0.3) 10px
  );
  z-index: 1;
}


/* ============================================================
   PLANES — REDISEÑO COMPLETO
   ============================================================ */
.plans {
  position: relative;
  padding: 5rem 5% var(--section-pad) 5%;
  background: var(--bg);
  overflow: hidden;
}
.plans__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.plans__header-text {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.8;
}

/* Filas de planes */
.plans__row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
.plans__row--top {
  grid-template-columns: repeat(3, 1fr);
}
.plans__row--bottom {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 0;
}

/* ---- PLAN CARD BASE ---- */
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.plan-card:hover {
  transform: translateY(-8px);
  border-color: var(--magenta);
  box-shadow: 0 16px 48px rgba(204, 0, 204, 0.25);
}

/* Imagen */
.plan-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.plan-card__img-wrap img { transition: transform 0.5s ease; }
.plan-card:hover .plan-card__img-wrap img { transform: scale(1.05); }

/* Label sobre imagen */
.plan-card__label {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  background: var(--magenta);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1.8rem;
  min-width: 120px;
  text-align: center;
  z-index: 2;
}

/* Badge (+ POPULAR / EXCLUSIVO) */
.plan-card__badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--white);
  color: var(--magenta);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  z-index: 4;
  text-transform: uppercase;
}
.plan-card__badge--custom {
  background: var(--bg);
  color: var(--magenta);
  border-left: 1px solid var(--magenta);
  border-bottom: 1px solid var(--magenta);
}

/* Cuerpo de la card */
.plan-card__body {
  background: var(--magenta);
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Precio — gran y visible */
.plan-card__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.plan-card__price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1;
}
.plan-card__price--big {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
}
.plan-card__price--consult {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.plan-card__period {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nombre del plan */
.plan-card__name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

/* Tagline (solo GAP y Personalizado) */
.plan-card__tagline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}

/* Lista de features */
.plan-card__features {
  flex: 1;
  margin: 0.75rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.plan-card__features li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.88);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.plan-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: 900;
  font-size: 0.75rem;
}

/* CTA button dentro de la card */
.plan-card__cta {
  background: var(--white);
  color: var(--magenta);
  border-color: var(--white);
  width: 100%;
  text-align: center;
  margin-top: auto;
  font-weight: 900;
}
.plan-card__cta:hover {
  background: var(--bg);
  color: var(--white);
  border-color: var(--bg);
  transform: translateY(-3px);
}

/* Plan GAP — DESTACADO */
.plan-card--gap {
  border: 2px solid var(--magenta);
  box-shadow: 0 8px 40px rgba(255,108,206,0.3);
}
.plan-card--gap .plan-card__body {
  background: linear-gradient(145deg, #ec27abde, #ec27abde);
}
.plan-card--gap .plan-card__img-wrap {
  height: 260px;
}

/* Plan Personalizado — exclusivo */
.plan-card--custom {
  border: 1px solid rgba(255,255,255,0.15);
}
.plan-card--custom .plan-card__body {
  background: linear-gradient(145deg, #1a1a1a, #222222);
  border-top: 3px solid var(--magenta);
}
.plan-card--custom .plan-card__price-wrap { color: var(--magenta); }
.plan-card--custom .plan-card__price--consult { color: var(--magenta); }
.plan-card--custom .plan-card__period { color: #ec27abde; }
.plan-card--custom .plan-card__name { color: var(--white); }
.plan-card--custom .plan-card__tagline { color: var(--magenta); }
.plan-card--custom .plan-card__features li { color: rgba(255,255,255,0.75); }
.plan-card--custom .plan-card__features li::before { color: var(--magenta); }
.plan-card--custom .plan-card__cta {
  background: var(--magenta);
  color: var(--white);
  border-color: var(--magenta);
}
.plan-card--custom .plan-card__cta:hover {
  background: var(--magenta-alt);
  border-color: var(--magenta-alt);
  transform: translateY(-3px);
}


/* ============================================================
   CONTACTO
   ============================================================ */
.contact {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: var(--section-pad) 8%;
  background: var(--bg-2);
  overflow: hidden;
  min-height: 80vh;
}
.contact__wm1 {
  top: 10%; left: 50%;
  transform: translateX(-50%);
  font-size: clamp(3rem, 12vw, 9rem);
}
.contact__wm2 {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(3rem, 12vw, 9rem);
}
.contact__left { flex: 1; position: relative; z-index: 2; }
.contact__divider {
  width: 4px;
  height: 80px;
  background: var(--magenta);
  margin: 2rem 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem 3rem;
  margin-top: 2rem;
}
.contact__label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--magenta);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}
.contact__value {
  font-size: 1rem;
  color: var(--white);
  transition: color var(--transition);
}
a.contact__value:hover { color: var(--magenta); }

/* Botón WhatsApp */
.contact__wa-btn {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
}

/* Mockup teléfono */
.contact__phone { position: relative; z-index: 2; flex: 0 0 340px; }
.contact__phone-frame {
  border: 6px solid var(--white);
  border-radius: 36px;
  overflow: hidden;
  height: 560px;
  width: 280px;
  margin: 0 auto;
  box-shadow: 0 0 0 2px var(--bg-2), 0 24px 60px rgba(0,0,0,0.6);
  position: relative;
}
.contact__phone-frame::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 6px;
  background: var(--white);
  border-radius: 3px;
  z-index: 2;
}
.contact__phone-frame img { height: 100%; }


/* ============================================================
   FOOTER / GRACIAS
   ============================================================ */
.footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  min-height: 80vh;
  background: var(--bg);
  overflow: hidden;
  align-items: center;
}
.footer__center { height: 100%; }
.footer__img {
  height: 100%;
  min-height: 500px;
  object-position: top;
}
.footer__right {
  padding: 3rem 5% 3rem 3%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
}
.footer__line { width: 80px; height: 4px; background: var(--magenta); }
.footer__thanks {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
}
.footer__socials {
  display: flex;
  gap: 1rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__social-link:hover { color: var(--magenta); }
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.footer::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: clamp(80px, 12vw, 160px);
  height: clamp(80px, 12vw, 160px);
  background: var(--magenta);
  z-index: 0;
}


/* ============================================================
   BOTONES FLOTANTES (FAB)
   ============================================================ */
.fab {
  position: fixed;
  z-index: 999;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.fab--top {
  bottom: 90px;
  right: 24px;
  background: rgba(30,30,30,0.95);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  border: 1px solid rgba(255,255,255,0.12);
}
.fab--top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.fab--top:hover {
  background: var(--magenta);
  transform: translateY(-4px);
}
.fab--instagram {
  bottom: 24px;
  right: 24px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: var(--white);
}
.fab--instagram:hover {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 30px rgba(214, 36, 159, 0.6);
}


/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .plans__row--top {
    grid-template-columns: repeat(2, 1fr);
  }
  .certs__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .plans__row--bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Navbar */
  .navbar__hamburger { display: flex; }
  .navbar__menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    transition: transform var(--transition);
    border-bottom: 2px solid var(--magenta);
  }
  .navbar__menu.open { transform: translateY(0); }
  .navbar__cta { margin-left: 0; width: 100%; text-align: center; }

  /* Hero */
  .hero { flex-direction: column; padding-top: 70px; align-items: flex-start; }
  .hero__content { padding: 3rem 6%; max-width: 100%; }
  .hero__name { font-size: clamp(4rem, 18vw, 7rem); }
  .watermark--right { display: none; }
  .hero__scroll-hint { display: none; }
  .hero__btns { flex-direction: column; width: 100%; max-width: 300px; }

  /* About */
  .about {
    grid-template-columns: 1fr;
    padding: 4rem 6%;
    gap: 3rem;
  }
  .about__media { height: 320px; }
  .about__badge { left: 1rem; }

  /* Certs */
  .certs__grid { grid-template-columns: repeat(2, 1fr); }

  /* Mission */
  .mission { grid-template-columns: 1fr; padding: 4rem 6%; }
  .mission__img-col { height: 260px; }
  .mission__coach-col { display: none; }

  /* Services */
  .services { grid-template-columns: 1fr; }
  .services__imgs { display: none; }
  .services__list { padding: 4rem 6%; }

  /* Plans header */
  .plans__header { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Plans rows */
  .plans__row--top  { grid-template-columns: 1fr; }
  .plans__row--bottom { grid-template-columns: 1fr; }

  /* Contact */
  .contact {
    flex-direction: column;
    padding: 4rem 6%;
    min-height: auto;
  }
  .contact__phone { display: none; }
  .contact__grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Footer */
  .footer {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }
  .footer__center { height: 350px; }
  .footer__right { align-items: center; padding: 3rem 6%; }
  .footer__line { margin: 0 auto; }
  .footer__socials { justify-content: center; }
}

@media (max-width: 600px) {
  .plans__row--top { grid-template-columns: 1fr; }
  .certs__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero__name { font-size: clamp(3.5rem, 20vw, 5rem); }
  .section-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .certs__grid { grid-template-columns: 1fr; }
  .about__badge { display: none; }
}

/* Logo grande en el Hero */
.hero__logo {
  position: absolute;
  top: 10vh;
  right: 4%;
  transform: translateY(-50%);
  z-index: 2;
  width: 750px; /* ajustá este número a tu gusto */
  
}

.hero__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(255, 108, 206, 0.3));
}

.hero__logo.reveal {
  opacity: 0;
}
.hero__logo.reveal.visible {
  opacity: 1;
}

/* Solo en mobile */
@media (max-width: 768px) {
  .hero__logo {
    position: static;
    transform: none;
    width: 200px;
    margin: 1.5rem auto 0;
  }
}