/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --navy:        #1C3A52;  /* brand primary — dark steel blue */
  --navy-hover:  #254D6B;  /* hover state */
  --navy-deep:   #111E2A;  /* footer */
  --navy-subtle: rgba(28,58,82,.07);
  --navy-subtle2: rgba(28,58,82,.14);
  --cream:       #F7F3EC;  /* main background */
  --cream-dark:  #EDE8DB;  /* alternate sections */
  --ivory:       #EDE8D8;  /* text on dark bg */
  --gold:        #C9A864;  /* accent — badges, stars, savings */
  --dark:        #1A2830;  /* headlines */
  --mid:         #5A6E7A;  /* body text */
  --light:       #9AAAB5;  /* subtle text */
  --border:      #DDD9D1;
  --white:       #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;

  --shadow-sm: 0 2px 10px rgba(28,28,28,.06);
  --shadow-md: 0 8px 32px rgba(28,28,28,.10);
  --shadow-lg: 0 24px 64px rgba(28,28,28,.13);

  --ease: 0.25s ease;

  --container: 1200px;
  --py: 100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 600; letter-spacing: -.01em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
p  { color: var(--mid); line-height: 1.75; }
em { font-style: italic; color: var(--navy); }
strong { color: var(--dark); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--py) 0; }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-tag--gold { color: var(--gold); }
.section-sub { font-size: 1.1rem; margin-top: 14px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-lg);
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-hover);
  border-color: var(--navy-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  padding: 10px 18px;
  font-size: .875rem;
  border-radius: var(--r-md);
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); }

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: var(--r-md);
  background: var(--cream-dark);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 600;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--ease);
}
.btn-plan:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.btn-plan--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-plan--primary:hover {
  background: var(--navy-hover);
  border-color: var(--navy-hover);
}
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   BADGE
   ============================================================ */
.card-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247,243,236,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.nav-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--mid);
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--navy); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 72px 0 60px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 72px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--navy-subtle);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-headline { margin-bottom: 22px; }
.hero-sub {
  font-size: 1.1rem;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-social {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .875rem;
  color: var(--light);
}
.hero-social a {
  color: var(--mid);
  font-weight: 500;
  transition: color var(--ease);
}
.hero-social a:hover { color: var(--navy); }

.hero-image-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 4/5;
  position: relative;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(28,58,82,.3) 100%);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
.services-overview { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.service-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}
.service-card--featured h3 { color: var(--ivory); }
.service-card--featured p  { color: rgba(237,232,216,.75); }
.service-card--featured .service-price { color: rgba(237,232,216,.7); }
.service-card--featured .service-price strong { color: var(--ivory); }
.service-card--featured .price-save { background: var(--gold); }

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { flex-shrink: 0; }
.service-icon--combo {
  background: rgba(255,255,255,.10);
  border-radius: var(--r-sm);
}

.service-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-card p  { font-size: .9375rem; margin-bottom: 20px; line-height: 1.65; }

.service-price { font-size: .875rem; color: var(--mid); margin-bottom: 20px; }
.service-price strong { font-size: 1.2rem; color: var(--dark); }

.price-save {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: .67rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 5px;
}
.service-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  transition: letter-spacing var(--ease);
}
.service-link:hover { letter-spacing: .02em; }
.service-link--light { color: rgba(237,232,216,.85); }
.service-link--light:hover { color: var(--ivory); }

/* ============================================================
   PLANS
   ============================================================ */
.plans-section--nutrition { background: var(--cream); }
.plans-section--training  { background: var(--white); }

.plans-intro {
  max-width: 660px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}
.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  transition: box-shadow var(--ease);
}
.plan-card:hover { box-shadow: var(--shadow-md); }
.plan-card--recommended { border-color: var(--navy); }

.plan-header {
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}
.plan-tier {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 12px;
}
.plan-amount {
  font-family: var(--font-serif);
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.plan-period { font-size: .95rem; color: var(--light); }
.plan-ideal  { font-size: .875rem; color: var(--mid); line-height: 1.55; margin: 0; }

.plan-features { margin-bottom: 26px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li svg { flex-shrink: 0; color: var(--navy); margin-top: 3px; }

.plans-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 860px;
  margin: 22px auto 0;
  font-size: .875rem;
  color: var(--mid);
  background: var(--navy-subtle);
  border: 1px solid var(--navy-subtle2);
  border-radius: var(--r-md);
  padding: 16px 20px;
}
.plans-note svg { flex-shrink: 0; color: var(--navy); margin-top: 2px; }

/* ============================================================
   PACK
   ============================================================ */
.pack-section { background: var(--navy); }

.pack-card {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: center;
}
.pack-content h2 { color: var(--ivory); margin-bottom: 16px; }
.pack-content p  { color: rgba(237,232,216,.72); font-size: 1.05rem; margin-bottom: 28px; }

.pack-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.pack-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9375rem;
  color: rgba(237,232,216,.85);
}
.pack-features li svg { color: var(--gold); flex-shrink: 0; }

.pack-price-box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  text-align: center;
}
.pack-compare {
  font-size: .8rem;
  color: var(--light);
  margin-bottom: 16px;
  line-height: 1.45;
}
.pack-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 6px;
}
.pack-old-price {
  font-size: 1.2rem;
  color: var(--light);
  text-decoration: line-through;
}
.pack-new-price {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.pack-period { font-size: .95rem; color: var(--light); }
.pack-save {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  margin-top: 4px;
}
.pack-note {
  font-size: .78rem;
  color: var(--light);
  margin-top: 12px;
  line-height: 1.5;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--cream); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.about-image-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-creds {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.cred-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: .8rem;
  color: var(--dark);
  line-height: 1.4;
}

.about-content { padding-top: 4px; }
.about-content h2 { margin-bottom: 24px; }
.about-content p  { font-size: 1.05rem; margin-bottom: 18px; line-height: 1.8; }
.about-content .btn { margin-top: 8px; }

/* ============================================================
   JOSE / EQUIPO
   ============================================================ */
.jose-section { background: var(--white); }

.jose-section .about-inner {
  grid-template-columns: 1.1fr 1fr;
}

.jose-role {
  font-size: .72rem !important;
  font-weight: 700 !important;
  letter-spacing: .13em !important;
  text-transform: uppercase !important;
  color: var(--navy) !important;
  margin-bottom: 22px !important;
  line-height: 1 !important;
}

.jose-image-wrap {
  background: var(--cream);
  object-position: center top;
}

@media (max-width: 768px) {
  .jose-section .about-inner { grid-template-columns: 1fr; }
  .jose-section .about-content { order: 2; }
  .jose-section .about-image  { order: 1; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr 56px 1fr;
  align-items: start;
  gap: 0;
}
.step { text-align: center; padding: 0 8px; }
.step-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step p  { font-size: .875rem; line-height: 1.65; }

.step-connector {
  height: 2px;
  background: var(--border);
  margin-top: 34px;
  width: 100%;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testimonial-stars { color: var(--gold); font-size: .875rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text  {
  font-size: .9375rem;
  color: var(--dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .875rem; color: var(--dark); }
.testimonial-author span   { font-size: .75rem; color: var(--light); }

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

.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--ease);
}
.faq-question:hover { color: var(--navy); }

.faq-icon {
  flex-shrink: 0;
  color: var(--light);
  transition: transform var(--ease), color var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--navy); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.faq-answer p { padding-bottom: 22px; font-size: .9375rem; }
.faq-item.open .faq-answer { max-height: 200px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--cream); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { font-size: 1.05rem; margin-bottom: 32px; }

.contact-methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--ease), transform var(--ease);
  color: var(--dark);
}
.contact-method:hover { border-color: var(--navy); transform: translateX(4px); }
.contact-method--wa { background: #F0FBF4; border-color: #C3E6CD; }
.contact-method--wa:hover { border-color: #25D366; background: #E5F7EB; }
.contact-method--wa svg { color: #25D366; }
.contact-method--location { cursor: default; }
.contact-method--location:hover { transform: none; border-color: var(--border); }
.contact-method svg { flex-shrink: 0; color: var(--navy); }
.contact-method strong { display: block; font-size: .9375rem; }
.contact-method span   { font-size: .8rem; color: var(--light); }

.contact-social { display: flex; gap: 10px; }
.contact-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  transition: color var(--ease), border-color var(--ease);
}
.contact-social a:hover { color: var(--navy); border-color: var(--navy); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 26px; font-size: 1.45rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: .9375rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--light); }
.form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--light);
  margin-top: 10px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-deep); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 72px;
  padding: 64px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-brand img { height: 36px; width: auto; opacity: .8; margin-bottom: 14px; }
.footer-brand p { font-size: .875rem; line-height: 1.65; color: rgba(237,232,216,.45); margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a { color: rgba(237,232,216,.35); transition: color var(--ease); }
.footer-social a:hover { color: var(--ivory); }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(237,232,216,.3);
  margin-bottom: 14px;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: .875rem;
  color: rgba(237,232,216,.55);
  margin-bottom: 9px;
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  border-top: 1px solid rgba(237,232,216,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { font-size: .8rem; color: rgba(237,232,216,.3); margin: 0; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .8rem; color: rgba(237,232,216,.3); transition: color var(--ease); }
.footer-legal a:hover { color: rgba(237,232,216,.65); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy-deep);
  border-top: 3px solid var(--gold);
  padding: 20px 24px;
  box-shadow: 0 -4px 32px rgba(0,0,0,.25);
}
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 260px; }
.cookie-banner__text strong { color: var(--ivory); font-size: 1rem; display: block; margin-bottom: 6px; }
.cookie-banner__text p { color: rgba(237,232,216,.65); font-size: .85rem; margin: 0 0 8px; line-height: 1.55; }
.cookie-banner__link {
  background: none; border: none; cursor: pointer;
  color: var(--gold); font-size: .82rem; font-weight: 600;
  text-decoration: underline; padding: 0;
}
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-reject { border-color: rgba(237,232,216,.3); color: var(--ivory); padding: 10px 20px; font-size: .875rem; }
.cookie-btn-reject:hover { border-color: var(--ivory); color: var(--ivory); background: rgba(255,255,255,.07); transform: none; }
.cookie-btn-accept { padding: 10px 20px; font-size: .875rem; }

/* Cookie Modal */
.cookie-modal {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(17,30,42,.75);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.cookie-modal__box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  max-width: 620px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.cookie-modal__close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--light);
  transition: color var(--ease);
}
.cookie-modal__close:hover { color: var(--dark); }
.cookie-modal__box h2 { font-size: 1.6rem; margin-bottom: 16px; }
.cookie-modal__box h3 { font-size: 1rem; margin: 22px 0 10px; color: var(--dark); }
.cookie-modal__box p { font-size: .9rem; margin-bottom: 12px; }

.cookie-table { width: 100%; border-collapse: collapse; font-size: .82rem; margin-bottom: 8px; }
.cookie-table th { background: var(--cream); padding: 8px 10px; text-align: left; font-weight: 600; color: var(--dark); border-bottom: 2px solid var(--border); }
.cookie-table td { padding: 8px 10px; border-bottom: 1px solid var(--cream-dark); color: var(--mid); }

.cookie-modal__actions { display: flex; gap: 10px; margin-top: 24px; justify-content: flex-end; flex-wrap: wrap; }

@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
  .cookie-modal__box { padding: 28px 20px; }
  .cookie-modal__actions { justify-content: stretch; }
  .cookie-modal__actions .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --py: 80px; }

  .hero-inner { gap: 48px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--featured { grid-column: span 2; }

  .pack-card { grid-template-columns: 1fr; gap: 48px; }
  .pack-price-box { max-width: 400px; }
  .pack-features { grid-template-columns: 1fr; }

  .about-inner { gap: 48px; }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .step-connector { display: none; }

  .contact-inner { gap: 48px; }
  .footer-inner { gap: 40px; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --py: 64px; }

  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 13px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-header { position: relative; }
  .nav-burger { display: flex; }
  .btn-wa { display: none; }

  /* Hero */
  .hero { min-height: auto; padding: 48px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-social { justify-content: center; }
  .hero-image { max-width: 320px; margin: 0 auto; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; }

  /* Plans */
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; }

  /* About */
  .about-inner { grid-template-columns: 1fr; }
  .about-image-wrap { aspect-ratio: 1/1; max-width: 380px; margin: 0 auto; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 32px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   Reestructura de oferta (sep 2026)
   Dos servicios (nutrición / pack) y tres escalones de
   acompañamiento: Plan Online → Base → Coach
   ═══════════════════════════════════════════════════ */
.services-grid--dos { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
.services-grid--dos .service-card--featured { grid-column: auto; }

.plans-grid--tres { grid-template-columns: repeat(3, 1fr); max-width: 1080px; }

/* Precio total del Plan Online, justo bajo el mensualizado */
.plan-total {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  margin: -6px 0 12px;
  letter-spacing: .01em;
}

/* Lo que un plan NO incluye: se dice, no se esconde */
.plan-features li.plan-feature--off { color: var(--light); }
.plan-features li.plan-feature--off svg { stroke: var(--light); }
.plan-feature-note { color: var(--light); font-size: .82em; }

@media (max-width: 1024px) {
  .services-grid--dos { grid-template-columns: 1fr 1fr; }
  .plans-grid--tres   { grid-template-columns: 1fr 1fr; max-width: 720px; }
}
@media (max-width: 768px) {
  .services-grid--dos { grid-template-columns: 1fr; max-width: 480px; }
  .plans-grid--tres   { grid-template-columns: 1fr; max-width: 480px; }
}

/* El <strong> global es var(--dark) y sobre el navy del pack desaparecía */
.pack-features li strong { color: var(--ivory); }

/* Con display:flex, un <strong> dentro del <li> se convierte en otro item y
   parte la frase en columnas. Se pasa a bloque con el icono posicionado, para
   que el texto fluya de corrido aunque lleve negritas. */
.plan-features li { display: block; position: relative; padding-left: 25px; }
.plan-features li svg { position: absolute; left: 0; top: .55em; margin-top: 0; }

/* Mismo caso que .plan-features: el <strong> partía la frase en columnas */
.pack-features li { display: block; position: relative; padding-left: 23px; line-height: 1.5; }
.pack-features li svg { position: absolute; left: 0; top: .42em; }

/* Tercer sitio con el mismo patron icono+texto en flex: cualquier <strong> o
   <a> dentro partia la frase en columnas. Bloque con el icono posicionado
   (se conserva el padding original del recuadro: 16px 20px). */
.plans-note { display: block; position: relative; padding-left: 46px; line-height: 1.6; }
.plans-note svg { position: absolute; left: 20px; top: 19px; margin-top: 0; }

/* ── Acceso clientes en el nav: mismo estilo que el resto, con separación sutil ── */
.nav-links a.nav-acceso { color: var(--navy); font-weight: 600; }

/* ── Cierre de contacto: WhatsApp en vez de formulario ──
   El formulario de Formspree registró 1 envío en 90 días frente a 64 clics
   a WhatsApp: el cierre convierte por chat, no por campos. */
.wa-cierre { display: flex; flex-direction: column; justify-content: center; height: 100%; }
.wa-cierre h3 { margin-bottom: 14px; font-size: 1.45rem; }
.wa-cierre p { color: var(--text-soft, #5A6E7A); line-height: 1.7; margin-bottom: 26px; }
.wa-cierre-btn { display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 22px; font-size: 1rem; }
.wa-cierre .form-note { margin-top: 14px; text-align: center; }

/* ── Botón WhatsApp flotante ── */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.22); transition: transform .15s ease, box-shadow .15s ease; }
.wa-float:hover { transform: scale(1.07); box-shadow: 0 8px 26px rgba(0,0,0,.28); }
