/* ═══════════════════════════════════════════
   RESET & ROOT — Colores corporativos VirtuTrainer
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colors */
  --teal:       #38BCC8;
  --teal-dark:  #2699A4;
  --teal-deep:  #1A7580;
  --teal-bg:    #EBF8FA;
  --teal-mid:   #C5EDF1;
  --charcoal:   #2D2D35;
  --charcoal2:  #3D3D47;
  --charcoal3:  #52525E;

  /* Neutrals */
  --white:      #FFFFFF;
  --offwhite:   #F8FAFB;
  --light:      #F0F4F5;
  --border:     #DDE8EA;
  --muted:      #7A868A;
  --text:       #2D2D35;

  /* Fonts */
  --f-display: 'Sora', sans-serif;
  --f-body:    'Inter', sans-serif;

  /* Radii */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-pill: 999px;
}

html { scroll-behavior: auto; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* scroll offset for fixed nav */
section[id], div[id] { scroll-margin-top: 80px; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
.tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-display); font-size: 0.78rem; letter-spacing: 0.18em;
  font-weight: 600; text-transform: uppercase; color: var(--teal);
}
.tag::before {
  content: ''; display: block;
  width: 20px; height: 2px; background: var(--teal);
}
.h1 {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.92; letter-spacing: -0.01em; color: var(--charcoal);
}
.h2 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1; letter-spacing: -0.01em; color: var(--charcoal);
}
.h3 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1; color: var(--charcoal);
}
.teal-word { color: var(--teal); }
.italic-serif { font-style: italic; font-family: var(--f-body); font-weight: 300; font-size: 0.9em; }
.lead { font-size: 1.05rem; color: var(--muted); line-height: 1.75; }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-display); font-size: 0.88rem; letter-spacing: 0.08em;
  font-weight: 700; text-transform: uppercase; text-decoration: none;
  padding: 0.85rem 2rem; border-radius: var(--r-pill);
  cursor: pointer; border: none; transition: all 0.25s;
  white-space: nowrap;
}
.btn-teal   { background: var(--teal); color: white; }
.btn-teal:hover   { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(56,188,200,0.35); }
.btn-dark   { background: var(--charcoal); color: white; }
.btn-dark:hover   { background: var(--charcoal2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(45,45,53,0.25); }
.btn-ghost  { background: transparent; color: var(--charcoal); border: 1.5px solid var(--border); }
.btn-ghost:hover  { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-wa     { background: #25D366; color: white; }
.btn-wa:hover     { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.35); }

/* ═══════════════════════════════════════════
   PHOTO PLACEHOLDER
═══════════════════════════════════════════ */
.photo-ph {
  background: var(--light);
  border: 2px dashed var(--teal-mid);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.6rem; text-align: center;
}
.ph-ico  { font-size: 2rem; opacity: 0.5; }
.ph-lbl  {
  font-family: var(--f-display); font-size: 0.72rem; letter-spacing: 0.15em;
  font-weight: 600; text-transform: uppercase; color: var(--teal-deep);
}
.ph-hint { font-size: 0.72rem; color: var(--muted); max-width: 150px; line-height: 1.4; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2rem; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  display: block; text-decoration: none; flex-shrink: 0; line-height: 0;
}
.nav-logo img {
  height: 60px; width: auto; display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 1.75rem; list-style: none;
}
.nav-links a {
  font-family: var(--f-display); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--teal); }
.nav-ctas { display: flex; align-items: center; gap: 0.6rem; }
.nav-cta-bonos {
  font-family: var(--f-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.5rem 1.2rem; border-radius: var(--r-pill);
  border: 1.5px solid var(--teal); color: var(--teal);
  background: transparent; cursor: pointer; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.nav-cta-bonos:hover { background: var(--teal-bg); }
.nav-cta { padding: 0.5rem 1.2rem; font-size: 0.78rem; white-space: nowrap; }
.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-ham span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; }
.mob-menu {
  display: none; flex-direction: column;
  background: white; border-top: 1px solid var(--border);
}
.mob-menu.open { display: flex; }
.mob-menu a {
  padding: 1rem 2rem; font-family: var(--f-display); font-size: 0.9rem;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--charcoal); border-bottom: 1px solid var(--light);
  transition: color 0.2s, background 0.2s;
}
.mob-menu a:hover { color: var(--teal); background: var(--teal-bg); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 86px; overflow: hidden; position: relative;
  background: var(--offwhite);
}
/* Diagonal teal stripe at the right */
.hero::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 42%;
  background: var(--teal-bg);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  position: relative; z-index: 1;
  padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-tag    { margin-bottom: 1.2rem; }
.hero-title  { margin-bottom: 1.5rem; }
.hero-title .big-accent {
  display: block; color: var(--teal);
  font-style: italic; font-size: 1.15em;
}
.hero-body {
  font-size: 1rem; color: var(--muted); line-height: 1.75;
  max-width: 430px; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; gap: 2.5rem; padding-top: 2rem;
  border-top: 1.5px solid var(--border);
}
.stat-val {
  font-family: var(--f-display); font-size: 2rem; font-weight: 800;
  color: var(--charcoal); line-height: 1;
}
.stat-val span { color: var(--teal); }
.stat-lbl { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo-wrap {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--r-xl) var(--r-xl) 50% var(--r-xl);
  overflow: hidden; position: relative;
}
.hero-photo-wrap .photo-ph { height: 100%; border-radius: inherit; }
.hero-photo-ring {
  position: absolute; inset: -10px;
  border-radius: var(--r-xl) var(--r-xl) 50% var(--r-xl);
  border: 2px dashed rgba(56,188,200,0.25);
  pointer-events: none;
}
/* Floating card */
.hero-card {
  position: absolute; bottom: 2.5rem; left: -2rem;
  background: white; border-radius: var(--r-md);
  padding: 0.9rem 1.1rem;
  box-shadow: 0 8px 32px rgba(45,45,53,0.12);
  display: flex; align-items: center; gap: 0.75rem;
  min-width: 190px; z-index: 2;
}
.card-ico {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--teal-bg); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.card-lbl { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.card-val { font-family: var(--f-display); font-size: 0.95rem; font-weight: 700; color: var(--charcoal); }

/* ═══════════════════════════════════════════
   SERVICIOS
═══════════════════════════════════════════ */
.servicios { padding: 4rem 0; background: white; scroll-margin-top: 80px; }
.section-header { text-align: center; max-width: 580px; margin: 0 auto 2rem; }
.section-header .tag { justify-content: center; }
.section-header .tag::before { display: none; }
.section-header .tag::after  { content: ''; display: block; width: 20px; height: 2px; background: var(--teal); }
.section-header .h2 { margin: 0.75rem 0; }
.section-header p   { color: var(--muted); }

.servicios-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.svc-card {
  padding: 2rem 1.5rem; background: white; position: relative;
  border-right: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  transition: background 0.3s;
  overflow: hidden;
}
.svc-card:nth-child(4n) { border-right: none; }
.svc-card:nth-child(n)  { border-bottom: none; }
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { background: var(--teal-bg); }
.svc-num {
  font-family: var(--f-display); font-size: 3.5rem; font-weight: 800;
  color: rgba(56,188,200,0.08); line-height: 1; margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.svc-card:hover .svc-num { color: rgba(56,188,200,0.15); }
.svc-ico   { margin-bottom: 1rem; line-height: 0; }
.svc-title {
  font-family: var(--f-display); font-size: 1.45rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 0.75rem; letter-spacing: -0.01em;
  line-height: 1.15;
}
.svc-body  { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.svc-pills {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.4rem; margin-bottom: 1.5rem;
}
.pill {
  font-family: var(--f-display); font-size: 0.68rem; letter-spacing: 0.08em; font-weight: 600;
  text-transform: uppercase; padding: 0.35rem 0.5rem;
  border-radius: var(--r-pill); border: 1.5px solid rgba(56,188,200,0.3);
  color: var(--teal-deep); background: var(--teal-bg);
  text-align: center; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis;
}
.pill.dark {
  background: var(--light); color: var(--charcoal3);
  border-color: var(--border);
}
.svc-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--f-display); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal);
  transition: gap 0.2s;
}
.svc-link:hover { gap: 0.7rem; }

/* ═══════════════════════════════════════════
   SOBRE MÍ
═══════════════════════════════════════════ */
.sobre {
  padding: 7rem 0; overflow: hidden;
  background: linear-gradient(135deg, var(--offwhite) 55%, var(--teal-bg) 100%);
  position: relative;
}
.sobre-inner {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 5rem; align-items: center;
}
/* Photo side */
.sobre-photos { position: relative; }
.sobre-main {
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--r-xl) var(--r-xl) var(--r-xl) 0;
  overflow: hidden;
}
.sobre-main .photo-ph { height: 100%; border-radius: inherit; }
/* Small secondary photo in bottom-right */
.sobre-small {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 42%; aspect-ratio: 1;
  border-radius: var(--r-lg); overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 8px 32px rgba(45,45,53,0.12);
}
.sobre-small .photo-ph { height: 100%; font-size: 1.2rem; }
.sobre-small .ph-hint { font-size: 0.65rem; max-width: 100px; }
/* Floating cert badge */
.sobre-badge {
  position: absolute; top: 2rem; right: -1rem;
  background: var(--charcoal); color: white;
  border-radius: var(--r-pill); padding: 0.5rem 1rem;
  font-family: var(--f-display); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.4rem;
  box-shadow: 0 4px 20px rgba(45,45,53,0.2);
}

/* Content side */
.sobre-content .h2 { margin: 0.75rem 0 1rem; }
.sobre-content .lead { margin-bottom: 1.5rem; }
.sobre-content p {
  font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem;
}
.sobre-content p strong { color: var(--charcoal); font-weight: 600; }
.creds {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin: 1.75rem 0 2rem;
}
.cred {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 1rem;
  display: flex; gap: 0.75rem; align-items: flex-start;
  transition: border-color 0.2s;
}
.cred:hover { border-color: var(--teal); }
.cred-ico {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-bg); display: flex; align-items: center;
  justify-content: center; font-size: 0.95rem;
}
.cred-title { font-family: var(--f-display); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.03em; color: var(--charcoal); }
.cred-sub   { font-size: 0.78rem; color: var(--muted); line-height: 1.4; margin-top: 0.15rem; }

/* ═══════════════════════════════════════════
   PROCESO
═══════════════════════════════════════════ */
.proceso {
  padding: 6rem 0; background: var(--charcoal);
  position: relative; overflow: hidden;
}
.proceso-top { text-align: center; margin-bottom: 4rem; }
.proceso-top .tag { color: var(--teal); justify-content: center; }
.proceso-top .tag::before { background: var(--teal); }
.proceso-top .h2 { color: white; margin: 0.75rem 0 0.5rem; }
.proceso-top p { color: rgba(255,255,255,0.5); }
.steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 24px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px; z-index: 0;
  background: repeating-linear-gradient(
    90deg, rgba(56,188,200,0.4) 0, rgba(56,188,200,0.4) 8px,
    transparent 8px, transparent 16px
  );
}
.step { padding: 0 1.5rem; text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--teal); background: var(--charcoal);
  color: var(--teal); font-family: var(--f-display); font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; transition: background 0.3s, color 0.3s;
}
.step:hover .step-circle { background: var(--teal); color: white; }
.step-title { font-family: var(--f-display); font-size: 1rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: white; margin-bottom: 0.5rem; }
.step-body  { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ═══════════════════════════════════════════
   TESTIMONIOS
═══════════════════════════════════════════ */
.testimonios { padding: 7rem 0; background: var(--offwhite); }
.testimonios-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  margin-top: 4rem;
}
.testi {
  background: white; border-radius: var(--r-lg); padding: 2rem;
  border: 1.5px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.testi:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(56,188,200,0.1);
  border-color: var(--teal-mid);
}
.testi-stars { color: var(--teal); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-quote {
  font-size: 0.93rem; color: var(--muted); line-height: 1.75;
  font-style: italic; margin-bottom: 1.5rem;
  border-left: 3px solid var(--teal-mid); padding-left: 1rem;
}
.testi-author { display: flex; align-items: center; gap: 0.9rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden;
}
.testi-avatar .photo-ph { height: 100%; border-radius: 50%; border: none; background: var(--teal-bg); }
.testi-name { font-family: var(--f-display); font-size: 0.88rem; font-weight: 700; color: var(--charcoal); }
.testi-meta { font-size: 0.75rem; color: var(--muted); }
.testi-tag  {
  display: inline-block; margin-top: 0.25rem;
  font-family: var(--f-display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal-deep); background: var(--teal-bg);
  padding: 0.2rem 0.6rem; border-radius: var(--r-pill);
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq { padding: 7rem 0; background: white; }
.faq-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.faq-side .h2 { margin: 0.75rem 0 1rem; }
.faq-side p { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; line-height: 1.75; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-item:first-child { border-top: 1.5px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 0; background: none; border: none; cursor: pointer;
  font-family: var(--f-body); font-size: 0.95rem; font-weight: 600;
  color: var(--charcoal); text-align: left; gap: 1rem; transition: color 0.2s;
}
.faq-btn:hover { color: var(--teal); }
.faq-ico {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--light); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--muted); transition: all 0.3s; font-style: normal;
}
.faq-item.open .faq-ico { background: var(--teal); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; font-size: 0.92rem;
  color: var(--muted); line-height: 1.75;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 250px; padding-bottom: 1.2rem; }

/* ═══════════════════════════════════════════
   CONTACTO
═══════════════════════════════════════════ */
.contacto {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal2) 100%);
  position: relative; overflow: hidden;
}
.contacto::before {
  content: '';
  position: absolute; top: -200px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(56,188,200,0.12) 0%, transparent 70%);
}
.contacto-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start; position: relative; z-index: 1;
}
.contacto-left .tag     { color: var(--teal); }
.contacto-left .tag::before { background: var(--teal); }
.contacto-left .h2      { color: white; margin: 0.75rem 0 1rem; }
.contacto-left .h2 em   { color: var(--teal); font-style: italic; }
.contacto-left > p      { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; line-height: 1.75; }
.cways { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.5rem; }
.cway  { display: flex; align-items: center; gap: 1rem; }
.cway-ico {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: rgba(56,188,200,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.cway-label { font-family: var(--f-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: white; }
.cway-val   { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.socials    { display: flex; gap: 0.6rem; margin-top: 2rem; }
.soc {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0;
  color: rgba(255,255,255,0.7); transition: all 0.2s;
}
.soc:hover { background: var(--teal); color: white; transform: translateY(-2px); }

/* Form card */
.form-card {
  background: white; border-radius: var(--r-xl); padding: 2.5rem;
}
.form-card h3 {
  font-family: var(--f-display); font-size: 1.6rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 0.3rem;
}
.form-card > p { font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; }
.fg { margin-bottom: 1.1rem; }
.fg label {
  display: block; font-family: var(--f-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem;
}
.fg input, .fg select, .fg textarea {
  width: 100%; font-family: var(--f-body); font-size: 0.9rem; color: var(--charcoal);
  background: var(--offwhite); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); padding: 0.75rem 1rem;
  outline: none; transition: border-color 0.2s, background 0.2s; appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--teal); background: white;
}
.fg textarea { resize: vertical; min-height: 85px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 0.88rem; }
.f-ok {
  display: none; text-align: center; margin-top: 1rem;
  padding: 0.75rem; border-radius: var(--r-sm);
  background: var(--teal-bg); color: var(--teal-deep);
  font-family: var(--f-display); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background-color: #1E1E24; color: rgba(255,255,255,0.55);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: center; justify-content: space-between;
}
.footer-logo img { height: 40px; width: auto; opacity: 0.7; filter: brightness(0) invert(1); }
.footer-links, .footer-legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-links a, .footer-legal a {
  font-family: var(--f-display); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); transition: color 0.2s;
}
.footer-links a:hover, .footer-legal a:hover { color: var(--teal); }
.footer-legal a { font-size: 0.68rem; opacity: 0.6; }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════
   FLOATING WA BUTTON
═══════════════════════════════════════════ */
.float-wa {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 3s infinite;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 36px rgba(37,211,102,0.7); }
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.7s both; }
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.25s; }
.hero-content > *:nth-child(4) { animation-delay: 0.35s; }
.hero-content > *:nth-child(5) { animation-delay: 0.45s; }
.hero-visual { animation: fadeUp 0.9s 0.25s both; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner   { gap: 2rem; }
  .sobre-inner  { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .steps        { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps::before { display: none; }
  .faq-inner    { grid-template-columns: 1fr; gap: 2rem; }
  .contacto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .testimonios-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-ham { display: flex; }
  .hero-inner { grid-template-columns: 1fr; padding: 2rem 1.5rem 3rem; }
  .hero-visual { order: -1; max-width: 300px; margin: 0 auto; }
  .hero-card { left: -0.5rem; }
  .servicios-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none !important; border-bottom: 1.5px solid var(--border); }
  .svc-card:last-child { border-bottom: none; }
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-photos { max-width: 340px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr 1fr; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .creds { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}

/* ═══════════════════════════════════════════
   HORARIO
═══════════════════════════════════════════ */
.horario { padding: 6rem 0; background: white; }
.horario-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.horario-dia {
  background: var(--offwhite); border-radius: var(--r-lg);
  overflow: hidden; border: 1.5px solid var(--border);
  transition: border-color 0.2s;
}
.horario-dia:hover { border-color: var(--teal-mid); }
.dia-header {
  background: var(--charcoal); padding: 0.85rem 1.1rem;
  display: flex; align-items: center; justify-content: space-between;
}
.dia-name {
  font-family: var(--f-display); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: white;
}
.dia-badge {
  font-family: var(--f-display); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--teal); color: white;
  padding: 0.2rem 0.6rem; border-radius: var(--r-pill);
}
.clase-slot {
  padding: 0.9rem 1.1rem; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 0.6rem; align-items: start;
}
.clase-slot:last-child { border-bottom: none; }
.clase-hora {
  font-family: var(--f-display); font-size: 1rem; font-weight: 700;
  color: var(--teal); line-height: 1.2;
}
.clase-title {
  font-family: var(--f-display); font-size: 0.85rem; font-weight: 700;
  color: var(--charcoal); line-height: 1.2;
}
.clase-meta { font-size: 0.72rem; color: var(--muted); margin-top: 0.2rem; }
.clase-estado {
  font-family: var(--f-display); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: var(--r-pill); white-space: nowrap;
}
.clase-estado.libre  { background: #E8F8F0; color: #1A7A4A; }
.clase-estado.pocos  { background: #FFF4E5; color: #8A5A00; }
.clase-estado.completo { background: #FEE9E9; color: #8A1A1A; }
.horario-nota {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: var(--teal-bg); border: 1px solid var(--teal-mid);
  border-radius: var(--r-md); padding: 1rem 1.25rem; margin-top: 2rem;
  font-size: 0.88rem; color: var(--muted); line-height: 1.6;
}

/* ═══════════════════════════════════════════
   BONOS
═══════════════════════════════════════════ */
.bonos { padding: 7rem 0; background: var(--offwhite); }
.bonos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.bono-card {
  background: white; border-radius: var(--r-xl);
  padding: 2.5rem 2rem; border: 1.5px solid var(--border);
  position: relative; display: flex; flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.bono-card:hover { transform: translateY(-4px); border-color: var(--teal-mid); box-shadow: 0 12px 40px rgba(56,188,200,0.1); }
.bono-card.featured { border-color: var(--teal); }
.bono-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  font-family: var(--f-display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--teal); color: white; padding: 0.25rem 1rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm); white-space: nowrap;
}
.bono-ico  { font-size: 2rem; margin-bottom: 0.75rem; }
.bono-tag  {
  font-family: var(--f-display); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 0.4rem;
}
.bono-title {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 0.75rem; line-height: 1.1;
}
.bono-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.bono-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: 2rem; flex: 1;
}
.bono-list li {
  font-size: 0.88rem; color: var(--muted);
  display: flex; gap: 0.6rem; align-items: flex-start; line-height: 1.4;
}
.bono-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.bono-btn { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   BLOG
═══════════════════════════════════════════ */
.blog-section { padding: 6rem 0; background: white; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  border-radius: var(--r-lg); overflow: hidden; border: 1.5px solid var(--border);
  background: white; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(45,45,53,0.08); border-color: var(--teal-mid); }
.blog-img { aspect-ratio: 16/9; }
.blog-img.photo-ph { justify-content: center; font-size: 0.9rem; }
.blog-body { padding: 1.5rem; }
.blog-cat {
  font-family: var(--f-display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal-deep); background: var(--teal-bg);
  padding: 0.2rem 0.7rem; border-radius: var(--r-pill);
  display: inline-block; margin-bottom: 0.75rem;
}
.blog-title {
  font-family: var(--f-display); font-size: 1.15rem; font-weight: 700;
  color: var(--charcoal); line-height: 1.2; margin-bottom: 0.6rem;
}
.blog-excerpt { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.1rem; }
.blog-link {
  font-family: var(--f-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal);
  display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.2s;
}
.blog-link:hover { gap: 0.6rem; }

/* ── Responsive nuevas secciones ── */
@media (max-width: 1024px) {
  .horario-grid { grid-template-columns: 1fr 1fr; }
  .bonos-grid   { grid-template-columns: 1fr 1fr; }
  .blog-grid    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .horario-grid { grid-template-columns: 1fr; }
  .bonos-grid   { grid-template-columns: 1fr; }
  .blog-grid    { grid-template-columns: 1fr; }
  .nav-cta-bonos { display: none; }
}

.svc-tag-inline {
  font-style: normal; color: var(--teal);
  display: block; margin-top: 0.1rem;
}
