/* ============================================
   NOEMA Design System v1
   ============================================ */

/* ===== TOKENS ===== */
:root {
  --cobre: #C47A45;
  --cobre-light: #D4944F;
  --cobre-dark: #8C5E35;
  --crema: #F7F0E6;
  --crema-dark: #E8D4B8;
  --marron: #2B1E14;
  --marron-light: #4A3728;
  --marron-mid: #3D2E1F;
  --beige: #E8D4B8;
  --texto: #3D2E1F;
  --texto-light: #7A6A5A;
  --blanco: #FFFFFF;
  --sombra: rgba(43,30,20,0.08);
  --sombra-fuerte: rgba(43,30,20,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --transition: all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--texto);
  background: var(--crema);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; line-height: 1.15; }
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--cobre);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--marron);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--cobre); }
.section-title.light { color: var(--crema); }
.section-text {
  color: var(--texto-light);
  max-width: 580px;
  line-height: 1.85;
  font-size: 0.95rem;
}
.section-text.light { color: rgba(247,240,230,0.7); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 4rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--marron);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-iso {
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.3s forwards;
}
.loader-name {
  font-family: 'Cormorant Garamond', serif;
  color: var(--crema);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  margin-top: 1.2rem;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.6s forwards;
}
.loader-sub {
  font-family: 'Cormorant Garamond', serif;
  color: var(--cobre);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.75s forwards;
}
.loader-bar {
  width: 100px;
  height: 1px;
  background: rgba(196,122,69,0.2);
  margin-top: 2rem;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.9s forwards;
}
.loader-bar::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cobre);
  animation: loadBar 1.6s ease 1s forwards;
}
@keyframes loadBar { from { transform: translateX(-100%); } to { transform: translateX(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== CUSTOM CURSOR — SPARKLE ===== */
@media (hover: hover) and (pointer: fine) {
  body, a, button, [onclick] { cursor: none !important; }

  #cursor-dot {
    position: fixed;
    pointer-events: none;
    z-index: 10002;
    left: -30px; top: -30px;
    transform: translate(-50%, -50%);
    width: 28px; height: 28px;
    transition: opacity 0.2s, transform 0.2s ease;
  }

  /* Centro brillante */
  #cursor-dot::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 6px; height: 6px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow:
      0 0 4px 2px rgba(212,148,79,1),
      0 0 12px 5px rgba(196,122,69,0.7),
      0 0 28px 10px rgba(196,122,69,0.3);
    animation: starPulse 1.8s ease-in-out infinite alternate;
  }

  /* Rayos de la estrella (+ y ×) */
  #cursor-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 26px; height: 26px;
    transform: translate(-50%, -50%);
    background:
      linear-gradient(rgba(255,255,255,0) 0 42%, rgba(255,240,210,0.9) 48% 52%, rgba(255,255,255,0) 58% 100%) center/2px 100% no-repeat,
      linear-gradient(rgba(255,255,255,0) 0 42%, rgba(255,240,210,0.9) 48% 52%, rgba(255,255,255,0) 58% 100%) center/100% 2px no-repeat,
      linear-gradient(45deg, rgba(255,255,255,0) 0 42%, rgba(255,210,150,0.6) 48% 52%, rgba(255,255,255,0) 58% 100%) center/2px 100% no-repeat,
      linear-gradient(-45deg, rgba(255,255,255,0) 0 42%, rgba(255,210,150,0.6) 48% 52%, rgba(255,255,255,0) 58% 100%) center/100% 2px no-repeat;
    animation: starSpin 5s linear infinite;
    filter: drop-shadow(0 0 4px rgba(212,148,79,0.8));
  }

  body.cursor-hover #cursor-dot {
    transform: translate(-50%, -50%) scale(1.4);
  }

  @keyframes starPulse {
    0%   { box-shadow: 0 0 4px 2px rgba(212,148,79,0.9), 0 0 10px 4px rgba(196,122,69,0.55), 0 0 22px 8px rgba(196,122,69,0.2); }
    100% { box-shadow: 0 0 6px 3px rgba(255,200,100,1),  0 0 16px 7px rgba(212,148,79,0.7),  0 0 34px 14px rgba(196,122,69,0.35); }
  }
  @keyframes starSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
  }

  /* Partículas al click */
  .cursor-particle {
    position: fixed;
    pointer-events: none;
    z-index: 10003;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--cobre-light);
    box-shadow: 0 0 6px var(--cobre);
    transform: translate(-50%, -50%);
    animation: particleFly 0.65s ease-out forwards;
  }
  @keyframes particleFly {
    0%   { opacity: 1; transform: translate(-50%,-50%) translate(0,0) scale(1); }
    100% { opacity: 0; transform: translate(-50%,-50%) translate(var(--dx), var(--dy)) scale(0); }
  }
}

/* ===== SCROLL PROGRESS ===== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--cobre-dark), var(--cobre-light));
  z-index: 1002;
  transition: width 0.12s linear;
  pointer-events: none;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.1rem 2.5rem;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  background: rgba(43,30,20,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
nav.scrolled {
  padding: 0.8rem 2.5rem;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
nav.nav-light {
  background: var(--marron);
  padding: 0.8rem 2.5rem;
  position: sticky;
  box-shadow: 0 1px 0 rgba(196,122,69,0.15);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
/* Logo horizontal: isotipo + texto */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 2;
}
.nav-logo svg { display: block; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--crema);
  line-height: 1;
  display: block;
}
.nav-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.46rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--cobre);
  text-transform: uppercase;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.logo-rule {
  display: block;
  width: 14px;
  height: 0.5px;
  background: var(--cobre);
  flex-shrink: 0;
  opacity: 0.7;
}
/* Links verdaderamente centrados en el nav */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.nav-links a {
  color: rgba(247,240,230,0.55);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cobre);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--crema); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
/* CTA derecha */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  z-index: 2;
}
.nav-cta {
  background: var(--cobre);
  color: var(--crema) !important;
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--cobre-light); transform: translateY(-1px); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--crema);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--marron);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--crema);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--cobre-light); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--crema);
  font-size: 2rem;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--cobre);
  color: var(--crema);
  border: 2px solid var(--cobre);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.55s ease;
}
.btn-primary:hover::after { left: 160%; }
.btn-primary:hover {
  background: var(--cobre-light);
  border-color: var(--cobre-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,122,69,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--crema);
  border: 1px solid rgba(247,240,230,0.35);
}
.btn-outline:hover {
  border-color: var(--cobre);
  color: var(--cobre-light);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--marron);
  border: 1px solid rgba(43,30,20,0.25);
}
.btn-outline-dark:hover {
  border-color: var(--cobre);
  color: var(--cobre);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--marron);
  color: var(--crema);
  border: 2px solid var(--marron);
}
.btn-dark:hover { background: var(--marron-light); transform: translateY(-2px); }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.82rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--marron);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(196,122,69,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(140,94,53,0.12) 0%, transparent 50%),
    linear-gradient(160deg, #2B1E14 0%, #3D2E1F 40%, #4A3728 60%, #2B1E14 100%);
  animation: heroBgMove 14s ease-in-out infinite alternate;
}
@keyframes heroBgMove {
  0% { transform: scale(1) translate(0,0); }
  50% { transform: scale(1.04) translate(-1%,1%); }
  100% { transform: scale(1.02) translate(1%,-0.5%); }
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,30,20,0.55) 0%, rgba(43,30,20,0.25) 45%, rgba(43,30,20,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  padding: 2rem;
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .hero-label, .hero h1, .hero-text, .hero-badges, .hero-buttons { animation: none; opacity: 1; }
}
.hero-label {
  font-size: 0.72rem;
  color: var(--cobre-light);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.9s ease 1.3s forwards;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 300;
  color: var(--crema);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeInUp 1s ease 1.55s forwards;
}
.hero h1 em { font-style: italic; color: var(--cobre-light); }
.hero-text {
  font-size: 1rem;
  color: rgba(247,240,230,0.72);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
  opacity: 0;
  animation: fadeInUp 1s ease 1.8s forwards;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 2.05s forwards;
}

/* ===== SECTION BACKGROUNDS ===== */
.bg-crema { background: var(--crema); }
.bg-white { background: var(--blanco); }
.bg-marron { background: var(--marron); }
.bg-marron-mid { background: var(--marron-mid); }
.bg-crema-dark { background: var(--crema-dark); }

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 100%;
  border-top: 1px solid rgba(247,240,230,0.06);
  border-bottom: 1px solid rgba(247,240,230,0.06);
}
.stat-item {
  text-align: center;
  padding: 2.8rem 1rem;
  border-right: 1px solid rgba(247,240,230,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--cobre-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.68rem;
  color: rgba(247,240,230,0.4);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ===== PROCESO DE SELECCIÓN ===== */
.seleccion-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.seleccion-step {
  padding: 2.5rem 2rem;
  background: var(--crema);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196,122,69,0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.seleccion-step:hover {
  border-color: rgba(196,122,69,0.3);
  box-shadow: 0 8px 30px var(--sombra);
}
.seleccion-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--cobre);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.seleccion-title {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--marron);
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}
.seleccion-text {
  font-size: 0.84rem;
  color: var(--texto-light);
  line-height: 1.8;
}

/* ===== TESTIMONIOS ===== */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonio-card {
  background: var(--blanco);
  border: 1px solid rgba(196,122,69,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.testimonio-stars { color: var(--cobre); font-size: 0.75rem; letter-spacing: 2px; }
.testimonio-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--marron);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonio-autor { display: flex; align-items: center; gap: 0.8rem; }
.testimonio-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(196,122,69,0.1);
  color: var(--cobre);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  flex-shrink: 0;
}
.testimonio-name { font-size: 0.78rem; color: var(--texto-light); line-height: 1.5; }

/* ===== TRUST BLOCKS / FEATURE GRID ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.trust-block {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(196,122,69,0.15);
  border-radius: var(--radius-md);
  background: var(--blanco);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.trust-block:hover {
  border-color: rgba(196,122,69,0.5);
  box-shadow: 0 12px 40px rgba(196,122,69,0.12);
  transform: translateY(-4px);
}
.trust-icon {
  font-size: 1.2rem;
  color: var(--cobre);
  margin-bottom: 0.8rem;
}
.trust-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--marron);
  margin-bottom: 0.5rem;
}
.trust-text { font-size: 0.85rem; color: var(--texto-light); line-height: 1.7; }

/* ===== HOW IT WORKS (STEPS) ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: rgba(196,122,69,0.2);
}
.step { text-align: center; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--cobre);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cobre);
  background: var(--marron);
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--crema);
  margin-bottom: 0.5rem;
}
.step-text { font-size: 0.82rem; color: rgba(247,240,230,0.55); line-height: 1.7; }

/* ===== PSYCHOLOGIST CARDS ===== */
.psico-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.psico-card {
  background: var(--blanco);
  border: 1px solid rgba(196,122,69,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
}
.psico-card:hover {
  border-color: rgba(196,122,69,0.55);
  box-shadow: 0 20px 60px rgba(43,30,20,0.15), 0 4px 16px rgba(196,122,69,0.12);
  transform: translateY(-6px);
}
.psico-video-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--marron);
  overflow: hidden;
  cursor: pointer;
}
.psico-video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.4s;
}
.psico-card:hover .psico-video-placeholder img { opacity: 0.75; }
.psico-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.psico-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(196,122,69,0.85);
  border: 2px solid rgba(247,240,230,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.psico-card:hover .psico-play-btn { background: var(--cobre); transform: scale(1.08); }
.psico-play-btn svg { fill: var(--crema); width: 18px; height: 18px; margin-left: 2px; }
.psico-video-label { color: rgba(247,240,230,0.7); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.psico-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: rgba(43,30,20,0.75);
  color: var(--cobre-light);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(196,122,69,0.3);
}
.psico-info { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.psico-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--marron);
  margin-bottom: 0.2rem;
}
.psico-title { font-size: 0.78rem; color: var(--texto-light); letter-spacing: 0.03em; }
.psico-univ { font-size: 0.78rem; color: var(--cobre-dark); margin-top: 0.15rem; }
.psico-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  background: rgba(196,122,69,0.1);
  color: var(--cobre-dark);
  border: 1px solid rgba(196,122,69,0.2);
}
.psico-modality {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.modality-badge {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: var(--crema-dark);
  color: var(--texto-light);
  letter-spacing: 0.03em;
}
.psico-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--marron);
  margin-top: auto;
  padding-top: 1rem;
}
.psico-price span { color: var(--cobre); font-size: 1.1rem; }
.psico-actions { display: flex; gap: 0.6rem; margin-top: 1rem; }
.psico-actions .btn { flex: 1; justify-content: center; font-size: 0.82rem; padding: 0.6rem 1rem; }

/* ===== PROFILE PAGE ===== */
.profile-hero {
  background: var(--marron);
  padding: 7rem 2rem 4rem;
}
.profile-hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: start;
}
.profile-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--marron-light);
  aspect-ratio: 3/4;
  position: relative;
}
.profile-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.profile-video-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-info { color: var(--crema); }
.profile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--crema);
  margin-bottom: 0.3rem;
}
.profile-role { font-size: 0.85rem; color: var(--cobre-light); letter-spacing: 0.1em; text-transform: uppercase; }
.profile-univ { font-size: 0.85rem; color: rgba(247,240,230,0.55); margin-top: 0.3rem; }
.profile-price-box {
  background: rgba(196,122,69,0.12);
  border: 1px solid rgba(196,122,69,0.25);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2rem 0;
}
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; }
.price-row:not(:last-child) { border-bottom: 1px solid rgba(196,122,69,0.15); }
.price-label { font-size: 0.85rem; color: rgba(247,240,230,0.65); }
.price-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--cobre-light); }
.profile-cta { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.profile-body { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.profile-sections { display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start; }
.profile-section { margin-bottom: 3rem; }
.profile-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--marron);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(196,122,69,0.15);
}
.profile-section p { color: var(--texto-light); line-height: 1.85; font-size: 0.92rem; }
.profile-section ul { padding-left: 0; }
.profile-section ul li {
  color: var(--texto-light);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.profile-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--cobre);
  font-size: 0.8rem;
}
.profile-sidebar { position: sticky; top: 100px; }
.sidebar-box {
  background: var(--blanco);
  border: 1px solid rgba(196,122,69,0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--marron);
  margin-bottom: 0.8rem;
}

/* ===== MATCH FORM ===== */
.match-page { min-height: 100vh; background: var(--crema); padding-top: 80px; }
.match-hero {
  background: var(--marron);
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.match-container { max-width: 680px; margin: 0 auto; padding: 3rem 2rem 5rem; }
.match-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 2.5rem;
}
.progress-dot {
  flex: 1;
  height: 3px;
  background: rgba(196,122,69,0.2);
  border-radius: 2px;
  transition: background 0.4s;
}
.progress-dot.done { background: var(--cobre); }
.match-step { animation: fadeInUp 0.4s ease; }
.match-step-label {
  font-size: 0.72rem;
  color: var(--cobre);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.match-step-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--marron);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.match-step-sub { font-size: 0.85rem; color: var(--texto-light); margin-bottom: 2rem; }
.match-options { display: grid; gap: 0.6rem; }
.match-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(196,122,69,0.2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  background: var(--blanco);
  text-align: left;
}
.match-option:hover { border-color: var(--cobre); box-shadow: 0 4px 15px var(--sombra); }
.match-option.selected {
  border-color: var(--cobre);
  background: rgba(196,122,69,0.06);
}
.match-option input { display: none; }
.match-option-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(196,122,69,0.4);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.match-option.selected .match-option-check {
  background: var(--cobre);
  border-color: var(--cobre);
}
.match-option.selected .match-option-check::after {
  content: '';
  width: 7px;
  height: 7px;
  background: white;
  border-radius: 50%;
}
.match-option-text { font-size: 0.9rem; color: var(--texto); }
.match-nav { display: flex; gap: 1rem; margin-top: 2rem; justify-content: space-between; align-items: center; }
.match-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(196,122,69,0.2);
  border-radius: var(--radius-md);
  background: var(--blanco);
  font-size: 0.9rem;
  color: var(--texto);
  transition: border-color 0.3s;
  margin-bottom: 0.8rem;
}
.match-input:focus { outline: none; border-color: var(--cobre); }
.match-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ===== MATCH RESULTS ===== */
.match-results { padding: 4rem 2rem; background: var(--crema); }
.match-result-card {
  background: var(--blanco);
  border: 1px solid rgba(196,122,69,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.match-result-card:hover { border-color: var(--cobre); box-shadow: 0 8px 30px var(--sombra); }
.match-result-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.match-reasons { margin-top: 0.8rem; }
.match-reason {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--texto-light);
  margin-bottom: 0.3rem;
}
.match-reason::before { content: '✓'; color: var(--cobre); font-size: 0.75rem; }

/* ===== BOOKING ===== */
.booking-page { min-height: 100vh; background: var(--crema); padding-top: 80px; }
.booking-layout { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem 5rem; display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.booking-main { }
.booking-sidebar-box {
  background: var(--blanco);
  border: 1px solid rgba(196,122,69,0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}
.booking-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--marron);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(196,122,69,0.15);
}
.type-options { display: grid; gap: 0.7rem; margin-bottom: 2rem; }
.type-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(196,122,69,0.2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  background: var(--blanco);
}
.type-option:hover, .type-option.selected { border-color: var(--cobre); background: rgba(196,122,69,0.04); }
.type-option-name { font-weight: 500; font-size: 0.9rem; color: var(--texto); }
.type-option-price { font-family: 'Cormorant Garamond', serif; color: var(--cobre); font-size: 1rem; }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.cal-day.header { color: var(--texto-light); font-size: 0.72rem; cursor: default; }
.cal-day.available { background: var(--crema-dark); color: var(--marron); }
.cal-day.available:hover { background: var(--cobre); color: var(--crema); }
.cal-day.selected { background: var(--cobre); color: var(--crema); }
.cal-day.empty, .cal-day.disabled { color: rgba(43,30,20,0.2); cursor: default; }
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.time-slot {
  padding: 0.6rem;
  text-align: center;
  border: 1px solid rgba(196,122,69,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--marron);
}
.time-slot:hover, .time-slot.selected { background: var(--cobre); color: var(--crema); border-color: var(--cobre); }
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 0.8rem; color: var(--texto-light); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(196,122,69,0.2);
  border-radius: var(--radius-md);
  background: var(--blanco);
  font-size: 0.9rem;
  color: var(--texto);
  transition: border-color 0.3s;
}
.form-input:focus { outline: none; border-color: var(--cobre); }
.form-textarea { min-height: 90px; resize: vertical; }
.checkbox-row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 1rem 0;
}
.checkbox-row input { margin-top: 3px; accent-color: var(--cobre); flex-shrink: 0; }
.checkbox-row label { font-size: 0.82rem; color: var(--texto-light); line-height: 1.5; }
.policy-box {
  background: rgba(196,122,69,0.06);
  border: 1px solid rgba(196,122,69,0.18);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  font-size: 0.8rem;
  color: var(--texto-light);
  line-height: 1.7;
  margin: 1.2rem 0;
}
.policy-box strong { color: var(--cobre-dark); }
.payment-mock {
  background: var(--marron);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.payment-mock h3 { color: var(--crema); font-family: 'Cormorant Garamond', serif; margin-bottom: 0.5rem; }
.payment-mock p { color: rgba(247,240,230,0.6); font-size: 0.85rem; margin-bottom: 2rem; }

/* ===== CONFIRMATION ===== */
.confirmation-page { min-height: 100vh; display: flex; align-items: center; background: var(--crema); padding: 6rem 2rem; }
.confirmation-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--blanco);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: 0 20px 60px var(--sombra-fuerte);
  border: 1px solid rgba(196,122,69,0.15);
}
.confirmation-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(196,122,69,0.1);
  border: 1px solid rgba(196,122,69,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}
.confirmation-detail {
  background: var(--crema);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: left;
}
.detail-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--crema-dark); }
.detail-row:last-child { border-bottom: none; }
.detail-label { font-size: 0.82rem; color: var(--texto-light); }
.detail-value { font-size: 0.85rem; color: var(--marron); font-weight: 500; }

/* ===== FOR PSYCHOLOGISTS ===== */
.para-psi-hero {
  background: var(--marron);
  padding: 8rem 2rem 6rem;
  text-align: center;
}
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.benefit-card {
  padding: 1.8rem;
  border: 1px solid rgba(196,122,69,0.15);
  border-radius: var(--radius-md);
  background: var(--blanco);
  transition: var(--transition);
}
.benefit-card:hover { border-color: var(--cobre); box-shadow: 0 6px 20px var(--sombra); transform: translateY(-2px); }
.benefit-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--cobre);
  font-weight: 300;
  margin-bottom: 0.5rem;
  opacity: 0.4;
}
.benefit-title { font-size: 0.9rem; font-weight: 500; color: var(--marron); margin-bottom: 0.4rem; }
.benefit-text { font-size: 0.82rem; color: var(--texto-light); line-height: 1.7; }
.economics-box {
  background: var(--marron);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.econ-item { color: var(--crema); }
.econ-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--cobre-light); }
.econ-label { font-size: 0.8rem; color: rgba(247,240,230,0.55); letter-spacing: 0.05em; margin-top: 0.3rem; }
.econ-desc { font-size: 0.78rem; color: rgba(247,240,230,0.4); margin-top: 0.5rem; }

/* Psicólogos — process steps */
.psi-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}
.psi-steps::before {
  content: '';
  position: absolute;
  top: 1.8rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--cobre) 0%, rgba(196,122,69,0.2) 100%);
}
.psi-step {
  position: relative;
  padding-top: 0.5rem;
}
.psi-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--cobre);
  letter-spacing: 0.08em;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(196,122,69,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  background: var(--blanco);
  position: relative;
  z-index: 1;
}
.psi-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--marron);
  margin-bottom: 0.5rem;
}
.psi-step-text {
  font-size: 0.85rem;
  color: var(--texto-light);
  line-height: 1.7;
}

/* Psicólogos — earning example */
.psi-earning-example {
  margin-top: 2.5rem;
  border: 1px solid rgba(196,122,69,0.2);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  background: var(--crema);
}
.earning-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--cobre);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.earning-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(196,122,69,0.1);
  font-size: 0.88rem;
  color: var(--texto-light);
  gap: 1rem;
}
.earning-row:last-of-type { border-bottom: none; }
.earning-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--marron);
  white-space: nowrap;
}
.earning-total {
  font-weight: 500;
  color: var(--marron);
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(196,122,69,0.25) !important;
}
.earning-total .earning-val {
  color: var(--cobre);
  font-size: 1.35rem;
}
.earning-note {
  font-size: 0.78rem;
  color: var(--texto-light);
  margin-top: 1rem;
  font-style: italic;
}

/* Psicólogos — criterios */
.psi-criterios-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--texto-light);
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}
.psi-criterios { display: flex; flex-direction: column; gap: 0.9rem; }
.psi-criterio-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--texto);
  line-height: 1.5;
}
.psi-criterio-item svg { flex-shrink: 0; margin-top: 0.15rem; }

/* ===== PRE-LAUNCH ===== */
.nav-prelaunch {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2rem;
  background: var(--marron);
  border-bottom: 1px solid rgba(196,122,69,0.12);
}
.prelaunch-hero {
  min-height: 100dvh;
  background: var(--marron);
  display: flex; align-items: center; justify-content: center;
  padding: 8rem 2rem 4rem;
}
.prelaunch-center {
  width: 100%; max-width: 960px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.prelaunch-badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 500;
  color: var(--cobre-light);
  letter-spacing: 0.25em; text-transform: uppercase;
  border: 1px solid rgba(196,122,69,0.3);
  padding: 0.35rem 1rem; border-radius: var(--radius-full);
  margin-bottom: 2rem;
}
.prelaunch-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 300; line-height: 1.1;
  color: var(--crema);
  margin-bottom: 1.5rem;
}
.prelaunch-heading em { font-style: italic; color: var(--cobre-light); }
.prelaunch-sub {
  font-size: 1rem; color: rgba(247,240,230,0.6);
  max-width: 520px; line-height: 1.8;
  margin-bottom: 3.5rem;
}
.prelaunch-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  text-align: left;
}
.prelaunch-panel {
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex; flex-direction: column;
  gap: 0.9rem;
}
.prelaunch-panel-psi {
  background: rgba(196,122,69,0.1);
  border: 1px solid rgba(196,122,69,0.3);
}
.prelaunch-panel-px {
  background: rgba(247,240,230,0.04);
  border: 1px solid rgba(247,240,230,0.1);
}
.panel-eyebrow {
  font-size: 0.68rem; font-weight: 500;
  color: var(--cobre-light);
  letter-spacing: 0.2em; text-transform: uppercase;
}
.panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 300;
  color: var(--crema); line-height: 1.15;
}
.panel-desc {
  font-size: 0.85rem; color: rgba(247,240,230,0.6);
  line-height: 1.75; flex-grow: 1;
}
.panel-link {
  font-size: 0.78rem; color: var(--cobre-light);
  margin-top: 0.4rem; display: inline-block;
  transition: color 0.2s;
}
.panel-link:hover { color: var(--crema); }
.panel-note {
  font-size: 0.72rem; color: rgba(247,240,230,0.35);
  margin-top: 0.2rem;
}
.waitlist-wrap {
  display: flex; flex-direction: column; gap: 0.6rem;
}
.waitlist-input {
  width: 100%; padding: 0.65rem 1rem;
  background: rgba(247,240,230,0.07);
  border: 1px solid rgba(247,240,230,0.18);
  border-radius: var(--radius-sm);
  color: var(--crema); font-size: 0.88rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.waitlist-input::placeholder { color: rgba(247,240,230,0.35); }
.waitlist-input:focus { outline: none; border-color: var(--cobre); }
.waitlist-input.input-error { border-color: #e05a5a; }
.waitlist-thanks {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; color: var(--cobre-light);
  padding: 0.75rem 0;
}
.footer-prelaunch {
  background: var(--marron);
  border-top: 1px solid rgba(196,122,69,0.1);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.75rem; color: rgba(247,240,230,0.3);
}
.footer-prelaunch-links { display: flex; gap: 1.5rem; }
.footer-prelaunch-links a { color: rgba(247,240,230,0.4); transition: color 0.2s; }
.footer-prelaunch-links a:hover { color: var(--cobre-light); }

/* Pronto page (rutas bloqueadas) */
.pronto-page {
  min-height: 100dvh;
  background: var(--marron);
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 2rem;
}
.pronto-center {
  max-width: 480px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.pronto-icon { margin-bottom: 0.5rem; opacity: 0.6; }
.pronto-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300; color: var(--crema); line-height: 1.15;
}
.pronto-title em { font-style: italic; color: var(--cobre-light); }
.pronto-text {
  font-size: 0.9rem; color: rgba(247,240,230,0.5); line-height: 1.8;
  max-width: 380px;
}
.pronto-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center; margin-top: 0.5rem;
}

/* Pre-launch responsive */
@media (max-width: 640px) {
  .prelaunch-split { grid-template-columns: 1fr; }
  .prelaunch-hero { padding: 7rem 1.5rem 3rem; }
  .footer-prelaunch { flex-direction: column; text-align: center; }
}

/* ===== RESOURCES ===== */
.recursos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.recurso-card {
  background: var(--blanco);
  border: 1px solid rgba(196,122,69,0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  cursor: pointer;
  transition: var(--transition);
}
.recurso-card:hover { border-color: var(--cobre); box-shadow: 0 6px 20px var(--sombra); transform: translateY(-2px); }
.recurso-icon { font-size: 1.2rem; color: var(--cobre); margin-bottom: 0.8rem; }
.recurso-category { font-size: 0.7rem; color: var(--cobre); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.5rem; }
.recurso-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--marron); margin-bottom: 0.6rem; }
.recurso-body { font-size: 0.85rem; color: var(--texto-light); line-height: 1.75; display: none; }
.recurso-card.open .recurso-body { display: block; margin-top: 0.8rem; animation: fadeIn 0.3s ease; }
.recurso-toggle { font-size: 0.78rem; color: var(--cobre); margin-top: 0.8rem; }

/* ===== SEO PAGES ===== */
.seo-hero { background: var(--marron); padding: 8rem 2rem 5rem; }
.seo-body { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; }
.seo-when-list { margin: 1.5rem 0; }
.seo-when-list li {
  padding: 0.7rem 0 0.7rem 1.5rem;
  position: relative;
  color: var(--texto-light);
  font-size: 0.92rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(196,122,69,0.1);
}
.seo-when-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cobre);
  font-size: 0.8rem;
}
.alert-box {
  background: rgba(196,122,69,0.08);
  border-left: 3px solid var(--cobre);
  padding: 1rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: var(--cobre-dark);
  margin: 2rem 0;
  line-height: 1.7;
}

/* ===== DASHBOARD ===== */
.dashboard-layout { display: flex; min-height: 100vh; }
.dashboard-sidebar {
  width: 250px;
  background: var(--marron);
  padding: 2rem 0;
  flex-shrink: 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 100;
}
.dash-sidebar-logo {
  padding: 1rem 1.5rem 2rem;
  border-bottom: 1px solid rgba(196,122,69,0.15);
  margin-bottom: 1rem;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.5rem;
  color: rgba(247,240,230,0.55);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.dash-nav-item:hover, .dash-nav-item.active {
  color: var(--crema);
  background: rgba(196,122,69,0.1);
  border-left-color: var(--cobre);
}
.dash-nav-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.dashboard-main {
  margin-left: 250px;
  flex: 1;
  padding: 2rem;
  min-height: 100vh;
  background: var(--crema);
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.dash-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--marron);
}
.dash-subtitle { font-size: 0.82rem; color: var(--texto-light); margin-top: 0.2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.2rem; margin-bottom: 2rem; }
.stat-card {
  background: var(--blanco);
  border: 1px solid rgba(196,122,69,0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}
.stat-card:hover { box-shadow: 0 4px 20px var(--sombra); }
.stat-label { font-size: 0.75rem; color: var(--texto-light); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.5rem; }
.stat-value { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--marron); }
.stat-sub { font-size: 0.75rem; color: var(--cobre); margin-top: 0.2rem; }
.dash-panel {
  background: var(--blanco);
  border: 1px solid rgba(196,122,69,0.12);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  overflow: hidden;
}
.dash-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(196,122,69,0.1);
}
.dash-panel-title { font-size: 0.9rem; font-weight: 500; color: var(--marron); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
thead tr { border-bottom: 1px solid rgba(196,122,69,0.12); }
th { padding: 0.8rem 1rem; text-align: left; font-size: 0.72rem; color: var(--texto-light); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
td { padding: 0.9rem 1rem; font-size: 0.83rem; color: var(--texto); border-bottom: 1px solid rgba(196,122,69,0.06); white-space: nowrap; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(196,122,69,0.03); }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.status-pagada { background: rgba(34,197,94,0.1); color: #166534; }
.status-pendiente { background: rgba(234,179,8,0.1); color: #854d0e; }
.status-realizada { background: rgba(59,130,246,0.1); color: #1e3a8a; }
.status-cancelada { background: rgba(107,114,128,0.1); color: #374151; }
.status-no-show { background: rgba(239,68,68,0.1); color: #991b1b; }
.status-activo { background: rgba(34,197,94,0.1); color: #166534; }
.status-nuevo { background: rgba(234,179,8,0.1); color: #854d0e; }
.status-contactado { background: rgba(59,130,246,0.1); color: #1e3a8a; }
.status-agendado { background: rgba(34,197,94,0.1); color: #166534; }
.status-pagado { background: rgba(34,197,94,0.1); color: #166534; }
.status-pausado { background: rgba(107,114,128,0.1); color: #374151; }
.table-action {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  background: var(--crema-dark);
  color: var(--texto-light);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  margin-right: 0.3rem;
}
.table-action:hover { background: var(--cobre); color: var(--crema); }
.dash-filter-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  border: 1px solid rgba(196,122,69,0.2);
  background: transparent;
  color: var(--texto-light);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--cobre);
  color: var(--crema);
  border-color: var(--cobre);
}

/* ===== LOGIN ===== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--marron);
  padding: 2rem;
}
.login-box {
  background: rgba(247,240,230,0.05);
  border: 1px solid rgba(196,122,69,0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(10px);
}
.login-logo { text-align: center; margin-bottom: 2.5rem; }
.login-role-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(196,122,69,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
}
.role-btn {
  padding: 0.75rem;
  text-align: center;
  font-size: 0.82rem;
  background: transparent;
  color: rgba(247,240,230,0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.role-btn.active { background: var(--cobre); color: var(--crema); }
.login-input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(196,122,69,0.2);
  border-radius: var(--radius-md);
  background: rgba(247,240,230,0.05);
  color: var(--crema);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}
.login-input:focus { outline: none; border-color: var(--cobre); }
.login-input::placeholder { color: rgba(247,240,230,0.3); }
.login-hint {
  font-size: 0.75rem;
  color: rgba(247,240,230,0.35);
  text-align: center;
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--marron);
  padding: 5rem 2rem 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(196,122,69,0.15);
}
.footer-brand .logo-name { color: var(--crema); }
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(247,240,230,0.4);
  margin-top: 0.8rem;
  line-height: 1.7;
  max-width: 220px;
}
.footer-col h4 {
  font-size: 0.72rem;
  color: rgba(247,240,230,0.4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(247,240,230,0.55);
  transition: color 0.3s;
  cursor: pointer;
}
.footer-col a:hover { color: var(--cobre-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(247,240,230,0.3);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-notice {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  font-size: 0.72rem;
  color: rgba(247,240,230,0.25);
  line-height: 1.6;
  padding-top: 1rem;
  border-top: 1px solid rgba(196,122,69,0.08);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--marron);
  border: 1px solid var(--cobre);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 6px 25px rgba(43,30,20,0.4);
  transition: var(--transition);
  color: var(--crema);
}
.whatsapp-btn:hover { background: var(--cobre); border-color: var(--cobre); transform: translateY(-3px); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger reveal para elementos hijos */
.trust-grid .trust-block,
.steps-grid .step,
.psico-grid .psico-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.trust-grid.visible .trust-block,
.steps-grid.visible .step,
.psico-grid.visible .psico-card { opacity: 1; transform: translateY(0); }

.trust-grid.visible .trust-block:nth-child(1),
.steps-grid.visible .step:nth-child(1),
.psico-grid.visible .psico-card:nth-child(1) { transition-delay: 0.08s; }
.trust-grid.visible .trust-block:nth-child(2),
.steps-grid.visible .step:nth-child(2),
.psico-grid.visible .psico-card:nth-child(2) { transition-delay: 0.18s; }
.trust-grid.visible .trust-block:nth-child(3),
.steps-grid.visible .step:nth-child(3),
.psico-grid.visible .psico-card:nth-child(3) { transition-delay: 0.28s; }
.trust-grid.visible .trust-block:nth-child(4),
.steps-grid.visible .step:nth-child(4),
.psico-grid.visible .psico-card:nth-child(4) { transition-delay: 0.38s; }

/* ===== UTILS ===== */
.text-center { text-align: center; }
.text-cobre { color: var(--cobre); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-2 { gap: 1rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.items-center { align-items: center; }
.divider { height: 1px; background: rgba(196,122,69,0.15); margin: 2rem 0; }
.highlight { color: var(--cobre); }

/* ===== POLICIES ===== */
.policy-page { max-width: 780px; margin: 0 auto; padding: 8rem 2rem 5rem; }
.policy-page h1 { font-size: 2.5rem; color: var(--marron); margin-bottom: 0.5rem; }
.policy-page h2 { font-size: 1.2rem; color: var(--marron); margin: 2rem 0 0.8rem; }
.policy-page p { color: var(--texto-light); font-size: 0.9rem; line-height: 1.85; margin-bottom: 1rem; }
.policy-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-page ul li { color: var(--texto-light); font-size: 0.9rem; line-height: 1.75; margin-bottom: 0.3rem; list-style: disc; }
.policy-date { font-size: 0.78rem; color: var(--texto-light); margin-bottom: 3rem; }

/* ===== CONTACT ===== */
.contact-page { min-height: 100vh; background: var(--crema); padding: 8rem 2rem 5rem; }
.contact-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* ===== POSTULA ===== */
.postula-page { background: var(--crema); padding: 8rem 2rem 5rem; }
.postula-form { max-width: 700px; margin: 0 auto; }

/* ===== ABOUT SECTION ===== */
.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 20px 60px var(--sombra-fuerte);
}

/* ===== RESPONSIVE ===== */
/* ===== HOME — NUEVOS COMPONENTES ===== */
.text-center { text-align: center; }

.trust-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 2.5rem;
}
.mini-card {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(196,122,69,0.15);
  border-radius: var(--radius-md);
  background: var(--blanco);
  transition: var(--transition);
}
.mini-card:hover { border-color: var(--cobre); }
.mini-card-icon { color: var(--cobre); margin-bottom: 0.4rem; font-size: 0.85rem; }
.mini-card-title { font-size: 0.88rem; color: var(--marron); font-weight: 500; }

.hero-quote-block {
  background: var(--marron);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--crema);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.35;
  margin-bottom: 1.5rem;
}
.hero-quote-divider { height: 1px; background: rgba(196,122,69,0.2); margin-bottom: 1.5rem; }
.hero-quote-body { font-size: 0.85rem; color: rgba(247,240,230,0.62); line-height: 1.8; }

.confianza-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.confianza-header { padding-top: 0.5rem; }
.confianza-items { display: flex; flex-direction: column; gap: 1rem; }
.confianza-item {
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(196,122,69,0.15);
  border-radius: var(--radius-md);
  background: var(--blanco);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.confianza-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--cobre);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.confianza-item:hover::before { transform: scaleY(1); }
.confianza-item:hover { border-color: rgba(196,122,69,0.3); box-shadow: 0 6px 24px rgba(196,122,69,0.1); }
.confianza-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--marron);
  margin-bottom: 0.3rem;
}
.confianza-text { font-size: 0.84rem; color: var(--texto-light); line-height: 1.7; }

@media (max-width: 1024px) {
  .profile-hero-grid { grid-template-columns: 300px 1fr; gap: 2.5rem; }
  .profile-sections { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .trust-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .seleccion-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonios-grid { grid-template-columns: repeat(2, 1fr); }
  .confianza-grid { grid-template-columns: 1fr; gap: 3rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar-box { position: static; }
  .economics-box { grid-template-columns: 1fr; text-align: left; gap: 1.5rem; }
  .dashboard-sidebar { width: 220px; }
  .dashboard-main { margin-left: 220px; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 1.5rem; }
  .section-header { margin-bottom: 2.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3.2rem); }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid-3 { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 1.8rem 1rem; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-number { font-size: 2.25rem; }
  .stat-label { font-size: 0.75rem; letter-spacing: 0.12em; }
  .seleccion-steps { grid-template-columns: 1fr; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .confianza-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .profile-hero { padding: 6rem 1.5rem 3rem; }
  .profile-hero-grid { grid-template-columns: 1fr; }
  .profile-video-wrap { max-width: 280px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .match-result-card { grid-template-columns: 60px 1fr; }
  .match-result-card .btn { display: none; }
  .match-result-card .btn:first-child { display: flex; }
  .dashboard-layout { flex-direction: column; }
  .dashboard-sidebar { position: relative; width: 100%; height: auto; }
  .dashboard-main { margin-left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .profile-cta { flex-direction: column; }
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.7rem 1.5rem; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .psico-actions { flex-direction: column; }
  .psi-earning-example { padding: 1.5rem; }
  .earning-row { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
  .psi-criterios-title { margin-top: 1.5rem; }
}

@media (max-width: 480px) {
  .container, .container-sm { padding: 0 1.2rem; }
  section { padding: 3rem 1.2rem; }
  .section-title { font-size: 1.8rem; }
  .section-header { margin-bottom: 2rem; }
  .stat-number { font-size: 2rem; }
  .four-col { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; align-items: center; }
  .match-result-card { grid-template-columns: 1fr; }
  .match-result-card img { display: none; }
  .login-box { padding: 2rem 1.5rem; }
  .confirmation-box { padding: 2rem 1.5rem; }
}
