/* ============================================
   CLAUDIA LOBOS - Refined Clinical Design
   Elegant, minimal, warm, professional
   ============================================ */

:root {
  /* Primary - naranja logotipo Claudia Lobos */
  --peach-50: #FFF8F0;
  --peach-100: #FEF0DC;
  --peach-200: #FCD9A8;
  --peach-300: #F9B96E;
  --peach-400: #F5881F;
  --peach-500: #DA7518;

  /* Complement - paleta unificada en naranjo (rose mapeado a peach por consistencia) */
  --rose-50: var(--peach-50);
  --rose-100: var(--peach-100);
  --rose-400: var(--peach-400);
  --rose-600: var(--peach-500);
  --rose-700: var(--peach-500);

  /* Neutrals - máxima firmeza y contraste */
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --gray-50: #F6F5F3;
  --gray-100: #EDECEB;
  --gray-200: #D9D7D5;
  --gray-400: #6B6864;
  --gray-500: #4D4A47;
  --gray-600: #2F2D2B;
  --gray-800: #1A1817;
  --dark: #0F0E0D;

  /* Semantic - texto fuerte y oscuro para máxima legibilidad */
  --accent: var(--peach-400);
  --accent-hover: var(--peach-500);
  --text: var(--dark);
  --text-light: var(--gray-600);
  --text-muted: var(--gray-500);
  --border: var(--gray-100);

  /* Typography - Palatino Linotype para titulos, Cambria para cuerpo */
  --font-heading: "Palatino Linotype", "Palatino", "Book Antiqua", Georgia, serif;
  --font-body: Cambria, "Hoefler Text", Georgia, "Times New Roman", serif;
  --font-accent: "Palatino Linotype", "Palatino", Georgia, serif;

  --container-width: 1160px;
  --section-padding: 120px 0;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* Marco naranjo fino en imágenes de contenido (no banners, logos ni iconos) */
.about-preview-image,
.about-photo img,
.blog-card-image,
.book-cover,
.workshop-card-image,
.service-card--horizontal,
.service-card--accent,
.service-card--minimal {
  border-color: var(--peach-200);
}

.about-preview-image,
.about-photo img,
.blog-card-image,
.book-cover,
.workshop-card-image {
  border: 1.5px solid var(--peach-300);
}

.about-preview-image img {
  border: none;
}

.about-preview-image--no-overlay::after {
  content: none !important;
}

.testimonial-card {
  border-color: var(--peach-200);
}
ul, ol { list-style: none; }

/* --- Typography (alta firmeza y contraste) --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.7rem, 5.6vw, 4.1rem); letter-spacing: 0.1px; font-weight: 700; }
h2 { font-size: clamp(1.95rem, 3.7vw, 2.7rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.55rem); font-weight: 700; }
h4 { font-weight: 700; }

p {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--peach-500);
  margin-bottom: 16px;
  display: inline-block;
}
.section-label--light { color: rgba(255,255,255,0.95); text-shadow: 0 1px 8px rgba(0,0,0,0.4); }

/* Unique design element: thin accent line beside labels */
.section-label--line {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label--line::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--peach-400);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: var(--section-padding); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-radius: 2px;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 136, 31, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--gray-200);
  border-radius: 2px;
}

.btn-outline:hover {
  border-color: var(--text);
  color: var(--text);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 2px;
}

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

.btn-ghost {
  background: transparent;
  color: var(--peach-400);
  padding: 0;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-ghost::after {
  content: ' \2192';
  transition: var(--transition);
  display: inline-block;
}

.btn-ghost:hover { color: var(--peach-500); }
.btn-ghost:hover::after { transform: translateX(5px); }

/* ==========================================
   HEADER - Clean, light
   ========================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
}

.header--transparent {
  background: transparent;
  backdrop-filter: none;
}

.header.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

/* When mobile menu is open: white header */
.header.menu-open {
  background: var(--white) !important;
  backdrop-filter: blur(16px) !important;
}

.header.menu-open .logo img { filter: none !important; }

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 112px;
}
@media (max-width: 768px) {
  .header .container { height: 88px; }
}

.logo {
  display: inline-flex;
  align-items: center;
  height: 72px;
  transition: opacity 0.35s ease;
}

.logo img {
  height: 92px;
  width: auto;
  transition: filter 0.35s ease;
}

@media (max-width: 768px) {
  .logo { height: 56px; }
  .logo img { height: 72px; }
}

/* Transparent header: logo en blanco */
.header--transparent .logo img {
  filter: brightness(0) invert(1);
}
.header--transparent .nav-links a { color: var(--white); }
.header--transparent .menu-toggle span { background: var(--white); }

/* Scrolled: logo original (naranja) */
.header.scrolled .logo img {
  filter: none;
}
.header.scrolled .logo {
  color: var(--text);
  transition: color 0.35s ease;
}
.header.scrolled .logo span {
  color: var(--peach-400);
  transition: color 0.35s ease;
}
.header.scrolled .nav-links a { color: var(--text); }
.header.scrolled .menu-toggle span { background: var(--text); }

.nav { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; gap: 20px; }

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-800);
  padding: 4px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.header--transparent .nav-links a:hover,
.header--transparent .nav-links a.active { color: var(--peach-200); }

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active { color: var(--accent); }

/* Mobile-only elements (hidden on desktop) */
.mobile-only { display: none; }

/* Language toggle button */
.lang-toggle {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lang-toggle:hover {
  border-color: var(--peach-400);
  color: var(--peach-400);
}

.header--transparent .lang-toggle {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.header--transparent .lang-toggle:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.2);
}

.header.scrolled .lang-toggle {
  border-color: var(--gray-200);
  background: var(--white);
  color: var(--text);
}

@media (max-width: 1024px) {
  .lang-toggle {
    position: fixed;
    top: 16px;
    right: 70px;
    z-index: 1002;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border-color: rgba(0,0,0,0.1);
    color: var(--text);
  }
}

.btn-agendar {
  background: var(--accent);
  color: var(--white);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
}

.btn-agendar:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(245, 136, 31, 0.25);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  transition: var(--transition);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

/* Menu toggle siempre visible con lineas oscuras */
.header--transparent .menu-toggle {
  background: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.2);
}

.header--transparent .menu-toggle span {
  background: var(--text);
}

/* Cuando el menú está abierto */
.menu-toggle.active {
  background: var(--white);
  border-color: var(--border);
}

.menu-toggle.active span {
  background: var(--text);
}

/* ==========================================
   HERO - Full Screen, elegant
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #C8A882 0%, #A8B09A 50%, #8DA898 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}

/* Hero slideshow */
.hero-slide {
  opacity: 0;
  transition: opacity 2.5s ease;
}

.hero-slide-active {
  opacity: 1;
}

.hero-bg-text {
  position: absolute;
  bottom: 36px;
  right: 36px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  padding-top: 120px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .hero .container { padding-top: 100px; padding-bottom: 80px; }
}

.hero-content { max-width: 620px; }

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
  display: block;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 3px 24px rgba(0,0,0,0.5), 0 1px 6px rgba(0,0,0,0.4);
}

.hero-desc {
  color: #FFFFFF;
  font-size: 1.08rem;
  font-weight: 600;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Unique: thin decorative line */
.hero-line {
  width: 48px;
  height: 1px;
  background: var(--peach-300);
  margin-bottom: 28px;
  opacity: 0.7;
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 80px 0;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #B8A082 0%, #96B0A0 100%);
  z-index: 0;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}

.page-header .container { position: relative; z-index: 3; }

.page-header-label {
  font-family: var(--font-accent);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 10px;
  display: block;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 700;
  text-shadow: 0 3px 24px rgba(0,0,0,0.5), 0 1px 6px rgba(0,0,0,0.4);
}

/* Subtle overlay strip (unique element) */
.page-intro {
  background: var(--white);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.page-intro p {
  max-width: 760px;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.7;
  color: var(--text);
}
@media (max-width: 768px) {
  .page-intro { padding: 36px 0; }
  .page-intro p { font-size: 1.15rem; line-height: 1.65; }
}

.page-intro .teal-line {
  width: 40px;
  height: 2px;
  background: var(--peach-400);
  margin-bottom: 20px;
}

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

.services-header {
  text-align: center;
  margin-bottom: 72px;
}

.services-header h2 { margin-bottom: 14px; }
.services-header p { max-width: 500px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-card {
  padding: 44px 36px;
  border-top: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover {
  background: var(--peach-50);
}

.service-number {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 600;
  color: var(--peach-400);
  line-height: 1;
  margin-bottom: 20px;
}

/* --- Card Variants (avoid repetition) --- */

/* Variant B: Icon-left horizontal cards */
.services-grid--horizontal {
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card--horizontal {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px;
  border: 1px solid var(--border);
  border-top: none;
  background: var(--white);
}

.service-card--horizontal:hover {
  background: var(--peach-50);
  border-color: var(--peach-100);
}

.service-card--horizontal .service-number {
  font-size: 2rem;
  min-width: 48px;
  margin-bottom: 0;
  color: var(--peach-300);
}

.service-card--horizontal .service-card-content h3 {
  margin-bottom: 8px;
}

.service-card--horizontal .service-card-content p {
  font-size: 0.92rem;
}

.service-card-content p + p {
  margin-top: 16px;
}

/* Variant C: Minimal with left accent border */
.services-grid--accent {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card--accent {
  padding: 28px 28px 28px 32px;
  border: none;
  border-left: 3px solid var(--peach-200);
  background: var(--off-white);
  transition: var(--transition);
}

.service-card--accent:hover {
  border-left-color: var(--peach-400);
  background: var(--peach-50);
}

.service-card--accent .service-number {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--peach-400);
}

.service-card--accent h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.service-card--accent p {
  font-size: 0.88rem;
}

/* Variant D: Clean minimal (for supervision) */
.services-grid--minimal {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card--minimal {
  padding: 36px;
  border: 1px solid var(--border);
  background: var(--white);
  text-align: center;
  transition: var(--transition);
}

.service-card--minimal:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.04);
  border-color: var(--peach-100);
}

.service-card--minimal .service-number {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: var(--peach-400);
}

.service-card--minimal h3 {
  margin-bottom: 10px;
}

.service-card--minimal p {
  font-size: 0.9rem;
  max-width: 340px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .services-grid--horizontal .service-card--horizontal { flex-direction: column; gap: 12px; }
  .services-grid--accent { grid-template-columns: 1fr; }
  .services-grid--minimal { grid-template-columns: 1fr; }
}

.service-card h3 {
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
}

/* ==========================================
   ABOUT PREVIEW
   ========================================== */
.about-preview {
  padding: 140px 0 160px;
  background: var(--white);
}
@media (max-width: 768px) {
  .about-preview { padding: 80px 0 100px; }
}

.about-preview .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.about-preview-image {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--peach-100) 0%, var(--peach-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.about-preview-image svg { opacity: 0.25; position: absolute; }
.about-preview-image span { position: relative; z-index: 1; font-weight: 600; color: var(--text-light); }

.about-preview-text h2 {
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--dark);
}

/* Welcome heading - dos líneas siempre, en cualquier pantalla */
.welcome-heading {
  display: block;
  line-height: 1.15;
}
.welcome-heading .welcome-greeting,
.welcome-heading .welcome-name {
  display: block;
  white-space: nowrap;
}
.welcome-heading .welcome-greeting {
  margin-bottom: 4px;
}
@media (max-width: 480px) {
  .welcome-heading .welcome-greeting,
  .welcome-heading .welcome-name {
    white-space: normal;
  }
}
.about-preview-text p {
  margin-bottom: 18px;
  max-width: 540px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.75;
}
.about-preview-text p:last-of-type { margin-bottom: 0; }
.about-preview-text .btn-ghost { margin-top: 28px; }

/* ==========================================
   QUOTE BANNER
   ========================================== */
.quote-banner {
  padding: 100px 0;
  background: var(--off-white);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote-banner blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto;
}

.quote-banner .quote-line {
  width: 40px;
  height: 2px;
  background: var(--peach-400);
  margin: 0 auto 28px;
}

.quote-banner .quote-author {
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ==========================================
   BLOG SECTION
   ========================================== */
.blog-section {
  padding: var(--section-padding);
  background: var(--white);
}

.blog-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.blog-section-header .left h2 { margin-bottom: 6px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}

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

/* Overlay de marca en imágenes de contenido */
.blog-card-image,
.workshop-card-image,
.about-preview-image,
.modal-image-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-card-image::after,
.workshop-card-image::after,
.about-preview-image::after,
.modal-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(245, 136, 31, 0.2) 0%,
    rgba(200, 137, 110, 0.25) 40%,
    rgba(42, 40, 38, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.blog-card-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--peach-50), var(--peach-100));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.82rem;
  font-weight: 600;
}

.blog-card-body { padding: 28px; }

.blog-card-date {
  font-size: 0.74rem;
  color: var(--peach-500);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.blog-card-body h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark);
}

.blog-card-body p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 18px;
}

/* ==========================================
   CTA SECTION - Soft, inviting
   ========================================== */
.cta-section {
  padding: 100px 0;
  background: var(--peach-500);
  text-align: center;
}

.cta-content { max-width: 580px; margin: 0 auto; }

.cta-content h2 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.2);
}

.cta-content p {
  color: #FFFFFF;
  margin: 0 auto 32px;
  font-size: 1.08rem;
  font-weight: 600;
  max-width: 480px;
}

.cta-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 32px;
}

.cta-checklist li {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-checklist li svg { color: var(--peach-300); flex-shrink: 0; }

.cta-section .btn-primary {
  background: var(--peach-400);
}

.cta-section .btn-primary:hover {
  background: var(--peach-500);
}

/* ==========================================
   FOOTER - Clean & refined
   ========================================== */
.footer {
  padding: 72px 0 32px;
  background: var(--gray-800);
  color: rgba(255,255,255,0.85);
  position: relative;
  overflow: hidden;
}

/* Isotipo decorativo en footer */
.footer-isotipo {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: auto;
  opacity: 0.04;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 52px;
}

.footer-brand .logo {
  margin-bottom: 14px;
  display: inline-flex;
}

.footer-brand .logo img {
  filter: brightness(0) invert(1);
  height: 60px;
}

.footer-brand p {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  max-width: 260px;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--peach-400);
  color: var(--peach-400);
}

.footer-links h4 {
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

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

.about-full .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.about-photo { position: sticky; top: 110px; }

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--peach-100) 0%, var(--peach-100) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
  font-weight: 600;
}

.about-info h2 { margin-bottom: 24px; }
.about-info p {
  margin-bottom: 18px;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.75;
}

.about-values {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.about-values h3 { margin-bottom: 32px; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.value-item {
  padding: 32px;
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-item:hover { background: var(--peach-50); border-color: var(--peach-100); }

.value-number {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--peach-400);
  margin-bottom: 10px;
}

.value-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--dark);
}

.value-item p { font-size: 0.95rem; font-weight: 500; color: var(--text-light); }

/* Experience */
.experience-section {
  padding: var(--section-padding);
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.timeline {
  max-width: 640px;
  margin: 44px auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--peach-200);
}

.timeline-item {
  padding-left: 36px;
  padding-bottom: 44px;
  position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -4px; top: 7px;
  width: 9px; height: 9px;
  background: var(--peach-400);
  border-radius: 50%;
  border: 2px solid var(--off-white);
}

.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--peach-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-item h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 1.1rem;
  color: var(--dark);
}

.timeline-item p { font-size: 0.95rem; font-weight: 500; color: var(--text-light); }

/* ==========================================
   BLOG PAGE
   ========================================== */
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: var(--section-padding);
}

.blog-card-large .blog-card-image { height: 260px; }
.blog-card-large .blog-card-body { padding: 32px; }
.blog-card-large .blog-card-body h3 { font-size: 1.3rem; }
.blog-card-large { border: 1px solid var(--border); }

/* ==========================================
   BOOKS PAGE
   ========================================== */
.books-section {
  padding: var(--section-padding);
  background: var(--white);
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 32px;
}

.book-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}

.book-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.book-cover {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: linear-gradient(145deg, var(--peach-100), var(--peach-100));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.book-info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.book-info .book-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--peach-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.book-info h3 { margin-bottom: 14px; font-size: 1.32rem; font-weight: 700; color: var(--dark); }
.book-info p { font-size: 0.95rem; font-weight: 500; color: var(--text-light); margin-bottom: 22px; }

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
}

.contact-info {
  padding: 56px;
  background: var(--peach-500);
  color: var(--white);
}

.contact-info .section-label { color: var(--peach-300); }

.contact-info h2 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info > p {
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  max-width: 360px;
  font-weight: 500;
  line-height: 1.7;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; }

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

.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--peach-300);
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 3px;
  color: var(--white);
  letter-spacing: 0.5px;
}

.contact-item-text p { font-size: 0.92rem; color: rgba(255,255,255,0.92); font-weight: 500; }
.contact-item-text a { color: var(--white); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); text-underline-offset: 2px; }
.contact-item-text a:hover { color: var(--peach-200); text-decoration-color: var(--peach-200); }

.contact-form-wrapper {
  padding: 56px;
  background: var(--off-white);
}

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--peach-400);
  box-shadow: 0 0 0 3px rgba(200, 137, 110, 0.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ==========================================
   RESPONSIVE
   ========================================== */

/* --- Tablet landscape --- */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }

  /* Mobile nav kicks in at 1024px with 6+ links */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 32px 20px;
    gap: 24px;
    z-index: 999;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-top: 1px solid var(--border);
  }

  .nav-links.active { display: flex; }

  .nav-links a {
    font-size: 0.88rem;
    color: var(--text) !important;
    letter-spacing: 2.5px;
  }

  .nav-links a::after { display: none; }

  .nav .btn-agendar { display: none; }
  .mobile-only { display: list-item; list-style: none; }
  .mobile-only .btn { padding: 15px 48px; color: var(--white) !important; }

  .menu-toggle { display: flex; }

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

  .services-grid { grid-template-columns: 1fr 1fr; }

  .about-preview .container { grid-template-columns: 1fr; gap: 40px; }
  .about-preview-image { aspect-ratio: 3/4; min-height: auto; max-width: 420px; margin: 0 auto; }
  .about-preview-text p { max-width: 100%; }

  .about-full .container { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { position: static; max-width: 400px; margin: 0 auto; }

  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-page-grid { grid-template-columns: 1fr 1fr; }

  .books-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { text-align: left; }
  .contact-info > p { margin-left: auto; margin-right: auto; }
  .contact-details { align-items: flex-start; }
  .contact-item { justify-content: flex-start; }

  .footer-content { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* --- Tablet portrait / small tablets --- */
@media (max-width: 768px) {
  :root { --section-padding: 72px 0; }

  .container { padding: 0 20px; }

  .header .container { height: 64px; }

  /* Nav already handled at 1024px */

  /* Hero */
  .hero { min-height: 80vh; }
  .hero .container { padding-top: 64px; }
  .hero-content { max-width: 100%; }
  .hero-desc { max-width: 100%; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { text-align: center; justify-content: center; }

  /* Page headers */
  .page-header { min-height: 40vh; padding-bottom: 60px; }
  .page-intro { padding: 32px 0; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .services-header { margin-bottom: 48px; }
  .service-card { padding: 32px 24px; }

  /* Section labels */
  .section-label { font-size: 0.68rem; }
  .section-label--line { justify-content: center; }

  /* About */
  .about-preview .container { gap: 28px; }
  .about-preview-image { aspect-ratio: 3/4; max-width: 320px; margin: 0 auto; }
  .about-preview-text { padding: 24px 8px 0; text-align: center; }
  .about-preview-text h2 { font-size: clamp(1.6rem, 5.5vw, 2.1rem); margin-bottom: 18px; }
  .about-preview-text p { margin-left: auto; margin-right: auto; max-width: 540px; font-size: 1rem; }
  .about-preview-text .btn-ghost { margin: 24px auto 0; display: inline-flex; }

  /* Quote */
  .quote-banner { padding: 60px 0; }
  .quote-banner blockquote { font-size: clamp(1.1rem, 4vw, 1.5rem); padding: 0 8px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }
  .blog-page-grid { grid-template-columns: 1fr; gap: 24px; }
  .blog-section-header { flex-direction: column; align-items: center; text-align: center; gap: 12px; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }
  .value-item { padding: 24px; }

  /* Books */
  .book-card { grid-template-columns: 1fr; }
  .book-cover { min-height: 200px; }
  .book-info { padding: 28px 24px; }

  /* Contact */
  .contact-info, .contact-form-wrapper { padding: 36px 24px; }
  .contact-info { text-align: left; }
  .contact-info > p { margin-left: auto; margin-right: auto; }
  .contact-details { align-items: flex-start; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* CTA */
  .cta-section { padding: 72px 0; }
  .cta-checklist li { font-size: 0.9rem; }

  /* Footer */
  .footer-content { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-brand p { max-width: 100%; }
  .footer-social { justify-content: center; }
  .footer-links ul { align-items: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-isotipo { width: 180px; opacity: 0.03; }

  /* Timeline */
  .timeline { margin-top: 32px; }
  .timeline-item { padding-left: 28px; padding-bottom: 32px; }
}

/* --- Mobile small --- */
@media (max-width: 480px) {
  :root { --section-padding: 56px 0; }

  .container { padding: 0 16px; }

  h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }

  .hero { min-height: 75vh; }
  .hero-subtitle { font-size: 0.72rem; }
  .hero-desc { font-size: 0.92rem; }
  .btn { padding: 14px 28px; font-size: 0.75rem; width: 100%; justify-content: center; }

  .page-header { min-height: 35vh; padding-bottom: 48px; }

  .service-number { font-size: 2.2rem; }

  .blog-card-image { height: 180px; }
  .blog-card-body { padding: 20px; }
  .blog-card-body h3 { font-size: 1.05rem; }

  .contact-info, .contact-form-wrapper { padding: 28px 16px; }

  .footer { padding: 48px 0 24px; }
  .footer-isotipo { display: none; }
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
  padding: var(--section-padding);
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: none;
  left: 28px;
  line-height: 1;
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

.testimonial-text {
  font-size: 1rem;
  font-style: normal;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 24px;
  padding-top: 28px;
}

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

.testimonial-author-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.testimonial-author-info span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
}

.testimonial-stars {
  color: var(--peach-400);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
}

/* ==========================================
   RESOURCES SECTION
   ========================================== */
.resources-section {
  padding: var(--section-padding);
  background: var(--white);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.resource-card {
  border: 1px solid var(--border);
  padding: 36px;
  transition: var(--transition);
}

.resource-card:hover {
  background: var(--peach-50);
  border-color: var(--peach-100);
}

.resource-icon {
  width: 44px;
  height: 44px;
  background: var(--peach-50);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--peach-400);
  margin-bottom: 20px;
}

.resource-card h3 {
  margin-bottom: 10px;
}

.resource-card p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .resources-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .resources-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   WORKSHOPS / COURSES PURCHASE
   ========================================== */
.workshops-purchase {
  padding: var(--section-padding);
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.workshop-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.workshop-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.workshop-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--peach-50), var(--peach-100));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.workshop-card-body {
  padding: 28px;
}

.workshop-card-tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--peach-500);
  margin-bottom: 10px;
  display: block;
}

.workshop-card-body h3 {
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--dark);
}

.workshop-card-body p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 20px;
}

.workshop-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.workshop-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.workshop-price span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
  display: block;
}

@media (max-width: 480px) {
  .workshops-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   BLOG ARTICLE MODAL
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--white);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideUp 0.35s ease;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1;
}

.modal-close:hover {
  background: var(--gray-50);
}

.modal-image-wrapper {
  position: relative;
  overflow: hidden;
}

.modal-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.modal-body {
  padding: 40px;
}

.modal-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.modal-tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--peach-500);
}

.modal-date {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
}

.modal-body h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 24px;
  line-height: 1.3;
}

.modal-body p {
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.8;
}

.modal-body p:last-child {
  margin-bottom: 0;
}

.modal-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.modal-cta p {
  margin: 0 auto 16px;
  max-width: 400px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .modal-overlay { padding: 12px; }
  .modal-content { max-height: 90vh; }
  .modal-image { height: 200px; }
  .modal-body { padding: 28px 20px; }
  .modal-close { top: 12px; right: 12px; width: 36px; height: 36px; }
}

@media (max-width: 480px) {
  .modal-overlay { padding: 0; }
  .modal-content { max-height: 100vh; height: 100vh; }
  .modal-image { height: 180px; }
}

/* ==========================================
   FORM VALIDATION STATES
   ========================================== */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #D9534F;
  box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.1);
}

.form-group .error-msg {
  font-size: 0.75rem;
  color: #D9534F;
  margin-top: 6px;
  display: none;
}

.form-group .error-msg.visible {
  display: block;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.form-success p {
  margin: 0 auto;
  max-width: 400px;
  font-weight: 500;
  color: var(--text-light);
}

/* Honeypot field - hidden from humans, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ==========================================
   SERVICE EXPANDABLE TEXT
   ========================================== */
.service-intro {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.service-detail.open {
  max-height: 600px;
  opacity: 1;
}

.service-detail p {
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.85;
}

.btn-expand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--peach-400);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  margin-bottom: 20px;
  transition: var(--transition);
}

/* Botón Agendar dentro de service-detail/about-preview-text: misma separación */
.about-preview-text .btn-primary,
.about-preview-text .btn,
.service-detail + .btn,
.service-detail.open ~ .btn { margin-top: 24px !important; }

.btn-expand:hover {
  color: var(--peach-500);
  text-decoration: underline;
}

.btn-expand svg {
  transition: transform 0.3s ease;
}

.btn-expand.open svg {
  transform: rotate(180deg);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }

/* ==========================================
   INCLUSIVE BANNER (frase destacada de servicios)
   ========================================== */
.inclusive-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--peach-50) 0%, var(--peach-100) 100%);
  border-top: 1px solid var(--peach-200);
  border-bottom: 1px solid var(--peach-200);
}

.inclusive-card {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 44px 48px;
  background: var(--white);
  border-radius: 4px;
  border-left: 4px solid var(--peach-400);
  box-shadow: 0 8px 28px rgba(245, 136, 31, 0.08);
  position: relative;
}

.inclusive-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--peach-100);
  color: var(--peach-500);
  border-radius: 50%;
}

.inclusive-card p {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--text);
  font-weight: 500;
  font-style: italic;
}

@media (max-width: 768px) {
  .inclusive-banner { padding: 56px 0; }
  .inclusive-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 32px 24px;
    border-left: none;
    border-top: 4px solid var(--peach-400);
  }
  .inclusive-icon { width: 60px; height: 60px; }
  .inclusive-card p { font-size: 1.05rem; }
}

/* ==========================================
   ENFOQUE TERAPÉUTICO (nueva sección)
   ========================================== */
.approach {
  padding: var(--section-padding);
  background: var(--off-white);
}

.approach-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.approach-header h2 {
  margin-bottom: 22px;
}

.approach-header .approach-intro {
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.8;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.approach-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--peach-100);
  border-top: 3px solid var(--peach-400);
  transition: var(--transition);
  border-radius: 2px;
}

.approach-card:hover {
  box-shadow: 0 10px 32px rgba(245, 136, 31, 0.1);
  transform: translateY(-4px);
}

.approach-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text);
}

.approach-card p {
  font-size: 0.98rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.75;
}

.approach-closing {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--peach-100);
}

.approach-closing p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  font-weight: 500;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================
   FAQ (Preguntas Frecuentes) - Accordion nativo <details>
   ========================================== */
details.faq-item {
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
details.faq-item:hover {
  border-color: var(--peach-300) !important;
  box-shadow: 0 4px 12px rgba(245, 136, 31, 0.08);
}
details.faq-item summary {
  outline: none;
  padding-right: 40px;
  position: relative;
  color: var(--text);
  font-weight: 600 !important;
  font-size: 1.02rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--peach-500);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.3s ease;
}
details.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
details.faq-item[open] {
  border-color: var(--peach-300) !important;
}
details.faq-item[open] summary {
  color: var(--peach-400);
}
details.faq-item p {
  color: var(--text-light) !important;
  font-weight: 500;
}

/* ==========================================
   FAQ (legacy classes, kept for compatibility)
   ========================================== */
.faq-section {
  padding: var(--section-padding);
  background: var(--white);
}

.faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.faq-header h2 { margin-bottom: 12px; }

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

.faq-item {
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-100);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--peach-400);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--peach-400);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 16px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 26px;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  margin: 0;
}

/* ==========================================
   TESTIMONIALS - Note footer
   ========================================== */
.testimonials-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 500;
}
