/*
Theme Name: Nutrición Chile
Theme URI: https://francoyandres.cl
Author: Franco & Andrés
Author URI: https://francoyandres.cl
Description: Tema personalizado desarrollado por Franco & Andrés. Landing de nutricionista con motor de reservas integrado, multi-modalidad (presencial / online), gestión completa de horarios, feriados y panel administrativo profesional.
Version: 1.7.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nutricion-consciente
Tags: custom-theme, woocommerce, booking
*/

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #0a0a0a;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea { font-family: inherit; outline: none; }

/* ---- VARIABLES ---- */
:root {
  --green: #9caf88;
  --green-dark: #7a9a6d;
  --green-light: rgba(156, 175, 136, 0.1);
  --green-light-2: rgba(156, 175, 136, 0.15);
  --green-light-3: rgba(156, 175, 136, 0.2);
  --green-gradient: linear-gradient(135deg, #b2c89d 0%, #86a472 100%);
  --beige: #e8ddd4;
  --beige-light: rgba(232, 221, 212, 0.3);
  --beige-bg: #f9f6f3;
  --text-dark: #0a0a0a;
  --text-mid: #4a4a4a;
  --text-light: #6b6b6b;
  --text-muted: #8a8a8a;
  --white: #ffffff;
  --white-95: rgba(255,255,255,0.95);
  --white-80: rgba(255,255,255,0.8);
  --white-70: rgba(255,255,255,0.7);
  --white-60: rgba(255,255,255,0.6);
  --white-50: rgba(255,255,255,0.5);
  --max-w: 1200px;
  --section-py: 100px 0;
  --radius: 16px;
  --radius-sm: 12px;
  --ease: all 0.3s ease;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--green);
  z-index: 10001;
  transition: width 0.08s linear;
  opacity: 0.7;
}

/* ============================================
   SCROLL REVEAL (subtle)
   ============================================ */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-reveal="up"]   { transform: translateY(30px); }
[data-reveal="down"] { transform: translateY(-30px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"]{ transform: translateX(40px); }
[data-reveal="scale"]{ transform: scale(0.95); }
[data-reveal="fade"] { transform: none; }

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ============================================
   HEADER
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white-95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.4s ease;
}

header.scrolled {
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--green);
  font-style: italic;
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

nav a {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 400;
  position: relative;
  transition: var(--ease);
}

nav a:not(.btn-reservar)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green);
  transition: width 0.3s ease;
}

nav a:not(.btn-reservar):hover::after { width: 100%; }
nav a:hover { color: var(--green-dark); }

.btn-reservar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-gradient);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  transition: var(--ease);
}

.btn-reservar:hover {
  box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(156, 175, 136, 0.25);
  color: var(--white);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO - Centrado, empático, sin slider
   ============================================ */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--white) 0%, var(--beige-bg) 100%);
  text-align: center;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-mid);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title .highlight {
  color: var(--green);
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 40px;
  animation: heroFadeIn 1s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Pain points inside hero */
.hero-pain-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: left;
}

.hero .pain-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 221, 212, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero .pain-item:hover {
  border-color: var(--green-light-3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transform: translateY(-2px);
}

.pain-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--green-light-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: var(--ease);
}

.hero .pain-item:hover .pain-icon {
  background: var(--green);
  color: var(--white);
}

.pain-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.hero-cta-line {
  font-size: 1rem;
  color: var(--green-dark);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-gradient);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  transition: var(--ease);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.08), 0 6px 20px rgba(156, 175, 136, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
  background: none;
  border: none;
  padding: 0;
  transition: var(--ease);
  position: relative;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green);
  transition: width 0.3s ease;
}

.btn-secondary:hover::after { width: 100%; }
.btn-secondary:hover { color: var(--green-dark); }

/* Social proof — avatares + texto */
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  margin-bottom: 18px;
}

.hero-sp-avatares {
  display: flex;
  align-items: center;
}

/* Cada slot es un contenedor fijo — el z-index vive aquí, nunca en el avatar */
.hero-sp-slot {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: -8px;
}

.hero-sp-slot:first-child  { margin-left: 0; z-index: 1; }
.hero-sp-slot:nth-child(2) { z-index: 2; }
.hero-sp-slot:nth-child(3) { z-index: 3; }

/* Los avatares se apilan absolutamente dentro del slot para el crossfade */
.hero-sp-avatar {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Color por posición del slot — siempre estable */
.hero-sp-slot:nth-child(1) .hero-sp-avatar { background: #b8ccaa; }
.hero-sp-slot:nth-child(2) .hero-sp-avatar { background: #9caf88; }
.hero-sp-slot:nth-child(3) .hero-sp-avatar { background: #7a9a6d; }

.hero-sp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-sp-texto {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}

/* Trust badges */
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trust-item svg {
  color: var(--green);
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
}

/* ============================================
   EMPATHY SECTION
   ============================================ */
.empathy-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--beige-bg) 0%, var(--white) 100%);
}

.empathy-card {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  padding: 56px 48px;
  border-radius: 24px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(232, 221, 212, 0.3);
}

.empathy-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.empathy-card h2 {
  font-size: 2.1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.3;
  margin-bottom: 8px;
}

.empathy-card h2 strong {
  font-weight: 600;
  color: var(--text-mid);
}

.empathy-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.empathy-values {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 44px;
}

.empathy-value { text-align: center; }

.empathy-value-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: var(--ease);
}

.empathy-value:hover .empathy-value-icon {
  background: var(--green);
  color: var(--white);
  transform: translateY(-3px);
}

.empathy-value h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.empathy-value p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-frame {
  position: relative;
}

.about-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
}

.about-image-wrapper img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-content .section-label { text-align: left; }

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-content h2 strong {
  font-weight: 500;
  color: var(--text-mid);
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.about-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--beige-bg);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 221, 212, 0.4);
  transition: var(--ease);
}

.about-tag:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

.about-tag svg { width: 18px; height: 18px; color: var(--green); min-width: 18px; }
.about-tag span { font-size: 0.85rem; color: var(--text-mid); }
.about-tag.full-width { grid-column: 1 / -1; max-width: 50%; }

.about-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 221, 212, 0.5);
}

.about-stat strong {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}

.about-stat > span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   METHOD
   ============================================ */
.method-section {
  padding: var(--section-py);
  background: var(--beige-bg);
}

.method-steps {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-top: 60px;
}

.method-step {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
}

.method-connector {
  position: relative;
  width: 1px;
  height: 56px;
  background: #e4e4e4;
  border-radius: 1px;
  flex-shrink: 0;
  align-self: center;
  overflow: hidden;
}

.method-connector::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--green-gradient);
  border-radius: 1px;
}

@keyframes connector-fill {
  from { height: 0%; }
  to   { height: 100%; }
}

.method-connector.filling::after {
  animation: connector-fill 9s linear forwards;
}

.method-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}

.method-step .step-number {
  font-size: 2.25rem;
  font-weight: 200;
  color: #e0e0e0;
  margin-bottom: 14px;
  line-height: 1;
  transition: var(--ease);
}

.method-step:hover .step-number { color: var(--green-light-3); }

.method-step .step-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 18px;
  transition: var(--ease);
}

.method-step:hover .step-icon {
  background: var(--green);
  color: var(--white);
}

.method-step h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.method-step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}


.method-step.active {
  background: var(--green-gradient);
  box-shadow: 0 8px 32px rgba(122, 154, 109, 0.3);
  transform: translateY(-4px);
}

.method-step.active .step-number {
  color: rgba(255, 255, 255, 0.35);
}

.method-step.active .step-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.method-step.active .step-icon svg {
  stroke: var(--white);
}

.method-step.active h3 {
  color: var(--white);
}

.method-step.active p {
  color: rgba(255, 255, 255, 0.82);
}

.method-step.active::after {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   INBODY
   ============================================ */
.inbody-section {
  padding: var(--section-py);
  background: var(--beige-bg);
}

.inbody-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.inbody-image {
  position: relative;
}

.inbody-image img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
}

/* ---- Tarjeta flotante sobre foto (InBody + About) ---- */
.photo-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.11);
  min-width: 190px;
  max-width: 230px;
}

.photo-card--br {
  bottom: -16px;
  right: -16px;
}

.photo-card-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  text-transform: uppercase;
  margin: 0 0 10px;
}

.photo-card-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.photo-card-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

.photo-card-item svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  stroke: var(--green);
  fill: none;
}

.inbody-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--green-light) 0%, var(--beige-bg) 100%);
  opacity: 0.6;
}

.inbody-desc {
  color: var(--text-mid);
  line-height: 1.75;
  margin: 16px 0 32px;
  font-size: 0.97rem;
}

.inbody-puntos {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inbody-punto {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  opacity: 0.45;
  transform: translateX(-4px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.inbody-punto.active {
  opacity: 1;
  transform: translateX(0);
}

.inbody-punto.active .inbody-punto-icon {
  box-shadow: 0 4px 14px rgba(122, 154, 109, 0.45);
  transform: scale(1.08);
}

.inbody-punto-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--green-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 2px 8px rgba(122, 154, 109, 0.3);
  margin-top: 2px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.inbody-punto-icon svg {
  stroke: var(--white);
  fill: none;
}

.inbody-punto div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.inbody-punto strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.inbody-punto span {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ============================================
   TRANSFORMATION — accordion + imagen lateral
   ============================================ */
.transformation-section {
  padding: var(--section-py);
  background: var(--white);
}

.trans-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.trans-right {
  position: sticky;
  top: 100px;
  order: -1; /* Imagen a la izquierda, contenido a la derecha */
}

.trans-images {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--beige-bg);
}

.trans-img-wrap {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.trans-img-wrap.active {
  opacity: 1;
}

.trans-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trans-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--green-light) 0%, var(--beige-bg) 100%);
}

.trans-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.trans-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.trans-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--ease);
}

.trans-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  width: 52px;
  flex-shrink: 0;
  transition: color 0.3s ease;
  font-variant-numeric: tabular-nums;
}

.trans-item.open .trans-num,
.trans-trigger:hover .trans-num {
  color: var(--green);
}

.trans-title {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.trans-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: var(--ease);
}

.trans-item.open .trans-icon {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}

.trans-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.trans-body p {
  padding: 0 0 24px 72px;
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: var(--section-py);
  background: var(--beige-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border-color: var(--green-light-2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--beige);
  border: 2px solid var(--green-light-2);
}

.testimonial-name { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }
.testimonial-age { font-size: 0.82rem; color: var(--text-muted); }

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--beige);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: var(--green);
}

.testimonial-stars svg { width: 16px; height: 16px; }

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-ver-mas {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px 0 0;
  margin-top: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: opacity var(--ease);
}

.testimonial-ver-mas:hover { opacity: 0.7; }

/* Paginación de testimonios */
.testi-oculto { display: none !important; }

.testimonials-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: var(--ease);
}

.testimonial-card:hover .testimonial-tag {
  background: var(--green);
  color: var(--white);
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
  padding: var(--section-py);
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
  background: linear-gradient(150deg, var(--green), var(--green-dark));
  color: var(--white);
}

.service-card.standard {
  background: var(--white);
  border: 1px solid #e2e2e2;
}

.service-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--white);
  color: var(--text-mid);
  padding: 5px 14px;
  border-radius: 0 0 8px 8px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card-header { padding: 28px 28px 20px; }

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-card.featured .service-icon { background: rgba(255,255,255,0.2); color: var(--white); }
.service-card.standard .service-icon { background: var(--beige-bg); color: var(--green); }

.service-card-header h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 6px; }
.service-card.featured .service-card-header h3 { color: var(--white); }

.service-card-header .service-desc {
  font-size: 0.88rem;
  opacity: 0.85;
  line-height: 1.5;
}

.service-card-body { padding: 0 28px 28px; }

.service-price { margin-bottom: 14px; }
.service-price .amount { font-size: 2.25rem; font-weight: 700; }
.service-price .currency { font-size: 0.95rem; margin-left: 4px; opacity: 0.8; }

.service-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  opacity: 0.8;
}

.service-meta span { display: flex; align-items: center; gap: 5px; }

.service-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }

.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.service-feature svg { width: 16px; height: 16px; min-width: 16px; color: var(--green); }
.service-card.featured .service-feature svg { color: var(--white-80); }

.btn-service {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--ease);
  border: none;
  cursor: pointer;
}

.btn-service.btn-light { background: var(--white); color: var(--text-dark); }
.btn-service.btn-light:hover { background: var(--beige-bg); }
.btn-service.btn-dark { background: var(--green-gradient); color: var(--white); }
.btn-service.btn-dark:hover { box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.08); }

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: var(--section-py);
  background: var(--beige-bg);
}

.faq-list {
  max-width: 720px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--ease);
}

.faq-item:hover { border-color: var(--green-light-2); }
.faq-item.active { border-color: var(--green-light-2); box-shadow: 0 3px 10px rgba(156, 175, 136, 0.08); }

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  font-size: 0.95rem;
  color: var(--text-mid);
  cursor: pointer;
  text-align: left;
  transition: var(--ease);
}

.faq-question:hover { color: var(--green-dark); }

.faq-question svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  color: var(--text-muted);
}

.faq-item.active .faq-question svg { transform: rotate(180deg); color: var(--green); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 22px 18px; font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 200px; }

.faq-whatsapp { text-align: center; margin-top: 36px; }
.faq-whatsapp p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 10px; }

.faq-whatsapp a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
  font-weight: 500;
  font-size: 0.92rem;
  transition: var(--ease);
}

.faq-whatsapp a:hover { color: var(--green); }

/* ============================================
   ISAPRES — MARQUEE
   ============================================ */
.isapres-section {
  padding: 60px 0;
}

.isapres-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.isapres-header .section-title {
  text-align: left;
  font-size: 1.8rem;
}

.isapres-header .section-label {
  text-align: left;
}

.isapres-track-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.isapres-track {
  display: flex;
  width: max-content;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}


.isapres-logos {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 12px 30px;
}

.isapres-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.isapres-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: opacity(0.85);
  transition: filter 0.3s ease;
}

.isapres-logo img:hover {
  filter: opacity(1);
}

@media (max-width: 768px) {
  .isapres-layout { grid-template-columns: 1fr; gap: 32px; }
  .isapres-header .section-title { font-size: 1.5rem; }
  .isapres-track-wrapper {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #b2c89d 0%, #86a472 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
}

.cta-section .container { position: relative; z-index: 1; }

.cta-heart-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-70);
}

.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.9);
}

.cta-section h2 strong { font-weight: 600; color: var(--white); }

.cta-section > .container > p {
  font-size: 1rem;
  color: var(--white-70);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--text-dark);
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--ease);
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-badges {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
}

.cta-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--white-70);
}

/* ============================================
   BOOKING
   ============================================ */
.booking-section {
  padding: var(--section-py);
  background: var(--white);
}

/* --- CTA secundaria de reservas --- */
.booking-cta-section {
  padding: 72px 0;
  background: var(--green-gradient);
}

.booking-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.booking-cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  line-height: 1.25;
  margin: 0;
}

.booking-cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.booking-cta-section .booking-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #ffffff;
  color: #4a6b38;
  border: none;
  font-weight: 700;
  width: auto;
  padding: 14px 32px;
  margin-top: 0;
}

.booking-cta-section .booking-cta-btn:hover {
  background: var(--beige-bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.booking-form-wrapper {
  max-width: 620px;
  margin: 40px auto 0;
  background: var(--beige-bg);
  padding: 36px;
  border-radius: 20px;
  border: 1px solid rgba(232, 221, 212, 0.4);
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 7px;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--ease);
  box-sizing: border-box;
  min-height: 48px;
}

.form-group input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  font-size: 14px;
  font-family: inherit;
  text-align: left;
  text-align-last: left;
  padding-left: 16px;
  line-height: 1.5;
  display: block;
  color: var(--text-muted);
}

.form-group input[type="date"]:valid {
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); font-size: 14px; }
.form-group textarea { min-height: 110px; resize: vertical; }

.session-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.session-type-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.92rem;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--ease);
}

.session-type-btn:hover,
.session-type-btn.active {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green-dark);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--green-gradient);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: var(--ease);
  margin-top: 6px;
}

.btn-submit:hover {
  box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(156, 175, 136, 0.3);
  transform: translateY(-1px);
}

.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-submit .spin { animation: spinAnim 1s linear infinite; }

@keyframes spinAnim { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Cupón de descuento — wizard paso 4 */
.ncb-coupon-wrap { margin-bottom: 4px; }

.ncb-coupon-row {
  display: flex;
  gap: 8px;
}

.ncb-coupon-row input {
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ncb-btn-apply-coupon {
  padding: 0 18px;
  height: 44px;
  background: transparent;
  border: 1.5px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.ncb-btn-apply-coupon:hover:not(:disabled) {
  background: var(--green);
  color: #fff;
}

.ncb-btn-apply-coupon:disabled {
  opacity: 0.5;
  cursor: wait;
}

.ncb-coupon-feedback {
  font-size: 0.83rem;
  margin-top: 6px;
  min-height: 18px;
}

.ncb-coupon-feedback.success { color: var(--green); }
.ncb-coupon-feedback.error   { color: #c0392b; }

/* Inline field validation */
.ncb-field-error input,
.ncb-field-error textarea,
.ncb-field-error .phone-input-group {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1) !important;
}

.ncb-field-error-msg {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 4px;
  display: block;
}

/* Coupon price row in summary */
.ncb-summary-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.ncb-coupon-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-gradient);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.65rem;
  line-height: 1;
  padding: 0;
  transition: background 0.2s;
  flex-shrink: 0;
  font-family: inherit;
}

.ncb-coupon-remove:hover { box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.1); }

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ============================================
   WIZARD DE RESERVAS (ncb-booking-engine)
   ============================================ */

/* --- Wrapper --- */
.ncb-wizard-wrapper {
  max-width: 680px;
  margin: 36px auto 0;
}

/* --- Indicador de pasos --- */
.ncb-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.ncb-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 72px;
}

.ncb-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e8e0d8;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}

.ncb-step-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--ease);
}

.ncb-step.active .ncb-step-num {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(156, 175, 136, 0.4);
}

.ncb-step.active .ncb-step-label { color: var(--green-dark); font-weight: 600; }

.ncb-step.done .ncb-step-num {
  background: var(--green-light);
  color: var(--green-dark);
}

.ncb-step-connector {
  flex: 1;
  height: 2px;
  background: #e8e0d8;
  margin-bottom: 19px;
  max-width: 48px;
}

/* --- Mensaje de error/éxito --- */
.ncb-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.ncb-message.error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.ncb-message.success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.ncb-message.warning { background: #fffbeb; color: #78350f; border: 1px solid #fde68a; }

/* --- Loading spinner --- */
.ncb-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  padding: 24px;
  font-size: 0.9rem;
}

.ncb-loading::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid var(--green, #9caf88);
  border-top-color: transparent;
  border-radius: 50%;
  animation: ncb-spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes ncb-spin {
  to { transform: rotate(360deg); }
}

@keyframes ncbPanelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ncb-panel--in { animation: ncbPanelIn 0.22s ease both; }

/* --- Paso 1: Servicios --- */
.ncb-services-list { display: flex; flex-direction: column; gap: 12px; }

.ncb-service-option {
  display: flex;
  flex-direction: column;
  padding: 16px 18px;
  border: 2px solid #e8e0d8;
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: var(--ease);
}

.ncb-service-option:hover { border-color: var(--green-light-2); background: var(--beige-bg); }

.ncb-service-option.selected {
  border-color: var(--green);
  background: var(--green-light);
}

/* Fila principal del card (icono + info + precio) */
.ncb-svc-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Picker de modalidad (Presencial / Online) — visible solo si svc.modalidades.length === 2 y card seleccionado */
.ncb-modality-picker {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(156, 175, 136, 0.35);
  animation: ncbModalityFade 0.3s ease;
}

.ncb-service-option.selected .ncb-modality-picker { display: flex; }

@keyframes ncbModalityFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ncb-modality-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.ncb-modality-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ncb-modality-opt {
  flex: 1 1 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border: 1.5px solid #e0d8cf;
  border-radius: 999px;
  color: var(--text-mid);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ease);
}

.ncb-modality-opt svg { color: var(--green-dark); flex-shrink: 0; }

.ncb-modality-opt:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.ncb-modality-opt.selected {
  background: var(--green);
  border-color: var(--green-dark);
  color: var(--white);
}

.ncb-modality-opt.selected svg { color: var(--white); }

/* Chip de modalidad en el resumen del paso 4 */
.ncb-summary-modality {
  display: inline-block;
  padding: 2px 9px;
  margin-left: 4px;
  background: var(--green-light-2);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Botones "Siguiente" de step 1 y step 3 ocultos: avance automático al
   seleccionar servicio+modalidad (step 1) o slot (step 3). */
#ncb-step1-next,
#ncb-step3-next { display: none !important; }

/* Honeypot anti-spam: campo invisible que solo bots auto-fill llenan.
   Triple seguridad por si CSS falla: position absoluta + altura 0 + opacity 0. */
.nc-hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.ncb-svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--beige-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}

.ncb-service-option.selected .ncb-svc-icon { background: var(--white); }

.ncb-svc-info { flex: 1; min-width: 0; }
.ncb-svc-info h4 { font-size: 0.98rem; font-weight: 600; color: var(--text-dark); margin: 0 0 3px; }
.ncb-svc-info p  { font-size: 0.83rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

.ncb-svc-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
}

/* Móvil: ícono columna izquierda, todo el contenido apilado a la derecha */
@media (max-width: 480px) {
  .ncb-svc-row {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 4px;
    align-items: center;
  }
  .ncb-svc-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .ncb-svc-info {
    grid-column: 2;
    grid-row: 1;
  }
  .ncb-svc-price {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.95rem;
    justify-self: start;
  }
}

/* --- Paso 2: Calendario --- */
/* --- Cabecera del selector de días --- */
.ncb-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 8px;
}

.ncb-cal-month-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
  text-align: center;
}

.ncb-cal-nav {
  background: none;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  padding: 0;
  flex-shrink: 0;
}

.ncb-cal-nav:hover:not(:disabled) { background: var(--green-light); border-color: var(--green); color: var(--green-dark); }
.ncb-cal-nav:disabled { opacity: 0.3; cursor: default; }

/* --- Tarjetas de días --- */
.ncb-cal-grid {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 4px;
}

.ncb-day-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 6px 8px;
  border-radius: var(--radius-sm);
  border: 2px solid #e4ddd6;
  background: #f7f3ef;
  cursor: default;
  min-width: 56px;
  flex: 1;
  max-width: 72px;
  transition: var(--ease);
}

.ncb-day-card.available {
  background: var(--white);
  border-color: var(--green);
  cursor: pointer;
}

.ncb-day-card.available:hover {
  background: var(--green-light);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(156, 175, 136, 0.25);
}

.ncb-day-card.selected {
  background: var(--green) !important;
  border-color: var(--green-dark) !important;
  color: var(--white) !important;
}

.ncb-day-card.selected .ncb-day-name,
.ncb-day-card.selected .ncb-day-month { color: rgba(255,255,255,0.75) !important; }

.ncb-day-card.full {
  background: #fef9ec;
  border-color: #f0c060;
}

.ncb-day-card.unavailable,
.ncb-day-card.blocked,
.ncb-day-card.past { opacity: 0.4; }

.ncb-day-name {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.ncb-day-num {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-dark);
}

.ncb-day-month {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ncb-day-card.selected .ncb-day-num { color: var(--white); }

.ncb-day-loading {
  padding: 24px;
  color: var(--text-muted);
  text-align: center;
  width: 100%;
}

/* --- Paso 3: Slots de hora --- */
.ncb-slots-header {
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.ncb-slots-header strong { color: var(--text-dark); }

.ncb-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}

.ncb-slot {
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--ease);
}

/* Slot disponible */
.ncb-slot.available {
  background: var(--white);
  border-color: #ddd;
  color: var(--text-dark);
  cursor: pointer;
}

.ncb-slot.available:hover {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green-dark);
}

.ncb-slot.available.selected {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--white);
}

/* Slot ocupado (tachado) */
.ncb-slot.booked {
  background: #f8f8f8;
  border-color: #eee;
  color: #bbb;
  cursor: not-allowed;
  text-decoration: line-through;
  font-size: 0.82rem;
}

/* --- Paso 4: Resumen --- */
.ncb-booking-summary {
  background: var(--green-light);
  border: 1px solid rgba(156, 175, 136, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* --- Botones de navegación del wizard --- */
.ncb-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.ncb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: var(--ease);
  border: none;
}

.ncb-btn-primary {
  background: var(--green-gradient);
  color: var(--white);
  flex: 1;
}

.ncb-btn-primary:hover:not(:disabled) {
  box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.08), 0 4px 14px rgba(156, 175, 136, 0.35);
  transform: translateY(-1px);
}

.ncb-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.ncb-btn-secondary {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid #ddd;
}

.ncb-btn-secondary:hover { background: var(--beige-bg); border-color: #bbb; }

/* --- Botones de navegación entre pasos --- */
.ncb-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 22px;
}

.ncb-actions--right { align-items: flex-end; }

/* Botón "Volver" con icono circular verde */
.ncb-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--text-mid);
  font-size: 0.88rem;
  cursor: pointer;
  padding: 6px 0;
  align-self: flex-start;
  transition: var(--ease);
}

.ncb-btn-back:hover { color: var(--text-dark); }

.ncb-back-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--ease);
}

.ncb-btn-back:hover .ncb-back-icon { box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.1); }

/* --- Selector de gateway de pago --- */
.ncb-gateway-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 18px 0 8px;
  font-weight: 500;
}

.ncb-gateway-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 6px;
}

.ncb-gateway-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 2px solid var(--border-color, #e8ddd4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--white);
  transition: var(--ease);
  min-height: 56px;
}

.ncb-gateway-option:hover { border-color: var(--green); }

.ncb-gateway-option.selected {
  border-color: var(--green);
  background: var(--green-light);
}

/* Slot uniforme del ícono — ancho fijo para que TODOS los gateways tengan
   exactamente el mismo footprint y los títulos alineen en la misma X. */
.ncb-gateway-option .ncb-gw-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 70px;
  height: 36px;
}

/* Logos (Webpay / MercadoPago) — se contienen dentro del slot */
.ncb-gateway-option .ncb-gw-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* MercadoPago tiene ícono cuadrado grande — lo acotamos más */
.ncb-gateway-option[data-gw-id*="mercado"] .ncb-gw-img,
.ncb-gateway-option[data-gw-id*="mp-"] .ncb-gw-img,
.ncb-gateway-option[data-gw-id*="mp_"] .ncb-gw-img {
  max-height: 30px;
  max-width: 30px;
}

/* Badge verde para gateways sin logo (Pago en consulta / COD).
   Mismo footprint visual que los logos. */
.ncb-gateway-option .ncb-gw-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ncb-gateway-option .ncb-gw-badge svg { display: block; }

.ncb-gateway-option .ncb-gw-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}

/* En móvil: 1 columna full-width, slot más compacto y uniforme */
@media (max-width: 600px) {
  .ncb-gateway-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ncb-gateway-option {
    padding: 14px 18px;
    min-height: 60px;
    align-items: center;
  }
  /* Slot uniforme: 56px ancho × 30px alto — todos los íconos del mismo
     tamaño visual y los títulos alinean en la misma X */
  .ncb-gateway-option .ncb-gw-slot {
    width: 56px;
    height: 30px;
  }
  .ncb-gateway-option .ncb-gw-img {
    max-height: 30px;
    max-width: 56px;
  }
  /* Badge COD del MISMO tamaño visual que los logos */
  .ncb-gateway-option .ncb-gw-badge {
    width: 30px;
    height: 30px;
  }
}

/* --- Logos de medios de pago --- */
.ncb-payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 10px auto 0;
  flex-wrap: wrap;
}

.ncb-payment-logos img {
  height: auto;
  max-width: 110px;
}

.ncb-payment-logos img[data-gw-id*="mercado"],
.ncb-payment-logos img[data-gw-id*="mp-"] {
  max-width: 50px;
}

/* --- Input de teléfono con prefijo +56 fijo --- */
.phone-input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 7px;
  background: var(--white);
  overflow: hidden;
  transition: var(--ease);
  min-height: 48px;
}

.phone-input-group:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-light);
}

.phone-prefix {
  padding: 12px 10px 12px 16px;
  font-size: 0.92rem;
  color: var(--text-mid);
  font-weight: 500;
  background: var(--beige-bg);
  border-right: 1px solid #eee;
  white-space: nowrap;
  user-select: none;
}

.phone-input-group input {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  flex: 1;
  min-width: 0;
}

.ncb-panel-title {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0 20px;
}

.ncb-date-display {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* --- Leyenda de colores del calendario --- */
.ncb-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ncb-legend-item { display: flex; align-items: center; gap: 5px; }

.ncb-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 480px) {
  .ncb-steps { gap: 0; }
  .ncb-step  { min-width: 60px; }
  .ncb-step-label { font-size: 0.68rem; }
  .ncb-slots-grid { grid-template-columns: repeat(auto-fill, minmax(62px, 1fr)); }
}

/* ============================================
   NEWSLETTER BAND (pre-footer)
   ============================================ */
.newsletter-band {
  background: var(--green-gradient);
  padding: 80px 0;
}

.newsletter-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.newsletter-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.newsletter-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 16px;
}

.newsletter-title span {
  color: rgba(255, 255, 255, 0.75);
}

.newsletter-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.newsletter-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.newsletter-fields input {
  width: 100%;
  padding: 10px 0 12px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 24px;
  transition: opacity 0.3s;
}

.newsletter-fields input::placeholder {
  color: #ffffff;
  opacity: 0.75;
}

.newsletter-fields input:focus {
  outline: none;
  opacity: 1;
}

.newsletter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: #ffffff;
  color: #4a6b38;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.newsletter-btn:hover:not(:disabled) {
  opacity: 0.92;
  transform: translateY(-1px);
}

.newsletter-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.newsletter-note {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Estado éxito */
.newsletter-success {
  display: none;
  text-align: center;
  color: #ffffff;
  padding: 8px 0;
}

.newsletter-success.show {
  display: block;
}

.newsletter-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.newsletter-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #ffffff;
}

.newsletter-success p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ============================================
   FOOTER MINIMAL
   ============================================ */
.footer-minimal {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding: 28px 0;
}

.footer-minimal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-min-brand {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-min-brand span {
  color: var(--green);
}

.footer-logo-img {
  max-height: 48px;
  width: auto;
  display: block;
}

.footer-min-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.footer-min-nav a {
  font-size: 0.85rem;
  color: #888;
  transition: color 0.2s;
}

.footer-min-nav a:hover {
  color: var(--text);
}

.footer-min-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: right;
}

.footer-min-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 0.8rem;
  color: #999;
}

.footer-min-item svg {
  color: var(--green);
  flex-shrink: 0;
}

.footer-min-item a {
  color: #999;
  transition: color 0.2s;
}

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

/* ============================================
   DUAL FLOAT BUTTONS
   ============================================ */
.float-dual {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px 0 14px;
  height: 46px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
  transition: var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.float-btn--book {
  background: var(--green-gradient);
  color: var(--white);
}

.float-btn--book:hover {
  box-shadow: 0 6px 20px rgba(93, 138, 80, 0.35), inset 0 0 0 999px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.float-btn--wa {
  background: var(--white);
  color: var(--text-dark);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
}

.float-btn--wa:hover {
  background: #f0fdf4;
  border-color: #25D366;
  color: #128c4a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
}

/* ============================================
   PÁGINA DE RESERVAS — Hero refinado (lenguaje home)
   ============================================ */
.reservas-hero {
  position: relative;
  padding: 110px 0 56px;
  background: linear-gradient(180deg, var(--white) 0%, var(--beige-bg) 100%);
  text-align: center;
  overflow: hidden;
}

/* Decoración orgánica — círculo difuso verde, sutil */
.reservas-hero::before,
.reservas-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.reservas-hero::before {
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(156, 175, 136, 0.18) 0%, transparent 70%);
}

.reservas-hero::after {
  bottom: -160px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232, 221, 212, 0.5) 0%, transparent 70%);
}

.reservas-hero .container {
  position: relative;
  z-index: 1;
}

.reservas-hero__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 18px;
  animation: heroFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reservas-hero__title {
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  animation: heroFadeIn 0.9s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reservas-hero__title .highlight {
  color: var(--green);
  font-style: italic;
  font-weight: 400;
}

.reservas-hero__lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 28px;
  animation: heroFadeIn 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reservas-hero__lead strong {
  color: var(--green-dark);
  font-weight: 600;
}

.reservas-hero__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 8px;
  animation: heroFadeIn 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reservas-page__wizard {
  position: relative;
  padding: 56px 0 80px;
  background: var(--white);
}

@media (max-width: 600px) {
  .reservas-hero {
    padding: 88px 0 44px;
  }
  .reservas-hero__title {
    font-size: 1.9rem;
  }
  .reservas-hero__lead {
    font-size: 0.95rem;
  }
  .reservas-hero__trust {
    gap: 16px;
  }
  .reservas-hero__trust .trust-item {
    font-size: 0.74rem;
  }
  .reservas-page__wizard {
    padding: 40px 0 60px;
  }
}

/* ============================================
   SOCIAL PROOF TOAST (very subtle)
   ============================================ */
.social-proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 320px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  border-left: 2px solid var(--green);
}

.social-proof-toast.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.toast-text {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.toast-close {
  position: absolute;
  top: 4px;
  right: 6px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 2px 5px;
  line-height: 1;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.5rem; }
  .hero-pain-points { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrapper img { height: 420px; }
  .photo-card--br { bottom: -12px; right: 12px; }
  .about-tag.full-width { max-width: 100%; }
  .method-steps { flex-wrap: wrap; }
  .method-step { flex: 1 1 calc(50% - 40px); }
  .method-connector { display: none; }
  .inbody-grid { grid-template-columns: 1fr; gap: 40px; }
  .inbody-image { order: -1; }
  .inbody-image img { max-height: 380px; object-fit: cover; }
  .newsletter-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-min-nav { gap: 18px; }
  .footer-min-info { display: none; }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root { --section-py: 60px 0; }

  .header-inner { padding: 12px 16px; }

  header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 24px;
    gap: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,0.13);
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  header nav > a:not(.btn-reservar) {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.2s, background 0.2s;
  }

  header nav > a:not(.btn-reservar):hover {
    color: var(--green);
    background: var(--beige-bg);
  }

  .nav-mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 24px 0;
    margin-top: 28px;
  }

  .nav-mobile-contact a,
  .nav-mobile-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    text-decoration-line: none;
    font-weight: 400;
    border: none;
    border-bottom: none;
    background: none;
    padding: 0;
    outline: none;
  }

  .nav-mobile-contact a::after { display: none; }

  .nav-mobile-contact svg { flex-shrink: 0; width: 13px; height: 13px; color: var(--green); }

  header nav .btn-reservar {
    margin: 18px 24px 0;
    width: calc(100% - 48px);
    justify-content: center;
    padding: 15px 20px;
    font-size: 1rem;
    border-radius: 10px;
  }

  header.nav-open {
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  }

  header nav.active { display: flex; }
  .menu-toggle { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero-title { font-size: 1.9rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-pain-points { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; gap: 14px; }
  .hero-trust { flex-direction: column; align-items: center; gap: 10px; }

  .section-title { font-size: 1.9rem; }

  .empathy-values { flex-direction: column; gap: 20px; }
  .empathy-card { padding: 36px 22px; }
  .empathy-card h2 { font-size: 1.65rem; }

  .about-content h2 { font-size: 2rem; }
  .about-tags { grid-template-columns: 1fr; }

  .method-steps { flex-direction: column; }
  .method-step { flex: none; }
  .inbody-grid { grid-template-columns: 1fr; gap: 32px; }
  .trans-layout { grid-template-columns: 1fr; gap: 32px; }
  .trans-right { position: static; order: -1; }
  .trans-images { aspect-ratio: 4 / 3; }
  .trans-body p { padding-left: 52px; }
  .trans-num { font-size: 1.6rem; width: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  .cta-section h2 { font-size: 1.65rem; }
  .cta-badges { flex-direction: column; align-items: center; gap: 12px; }

  .booking-form-wrapper { padding: 22px; }
  .session-type-selector { grid-template-columns: 1fr; }

  .footer-minimal-row { flex-direction: column; gap: 20px; text-align: center; }
  .footer-min-nav { flex-wrap: wrap; justify-content: center; }
  .footer-min-info { display: flex; text-align: center; align-items: center; }
  .footer-min-item { justify-content: center; }

  .social-proof-toast { max-width: 50%; bottom: 15px; left: 15px; }
  .float-dual { bottom: 16px; right: 16px; gap: 8px; }
  .float-btn { height: 42px; padding: 0 14px 0 12px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.65rem; }
  .section-title { font-size: 1.6rem; }
}

/* ============================================
   POPUP DESCUENTO
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-overlay.active .popup-card {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--ease);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.popup-close:hover {
  background: var(--beige-bg);
  color: var(--text-mid);
}

.popup-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.popup-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 12px;
}

.popup-title {
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.popup-title span {
  color: var(--green-dark);
  font-weight: 600;
}

.popup-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.popup-form-group {
  margin-bottom: 12px;
}

.popup-form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--beige-bg);
  transition: var(--ease);
  box-sizing: border-box;
}

.popup-form-group input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-light);
  background: var(--white);
}

.popup-form-group input::placeholder {
  color: var(--text-muted);
}

.popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--green-gradient);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: var(--ease);
  margin-top: 4px;
}

.popup-btn:hover {
  box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(156, 175, 136, 0.3);
  transform: translateY(-1px);
}

.popup-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.popup-btn .spin {
  animation: spinAnim 1s linear infinite;
}

.popup-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.4;
}

/* Popup success state */
.popup-success {
  display: none;
}

.popup-success.show {
  display: block;
}

.popup-form.hidden {
  display: none;
}

.popup-success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  animation: popIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.popup-success h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.popup-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.popup-overlay.success .popup-label,
.popup-overlay.success .popup-title,
.popup-overlay.success .popup-subtitle {
  display: none;
}

@media (max-width: 480px) {
  .popup-card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .popup-title {
    font-size: 1.25rem;
  }
}

/* Popup testimonial — variante sin formulario */
.popup-card--testimonial {
  text-align: left;
  max-height: min(480px, 88vh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.testimonial-popup-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.testimonial-popup-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--green);
}

.testimonial-popup-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-card--testimonial .popup-icon { flex-shrink: 0; }
.popup-card--testimonial .testimonial-stars { flex-shrink: 0; margin-bottom: 14px; }

.testimonial-popup-scroll {
  overflow-y: auto;
  flex: 1;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--green-light) transparent;
}

.testimonial-popup-scroll::-webkit-scrollbar { width: 4px; }
.testimonial-popup-scroll::-webkit-scrollbar-track { background: transparent; }
.testimonial-popup-scroll::-webkit-scrollbar-thumb {
  background: var(--green-light);
  border-radius: 4px;
}

.testimonial-popup-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

/* ============================================================
   PÁGINA DE GRACIAS (WooCommerce order-received)
   ============================================================ */

.ncb-thankyou-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 60px 20px;
  background: #ffffff;
}

.ncb-thankyou-wrap {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

/* ── Ícono ── */
.ncb-ty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.ncb-ty-icon--success {
  background: #eaf3e4;
  color: var(--green, #4a6b38);
}

.ncb-ty-icon--error {
  background: #fdecea;
  color: #c0392b;
}

/* ── Textos ── */
.ncb-ty-title {
  font-family: inherit;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 300;
  color: var(--text-dark, #2c2c2c);
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ncb-ty-subtitle {
  font-size: 1rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Aviso "Pago en consulta" (solo para órdenes COD) ── */
.ncb-ty-paynote {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  background: linear-gradient(135deg, #f5f8f0 0%, #eaf1e0 100%);
  border: 1px solid rgba(156, 175, 136, 0.35);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 8px auto 28px;
  max-width: 480px;
}

.ncb-ty-paynote-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-gradient, linear-gradient(135deg, #b2c89d, #86a472));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.ncb-ty-paynote-body {
  flex: 1;
  min-width: 0;
}

.ncb-ty-paynote-body strong {
  display: block;
  font-size: 0.95rem;
  color: #1d2327;
  margin-bottom: 4px;
}

.ncb-ty-paynote-body p {
  margin: 0 0 10px;
  font-size: 0.85rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.5;
}

.ncb-ty-paynote-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.ncb-ty-paynote-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #1d2327;
  font-weight: 500;
}

.ncb-ty-paynote-list svg {
  color: var(--green-dark, #7a9a6d);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .ncb-ty-paynote {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }
}

/* ── Tarjeta de detalles ── */
.ncb-ty-card {
  background: #ffffff;
  border: 1px solid #e8e2da;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  text-align: left;
}

.ncb-ty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  gap: 12px;
}

.ncb-ty-row + .ncb-ty-row {
  border-top: 1px solid #f0ebe3;
}

.ncb-ty-row-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted, #6b7280);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.ncb-ty-row-value {
  font-size: 0.95rem;
  color: var(--text-dark, #2c2c2c);
  font-weight: 400;
  text-align: right;
}

/* ── Botones ── */
.ncb-ty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  margin-bottom: 20px;
}

.ncb-ty-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.ncb-ty-btn--calendar {
  background: transparent;
  border: 2px solid var(--green, #4a6b38);
  color: var(--green, #4a6b38);
}

.ncb-ty-btn--retry {
  background: var(--green-gradient, linear-gradient(135deg, #5a7c44, #3d5a2c));
  color: #ffffff;
  border: none;
}

/* ── Volver al inicio ── */
.ncb-ty-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted, #6b7280);
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s;
}

.ncb-ty-back:hover {
  color: var(--text-dark, #2c2c2c);
}

/* ── Cita final ── */
.ncb-ty-quote {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--green, #4a6b38);
  margin-top: 36px;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .ncb-thankyou-page {
    padding: 40px 16px;
  }

  .ncb-ty-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .ncb-ty-row-value {
    text-align: left;
  }

  .ncb-ty-btn {
    width: 100%;
  }
}
