*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:    #5CB800;
  --pink2:   #7FD622;
  --pink-bg: #EDFAD0;
  --text:    #111111;
  --body:    #555555;
  --light:   #F6F7FB;
  --border:  #EBEBEB;
  --white:   #FFFFFF;
  --max:     1280px;
}

html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--text); font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Manrope', sans-serif; font-weight: 800; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── GRAD TEXT ─────────────────────────────────── */
.grad   { background: linear-gradient(90deg, var(--pink) 0%, var(--pink2) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-v { background: linear-gradient(90deg, #A855F7, #C890FF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-o { background: linear-gradient(90deg, #F97316, #FFAD68); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── BUTTONS ───────────────────────────────────── */
.btn-pink {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--pink); color: #111;
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: 999px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(92,184,0,0.3);
}
.btn-pink:hover  { background: #4A9900; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(92,184,0,0.4); }
.btn-pink:active { transform: translateY(0); }
.btn-circle { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-circle-dark { background: #ddd; }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); color: #fff;
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.3); cursor: pointer;
  transition: background 0.2s;
}
.btn-white:hover { background: rgba(255,255,255,0.25); }
.btn-gray {
  display: inline-flex; align-items: center; gap: 10px;
  background: #EBEBEB; color: var(--text);
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: 999px; border: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-gray:hover { background: #D8D8D8; }
.btn-full    { width: 100%; justify-content: center; }
.btn-submit  { width: 100%; justify-content: center; padding: 15px; }

/* ── LABEL ─────────────────────────────────────── */
.label        { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--body); }
.label-pink   { color: var(--pink); }
.label-center { text-align: center; }

/* ── FADE IN ───────────────────────────────────── */
.fi { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fi.visible { opacity: 1; transform: none; }
.fi-d1 { transition-delay: 0.1s; }
.fi-d2 { transition-delay: 0.2s; }
.fi-d3 { transition-delay: 0.3s; }
.fi-d4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 24px 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
  padding: 16px 64px; border-bottom: 1px solid var(--border);
}
.nav.scrolled .nav-logo { color: var(--text); }
.nav-logo { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 800; color: white; transition: color 0.3s; }
.menu-btn {
  background: var(--pink); color: #111; border: none; cursor: pointer;
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  padding: 10px 24px; border-radius: 999px;
  transition: background 0.2s;
}
.menu-btn:hover { background: #4A9900; }

/* ── MENU OVERLAY ──────────────────────────────── */
.menu-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10,10,10,0.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 48px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }
.menu-overlay a { font-family: 'Manrope', sans-serif; font-size: 52px; font-weight: 800; color: white; transition: color 0.2s; }
.menu-overlay a:hover { color: var(--pink); }
.menu-close {
  position: absolute; top: 28px; right: 64px;
  background: none; border: none; color: white; font-size: 28px; cursor: pointer;
  font-family: 'Manrope', sans-serif; font-weight: 800;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-photo {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 55%, transparent 80%),
    linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 35%, rgba(92,184,0,0.08) 100%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--max); margin: 0 auto; padding: 0 64px 80px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.hero-left {}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px; padding: 6px 14px; margin-bottom: 24px;
}
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }
.hero-tag span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 0.08em; }
.hero-h1 {
  font-size: clamp(72px, 8vw, 120px); font-weight: 800; color: white;
  line-height: 0.9; letter-spacing: -0.03em;
}
.hero-sub {
  font-size: clamp(28px, 3.5vw, 52px); font-weight: 700; color: rgba(255,255,255,0.85);
  line-height: 1.1; letter-spacing: -0.02em; margin-top: 12px;
}
.hero-right { flex-shrink: 0; max-width: 320px; padding-bottom: 8px; }
.hero-desc { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 24px; }

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about-section { background: white; padding: 120px 64px; position: relative; overflow: hidden; text-align: center; }
.about-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.about-heading { font-size: clamp(42px, 5vw, 68px); line-height: 1.05; letter-spacing: -0.03em; margin: 16px 0 20px; }
.about-desc { font-size: 16px; color: var(--body); line-height: 1.75; max-width: 640px; margin: 0 auto 12px; }
.about-desc:last-of-type { margin-bottom: 56px; }

/* Trainer card carousel */
.trainer-carousel { position: relative; height: 680px; display: flex; align-items: center; justify-content: center; }
.trainer-card {
  position: absolute; width: 380px; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s;
  cursor: pointer;
}
.trainer-card img { width: 100%; height: 520px; object-fit: cover; object-position: center 20%; background: #f5f5f5; }
.trainer-card-info { padding: 18px 20px; background: white; display: flex; align-items: center; justify-content: space-between; }
.trainer-card-name { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 800; }
.trainer-card.active  { transform: translateX(0) scale(1); opacity: 1; z-index: 3; }
.trainer-card.prev    { transform: translateX(-340px) scale(0.82); opacity: 0.45; z-index: 2; }
.trainer-card.next    { transform: translateX(340px) scale(0.82); opacity: 0.45; z-index: 2; }
.trainer-card.hidden  { opacity: 0; pointer-events: none; z-index: 1; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: white; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-arrow:hover { background: var(--light); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* ══════════════════════════════════════════════
   STATS
══════════════════════════════════════════════ */
.stats-section { padding: 80px 64px; background: white; }
.stats-inner { max-width: var(--max); margin: 0 auto; display: flex; gap: 0; }
.stat-col { flex: 1; text-align: center; border-right: 1px solid var(--border); padding: 24px 0; }
.stat-col:last-child { border-right: none; }
.stat-num { font-family: 'Manrope', sans-serif; font-size: clamp(56px, 6vw, 88px); font-weight: 800; line-height: 1; letter-spacing: -0.04em; }
.stat-label { font-size: 13px; color: var(--body); margin-top: 10px; font-weight: 500; letter-spacing: 0.02em; }

/* ══════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════ */
.gallery-section { padding: 80px 0 0; background: white; }
.gallery-header { max-width: var(--max); margin: 0 auto; padding: 0 64px 48px; }
.gallery-heading { font-size: clamp(42px, 5vw, 68px); line-height: 1.05; letter-spacing: -0.03em; }
.gallery-track-wrap { overflow: hidden; padding-left: 64px; }
.gallery-track { display: flex; gap: 16px; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.gallery-slide { flex-shrink: 0; border-radius: 16px; overflow: hidden; cursor: pointer; }
.gallery-slide img { width: 300px; height: 420px; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-slide:hover img { transform: scale(1.04); }
.gallery-controls { max-width: var(--max); margin: 28px auto 0; padding: 0 64px 80px; display: flex; align-items: center; gap: 16px; }
.g-arrow { width: 44px; height: 44px; border-radius: 50%; background: var(--light); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; flex-shrink: 0; }
.g-arrow:hover { background: #e8e8e8; }
.g-dots { display: flex; gap: 6px; }
.g-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background 0.2s, width 0.2s; }
.g-dot.active { background: var(--pink); width: 20px; border-radius: 4px; }

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services-section { padding: 120px 64px 0; background: white; }
.services-inner { max-width: var(--max); margin: 0 auto; }
.services-intro { margin-bottom: 72px; }
.services-heading { font-size: clamp(42px, 5vw, 68px); line-height: 1.05; letter-spacing: -0.03em; margin-top: 14px; }

.svc-item { display: flex; align-items: center; gap: 80px; padding: 80px 0; border-top: 1px solid var(--border); }
.svc-item.reverse { flex-direction: row-reverse; }
.svc-text { flex: 1; }
.svc-name { font-size: clamp(36px, 4vw, 56px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 20px; }
.svc-desc { font-size: 16px; color: var(--body); line-height: 1.75; max-width: 480px; margin-bottom: 28px; }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-row { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); font-weight: 500; }
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--pink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-photo { flex-shrink: 0; }
.svc-photo img {
  width: 320px; height: 420px; object-fit: cover; border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.14);
}
.svc-item:nth-child(odd)  .svc-photo img { transform: rotate(-2.5deg); }
.svc-item:nth-child(even) .svc-photo img { transform: rotate(2.5deg); }

/* "Diseñado para vos" */
.designed-section { padding: 80px 64px 40px; text-align: center; border-top: 1px solid var(--border); }
.designed-inner { max-width: var(--max); margin: 0 auto; }
.designed-pre { font-size: 16px; color: var(--body); margin-bottom: 10px; }
.designed-heading { font-size: clamp(56px, 7vw, 96px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }

/* ══════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════ */
.cta-band { padding: 32px 64px 64px; background: white; text-align: center; }
.cta-band-inner { max-width: var(--max); margin: 0 auto; }
.cta-band p { font-size: 17px; color: var(--body); max-width: 480px; margin: 0 auto 28px; line-height: 1.7; }

/* ══════════════════════════════════════════════
   ARTICLE / QUOTE DARK
══════════════════════════════════════════════ */
.article-dark {
  min-height: 760px; position: relative; overflow: hidden;
  background: url('./fotos/optimizadas/webp/mas-fuerte-cada-dia.webp') center 5% / cover no-repeat;
  display: flex; align-items: stretch;
}
.article-dark::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.article-content {
  position: relative; z-index: 1; padding: 64px;
  margin-left: auto; width: 440px; flex-shrink: 0;
  background: #2b2b2b;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.article-dark-label { color: var(--pink); }
.article-dark-h2 { font-size: clamp(40px,5vw,72px); font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1.05; margin-top: 12px; }
.article-dark-p  { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 440px; line-height: 1.75; margin-top: 14px; }
.article-link { font-size: 14px; font-weight: 700; color: var(--pink); display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; transition: gap 0.2s; }
.article-link:hover { gap: 12px; }

/* ══════════════════════════════════════════════
   PLANES
══════════════════════════════════════════════ */
.plans-section { padding: 120px 64px; background: white; }
.plans-inner { max-width: var(--max); margin: 0 auto; }
.plans-heading { font-size: clamp(36px, 4.5vw, 60px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.plans-sub { font-size: 16px; color: var(--body); max-width: 440px; margin: 14px 0 56px; line-height: 1.7; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan-card { border: 1px solid var(--border); border-radius: 20px; padding: 32px; position: relative; transition: box-shadow 0.2s; }
.plan-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.plan-card.featured { border-color: var(--pink); box-shadow: 0 16px 48px rgba(92,184,0,0.15); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #111;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  padding: 4px 14px; border-radius: 999px;
}
.plan-label { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--body); margin-bottom: 16px; }
.plan-card.featured .plan-label { color: var(--pink); }
.plan-name { font-family: 'Manrope', sans-serif; font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.plan-card.featured .plan-name { color: var(--pink); }
.plan-desc { font-size: 14px; color: var(--body); line-height: 1.65; margin-bottom: 24px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.plan-feat-icon { width: 18px; height: 18px; border-radius: 50%; background: var(--pink-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.plan-card.featured .plan-feat-icon { background: rgba(92,184,0,0.12); }

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.how-section { padding: 120px 64px; background: white; }
.how-inner { max-width: var(--max); margin: 0 auto; }
.how-heading { font-size: clamp(36px, 4.5vw, 60px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-top: 14px; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.how-card {
  border-radius: 24px; padding: 40px; position: relative; overflow: hidden;
  min-height: 320px; display: flex; flex-direction: column; justify-content: space-between;
}
.how-card-1 { background: linear-gradient(135deg, #D6F5A0 0%, #A8E03A 100%); }
.how-card-2 { background: linear-gradient(135deg, #B8F0E8 0%, #5CC8B8 100%); }
.how-card-3 { background: linear-gradient(135deg, #D6F5A0 0%, #A8E03A 100%); }
.how-card-4 { background: linear-gradient(135deg, #B8F0E8 0%, #5CC8B8 100%); }
.how-card-arrow { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.35); display: flex; align-items: center; justify-content: center; }
.how-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.how-num { font-size: 13px; font-weight: 700; color: rgba(0,0,0,0.4); letter-spacing: 0.1em; }
.how-title { font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 800; color: #111; line-height: 1.2; margin-top: 16px; }
.how-sub { font-size: 14px; color: rgba(0,0,0,0.55); line-height: 1.65; margin-top: 8px; }

/* ══════════════════════════════════════════════
   PHILOSOPHY
══════════════════════════════════════════════ */
.phil-section { padding: 0 64px 80px; background: white; }
.phil-inner { max-width: var(--max); margin: 0 auto; }
.phil-card {
  background: linear-gradient(135deg, #EEE4FF 0%, #DCC8FF 100%);
  border-radius: 28px; padding: 64px; display: flex; align-items: center; gap: 80px;
  position: relative; overflow: hidden; min-height: 360px;
}
.phil-text { flex: 1; }
.phil-heading { font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 28px; }
.phil-pillar { margin-bottom: 20px; }
.phil-pillar strong { font-size: 15px; font-weight: 700; }
.phil-pillar p { font-size: 14px; color: #555; line-height: 1.65; margin-top: 4px; }
.phil-image { flex-shrink: 0; width: 220px; }
.phil-image img { width: 220px; height: 280px; object-fit: cover; border-radius: 16px; transform: rotate(3deg); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq-section { padding: 120px 64px; background: white; }
.faq-inner { max-width: var(--max); margin: 0 auto; display: flex; gap: 80px; align-items: flex-start; }
.faq-photo { flex-shrink: 0; width: 380px; }
.faq-photo img { width: 380px; height: 540px; object-fit: cover; object-position: center 30%; border-radius: 24px; box-shadow: 0 24px 64px rgba(0,0,0,0.12); }
.faq-content { flex: 1; padding-top: 16px; }
.faq-heading { font-size: clamp(36px, 4.5vw, 60px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-top: 14px; margin-bottom: 48px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; cursor: pointer; gap: 16px;
  font-family: 'Manrope', sans-serif; font-size: 17px; font-weight: 700; color: var(--text);
  background: none; border: none; width: 100%; text-align: left;
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--pink); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 18px; color: var(--text); transition: background 0.2s, transform 0.3s;
}
.faq-item.open .faq-icon { background: var(--pink); color: white; transform: rotate(45deg); }
.faq-body { font-size: 15px; color: var(--body); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-body { max-height: 200px; padding-bottom: 20px; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testi-section { padding: 120px 64px; background: white; }
.testi-inner { max-width: var(--max); margin: 0 auto; }
.testi-heading { font-size: clamp(36px, 4.5vw, 60px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-top: 14px; margin-bottom: 56px; text-align: center; }
.testi-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 56px; }
.testi-vcard { border-radius: 20px; overflow: hidden; aspect-ratio: 3/4; position: relative; }
.testi-vcard img { width: 100%; height: 100%; object-fit: cover; }
.testi-vcard-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%); }
.testi-vcard-info { position: absolute; bottom: 20px; left: 20px; }
.testi-vcard-name { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 800; color: white; }
.testi-vcard-loc  { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 2px; }
.testi-play { display: none; }
.testi-trust { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 40px; }
.testi-trust-stars { color: var(--pink); font-size: 22px; letter-spacing: 2px; }
.testi-trust-text { font-size: 14px; color: var(--body); }
.testi-trust-bold { font-weight: 700; color: var(--text); }
.testi-text-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-tcard { background: var(--light); border-radius: 16px; padding: 24px; }
.testi-tcard-stars { color: var(--pink); font-size: 13px; letter-spacing: 1px; margin-bottom: 12px; }
.testi-tcard-quote { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.testi-tcard-name { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 800; }
.testi-tcard-loc  { font-size: 12px; color: var(--body); }

/* ══════════════════════════════════════════════
   MANIFESTO
══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   YOUTUBE SECTION
══════════════════════════════════════════════ */
.yt-section { padding: 100px 64px; background: var(--light); }
.yt-inner { max-width: var(--max); margin: 0 auto; }
.yt-header { text-align: center; margin-bottom: 56px; }
.yt-heading { font-size: clamp(36px, 4vw, 56px); letter-spacing: -0.03em; line-height: 1.05; margin: 12px 0 16px; }
.yt-sub { font-size: 16px; color: var(--body); }
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
}
.yt-card {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  background: #000;
  display: block;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.yt-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.2); }
.yt-thumb-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 para Shorts */
}
.yt-thumb-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.2s;
}
.yt-card:hover .yt-play { background: rgba(0,0,0,0.45); }
.yt-play svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.yt-cta { text-align: center; margin-top: 48px; }

.manifesto-section { padding: 80px 64px; background: white; }
.manifesto-inner { max-width: var(--max); margin: 0 auto; display: flex; gap: 80px; align-items: flex-start; }
.manifesto-heading { font-size: clamp(36px, 4.5vw, 60px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; flex: 1; }
.manifesto-text { flex: 1; font-size: 16px; color: var(--body); line-height: 1.8; }
.manifesto-text p + p { margin-top: 20px; }

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact-section { padding: 80px 64px; background: white; border-top: 1px solid var(--border); }
.contact-inner { max-width: var(--max); margin: 0 auto; display: flex; gap: 80px; align-items: flex-start; }
.contact-left { flex: 1; }
.contact-heading { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 8px; }
.contact-sub { font-size: 15px; color: var(--body); line-height: 1.7; margin-bottom: 32px; }
.newsletter-row { display: flex; gap: 12px; }
.newsletter-input {
  flex: 1; background: var(--light); border: 1px solid var(--border); border-radius: 999px;
  padding: 14px 24px; font-size: 15px; color: var(--text); font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: #aaa; }
.newsletter-input:focus { border-color: var(--pink); }
.contact-wa { font-size: 13px; color: #aaa; margin-top: 14px; }
.contact-wa-link { color: var(--pink); font-weight: 600; }
.contact-right { flex: 1; }
.contact-form-wrap { background: var(--light); border-radius: 24px; padding: 40px; }
.contact-form-title { font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.contact-form-desc  { font-size: 13px; color: var(--body); margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--body); letter-spacing: 0.05em; display: block; margin-bottom: 8px; }
.form-input {
  width: 100%; background: white; border: 1px solid var(--border); border-radius: 12px;
  padding: 13px 16px; font-size: 15px; color: var(--text); font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.2s;
}
.form-input::placeholder { color: #bbb; }
.form-input:focus { border-color: var(--pink); }
select.form-input { cursor: pointer; appearance: none; }
textarea.form-input { resize: vertical; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer { padding: 48px 64px; background: white; border-top: 1px solid var(--border); }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-logo { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.footer-tagline { font-size: 13px; color: var(--body); }
.footer-sitemap-label { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--body); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: var(--body); transition: color 0.2s; }
.footer-link:hover { color: var(--pink); }
.footer-copy { font-size: 13px; color: #aaa; align-self: flex-end; }
.footer-designed { width: 100%; text-align: center; font-size: 12px; color: #666; margin-top: 24px; padding-top: 16px; border-top: 1px solid #444; }
.footer-designed a { color: #888; text-decoration: none; transition: color 0.2s; }
.footer-designed a:hover { color: var(--pink); }

/* ── LIGHTBOX ─────────────────────────────────── */
#lightbox { display: none; position: fixed; inset: 0; z-index: 400; background: rgba(0,0,0,0.93); align-items: center; justify-content: center; }
#lightbox.open { display: flex; }
#lightboxImg { max-width: 90vw; max-height: 90vh; border-radius: 12px; object-fit: contain; }
#lightboxClose { position: absolute; top: 24px; right: 28px; background: none; border: none; color: white; font-size: 32px; cursor: pointer; }
.lb-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: white; }
#lbPrev { left: 24px; } #lbNext { right: 24px; }

/* ── MOBILE ───────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .hero-content { padding: 0 24px 60px; flex-direction: column; align-items: flex-start; }
  .hero-right { max-width: 100%; }
  .about-section, .stats-section, .gallery-section, .services-section,
  .designed-section, .cta-band, .plans-section, .how-section, .phil-section,
  .faq-section, .testi-section, .manifesto-section, .contact-section, .footer, .yt-section { padding-left: 24px; padding-right: 24px; }
  .yt-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .trainer-carousel .carousel-prev { left: -16px; }
  .trainer-carousel .carousel-next { right: -16px; }
  .stats-inner { flex-wrap: wrap; }
  .stat-col { flex-basis: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .gallery-track-wrap { padding-left: 24px; overflow: hidden; }
  .gallery-slide img { width: calc(100vw - 64px); height: 380px; }
  .gallery-controls { padding: 0 24px 60px; }
  .svc-item, .svc-item.reverse { flex-direction: column; gap: 40px; }
  .svc-photo img { width: 100%; height: 300px; }
  .svc-item:nth-child(odd)  .svc-photo img { transform: none; }
  .svc-item:nth-child(even) .svc-photo img { transform: none; }
  .plans-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .phil-card { flex-direction: column; }
  .faq-inner { flex-direction: column; }
  .faq-photo { display: none; }
  .testi-cards { grid-template-columns: 1fr; }
  .testi-text-row { grid-template-columns: 1fr; }
  .manifesto-inner { flex-direction: column; gap: 32px; }
  .contact-inner { flex-direction: column; }
  .newsletter-row { flex-direction: column; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .menu-overlay a { font-size: 36px; }
  .menu-close { right: 24px; }
}
