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

:root {
  /* Primarios */
  --black:      #0d0d0b;
  --off-white:  #f5f2ec;
  --gold:       #b8a070;

  /* Secundarios */
  --cream:      #ede8df;
  --gold-light: #d4bc90;
  --mid:        #6b6660;

  /* Bordes */
  --border:     rgba(184, 160, 112, 0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ═══════════════════════════════════════
   CURSOR
═══════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.15s ease, opacity 0.2s;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.5;
}

/* ═══════════════════════════════════════
   NAVEGACIÓN
═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  transition: background 0.4s, padding 0.3s;
}

nav.scrolled {
  background: rgba(245, 242, 236, 0.95);
  backdrop-filter: blur(12px);
  padding: 18px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   BOTONES
═══════════════════════════════════════ */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--off-white);
  background: var(--black);
  border: none;
  padding: 13px 28px;
  cursor: none;
  transition: background 0.3s, transform 0.2s;
}

.btn-cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.btn-cta svg { width: 14px; height: 14px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: transparent;
  border: 1px solid rgba(13, 13, 11, 0.25);
  padding: 13px 28px;
  cursor: none;
  transition: border-color 0.3s, color 0.3s;
  text-decoration: none;
}

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

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 60px 100px;
  background: var(--off-white);
  position: relative;
  z-index: 2;
}

.hero-right {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8a070' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-right-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotateRing 20s linear infinite;
}

.hero-circle::before {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(184, 160, 112, 0.1);
}

.hero-circle-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 1;
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--black);
  margin-bottom: 36px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--mid);
  max-width: 420px;
  margin-bottom: 56px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
}

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-wrap {
  background: var(--black);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.4);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 60px;
}

.marquee-track span::after {
  content: '✦';
  color: var(--gold);
  opacity: 0.6;
}

/* ═══════════════════════════════════════
   SECCIONES BASE
═══════════════════════════════════════ */
.section {
  padding: 120px 60px;
}

.section-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}

.section-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--black);
  max-width: 680px;
}

.section-h2 em {
  font-style: italic;
  color: var(--gold);
}

/* ═══════════════════════════════════════
   PILARES
═══════════════════════════════════════ */
.pillars { background: var(--cream); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 72px;
  border: 1px solid var(--border);
}

.pillar-card {
  background: var(--cream);
  padding: 52px 44px;
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.pillar-card:hover::before { width: 100%; }
.pillar-card:hover { background: var(--off-white); }

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--black);
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.pillar-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid);
}

/* ═══════════════════════════════════════
   SERVICIOS
═══════════════════════════════════════ */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;   /* ← cambia start por stretch */
  margin-top: 72px;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: none;
  transition: padding-left 0.3s;
  position: relative;
}

.service-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--gold);
  opacity: 0.08;
  transition: width 0.4s ease;
}

.service-item.active-service::before { width: 100%; }
.service-item.active-service { padding-left: 16px; }
.service-item.active-service .service-name { color: var(--black); }
.service-item.active-service .service-arrow { color: var(--gold); transform: translateX(4px); }

.service-item:hover { padding-left: 16px; }
.service-item:hover .service-arrow { color: var(--gold); transform: translateX(4px); }

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--mid);
  transition: color 0.3s;
}

.service-arrow {
  color: var(--mid);
  transition: transform 0.3s, color 0.3s;
  font-size: 18px;
}

/* Panel detalle derecho */
.services-detail {
  position: sticky;
  top: 120px;
  align-self: stretch;    /* ← agrega esto */
}

.detail-panel {
  border: 1px solid var(--border);
  background: var(--cream);
  height: 100%;           /* ← cambia min-height: 320px por height: 100% */
  position: relative;
  overflow: hidden;
}

.detail-content {
  padding: 48px;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  display: flex;             
  flex-direction: column;    
  justify-content: space-between; 
}

.detail-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: absolute;        
  inset: 0;                
}

.detail-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.1;
}

.detail-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 32px;
}

.detail-items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.detail-items span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--border);
  padding: 6px 14px;
  background: var(--off-white);
}

/* ═══════════════════════════════════════
   PROCESO
═══════════════════════════════════════ */
.process { background: var(--black); }
.process .section-tag { color: var(--gold-light); }
.process .section-h2 { color: var(--off-white); }
.process .section-h2 em { color: var(--gold); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-top: 72px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.process-step {
  padding: 48px 36px;
  background: var(--black);
  position: relative;
}

.process-step::after {
  content: attr(data-num);
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.03);
  font-weight: 600;
  line-height: 1;
}

.step-num {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 24px;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--off-white);
  font-weight: 300;
  margin-bottom: 16px;
}

.step-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245, 242, 236, 0.45);
}

/* ═══════════════════════════════════════
   TESTIMONIOS
═══════════════════════════════════════ */
.testimonials { background: var(--cream); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 72px;
}

.testi-card {
  padding: 40px;
  background: var(--off-white);
  border: 1px solid var(--border);
  position: relative;
}

.testi-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 10px; left: 32px;
  line-height: 1;
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--black);
  font-style: italic;
  margin-bottom: 28px;
  margin-top: 24px;
}

.testi-name {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
}

.testi-role {
  font-size: 12px;
  color: var(--mid);
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
.cta-band {
  background: var(--black);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.cta-band-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.1;
}

.cta-band-title em {
  font-style: italic;
  color: var(--gold);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
}

.footer-logo span { color: var(--gold); }

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245, 242, 236, 0.35);
  margin-top: 16px;
  max-width: 280px;
}

.footer-heading {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 14px; }

.footer-links a {
  font-size: 13px;
  color: rgba(245, 242, 236, 0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--off-white); }

.footer-bottom {
  background: var(--black);
  padding: 20px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(245, 242, 236, 0.2);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════
   BOTÓN FLOTANTE CALENDARIO
═══════════════════════════════════════ */
.floating-cal {
  position: fixed;
  bottom: 36px; right: 36px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.cal-tooltip {
  background: var(--black);
  color: var(--off-white);
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 10px 16px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.floating-cal:hover .cal-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.cal-btn {
  width: 58px;
  height: 58px;
  background: var(--black);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background 0.3s, transform 0.2s;
  position: relative;
}

.cal-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(184, 160, 112, 0.15);
  animation: pulseRing 3s ease-in-out infinite;
}

.cal-btn:hover { background: var(--gold); }
.cal-btn svg { width: 22px; height: 22px; color: var(--off-white); }

/* ═══════════════════════════════════════
   MODAL CALENDARIO
═══════════════════════════════════════ */
.cal-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.cal-modal.open {
  opacity: 1;
  pointer-events: all;
}

.cal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 11, 0.7);
  backdrop-filter: blur(8px);
}

.cal-panel {
  position: relative;
  background: var(--off-white);
  width: 560px;
  max-width: 95vw;
  max-height: 80vh;
  overflow-y: auto;
  padding: 52px;
  border: 1px solid var(--border);
  transform: translateY(20px);
  transition: transform 0.4s;
}

.cal-modal.open .cal-panel { transform: translateY(0); }

.cal-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: none;
  color: var(--mid);
  transition: color 0.3s;
}

.cal-close:hover { color: var(--gold); }

.cal-header { margin-bottom: 36px; }

.cal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 8px;
}

.cal-subtitle {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}

.cal-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cal-month-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.cal-arrow {
  background: none;
  border: none;
  color: var(--mid);
  cursor: none;
  font-size: 16px;
  padding: 6px 12px;
  transition: color 0.3s;
}

.cal-arrow:hover { color: var(--gold); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 24px;
}

.cal-dow {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: center;
  padding: 8px 0;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--black);
  cursor: none;
  transition: background 0.2s, color 0.2s;
  border: 1px solid transparent;
}

.cal-day:not(.empty):not(.past):hover {
  background: var(--cream);
  border-color: var(--border);
}

.cal-day.selected {
  background: var(--black);
  color: var(--off-white);
}

.cal-day.today { color: var(--gold); font-weight: 500; }
.cal-day.past  { color: rgba(107, 102, 96, 0.3); cursor: not-allowed; }
.cal-day.empty { cursor: default; }

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.time-slot {
  padding: 10px;
  border: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--mid);
  cursor: none;
  transition: all 0.2s;
}

.time-slot:hover,
.time-slot.active {
  border-color: var(--gold);
  color: var(--black);
  background: var(--cream);
}
.time-slot.ocupado {
  border-color: var(--border);
  color: rgba(107, 102, 96, 0.3);
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}
.cal-form input {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--black);
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.cal-form input::placeholder { color: var(--mid); }
.cal-form input:focus { border-color: var(--gold); }

.btn-confirm {
  width: 100%;
  padding: 16px;
  background: var(--black);
  color: var(--off-white);
  border: none;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.3s;
  margin-top: 8px;
}

.btn-confirm:hover { background: var(--gold); }

/* ═══════════════════════════════════════
   ANIMACIONES
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1);   opacity: 0.5; }
  50%       { transform: scale(1.1); opacity: 0.2; }
}

@keyframes videoPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ═══════════════════════════════════════
   TILT GRID
═══════════════════════════════════════ */
.tilt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tilt-card {
  aspect-ratio: 1;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 40px;
  cursor: none;
  transform-style: preserve-3d;
  transition: transform 0.1s ease, box-shadow 0.3s;
  will-change: transform;
}

.tilt-card.tilt-dark {
  background: var(--black);
}

.tilt-card:hover {
  box-shadow: 0 20px 60px rgba(13,13,11,0.15);
}

.tilt-inner {
  transform: translateZ(20px);
  transform-style: preserve-3d;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tilt-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: auto;
}

.tilt-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1;
}

.tilt-text {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   PRIVACIDAD
═══════════════════════════════════════ */
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  margin-top: 8px;
}

.privacy-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: none;
  flex-shrink: 0;
}

.privacy-check label {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.6;
  cursor: none;
}

.privacy-link {
  color: var(--gold);
  text-decoration: underline;
  cursor: none;
  transition: color 0.3s;
}

.privacy-link:hover { color: var(--black); }

.privacy-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.privacy-section p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--mid);
}

.privacy-section ul {
  margin-top: 8px;
  padding-left: 20px;
}

.privacy-section ul li {
  font-size: 13px;
  line-height: 1.8;
  color: var(--mid);
}

.privacy-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}
.field-error {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-top: 4px;
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════
   SELECTORES ESTILIZADOS
═══════════════════════════════════════ */
.lada-select,
.zona-select,
.zona-select-inline {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23b8a070' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 28px;
}

.zona-select-inline {
  background: transparent;
  border: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mid);
  padding: 6px 28px 6px 10px;
  cursor: none;
  outline: none;
  transition: border-color 0.3s, color 0.3s;
}

.zona-select-inline:focus,
.zona-select-inline:hover {
  border-color: var(--gold);
  color: var(--black);
}

.lada-select {
  border: none;
  border-right: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--mid);
  padding: 14px 28px 14px 0;
  background-color: transparent;
  transition: color 0.3s;
}

.lada-select:focus,
.lada-select:hover {
  color: var(--black);
  outline: none;
}
/* ═══════════════════════════════════════
   COFUNDADORES
═══════════════════════════════════════ */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 1px;
}

.founder-card {
  background: var(--cream);
  padding: 48px 44px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: background 0.3s;
}

.founder-card:hover { background: var(--off-white); }

.founder-img {
  width: 210px;
  height: 210px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}

.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.founder-card:hover .founder-img img { filter: grayscale(0%); }

.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 4px;
}

.founder-role {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.founder-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--mid);
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq { background: var(--off-white); }

.faq-grid {
  margin-top: 72px;
  border-top: 1px solid var(--border);
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  cursor: none;
  transition: color 0.3s;
}

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

.faq-question span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.faq-icon {
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 24px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--mid);
  padding-bottom: 28px;
  max-width: 680px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}
/* ═══════════════════════════════════════
   REDES SOCIALES FOOTER
═══════════════════════════════════════ */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,242,236,0.4);
  transition: border-color 0.3s, color 0.3s;
  cursor: none;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════════════
   VIDEO
═══════════════════════════════════════ */
.video-section {
  padding: 0;
  position: relative;
  background: var(--black);
}

.video-tag {
  position: absolute;
  top: 48px;
  left: 60px;
  z-index: 10;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
}

.video-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.video-wrap {
  position: relative;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
}

.video-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  max-height: 85vh;
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.video-player.playing {
  opacity: 1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: none;
  transition: opacity 0.4s ease;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-btn {
  width: 88px;
  height: 88px;
  border: 1px solid rgba(184,160,112,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.3s, transform 0.3s;
  position: relative;
}

.video-play-btn::before,
.video-play-btn::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184,160,112,0.3);
  animation: videoPulse 2.5s ease-out infinite;
}

.video-play-btn::before {
  inset: -16px;
  animation-delay: 0s;
}

.video-play-btn::after {
  inset: -32px;
  animation-delay: 0.6s;
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 5px;
}

.video-overlay:hover .video-play-btn {
  background: rgba(184,160,112,0.15);
  transform: scale(1.05);
}

.video-overlay-text {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.6);
}



/* ═══════════════════════════════════════
   INTRO CORTINA
═══════════════════════════════════════ */
.intro-curtain {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: #0d0d0b;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  animation: introPeek 5s ease-in-out infinite;
  transform-origin: top;
  cursor:none;
}

.intro-curtain.intro-lifted {
  animation: introLift 0.9s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.intro-curtain.intro-done {
  display: none;
}

@keyframes introPeek {
  0%   { transform: translateY(0); }
  60%  { transform: translateY(0); }
  75%  { transform: translateY(-9%); }
  85%  { transform: translateY(-7%); }
  92%  { transform: translateY(-9%); }
  100% { transform: translateY(0); }
}

@keyframes introLift {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}

.intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: introFadeIn 0.8s ease forwards;
}

.intro-inner svg {
  animation: introRotate 8s linear infinite;
}

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

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

.intro-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: rgba(184,160,112,0.6);
  text-transform: uppercase;
  animation: introFadeIn 1s ease 0.3s both;
}

.btn-intro-agendar {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0d0d0b;
  background: #b8a070;
  border: none;
  padding: 14px 32px;
  cursor: none;
  position: relative;
  overflow: hidden;
  display: block;
  animation: introFadeIn 1s ease 0.6s both;
  transition: background 0.3s;
}

.btn-intro-agendar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: introShimmer 2.5s ease-in-out infinite;
}

.intro-curtain.intro-lifted .btn-intro-agendar::before {
  display: none;
}

@keyframes introShimmer {
  0%   { left: -100%; }
  60%  { left: 150%; }
  100% { left: 150%; }
}

.btn-intro-agendar:hover { background: #d4bc90; }

.intro-arrow {
  font-size: 11px;
  color: rgba(184,160,112,0.5);
  transform: rotate(90deg);
  line-height: 1;
  animation: introArrow 1.5s ease-in-out infinite;
}

@keyframes introArrow {
  0%, 100% { transform: rotate(90deg) translateX(0); }
  50%       { transform: rotate(90deg) translateX(5px); }
}

.intro-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184,160,112,0.4), transparent);
}
/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  /* Ya existentes */
  .hero                { grid-template-columns: 1fr; }
  .hero-right          { min-height: 50vh; }
  .pillars-grid        { grid-template-columns: 1fr; }
  .process-steps       { grid-template-columns: 1fr; }
  .testi-grid          { grid-template-columns: 1fr; }
  .cta-band            { grid-template-columns: 1fr; }
  footer               { grid-template-columns: 1fr; }
  nav,
  .section             { padding-left: 24px; padding-right: 24px; }
  .footer-bottom       { padding: 16px 24px; flex-direction: column; gap: 8px; }

  /* Nav — ocultar links, dejar solo logo y botón */
  .nav-links           { display: none; }
  nav                  { padding: 20px 24px; }

  /* Servicios — apilar verticalmente */
  .services-layout     { grid-template-columns: 1fr; gap: 32px; }
  .services-detail     { position: relative; top: 0; }
  .detail-panel        { height: auto; min-height: 280px; }
  .detail-content      { position: relative; inset: auto; }
  .detail-content.active { position: relative; }

  /* Tilt grid — 1 columna en móvil */
  .tilt-grid           { grid-template-columns: 1fr 1fr; gap: 8px; }
  .tilt-card           { padding: 24px; }
  .tilt-title          { font-size: 20px; }

  /* Hero texto más pequeño */
  .hero-left           { padding: 120px 24px 60px; }
  .hero-actions        { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Footer bottom */
  .cta-band            { padding: 60px 24px; text-align: center; }
  .cta-band            { justify-items: center; }

  /* Servicios en móvil — resetear position absolute */
  .services-layout     { grid-template-columns: 1fr; gap: 0; }
  .services-detail     { position: relative; top: 0; }

  .detail-panel        { height: auto; min-height: unset; }

  .detail-content      {
    position: relative;
    inset: auto;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transform: none;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  }

  .detail-content.active {
    position: relative;
    opacity: 1;
    max-height: 600px;
    padding: 32px 24px;
  }
  .founders-grid { grid-template-columns: 1fr; }
  .founder-card  { padding: 32px 24px; }
  .faq-question span { font-size: 18px; }
  .video-tag { left: 24px; top: 24px; }
  .video-player { max-height: 50vh; }

  .intro-curtain {
    gap: 20px;
  }

  .intro-inner svg {
    width: 56px;
    height: 56px;
  }

  .btn-intro-agendar {
    padding: 12px 24px;
    font-size: 10px;
  }
}


/* ═══════════════════════════════════════
   LADA + ZONA HORARIA
═══════════════════════════════════════ */
.phone-group {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.phone-group input {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  flex: 1;
}

.lada-select {
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--black);
  padding: 14px 10px 14px 0;
  cursor: none;
  outline: none;
  flex-shrink: 0;
}

.zona-wrap {
  margin-bottom: 16px;
}

.zona-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-bottom: 8px;
}

.zona-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--black);
  padding: 10px 0;
  cursor: none;
  outline: none;
  transition: border-color 0.3s;
}

.zona-select:focus { border-color: var(--gold); }

.zona-note {
  font-size: 11px;
  color: var(--gold);
  margin-top: 6px;
  letter-spacing: 0.08em;
  min-height: 16px;
  transition: opacity 0.3s;
}