:root {
  --green: #8DB600;
  --green-dark: #6b8a00;
  --green-mid: #a8cc1a;
  --green-light: #c8dc60;
  --green-xlight: #deeaa0;
  --green-pale: #f2f8d8;
  --green-ultra: #f8fbee;

  --black: #0f0f0f;
  --dark: #1a1a1a;
  --mid: #3a3a3a;
  --muted: #767676;
  --subtle: #a0a0a0;
  --border: #e4e4e4;
  --border-green: #c8dc60;
  --white: #ffffff;

  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --logo-green: #1b3b2b;

  --side: clamp(1.5rem, 7vw, 9rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--side);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo-main {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: calc(14px * 1.7 + 2 * 0.55rem);
  text-decoration: none;
}

.nav-logo-icon {
  height: 100%;
  width: auto;
}

.nav-logo-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--logo-green);
  line-height: 1;
  letter-spacing: -0.01em;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--mid);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--black); }

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
  letter-spacing: 0.01em;
}

.nav-cta:hover { background: var(--green-dark) !important; color: white !important; }

.nav-cta-mobile { display: none; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem var(--side) 4rem;
  background: url('img/hero4.webp') center 42% / cover no-repeat;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 90% at center,
    rgba(255,255,255,0.88) 0%,
    rgba(255,255,255,0.72) 45%,
    rgba(255,255,255,0.25) 72%,
    rgba(255,255,255,0.05) 100%
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-content .hero-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1.08;
  color: var(--black);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--green-dark);
  background: #fef9c3;
  padding: 2px 10px 4px;
  border-radius: 6px;
  display: inline-block;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 440px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}

.btn-primary:hover { background: var(--green-dark); color: white; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: calc(0.9rem - 2px) calc(1.5rem - 2px);
  border: 2px solid var(--green);
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s;
}

.btn-ghost:hover { background: var(--green-pale); border-color: var(--green-dark); }

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.trust-stat { text-align: left; }

.trust-num {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--black);
  line-height: 1;
}

.trust-label {
  font-size: 12px;
  color: var(--subtle);
  font-weight: 300;
  margin-top: 2px;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ─── SECTIONS ─── */
section { padding: 6rem var(--side); }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--black);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 1rem;
  text-align: center;
}

.section-title em { font-style: italic; color: var(--green); }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.85;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Excepción: dentro de la tarjeta "Sobre mí" se mantiene a la izquierda */
.sobre-content .section-eyebrow { justify-content: flex-start; }
.sobre-content .section-title { text-align: left; }

/* ─── SOBRE MÍ ─── */
.sobre {
  background-color: var(--green-ultra);
  background-image: url('img/sobre-bg.svg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.sobre-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sobre-img-wrapper {
  border-radius: 58% 42% 55% 45% / 45% 52% 48% 55%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 340px;
  flex-shrink: 0;
  box-shadow: 18px 18px 0 rgba(141, 182, 0, 0.22);
  animation: blob-morph 14s ease-in-out infinite;
}

@keyframes blob-morph {
  0%, 100% { border-radius: 58% 42% 55% 45% / 45% 52% 48% 55%; }
  33%      { border-radius: 45% 55% 48% 52% / 55% 45% 55% 45%; }
  66%      { border-radius: 52% 48% 42% 58% / 48% 58% 42% 52%; }
}

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

.sobre-img-wrapper:hover .sobre-img { transform: scale(1.04); }

.sobre-content,
.metodo-steps {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(107, 138, 0, 0.08);
}

.sobre-content {
  position: relative;
}

/* Montaña watermark en la esquina de la tarjeta */
.sobre-content::before {
  content: '';
  position: absolute;
  bottom: 14px;
  right: 16px;
  width: 60px;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238DB600' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m8 3 4 8 5-5 5 15H2L8 3z'/%3E%3Cpath d='M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0.14;
  z-index: 0;
}

.marker {
  background: linear-gradient(transparent 62%, var(--green-xlight) 62%);
  padding: 0 2px;
}

.sobre-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.6;
  margin: 1.5rem 0 1.25rem;
}

.sobre-text {
  font-size: 1rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .sobre-img-wrapper { animation: none; }
}

/* ─── PILARES ─── */
.pilares { background: var(--white); }

.pilares-header { margin-bottom: 1rem; }

.pilares-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
  margin-top: 2rem;
}

.pilares-img-wrapper {
  position: sticky;
  top: 7rem;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 12px 48px rgba(0,0,0,0.10);
}

.pilares-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  display: block;
}

.pilares-list {
  display: flex;
  flex-direction: column;
}

.pilar {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.75rem 0;
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}

.pilar:last-child { border-bottom: 1px solid var(--border); }

.pilar-num {
  font-family: var(--serif);
  font-size: 4.5rem;
  color: var(--green);
  opacity: 0.18;
  line-height: 1;
  text-align: right;
  padding-top: 6px;
  user-select: none;
}

.pilar-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.pilar-desc {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.85;
  max-width: 620px;
}

/* ─── MÉTODO ─── */
.metodo {
  background-color: var(--green-ultra);
  background-image: url('img/sobre-bg.svg');
  background-size: cover;
  background-position: center;
}

.metodo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}

.metodo-steps { display: flex; flex-direction: column; gap: 2rem; }

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--white);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--green);
  flex-shrink: 0;
  font-weight: 600;
}

.step-body h3 { margin: 0; }

.step-toggle {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  padding: 0;
  min-height: 48px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}

.step-toggle::after {
  content: '+';
  font-size: 22px;
  color: var(--green);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s ease;
}

.step.open .step-toggle::after { transform: rotate(45deg); }

.step-toggle:hover { color: var(--green-dark); }

.step-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease;
}

.step.open .step-detail {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}

.step-detail p {
  font-size: 14px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.75;
  padding-top: 6px;
}

/* Aparición escalonada de los pasos */
.metodo-steps .step:nth-child(1) { transition-delay: 0s; }
.metodo-steps .step:nth-child(2) { transition-delay: 0.12s; }
.metodo-steps .step:nth-child(3) { transition-delay: 0.24s; }
.metodo-steps .step:nth-child(4) { transition-delay: 0.36s; }

.metodo .section-sub { color: var(--mid); }

.metodo-quote {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 12px;
  padding: 2.5rem;
  position: sticky;
  top: 6rem;
}

.quote-text {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.45;
  color: var(--black);
  margin-bottom: 2rem;
  font-style: italic;
}

.quote-principles { display: flex; flex-direction: column; gap: 10px; }

.principle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--mid);
  font-weight: 300;
}

.principle::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ─── SERVICIOS ─── */
.servicios { background: var(--white); }

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.servicio-card {
  position: relative;
  overflow: hidden;
  background: var(--green-ultra);
  border: 1px solid rgba(141, 182, 0, 0.15);
  border-radius: 18px;
  padding: 2.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.servicio-card > * { position: relative; z-index: 1; }

.servicio-card::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--green-pale);
  transition: transform 0.45s ease;
  z-index: 0;
}

.servicio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(107, 138, 0, 0.14);
}

.servicio-card:hover::before { transform: scale(1.7); }

.servicio-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(107, 138, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.servicio-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green);
  transition: stroke 0.3s ease;
}

.servicio-card:hover .servicio-icon {
  background: var(--green);
  transform: rotate(-6deg) scale(1.08);
}

.servicio-card:hover .servicio-icon svg { stroke: var(--white); }

.servicio-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.servicio-card p {
  font-size: 14px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.75;
  flex: 1;
}

.servicio-tag {
  display: inline-block;
  align-self: flex-start;
  margin-top: 1.4rem;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 600;
  background: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(107, 138, 0, 0.10);
}

/* Card destacada: invertida en verde oscuro */
.servicio-card--destacado {
  background: var(--logo-green);
  border-color: transparent;
}

.servicio-card--destacado::before { background: rgba(255, 255, 255, 0.07); }

.servicio-card--destacado h3 { color: var(--white); }

.servicio-card--destacado p { color: rgba(255, 255, 255, 0.75); }

.servicio-card--destacado .servicio-icon { background: var(--green); }

.servicio-card--destacado .servicio-icon svg { stroke: var(--white); }

.servicio-card--destacado:hover .servicio-icon { background: var(--white); }

.servicio-card--destacado:hover .servicio-icon svg { stroke: var(--green-dark); }

.servicio-tag--sport {
  background: var(--green);
  color: var(--white);
  box-shadow: none;
}

/* ─── PACKS ─── */
.packs {
  background-color: var(--green-ultra);
  background-image: url('img/sobre-bg.svg');
  background-size: cover;
  background-position: center;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  align-items: start;
}

.pack-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pack-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.pack-card--featured {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(107,138,0,0.25);
}

.pack-card--featured:hover {
  transform: translateY(-9px);
  box-shadow: 0 20px 56px rgba(107,138,0,0.3);
}

.pack-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.pack-card--featured .pack-tag { color: var(--green-light); }

.pack-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.pack-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.pack-card--featured .pack-name { color: white; }

.pack-modalidad {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 1.5rem;
}

.pack-card--featured .pack-modalidad { color: rgba(255,255,255,0.5); }

.pack-price {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.pack-card--featured .pack-price { color: white; }

.pack-dcto {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pack-card--featured .pack-dcto { color: var(--green-light); }

.pack-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.25rem;
}

.pack-card--featured .pack-divider { background: rgba(255,255,255,0.15); }

.pack-incluye-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 0.75rem;
}

.pack-card--featured .pack-incluye-label { color: rgba(255,255,255,0.45); }

.pack-items {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pack-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.5;
}

.pack-card--featured .pack-items li { color: rgba(255,255,255,0.85); }

.pack-items li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-color: var(--green-pale);
  border: 1.5px solid var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%238DB600' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.pack-card--featured .pack-items li::before {
  background-color: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.pack-btn {
  display: block;
  text-align: center;
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  font-family: var(--sans);
}

.pack-btn--outline {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green);
}

.pack-btn--outline:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.pack-btn--white {
  background: white;
  color: var(--green-dark);
  border: 1.5px solid transparent;
}

.pack-btn--white:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

.packs-subgrupo-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--subtle);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.packs-subgrupo-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--subtle);
}


/* ─── SESIONES INDIVIDUALES (lista compacta) ─── */
.packs-ind-intro { margin-top: 3.5rem; text-align: center; }

.packs-ind-intro .packs-subgrupo-label { justify-content: center; }

.packs-ind-sub {
  font-size: 14px;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.packs-ind-list {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
}

.ind-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  transition: background 0.2s;
}

.ind-row + .ind-row { border-top: 1px solid var(--border); }

.ind-row:hover { background: var(--green-ultra); }

.ind-row-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ind-row-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
}

.ind-row-meta {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.ind-row-price {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--black);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.ind-row-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-pale);
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.ind-row-btn:hover {
  background: var(--green);
  color: var(--white);
}

/* ─── BOOKING ─── */
#agendar { background: var(--white); }

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: start;
}

.gcal-embed-wrapper {
  overflow: hidden;
  background: var(--green-ultra);
  border: 1px solid rgba(141, 182, 0, 0.15);
  border-radius: 18px;
  padding: 1rem;
}

#ycbmiframe { border-radius: 12px; }

.booking-info {
  position: relative;
  overflow: hidden;
  background: var(--green-ultra);
  border: 1px solid rgba(141, 182, 0, 0.12);
  border-radius: 18px;
  padding: 2.25rem;
}

.booking-info > * { position: relative; z-index: 1; }

/* Hoja grande, esquina superior derecha */
.booking-info::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -28px;
  width: 150px;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238DB600' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/%3E%3Cpath d='M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0.16;
  transform: rotate(18deg);
  z-index: 0;
}

/* Zanahoria pequeña, junto al bloque de WhatsApp */
.booking-info::after {
  content: '';
  position: absolute;
  bottom: 120px;
  right: 6px;
  width: 76px;
  height: 76px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238DB600' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 0 0-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46'/%3E%3Cpath d='M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z'/%3E%3Cpath d='M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0.16;
  transform: rotate(-10deg);
  z-index: 0;
}

.booking-info-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.75rem;
}

.booking-info-items { display: flex; flex-direction: column; gap: 1.5rem; }

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-icon {
  width: 38px;
  height: 38px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(107, 138, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
}

.info-item h4 { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 3px; letter-spacing: -0.01em; }
.info-item p { font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.6; }

.booking-whatsapp {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1px solid rgba(141, 182, 0, 0.2);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(107, 138, 0, 0.08);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.booking-whatsapp:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(107, 138, 0, 0.16);
  transform: translateY(-2px);
}

.booking-whatsapp-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.booking-whatsapp:hover .booking-whatsapp-icon { transform: scale(1.08) rotate(-6deg); }

.booking-whatsapp-icon svg {
  width: 22px;
  height: 22px;
}

.booking-whatsapp-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.booking-whatsapp-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

.booking-whatsapp-action {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
}


/* ─── TESTIMONIOS ─── */
.testimonios {
  background-color: var(--green-ultra);
  background-image: url('img/sobre-bg.svg');
  background-size: cover;
  background-position: center;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.testimonio {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}

.testimonio:hover { border-color: var(--green-light); }

.test-stars { color: var(--green); font-size: 14px; margin-bottom: 0.75rem; letter-spacing: 2px; }

.test-text {
  font-size: 14px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.test-author { display: flex; align-items: center; gap: 10px; }

.test-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-dark);
}

.test-name { font-size: 13px; font-weight: 600; color: var(--black); }
.test-detail { font-size: 12px; color: var(--subtle); }

/* ─── FAQ ─── */
.faq { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 3rem;
  align-items: start;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: var(--green-light); }

.faq-item.open { border-color: var(--green); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  transition: color 0.2s;
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--green);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--black); font-weight: 600; }

.faq-a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0 1.5rem;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

.faq-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.faq-cta-text {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 0.9rem;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-pale);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.faq-cta-btn:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.45);
  padding: 1.5rem var(--side);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: 1.8rem;
  margin-bottom: 0.25rem;
}

.footer-brand-icon {
  height: 100%;
  width: auto;
}

.footer-brand-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--green); }

/* ─── MOBILE ─── */
.hamburger { display: none; }

@media (max-width: 900px) {
  /* Nav */
  nav { padding: 1rem var(--side); }
  .nav-links { display: none; }
  .hamburger { display: block; background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--black); }
  .nav-cta-mobile {
    display: inline-flex;
    align-items: center;
    background: var(--green);
    color: var(--white);
    padding: 0.5rem 1.1rem;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
    margin-left: auto;
    margin-right: 1rem;
  }
  .nav-cta-mobile:active { background: var(--green-dark); }

  /* Hero */
  .hero { padding: 7rem var(--side) 3rem; }
  .hero-trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 1.5rem;
  }
  .trust-stat { text-align: center; }

  /* Secciones generales */
  section { padding: 4rem var(--side); }
  .section-sub { max-width: 100%; }

  /* Sobre mí */
  .sobre-layout { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .sobre-content .section-eyebrow { justify-content: center; }
  .sobre-content .section-title { text-align: center; }
  .sobre-img-wrapper { width: 200px; margin: 0 auto; box-shadow: 12px 12px 0 rgba(141, 182, 0, 0.22); }
  .sobre-content, .metodo-steps { padding: 1.75rem 1.5rem; }

  /* Pilares */
  .pilares-layout { grid-template-columns: 1fr; gap: 2rem; }
  .pilares-img-wrapper { position: static; aspect-ratio: 16 / 9; border-radius: 12px; }
  .pilar { grid-template-columns: 48px 1fr; gap: 1rem; padding: 2rem 0; }
  .pilar-num { font-size: 2.75rem; }

  /* Método */
  .metodo-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .metodo-quote { position: static; }

  /* Servicios */
  .servicios-grid { grid-template-columns: 1fr; }

  /* Packs */
  .packs-grid { grid-template-columns: 1fr; }
  .pack-card--featured { transform: none; }
  .ind-row {
    grid-template-columns: 1fr auto;
    grid-template-areas: "info info" "price btn";
    gap: 0.75rem 1rem;
    padding: 1.1rem 1.25rem;
  }
  .ind-row-info { grid-area: info; }
  .ind-row-price { grid-area: price; }
  .ind-row-btn { grid-area: btn; justify-self: end; }

  /* Booking */
  .booking-layout { grid-template-columns: 1fr; gap: 2rem; }
  #ycbmiframe { height: 420px; }
  .booking-info { padding: 1.75rem 1.5rem; }
  .gcal-embed-wrapper { padding: 0.6rem; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; }

  /* Footer */
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-links { flex-wrap: wrap; gap: 1rem; justify-content: center; }
}

@media (max-width: 480px) {
  /* Hero trust: ocultar dividers, centrar los 3 stats en fila */
  .trust-divider { display: none; }
  .hero-trust { gap: 1.25rem; }

  /* Sobre img más pequeña */
  .sobre-img-wrapper { width: 160px; }

  /* FAQ: reducir padding */
  .faq-q { padding: 1rem 1.25rem; }
  .faq-a { padding: 0 1.25rem; }
  .faq-item.open .faq-a { padding: 0 1.25rem 1rem; }
}

/* ─── SCROLL TO TOP FAB ─── */
.scroll-top-fab {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 200;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transition: opacity 0.25s, transform 0.25s, box-shadow 0.2s, color 0.2s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.scroll-top-fab.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-fab:hover {
  color: var(--green);
  border-color: var(--green);
  box-shadow: 0 4px 18px rgba(141,182,0,0.18);
}

.scroll-top-fab svg {
  width: 18px;
  height: 18px;
}

/* ─── WHATSAPP FAB ─── */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(141,182,0,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(141,182,0,0.55);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
