/* ═══════════════════════════════════════════════
   ANIEL KALINOWSKI · NUTRICIONISTA — 2026
   Paleta: Cream · Blush · Terracotta (Clara y cálida)
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --cream:          #F5EDE3;
  --cream-dark:     #EDE0D3;
  --cream-mid:      #E8DDD2;
  --cream-deep:     #DDD0C4;
  --warm-black:     #1C1712;
  --charcoal:       #2B2620;
  --body-text:      #5A4E44;
  --muted:          #9A8E85;

  --terracotta:     #B5532B;
  --terracotta-lt:  #D4784F;
  --terracotta-pale:#F0D5C8;
  --terracotta-xlt: #F8EBE3;

  --blush:          #E8C4A8;
  --blush-light:    #F4DFD0;
  --blush-xlt:      #FBF5F0;
  --mustard:        #C9A050;
  --olive:          #7D8A5C;

  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Jost', system-ui, sans-serif;

  --r-sm:   6px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 999px;

  --shadow-xs:  0 2px 8px rgba(28,23,18,.05);
  --shadow-sm:  0 4px 20px rgba(28,23,18,.07);
  --shadow-md:  0 8px 40px rgba(28,23,18,.10);
  --shadow-lg:  0 20px 60px rgba(28,23,18,.13);

  --nav-h: 84px;
  --max-w: 1240px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 56px;
}

/* ── LABELS ── */
.label-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

/* ── SECTION TITLES ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-black);
}
.section-title em { font-style: italic; color: var(--terracotta); }

/* ── BOTONES ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 6px 24px rgba(181,83,43,.25);
}
.btn-primary:hover {
  background: #9C4422;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(181,83,43,.35);
}
.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
}
.btn-outline:hover {
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--warm-black);
  color: var(--cream);
}
.btn-dark:hover {
  background: #2C2318;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.28);
}
.btn-whatsapp:hover {
  background: #1EAF56;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.38);
}

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .12s; }
.fade-in-delay-2 { transition-delay: .22s; }
.fade-in-delay-3 { transition-delay: .32s; }
.fade-in-delay-4 { transition-delay: .42s; }

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.navbar.scrolled {
  background: rgba(245,237,227,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(28,23,18,.07);
}

/* Grid 3 columnas: logo | nav centrado | cta */
.navbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 32px;
  align-items: center;
  width: 100%;
}
.navbar__logo {
  justify-self: start;
}
.navbar__logo img {
  height: 46px;
  width: auto;
  transition: opacity .2s;
}
.navbar__logo:hover img { opacity: .75; }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 44px;
  justify-self: center;
}
.navbar__nav a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--terracotta);
  transition: width .25s ease;
}
.navbar__nav a:hover { color: var(--terracotta); }
.navbar__nav a:hover::after { width: 100%; }

.navbar__actions {
  justify-self: end;
  padding-left: 20px;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--warm-black);
  transition: all .3s ease;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  z-index: 999;
  padding: 32px 48px 48px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}
.mobile-menu nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: color .2s;
}
.mobile-menu nav a:hover { color: var(--terracotta); }
.mobile-menu nav a:last-child { border-bottom: none; }

/* ══════════════════════════════════
   HERO — Clara, cálida, luminosa
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Decorative shapes */
.hero__deco {
  position: absolute;
  pointer-events: none;
}
.hero__deco--circle1 {
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  opacity: .55;
  top: -160px; right: -120px;
}
.hero__deco--circle2 {
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--terracotta-pale) 0%, transparent 70%);
  opacity: .45;
  bottom: -80px; left: -80px;
}
.hero__deco--circle3 {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--mustard) 0%, transparent 70%);
  opacity: .12;
  top: 38%; right: 42%;
}
.hero__deco--line {
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--terracotta), transparent);
  opacity: .3;
  bottom: 60px; left: 50%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0 100px;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero content */
.hero__content { max-width: 580px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--terracotta);
  opacity: .5;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--body-text);
  line-height: 1.2;
  margin-bottom: 16px;
  opacity: .8;
}
.hero__name em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}

.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--warm-black);
  letter-spacing: -.5px;
  margin-bottom: 28px;
}
.hero__h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero__body {
  font-size: 16px;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 460px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-dark);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
  display: block;
}
.hero__stat-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

/* Hero photo */
.hero__photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__photo-frame {
  position: relative;
  width: 100%;
  max-width: 490px;
  border-radius: 50% 50% 40% 40% / 48% 48% 36% 36%;
  overflow: hidden;
  background: var(--blush-light);
  box-shadow: 0 32px 80px rgba(181,83,43,.13), 0 0 0 1px var(--cream-dark);
}
.hero__photo-frame img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: 50% 15%;
  display: block;
}

/* Decorative ring around photo */
.hero__photo-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50% 50% 40% 40% / 48% 48% 36% 36%;
  border: 1.5px dashed rgba(181,83,43,.2);
  pointer-events: none;
}

.hero__photo-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 20px 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-dark);
}
.hero__photo-badge-stars {
  color: var(--mustard);
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.hero__photo-badge-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: var(--warm-black);
}
.hero__photo-badge-sub {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .5px;
  margin-top: 2px;
}

/* ══════════════════════════════════
   TU NUTRI — SOBRE MÍ
══════════════════════════════════ */
.about {
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}
.about__inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 88px;
  align-items: start;
}

/* Photo column */
.about__photo-col { position: relative; }
.about__photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  margin-bottom: 16px;
}
.about__photo-main {
  grid-column: 1 / -1;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 380px;
}
.about__photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  transition: transform .6s ease;
}
.about__photo-main img:hover { transform: scale(1.03); }

.about__photo-sub {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 200px;
}
.about__photo-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  transition: transform .6s ease;
}
.about__photo-sub img:hover { transform: scale(1.04); }

/* Badge below the photos — NO absolute positioning to avoid overlaps */
.about__quote-float {
  background: var(--terracotta);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  margin-top: 0;
}
.about__quote-float p {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
}
.about__quote-float span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 12px;
}

/* Content column */
.about__content { padding-top: 8px; }
.about__body {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 44px;
}
.about__body p { margin-bottom: 16px; }
.about__body strong { color: var(--warm-black); font-weight: 500; }

/* Value cards */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.value-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: transparent;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
}
.value-card--1::before { background: var(--terracotta); }
.value-card--2::before { background: var(--mustard); }
.value-card--3::before { background: var(--blush); }
.value-card--4::before { background: var(--olive); }

.value-card__icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--terracotta-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--terracotta);
}
.value-card--2 .value-card__icon { background: #F5EDD8; color: var(--mustard); }
.value-card--3 .value-card__icon { background: #F9EDE4; color: var(--terracotta-lt); }
.value-card--4 .value-card__icon { background: #EEF1E8; color: var(--olive); }

.value-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--warm-black);
  margin-bottom: 6px;
}
.value-card__text {
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.65;
}

/* ══════════════════════════════════
   PHILOSOPHY STRIP
══════════════════════════════════ */
.philosophy-strip {
  background: var(--terracotta);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.philosophy-strip::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
}
.philosophy-strip::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(0,0,0,.06) 0%, transparent 70%);
}
.philosophy-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.philosophy-strip__quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.95);
  line-height: 1.5;
  position: relative;
  padding-left: 28px;
}
.philosophy-strip__quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -12px;
  font-size: 72px;
  color: rgba(255,255,255,.25);
  line-height: 1;
}
.philosophy-strip__author {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.philosophy-strip__author::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: rgba(255,255,255,.4);
}
.philosophy-strip__cta { flex-shrink: 0; }

/* ══════════════════════════════════
   SERVICIOS
══════════════════════════════════ */
.servicios {
  padding: 120px 0;
  background: var(--cream);
}
.servicios__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 80px;
}
.servicios__header .section-title { margin-bottom: 16px; }
.servicios__header p {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.75;
}

/* ── PROCESO TIMELINE ── */
.proceso-wrap {
  margin-bottom: 88px;
}
.proceso-title {
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 48px;
}
.proceso-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  padding: 0 24px;
}
/* Connecting line */
.proceso-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(24px + 12.5%);
  right: calc(24px + 12.5%);
  height: 1.5px;
  background: linear-gradient(90deg, var(--terracotta), var(--blush), var(--terracotta-lt));
  opacity: .35;
}
.proceso-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.proceso-step__dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--terracotta);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
  box-shadow: 0 0 0 6px var(--cream);
}
.proceso-step:hover .proceso-step__dot {
  border-color: var(--terracotta);
  background: var(--terracotta-xlt);
}
.proceso-step__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.proceso-step__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--warm-black);
  margin-bottom: 8px;
  line-height: 1.2;
}
.proceso-step__text {
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.6;
}

/* ── PLAN CARDS ── */
.planes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
.plan-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: transform .3s ease, box-shadow .3s ease;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.plan-card--featured {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.plan-card--featured:hover { transform: translateY(-10px); }

.plan-header {
  padding: 44px 44px 32px;
  position: relative;
  overflow: hidden;
}
.plan-header--online {
  background: linear-gradient(135deg, var(--warm-black) 0%, #3A2A1E 100%);
}
.plan-header--presencial {
  background: linear-gradient(135deg, var(--terracotta) 0%, #8C3B1C 100%);
}
.plan-header::after {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  top: -80px; right: -60px;
}
.plan-header__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(255,255,255,.12);
  padding: 5px 14px;
  border-radius: var(--r-full);
  color: rgba(255,255,255,.8);
  margin-bottom: 20px;
}
.plan-header__name {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}
.plan-header__tagline {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  letter-spacing: .5px;
}
.plan-popular {
  position: absolute;
  top: 22px; right: -28px;
  background: var(--mustard);
  color: var(--warm-black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 42px;
  transform: rotate(35deg);
  z-index: 2;
}

.plan-body { padding: 40px 44px; }
.plan-features {
  list-style: none;
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.9;
  margin-bottom: 32px;
}
.plan-features li {
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px solid #f8f5f2;
}
.plan-features li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: .6;
}
.plan-cta {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* ── POLÍTICAS ── */
.politicas {
  background: var(--blush-xlt);
  border-radius: var(--r-xl);
  padding: 56px;
  border: 1px solid var(--blush-light);
}
.politicas__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--cream-dark);
}
.politicas__header-icon {
  width: 48px; height: 48px;
  background: var(--terracotta-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}
.politicas__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--warm-black);
}
.politicas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.politica-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.politica-item__icon-wrap {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}
.politica-item__title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--warm-black);
  margin-bottom: 5px;
}
.politica-item__text {
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.65;
}

/* ══════════════════════════════════
   TESTIMONIOS — clara y cálida
══════════════════════════════════ */
.testimonios {
  padding: 120px 0;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.testimonios::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  opacity: .35;
}
.testimonios::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--terracotta-pale) 0%, transparent 70%);
  opacity: .4;
}
.testimonios__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}
.testimonios__header .section-title { margin-bottom: 12px; }

/* Carrusel */
.carousel-outer { position: relative; z-index: 2; }
.carousel-track-wrap {
  overflow: hidden;
  border-radius: var(--r-xl);
}
.carousel-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  margin-right: 24px;
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}
.testimonial-card__stars {
  color: var(--mustard);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--warm-black);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 28px;
  position: relative;
  padding-top: 16px;
}
.testimonial-card__quote::before {
  content: '"';
  position: absolute;
  top: -10px; left: 0;
  font-size: 48px;
  color: var(--terracotta);
  opacity: .25;
  line-height: 1;
  font-family: var(--font-display);
}
.testimonial-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-dark);
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--terracotta-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-black);
  letter-spacing: .3px;
}
.testimonial-card__role {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .5px;
  margin-top: 2px;
}

/* Controles */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--cream-dark);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  font-size: 18px;
  box-shadow: var(--shadow-xs);
}
.carousel-btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cream-deep);
  cursor: pointer;
  transition: all .25s;
  border: none;
}
.carousel-dot.active {
  background: var(--terracotta);
  width: 22px;
  border-radius: var(--r-full);
}

/* ══════════════════════════════════
   CONTACTO
══════════════════════════════════ */
.contacto {
  padding: 120px 0;
  background: #fff;
}
.contacto__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 80px;
}
.contacto__header .section-title { margin-bottom: 12px; }
.contacto__header p {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
}
.contacto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* CTA Card */
.cita-card {
  background: var(--terracotta);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.cita-card::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -100px; right: -80px;
}
.cita-card::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(0,0,0,.04);
  bottom: -60px; left: -40px;
}
.cita-card__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
  display: block;
  position: relative;
  z-index: 2;
}
.cita-card__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.cita-card__body {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}
.cita-card__contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}
.cita-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.cita-contact-item a {
  color: rgba(255,255,255,.9);
  transition: color .2s;
}
.cita-contact-item a:hover { color: #fff; }
.cita-contact-item__icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,.8);
}
.cita-card .btn-whatsapp {
  width: calc(100% - 0px);
  justify-content: center;
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,.3);
  box-shadow: none;
}
.cita-card .btn-whatsapp:hover {
  background: #fff;
  color: var(--terracotta);
  box-shadow: none;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all .2s;
  border: 1px solid rgba(255,255,255,.18);
}
.social-btn:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
  transform: translateY(-2px);
}

/* Formulario colaboraciones */
.collab-form-wrap { padding-top: 4px; }
.collab-form-wrap .label-tag { margin-bottom: 10px; }
.collab-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--warm-black);
  line-height: 1.15;
  margin-bottom: 14px;
}
.collab-body {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 36px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(181,83,43,.08);
}
.form-group textarea { min-height: 100px; }
.form-submit { width: 100%; justify-content: center; }
.form-success {
  display: none;
  background: var(--terracotta-xlt);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  text-align: center;
  font-size: 14px;
  color: var(--terracotta);
  margin-top: 16px;
  border: 1px solid var(--terracotta-pale);
}
.form-success.show { display: block; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--warm-black);
  padding: 80px 0 44px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
  opacity: .4;
}
.footer__top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 44px;
}

/* Brand col */
.footer__brand {
  display: flex;
  flex-direction: column;
}
.footer__logo-wrap { margin-bottom: 16px; }
.footer__logo-wrap img {
  height: 64px;
  width: auto;
  opacity: .88;
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}
.footer__logo-wrap:hover img { opacity: 1; }
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: .5px;
}
.footer__brand-name em {
  font-style: italic;
  color: var(--blush);
}
.footer__tagline {
  font-size: 12px;
  color: rgba(245,237,227,.3);
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.footer__social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(245,237,227,.06);
  border: 1px solid rgba(245,237,227,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,237,227,.45);
  font-size: 14px;
  transition: all .2s;
}
.footer__social-btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
  transform: translateY(-2px);
}

.footer__col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,237,227,.4);
  margin-bottom: 22px;
}
.footer__links { list-style: none; }
.footer__links li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.footer__links li:last-child { border-bottom: none; }
.footer__links a {
  font-size: 13px;
  color: rgba(245,237,227,.38);
  transition: color .2s;
}
.footer__links a:hover { color: var(--blush); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 11px;
  color: rgba(245,237,227,.2);
  letter-spacing: .5px;
}
.footer__bottom-logo img {
  height: 30px;
  opacity: .25;
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}
.footer__bottom-logo:hover img { opacity: .5; }

/* ══════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px 14px 18px;
  border-radius: var(--r-full);
  box-shadow: 0 8px 32px rgba(37,211,102,.3);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  opacity: 0;
  pointer-events: none;
}
.whatsapp-fab.visible {
  opacity: 1;
  pointer-events: all;
  animation: fabPulse 3.5s ease-in-out infinite;
}
.whatsapp-fab:hover {
  background: #1EAF56;
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(37,211,102,.42);
  animation: none;
}
.whatsapp-fab__label { white-space: nowrap; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,.3); }
  50% { box-shadow: 0 8px 48px rgba(37,211,102,.5); }
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  .navbar__nav { gap: 32px; }
  .hero__inner { gap: 56px; }
  .about__inner { gap: 60px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__top > .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --nav-h: 76px; }
  .container { padding: 0 32px; }

  /* Navbar */
  .navbar__nav { display: none; }
  .navbar__actions { display: none; }
  .navbar__hamburger {
    display: flex;
    justify-self: end;
  }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 64px 0 72px;
  }
  .hero__photo-wrap {
    order: -1;
    margin-bottom: 48px;
  }
  .hero__photo-frame {
    max-width: 300px;
    margin: 0 auto;
  }
  .hero__photo-frame img { height: 360px; }
  .hero__photo-badge {
    left: 0;
    bottom: 16px;
    max-width: 200px;
  }
  .hero__content { max-width: 100%; }
  .hero__stats { gap: 28px; }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__photo-stack { max-width: 100%; }
  .about__quote-float {
    right: 0;
    bottom: -16px;
    max-width: 200px;
  }

  /* Philosophy */
  .philosophy-strip__inner { grid-template-columns: 1fr; gap: 32px; }

  /* Proceso */
  .proceso-timeline {
    grid-template-columns: 1fr 1fr;
    row-gap: 48px;
  }
  .proceso-timeline::before { display: none; }

  /* Planes */
  .planes-grid { grid-template-columns: 1fr; }
  .plan-card--featured { transform: none; }

  /* Políticas */
  .politicas__grid { grid-template-columns: 1fr 1fr; }

  /* Testimonios */
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    margin-right: 0;
  }

  /* Contacto */
  .contacto__grid { grid-template-columns: 1fr; gap: 48px; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__top > .footer__brand { grid-column: auto; }
}

@media (max-width: 640px) {
  :root { --nav-h: 68px; }
  .container { padding: 0 20px; }

  .about, .servicios, .testimonios, .contacto { padding: 80px 0; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .hero__stats { flex-direction: column; gap: 20px; }
  .hero__stat-num { font-size: 36px; display: inline; margin-right: 8px; }
  .hero__stat-label { display: inline; }
  .values-grid { grid-template-columns: 1fr; }
  .politicas__grid { grid-template-columns: 1fr; }
  .proceso-timeline { grid-template-columns: 1fr; gap: 36px; }
  .planes-grid { gap: 20px; }
  .plan-body { padding: 32px 28px; }
  .plan-header { padding: 36px 28px 24px; }
  .cita-card { padding: 40px 28px; }
  .politicas { padding: 40px 28px; }
  .mobile-menu { padding: 24px 20px 40px; }

  .whatsapp-fab__label { display: none; }
  .whatsapp-fab { padding: 16px; border-radius: 50%; }
}
