/* ============================================
   WELL-BEING · Design System 2026
   Centro Estético profesional · Floridablanca
   ============================================ */

:root {
  /* Palette */
  --ivory:      #FAF7F2;
  --ivory-2:    #F2EDE4;
  --ivory-3:    #E8DFCF;
  --forest:     #1E2A24;
  --forest-2:   #2C3A33;
  --sage:       #6B8564;
  --sage-dark:  #556B4F;
  --sage-2:     #8CA085;
  --sage-3:     #A9BFA2;
  --nude:       #D4B5A0;
  --nude-2:     #E8CFB5;
  --stone:      #8B8478;
  --stone-2:    #A8A196;
  --line:       rgba(30, 42, 36, 0.10);
  --line-2:     rgba(30, 42, 36, 0.06);
  --shadow-sm:  0 1px 2px rgba(30, 42, 36, 0.05);
  --shadow-md:  0 8px 24px rgba(30, 42, 36, 0.08);
  --shadow-lg:  0 24px 60px rgba(30, 42, 36, 0.12);
  --radius:     4px;
  --radius-lg:  16px;
  --font-serif: 'Fraunces', 'Iowan Old Style', Palatino, Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container:  1240px;
  --container-narrow: 880px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--forest);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ TIPOGRAFÍA ============ */
.display-1 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(52px, 8vw, 108px); line-height: 0.98; letter-spacing: -0.035em; font-optical-sizing: auto; }
.display-2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(36px, 5.5vw, 64px); line-height: 1.05; letter-spacing: -0.025em; font-optical-sizing: auto; }
.display-3 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(26px, 3.5vw, 40px); line-height: 1.12; letter-spacing: -0.015em; font-optical-sizing: auto; }
.eyebrow  { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage-dark); }
.lead     { font-size: 18px; line-height: 1.55; color: var(--forest-2); }
.caption  { font-size: 13px; color: var(--stone); }
em.serif  { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--sage-dark); }
h1, h2, h3, h4 { font-optical-sizing: auto; text-wrap: balance; }

.container       { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow{ max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 20px; }
}

/* ============ BOTONES ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none; white-space: nowrap;
}
.btn-primary   { background: var(--sage); color: var(--ivory); }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-secondary:hover { background: var(--forest); color: var(--ivory); }
.btn-ghost     { background: transparent; color: var(--forest); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--forest); }
.btn-white     { background: var(--ivory); color: var(--forest); }
.btn-white:hover { background: white; transform: translateY(-1px); }
.btn-lg { padding: 18px 34px; font-size: 15px; }
.btn-sm { padding: 10px 18px; font-size: 12px; }

/* ============ HEADER STICKY ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--ivory) 92%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
}
.brand {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--font-serif); font-weight: 500; font-size: 22px;
  letter-spacing: -0.02em; color: var(--forest);
}
.brand-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); margin-right: 4px; align-self: center; }
.brand-sub { font-family: var(--font-sans); font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin-left: 6px; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { font-size: 14px; color: var(--forest-2); font-weight: 400; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--sage-dark); }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 24px; color: var(--forest); }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    padding: 24px 32px; gap: 20px;
  }
}

/* ============ SECTION HELPERS ============ */
section.block { padding: 100px 0; }
@media (max-width: 720px) { section.block { padding: 70px 0; } }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow { display: inline-block; margin-bottom: 20px; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { color: var(--forest-2); font-size: 17px; }

/* ============ HERO TIPOGRÁFICO (sin fotos) ============ */
.hero-type {
  padding: 140px 0 120px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.hero-type::before {
  content: "";
  position: absolute;
  top: 15%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--nude-2) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.hero-type::after {
  content: "";
  position: absolute;
  bottom: 10%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-3) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}
.hero-type .container { position: relative; z-index: 2; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.hero-eyebrow::before { content: ""; display: inline-block; width: 40px; height: 1px; background: var(--sage); }
.hero-type h1 { max-width: 15ch; margin-bottom: 32px; color: var(--forest); }
.hero-type h1 em { color: var(--sage-dark); font-weight: 400; }
.hero-type .lead { margin-bottom: 44px; max-width: 46ch; font-size: 19px; }
.hero-type .ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-type .trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding-top: 40px; border-top: 1px solid var(--line);
  max-width: 780px;
}
@media (max-width: 720px) { .hero-type .trust { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.trust-item .n { font-family: var(--font-serif); font-size: 30px; font-weight: 500; color: var(--forest); line-height: 1; }
.trust-item .l { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone); font-weight: 600; margin-top: 6px; }

/* Hero interior de páginas de servicio */
.hero-service {
  padding: 90px 0 70px;
  background: var(--ivory-2);
  position: relative;
}
.hero-service .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .hero-service .container { grid-template-columns: 1fr; gap: 30px; } }
.hero-service .eyebrow { margin-bottom: 16px; display: inline-block; }
.hero-service h1 { max-width: 12ch; margin-bottom: 20px; color: var(--forest); }
.hero-service .lead { max-width: 46ch; margin-bottom: 32px; color: var(--forest-2); }
.hero-service .meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 28px;
}
.hero-service .meta-item { }
.hero-service .meta-item .k { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone); font-weight: 600; margin-bottom: 4px; }
.hero-service .meta-item .v { font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--forest); }
.hero-service .icon-visual {
  aspect-ratio: 1; max-width: 460px; margin-left: auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sage-3) 0%, var(--sage) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-service .icon-visual::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15), transparent 60%);
}
.hero-service .icon-visual svg { width: 45%; height: 45%; stroke-width: 1.2; position: relative; z-index: 2; }

/* ============ SERVICES INDEX GRID ============ */
.services-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .services-index { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-index { grid-template-columns: 1fr; } }

.service-card {
  background: var(--ivory-2);
  border-radius: var(--radius-lg);
  padding: 32px 30px 30px;
  display: flex; flex-direction: column;
  border: 1px solid transparent;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-2); background: var(--ivory); }
.service-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, var(--nude-2), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 0.5; }
.service-card .cat { font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--sage-dark); font-weight: 600; margin-bottom: 14px; }
.service-card .icon { color: var(--sage); margin-bottom: 20px; }
.service-card .icon svg { width: 40px; height: 40px; stroke-width: 1.4; }
.service-card h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 500; color: var(--forest); margin-bottom: 10px; letter-spacing: -0.01em; }
.service-card .desc { font-size: 14.5px; color: var(--forest-2); line-height: 1.55; margin-bottom: 24px; flex: 1; }
.service-card .foot { display: flex; align-items: baseline; justify-content: space-between; padding-top: 18px; border-top: 1px dashed var(--line); }
.service-card .price .from { font-size: 10px; color: var(--stone); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; display: block; }
.service-card .price .amt { font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--forest); letter-spacing: -0.01em; }
.service-card .price .amt small { font-size: 11px; color: var(--stone); font-weight: 400; margin-left: 2px; }
.service-card .arrow { color: var(--sage-dark); font-size: 20px; transition: transform 0.2s; }
.service-card:hover .arrow { transform: translateX(4px); }

/* ============ BEFORE / AFTER SLIDER ============ */
.ba-wrap { max-width: 900px; margin: 0 auto; }
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ivory-2);
  box-shadow: var(--shadow-md);
  user-select: none;
  touch-action: none;
}
.ba-side {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  color: var(--sage-dark);
  overflow: hidden;
}
.ba-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before { background: var(--ivory-3); color: var(--forest-2); }
.ba-after {
  background: var(--sage-3);
  color: var(--forest);
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}
.ba-label {
  position: absolute; top: 20px;
  background: var(--forest); color: var(--ivory);
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 3px;
  pointer-events: none; z-index: 3;
}
.ba-label.before { left: 20px; }
.ba-label.after { right: 20px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 4px; background: var(--ivory); z-index: 4;
  transform: translateX(-50%);
  cursor: ew-resize;
  box-shadow: 0 0 0 1px var(--forest), 0 4px 12px rgba(0,0,0,0.15);
}
.ba-handle::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ivory); border: 2px solid var(--forest);
  box-shadow: 0 4px 16px rgba(30, 42, 36, 0.25);
}
.ba-handle::after {
  content: "⟷";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--forest); font-size: 20px;
  z-index: 2; font-family: var(--font-sans);
  letter-spacing: 0;
}
.ba-note {
  text-align: center; color: var(--stone); font-size: 13px;
  margin-top: 20px; font-style: italic;
}

/* ============ APPROACH BLOCK ============ */
.approach { background: var(--ivory-2); }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .approach-grid { grid-template-columns: 1fr; gap: 40px; } }
.approach-text .eyebrow { display: inline-block; margin-bottom: 20px; }
.approach-text h2 { margin-bottom: 24px; }
.approach-text .lead { margin-bottom: 32px; max-width: 44ch; }
.approach-points { display: grid; gap: 16px; margin-bottom: 32px; }
.approach-point {
  display: flex; gap: 18px; padding: 22px 24px;
  background: var(--ivory); border-radius: var(--radius);
  border-left: 3px solid var(--sage);
}
.approach-point .n {
  font-family: var(--font-serif); font-size: 26px; font-weight: 500;
  color: var(--sage-dark); line-height: 1; min-width: 32px;
}
.approach-point .txt strong { display: block; margin-bottom: 4px; color: var(--forest); font-weight: 600; }
.approach-point .txt small { color: var(--forest-2); font-size: 14.5px; line-height: 1.55; }

.approach-visual {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, transparent 45%, var(--sage) 45%, var(--sage) 55%, transparent 55%),
    linear-gradient(135deg, var(--nude) 0%, var(--nude-2) 60%, var(--ivory-3) 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  padding: 40px;
}
.approach-visual::before, .approach-visual::after {
  content: ""; position: absolute; border-radius: 50%;
}
.approach-visual::before {
  top: 30px; left: 30px; width: 60px; height: 60px;
  background: var(--sage);
  box-shadow: 0 0 60px 10px rgba(107, 133, 100, 0.35);
}
.approach-visual::after {
  bottom: 40px; right: 40px; width: 90px; height: 90px;
  background: var(--forest);
  opacity: 0.6;
}
.approach-visual .quote {
  font-family: var(--font-serif); font-size: clamp(22px, 3vw, 32px);
  font-weight: 400; font-style: italic; line-height: 1.25;
  color: var(--forest); text-align: center; max-width: 20ch;
  position: relative; z-index: 2;
}

/* ============ FAQ ============ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; background: none; border: none; padding: 24px 0;
  font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--forest);
  cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; letter-spacing: -0.01em;
}
.faq-question::after {
  content: "+"; font-size: 26px; color: var(--sage); font-weight: 300;
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-item[open] .faq-question::after { content: "−"; }
.faq-answer { padding: 0 0 24px; color: var(--forest-2); font-size: 15px; line-height: 1.65; max-width: 62ch; }
.faq-answer a { color: var(--sage-dark); text-decoration: underline; }

/* ============ CTA BLOCK ============ */
.cta-block {
  background: var(--sage); color: var(--ivory);
  padding: 100px 0; text-align: center;
}
.cta-block h2 { color: var(--ivory); margin-bottom: 24px; }
.cta-block p { color: var(--ivory); opacity: 0.9; max-width: 44ch; margin: 0 auto 40px; font-size: 17px; }
.cta-block .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-block em.serif { color: var(--ivory); }

/* ============ STATS BAND ============ */
.stats-band {
  padding: 80px 0; background: var(--forest); color: var(--ivory);
}
.stats-band .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 800px) { .stats-band .grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
.stat { text-align: center; }
.stat .n { font-family: var(--font-serif); font-size: clamp(38px, 6vw, 60px); font-weight: 400; line-height: 1; color: var(--nude); letter-spacing: -0.02em; }
.stat .n em { font-style: italic; color: var(--sage-2); font-size: 0.5em; margin-left: 4px; }
.stat .l { margin-top: 12px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ivory); opacity: 0.8; font-weight: 500; }

/* ============ CONTACT + MAP ============ */
.contact { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: none; }
.contact-item .icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%;
  background: var(--ivory-2); display: flex; align-items: center; justify-content: center;
  color: var(--sage-dark);
}
.contact-item .icon svg { width: 20px; height: 20px; }
.contact-item .txt strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone); font-weight: 600; margin-bottom: 4px; }
.contact-item .txt div, .contact-item .txt a { color: var(--forest); font-size: 15px; line-height: 1.5; }
.contact-item .txt a:hover { color: var(--sage-dark); }
.contact-map {
  aspect-ratio: 4/3; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ============ FOOTER ============ */
footer {
  background: var(--forest); color: var(--ivory);
  padding: 70px 0 30px;
}
footer .grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
@media (max-width: 800px) { footer .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { footer .grid { grid-template-columns: 1fr; } }
footer .brand-block .brand { color: var(--ivory); }
footer p, footer li { color: var(--ivory); opacity: 0.75; font-size: 14px; line-height: 1.7; }
footer h4 { font-family: var(--font-serif); font-size: 16px; font-weight: 500; color: var(--ivory); margin-bottom: 16px; }
footer ul { list-style: none; }
footer ul li a { color: var(--ivory); opacity: 0.75; transition: opacity 0.2s; }
footer ul li a:hover { opacity: 1; color: var(--nude); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer-socials a:hover { background: var(--sage); }
.footer-socials svg { width: 18px; height: 18px; fill: var(--ivory); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 12px; opacity: 0.6;
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }

/* ============ ANIMATIONS ============ */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.fade-up.in { opacity: 1; transform: none; }

/* ============ BREADCRUMB SERVICIOS ============ */
.crumb { padding: 20px 0 0; font-size: 13px; color: var(--stone); }
.crumb a { color: var(--stone); }
.crumb a:hover { color: var(--sage-dark); }
.crumb .sep { margin: 0 8px; }

/* ============ CONTENT PROSE ============ */
.prose { max-width: 62ch; margin: 0 auto; color: var(--forest-2); font-size: 16.5px; line-height: 1.75; }
.prose h3 { font-family: var(--font-serif); font-size: 26px; font-weight: 500; color: var(--forest); margin: 40px 0 16px; letter-spacing: -0.01em; }
.prose h4 { font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--forest); margin: 30px 0 12px; }
.prose p { margin-bottom: 18px; }
.prose ul { padding-left: 24px; margin-bottom: 18px; }
.prose ul li { margin-bottom: 8px; }
.prose strong { color: var(--forest); font-weight: 600; }
.prose em { font-family: var(--font-serif); font-style: italic; color: var(--sage-dark); }

/* ============ SERVICE PAGE LAYOUT ============ */
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 320px; gap: 60px;
  max-width: var(--container); margin: 0 auto;
}
@media (max-width: 900px) { .service-detail-grid { grid-template-columns: 1fr; } }
.service-sidebar {
  position: sticky; top: 100px; align-self: start;
  background: var(--ivory-2); border-radius: var(--radius-lg);
  padding: 30px 28px;
}
.service-sidebar h4 { font-family: var(--font-serif); font-size: 18px; font-weight: 500; margin-bottom: 8px; color: var(--forest); }
.service-sidebar .price-big { font-family: var(--font-serif); font-size: 34px; font-weight: 500; color: var(--sage-dark); margin: 8px 0 20px; }
.service-sidebar .price-big small { font-size: 12px; color: var(--stone); font-weight: 400; display: block; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.service-sidebar ul { list-style: none; margin: 20px 0; }
.service-sidebar ul li {
  padding: 10px 0; border-bottom: 1px dashed var(--line);
  font-size: 13px; color: var(--forest-2);
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.service-sidebar ul li strong { color: var(--stone); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.service-sidebar .btn { width: 100%; margin-top: 8px; }
/* ================================================================
   ITERACIÓN 2 · Fixes de reviews UX/SEO/CRO
   ================================================================ */

/* Hero home v2 con visual */
.hero-type { padding: 140px 0; }
.hero-type .container { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .hero-type .container { grid-template-columns: 1fr; gap: 40px; } }

.hero-visual {
  aspect-ratio: 4/5; max-width: 460px; margin-left: auto;
  position: relative; border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 20%, var(--sage-3) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, var(--nude-2) 0%, transparent 65%),
    linear-gradient(135deg, var(--ivory-2) 0%, var(--ivory-3) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: ""; position: absolute; inset: 20% 30% 20% 30%;
  border: 1px solid rgba(30,42,36,0.15); border-radius: 50%;
  animation: hero-pulse 4s ease-in-out infinite;
}
.hero-visual::after {
  content: ""; position: absolute; inset: 35% 45% 35% 45%;
  background: var(--sage); opacity: 0.15; border-radius: 50%;
}
@keyframes hero-pulse { 0%,100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 0.8; } }
.hero-badge {
  position: absolute; bottom: 24px; left: 24px; z-index: 3;
  background: var(--ivory); padding: 12px 18px; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
}
.hero-badge .stars { color: var(--nude); font-size: 14px; letter-spacing: 2px; }
.hero-badge .text { font-size: 13px; color: var(--forest); font-weight: 500; }
.hero-badge .text small { display: block; color: var(--stone); font-size: 11px; font-weight: 400; }

/* Stats block ampliado */
.stats-band { padding: 100px 0; }
.stats-band .grid { gap: 60px; }
.stat .n { font-size: clamp(48px, 7vw, 72px); font-weight: 300; }

/* Iconos de servicio grandes */
.service-card { padding: 36px 30px 32px; border: 1px solid var(--line-2); }
.service-card .icon svg { width: 56px; height: 56px; stroke-width: 1.2; color: inherit; }
.service-card .icon {
  width: 72px; height: 72px; border-radius: 16px;
  background: linear-gradient(135deg, var(--sage-3) 0%, var(--sage) 100%);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-card h3 { font-size: 22px; }
.service-card .cta-verbal {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  color: var(--sage-dark);
  padding-top: 8px;
}
.service-card:hover .cta-verbal { color: var(--forest); }
.service-card .cta-verbal::after { content: "→"; font-size: 16px; transition: transform 0.2s; }
.service-card:hover .cta-verbal::after { transform: translateX(4px); }

/* Testimonials block */
.testi-block { background: var(--ivory); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--ivory-2); padding: 32px 28px 28px; border-radius: var(--radius-lg);
  position: relative; border: 1px solid var(--line-2);
}
.testi::before {
  content: ""; position: absolute; top: 0; left: 32px; right: 32px; height: 3px;
  background: linear-gradient(90deg, var(--nude), var(--sage));
  border-radius: 0 0 3px 3px;
}
.testi .stars { color: var(--nude); font-size: 14px; letter-spacing: 3px; margin-bottom: 14px; }
.testi p { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--forest); font-size: 17px; line-height: 1.5; margin-bottom: 22px; }
.testi .meta { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.testi .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--sage); color: var(--ivory); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 18px; font-weight: 500; }
.testi .who strong { display: block; font-size: 14px; color: var(--forest); font-weight: 600; }
.testi .who small { font-size: 12px; color: var(--stone); }
.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; padding: 10px 16px; border-radius: 8px;
  box-shadow: var(--shadow-sm);
  margin-top: 30px;
}
.google-badge .stars { color: #f9a825; letter-spacing: 2px; font-size: 15px; }
.google-badge span { font-size: 12px; color: var(--stone); }
.google-badge b { color: var(--forest); font-weight: 700; margin-right: 4px; }

/* Blog grid con thumbnails abstractos */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--ivory); border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s; border: 1px solid var(--line-2);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-2); }
.blog-thumb {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: clamp(80px, 12vw, 140px); font-weight: 400;
  letter-spacing: -0.05em;
}
.blog-thumb.cat-piel { background: linear-gradient(135deg, var(--sage-3) 0%, var(--sage-dark) 100%); color: var(--ivory); }
.blog-thumb.cat-facial { background: linear-gradient(135deg, var(--nude-2) 0%, var(--nude) 100%); color: var(--forest); }
.blog-thumb.cat-depilacion { background: linear-gradient(135deg, var(--stone-2) 0%, var(--forest-2) 100%); color: var(--nude); }
.blog-thumb.cat-wellness { background: linear-gradient(135deg, var(--nude), var(--sage)); color: var(--ivory); }
.blog-thumb.cat-tratamientos { background: linear-gradient(135deg, var(--forest) 0%, var(--sage-dark) 100%); color: var(--nude); }
.blog-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card .cat { font-size: 10px; color: var(--sage-dark); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; margin-bottom: 10px; }
.blog-card h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 500; margin-bottom: 8px; color: var(--forest); }
.blog-card .desc { font-size: 14px; color: var(--forest-2); line-height: 1.55; flex: 1; margin-bottom: 16px; }
.blog-card .meta-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--stone); padding-top: 14px; border-top: 1px solid var(--line); }
.blog-card .cta-verbal { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; color: var(--sage-dark); font-size: 13px; font-weight: 500; }
.blog-card .cta-verbal::after { content: "→"; }

/* Precio en hero de servicio */
.hero-service .price-hero {
  display: inline-flex; align-items: baseline; gap: 10px;
  background: var(--ivory); padding: 16px 22px; border-radius: var(--radius);
  margin-bottom: 24px; border: 1px solid var(--sage-2);
}
.hero-service .price-hero .k { font-size: 11px; color: var(--stone); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.hero-service .price-hero .v { font-family: var(--font-serif); font-size: 28px; font-weight: 500; color: var(--sage-dark); }
.hero-service .price-hero small { font-size: 12px; color: var(--stone); font-weight: 400; }

/* Contact form */
.form-block { background: var(--ivory-2); padding: 100px 0; }
.form-wrap {
  max-width: 780px; margin: 0 auto;
  background: var(--ivory); padding: 40px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-wrap h2 { margin-bottom: 12px; }
.form-wrap .sub { color: var(--forest-2); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-field label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--stone); font-weight: 600; margin-bottom: 6px;
}
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-sans); font-size: 15px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--ivory); color: var(--forest);
  transition: border-color 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(107, 133, 100, 0.15);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-radio-group { display: flex; gap: 20px; padding-top: 4px; }
.form-radio-group label { display: flex; align-items: center; gap: 8px; text-transform: none; font-size: 14px; color: var(--forest-2); font-weight: 400; letter-spacing: normal; cursor: pointer; }
.form-note { font-size: 12px; color: var(--stone); margin-top: 16px; text-align: center; }

/* Casos en documentación (reemplazo del A/B slider vacío) */
.casos-block {
  padding: 60px 40px; background: var(--ivory-2); border-radius: var(--radius-lg);
  text-align: center; border: 1px dashed var(--sage-2);
  max-width: 900px; margin: 0 auto;
}
.casos-block .icon-frame {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--sage); color: var(--ivory);
  margin-bottom: 20px;
}
.casos-block .icon-frame svg { width: 30px; height: 30px; }
.casos-block h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 500; margin-bottom: 12px; color: var(--forest); }
.casos-block p { color: var(--forest-2); max-width: 52ch; margin: 0 auto 20px; }
.casos-block .num { font-family: var(--font-serif); font-size: 60px; font-weight: 400; color: var(--sage-dark); line-height: 1; margin: 30px 0 6px; }
.casos-block .num-label { font-size: 11px; color: var(--stone); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-bottom: 24px; }

/* Sticky mobile CTA bar */
.sticky-cta { display: none; }
@media (max-width: 720px) {
  .sticky-cta {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 89;
    background: var(--forest); color: var(--ivory);
    padding: 12px 16px;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  }
  .sticky-cta a {
    flex: 1; text-align: center;
    padding: 12px; border-radius: var(--radius);
    font-size: 13px; font-weight: 500;
    text-decoration: none;
  }
  .sticky-cta .primary { background: var(--sage); color: var(--ivory); }
  .sticky-cta .wa { background: #25D366; color: var(--ivory); }
  .wa-float { bottom: 76px; }
  footer { padding-bottom: 90px; }
}

/* Blog post in-content CTA */
.blog-cta-inline {
  background: var(--sage);
  color: var(--ivory);
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  margin: 40px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.blog-cta-inline p { color: var(--ivory); font-size: 15px; margin: 0; flex: 1; min-width: 200px; }
.blog-cta-inline p strong { color: var(--nude-2); }
.blog-cta-inline .btn { flex-shrink: 0; }

/* Section head con H1 (para páginas índice) */
.page-h1 {
  text-align: center;
  max-width: 720px; margin: 0 auto 60px;
}
.page-h1 .eyebrow { display: inline-block; margin-bottom: 20px; }
.page-h1 h1 { margin-bottom: 20px; }
.page-h1 p { color: var(--forest-2); font-size: 17px; }

/* ============ ITERACIÓN 3 · Imágenes fotorealistas ============ */

/* Approach visual con foto real de fondo */
.approach-photo {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.approach-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.approach-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30,42,36,0.55));
  pointer-events: none;
}
.approach-photo .quote-overlay {
  position: absolute; bottom: 30px; left: 30px; right: 30px;
  color: var(--ivory);
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(20px, 2.5vw, 26px); font-weight: 400;
  line-height: 1.3;
  z-index: 2;
}
.approach-photo .quote-overlay em {
  color: var(--nude-2);
  font-style: italic;
}

/* Service page: hero visual con foto de proceso */
.hero-service .process-photo {
  aspect-ratio: 1; max-width: 460px; margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-service .process-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hero-service .process-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(30,42,36,0.15));
  pointer-events: none;
}

/* Home hero visual con detalle de piel */
.hero-visual.with-photo {
  background: none;
  overflow: hidden;
}
.hero-visual.with-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-visual.with-photo::before,
.hero-visual.with-photo::after {
  display: none;
}

/* Casos block con foto de proceso al lado */
.casos-with-photo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center;
  max-width: 900px; margin: 0 auto;
}
@media (max-width: 800px) { .casos-with-photo { grid-template-columns: 1fr; } }
.casos-with-photo .photo {
  aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.casos-with-photo .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.casos-with-photo .content {
  padding: 30px 20px;
}
.casos-with-photo .content h3 { font-family: var(--font-serif); font-size: 22px; margin-bottom: 12px; color: var(--forest); }
.casos-with-photo .content p { color: var(--forest-2); margin-bottom: 20px; font-size: 15px; line-height: 1.55; }
.casos-with-photo .content .num { font-family: var(--font-serif); font-size: 50px; font-weight: 400; color: var(--sage-dark); line-height: 1; margin-bottom: 4px; }
.casos-with-photo .content .num-label { font-size: 11px; color: var(--stone); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-bottom: 20px; }

/* ============ LOGO REAL ============ */
.brand-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.brand-logo .brand-txt {
  font-family: var(--font-serif); font-weight: 500; font-size: 22px;
  color: var(--forest); letter-spacing: -0.02em;
  line-height: 1;
}
.brand-logo .brand-txt small {
  display: block; font-family: var(--font-sans); font-size: 10px;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--stone); margin-top: 3px;
}
@media (max-width: 500px) {
  .brand-logo img { height: 36px; }
  .brand-logo .brand-txt { font-size: 18px; }
  .brand-logo .brand-txt small { display: none; }
}
footer .brand-logo img {
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
footer .brand-logo .brand-txt { color: var(--ivory); }
footer .brand-logo .brand-txt small { color: var(--nude); }

/* Logo horizontal en footer con imagen white */
.footer-logo-full {
  max-width: 220px; height: auto; margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* ============ LOGO FIX v8 ============ */
.site-header .brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1;
}
.site-header .brand-logo img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.site-header .brand-logo .brand-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--forest);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.site-header .brand-logo .brand-txt small {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 3px;
  line-height: 1;
}
@media (max-width: 500px) {
  .site-header .brand-logo img { height: 36px; width: 36px; }
  .site-header .brand-logo .brand-txt { font-size: 18px; }
  .site-header .brand-logo .brand-txt small { font-size: 8px; }
}

/* Footer logo (usa version blanca horizontal) */
footer .brand-logo { display: none; }  /* usamos footer-logo-full */
.footer-logo-full {
  max-width: 200px !important;
  height: auto !important;
  margin-bottom: 14px;
  display: block;
}

/* ============ FEATURED SERVICES (home) ============ */
.services-featured {
  display: grid;
  gap: 20px;
}

/* Card estrella: layout horizontal grande */
.service-star {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-2) 100%);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.service-star::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage) 0%, transparent 60%);
  opacity: 0.35;
  pointer-events: none;
}
.service-star::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -10%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--nude) 0%, transparent 65%);
  opacity: 0.25;
  pointer-events: none;
}
.service-star > * { position: relative; z-index: 2; }
.service-star .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--nude);
  color: var(--forest);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.service-star .cat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--sage-3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-star h3 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--ivory);
}
.service-star h3 em {
  font-style: italic;
  color: var(--nude);
}
.service-star .lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ivory);
  opacity: 0.9;
  margin-bottom: 26px;
  max-width: 40ch;
}
.service-star .price-row {
  display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(250,247,242,0.15);
  border-bottom: 1px solid rgba(250,247,242,0.15);
  margin-bottom: 24px;
}
.service-star .price-row .p-label {
  font-size: 10px;
  color: var(--sage-3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}
.service-star .price-row .p-amt {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--nude);
  line-height: 1;
}
.service-star .stars {
  color: var(--nude);
  letter-spacing: 2px;
  font-size: 14px;
}
.service-star .ctas-row { display: flex; gap: 10px; flex-wrap: wrap; }
.service-star .btn-primary {
  background: var(--nude);
  color: var(--forest);
  border: none;
}
.service-star .btn-primary:hover {
  background: var(--nude-2);
}
.service-star .btn-ghost {
  border-color: rgba(250,247,242,0.3);
  color: var(--ivory);
}
.service-star .btn-ghost:hover {
  background: rgba(250,247,242,0.1);
  border-color: var(--ivory);
}

/* Visual side of star card */
.service-star .visual {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sage-3) 0%, var(--sage) 60%, var(--sage-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.service-star .visual img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.service-star .visual svg {
  width: 40%; height: 40%; color: var(--ivory);
  stroke-width: 1.2;
}
.service-star .visual .overlay-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: color-mix(in srgb, var(--forest) 88%, transparent);
  backdrop-filter: blur(10px);
  color: var(--ivory);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 4px;
}

@media (max-width: 800px) {
  .service-star { grid-template-columns: 1fr; padding: 32px 26px; gap: 30px; }
  .service-star .visual { aspect-ratio: 4/3; }
}

/* Row de 3 servicios secundarios */
.services-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .services-row-3 { grid-template-columns: 1fr; } }

/* Fix: forzar exactamente 3 cols en desktop para el grid del home */
@media (min-width: 901px) {
  .services-index {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* ============ REFUERZO STAR CARD (evitar colapso raro) ============ */
@media (min-width: 801px) {
  .service-star {
    grid-template-columns: 1.05fr 0.95fr !important;
    min-height: 500px;
  }
  .service-star .visual {
    min-height: 420px;
    align-self: stretch;
  }
}

/* ============ HERO CTAS (rediseño limpio) ============ */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 60px;
}
.hero-cta-primary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-cta-meta {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--forest-2);
  opacity: 0.75;
  letter-spacing: 0.01em;
  padding-left: 4px;
}
@media (max-width: 620px) {
  .hero-ctas { gap: 12px; flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
}

/* ============ APPROACH POSTER (composición editorial sin foto) ============ */
.approach-poster {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 80%, color-mix(in srgb, var(--sage) 30%, transparent) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--nude) 40%, transparent) 0%, transparent 55%),
    linear-gradient(160deg, var(--forest) 0%, var(--forest-2) 100%);
  color: var(--ivory);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 30px 70px -30px rgba(30, 45, 30, 0.5);
}
.approach-poster::before {
  content: "";
  position: absolute; inset: 20px;
  border: 1px solid rgba(250, 247, 242, 0.14);
  border-radius: 14px;
  pointer-events: none;
}
.approach-poster .poster-mark {
  position: absolute;
  right: -40px; bottom: -40px;
  width: 320px; height: 320px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}
.approach-poster .poster-mark img {
  width: 100%; height: 100%; object-fit: contain;
  filter: brightness(0) invert(1);
}
.approach-poster > * { position: relative; z-index: 2; }
.approach-poster .poster-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--nude);
  font-weight: 600;
}
.approach-poster .poster-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ivory);
  max-width: 22ch;
  position: relative;
}
.approach-poster .poster-quote em {
  font-style: italic;
  color: var(--nude);
}
.approach-poster .poster-open,
.approach-poster .poster-close {
  font-family: var(--font-serif);
  font-size: 44px;
  color: var(--sage-3);
  line-height: 1;
  vertical-align: text-top;
  opacity: 0.85;
}
.approach-poster .poster-close { margin-left: 4px; }
.approach-poster .poster-firma {
  display: flex;
  align-items: center;
  gap: 14px;
}
.approach-poster .firma-line {
  width: 44px;
  height: 1px;
  background: var(--sage-3);
  flex-shrink: 0;
}
.approach-poster .firma-txt {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ivory);
  line-height: 1.4;
}
.approach-poster .firma-txt small {
  display: block;
  font-size: 11px;
  color: var(--sage-3);
  margin-top: 3px;
  letter-spacing: 0.02em;
}

/* ============ SERVICIOS CATEGORIZADOS ============ */
.cat-toc {
  background: var(--ivory-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 32px 0 56px;
}
.cat-toc .toc-lbl {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--forest-2);
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}
.cat-toc .toc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.cat-toc .toc-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px 8px 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--forest);
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
}
.cat-toc .toc-links a:hover {
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
  transform: translateY(-1px);
}
.cat-toc .toc-links a:hover em { color: var(--sage-3); }
.cat-toc .toc-links a .dot {
  color: var(--sage-dark);
  font-size: 14px;
  transition: color 0.2s;
}
.cat-toc .toc-links a:hover .dot { color: var(--nude); }
.cat-toc .toc-links a em {
  font-style: normal;
  color: var(--forest-2);
  opacity: 0.6;
  font-size: 12px;
}

.cat-group {
  margin-bottom: 72px;
  scroll-margin-top: 100px;
}
.cat-group:last-child { margin-bottom: 40px; }
.cat-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.cat-head .cat-mark {
  font-size: 32px;
  color: var(--sage-dark);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ivory-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}
.cat-head .cat-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sage-dark);
  font-weight: 700;
  margin-bottom: 6px;
}
.cat-head .cat-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0 0 6px;
}
.cat-head .cat-sub {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--forest-2);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0;
}
@media (max-width: 640px) {
  .cat-head { gap: 14px; padding: 20px 0 18px; }
  .cat-head .cat-mark { width: 44px; height: 44px; font-size: 24px; }
  .cat-toc { padding: 18px 20px; }
}
