/* ============================================================
   OSANA — Hoja de estilos compartida
   Centro de Depilación y Estética · Tenerife Sur
   ============================================================ */

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

:root {
  --cream:   #e8e2d8;
  --cream2:  #f6eeda;
  --svc-bg:  #e8e0d0;
  --dark:    #1a1612;
  --mid:     #2e2820;
  --brown:   #8a7350;
  --gold:    #ac977e;
  --sage:    #7a8a7c;
  --txt:     #2a2520;
  --txt-mid: #5a5248;
  --txt-soft:#8a8070;
  --line:    rgba(42,37,32,0.12);
  --linew:   rgba(240,235,226,0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--cream);
  color: var(--txt);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.serif { font-family: 'Raleway', sans-serif; }

/* ── SKIP LINK (accesibilidad) ── */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--dark); color: var(--cream2);
  padding: 12px 20px; font-size: 12px; letter-spacing: 0.1em;
}
.skip-link:focus { left: 0; }

/* ══════════════════ NAV ══════════════════ */
nav#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 0 48px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,247,240,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(20,16,12,0.05);
}
.nav-logo {
  font-family: 'Raleway', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--txt); text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px;
}
.nav-logo-img { height: 28px; width: auto; display: block; }
.footer-logo-img { height: 22px; width: auto; display: block; margin-bottom: 12px; }
.logo-icon {
  width: 26px; height: 26px; flex-shrink: 0; display: inline-block;
  background-color: var(--dark);
  -webkit-mask-image: url('../images/logo-icon.svg'); mask-image: url('../images/logo-icon.svg');
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  overflow: visible;
}
.footer-brand-name .logo-icon { background-color: var(--cream2); }
.logo-o {
  display: inline-block; width: 0.62em; height: 0.62em;
  border: 0.15em solid currentColor; border-radius: 50%;
  margin-right: 0.06em; vertical-align: -0.04em;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 10px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--txt);
  text-decoration: none; opacity: 0.72; transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--brown); }
.nav-cta {
  font-size: 9px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dark) !important;
  background: var(--gold); padding: 11px 22px;
  opacity: 1 !important; text-decoration: none; transition: filter 0.2s;
}
.nav-cta:hover { filter: brightness(1.1); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--txt); margin: 5px 0; }
.nav-lang {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--txt); text-decoration: none; opacity: 0.72;
  border: 1px solid var(--line); padding: 5px 11px;
  transition: opacity 0.2s, border-color 0.2s, color 0.2s;
}
.nav-lang:hover { opacity: 1; border-color: var(--brown); color: var(--brown); }
.mobile-menu .nav-lang { border-color: rgba(240,235,226,0.3); color: var(--cream2); opacity: 0.8; margin-top: 4px; }

.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--dark); z-index: 600;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Raleway', sans-serif;
  font-size: 32px; font-weight: 400; color: var(--cream2);
  text-decoration: none; letter-spacing: 0.02em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: var(--cream2);
  font-size: 26px; cursor: pointer;
}

/* Espacio para que el contenido no quede bajo el nav fijo */
.page-offset { padding-top: 68px; }

/* ══════════════════ BOTONES ══════════════════ */
.btn-primary {
  display: inline-block; font-family: 'Raleway', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dark);
  background: var(--gold); padding: 15px 34px;
  text-decoration: none; border: none; cursor: pointer;
  transition: filter 0.25s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20,16,12,0.16); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 10px rgba(20,16,12,0.14); }
.btn-outline {
  display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cream2);
  border: 1px solid var(--linew); padding: 14px 32px;
  text-decoration: none; transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline-dark {
  display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--txt);
  border: 1px solid var(--line); padding: 14px 32px;
  text-decoration: none; transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
}
.btn-outline-dark:hover { border-color: var(--brown); color: var(--brown); transform: translateY(-2px); }
.btn-ghost {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--txt-mid);
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
}
.btn-ghost-line { width: 26px; height: 1px; background: currentColor; transition: width 0.3s cubic-bezier(0.22,1,0.36,1); }
.btn-ghost:hover { color: var(--brown); }
.btn-ghost:hover .btn-ghost-line { width: 40px; }

/* ══════════════════ HERO (paginas con foto) ══════════════════ */
.hero {
  position: relative; width: 100%; min-height: 560px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; background: #1a1510;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,11,9,0.15) 0%, rgba(12,11,9,0.1) 35%, rgba(12,11,9,0.88) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 48px 56px; max-width: 820px; }
.hero-eyebrow {
  display: block; font-size: 10px; font-weight: 400; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.hero-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(40px, 7vw, 78px); font-weight: 600; line-height: 1.0;
  color: var(--cream2); margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: rgba(240,235,226,0.68); }
.hero-sub {
  font-size: 12px; font-weight: 300; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(240,235,226,0.55);
  line-height: 1.9; margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* Reserva rápida — tarjeta destacada dentro del hero (arriba del todo) */
.hero-booking-card {
  position: relative; z-index: 2;
  margin: 0 48px 28px; padding: 22px 26px;
  background: rgba(232,226,216,0.96); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.hero-booking-text { display: flex; flex-direction: column; gap: 3px; }
.hero-booking-label { font-size: 9px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brown); }
.hero-booking-title { font-family: 'Raleway', sans-serif; font-size: 19px; color: var(--txt); }
.hero-booking-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-booking-sm {
  font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 12px 20px; text-decoration: none; white-space: nowrap; transition: filter 0.2s, background 0.2s;
}
.btn-booking-sm.gold { background: var(--gold); color: var(--dark); }
.btn-booking-sm.gold:hover { filter: brightness(1.08); }
.btn-booking-sm.wa { background: #1a1612; color: var(--cream2); }
.btn-booking-sm.wa:hover { background: var(--brown); }

/* ══════════════════ SECCIONES GENÉRICAS ══════════════════ */
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; padding-bottom: 26px; border-bottom: 1px solid var(--line);
  gap: 16px; flex-wrap: wrap;
}
.section-eyebrow {
  display: block; font-size: 9px; font-weight: 500; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 12px;
}
.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(30px, 4vw, 46px); font-weight: 600; color: var(--txt); line-height: 1.1;
}
.section-link {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brown); text-decoration: none;
  display: flex; align-items: center; gap: 10px; white-space: nowrap; padding-bottom: 4px;
}
.section-link-line { width: 24px; height: 1px; background: var(--brown); }

/* ══════════════════ PILARES ══════════════════ */
.pillars { background: var(--cream2); padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); }
.pillar { padding: 52px 40px; border-right: 1px solid var(--line); position: relative; overflow: hidden; }
.pillar:last-child { border-right: none; }
.pillar-n {
  font-family: 'Raleway', sans-serif; font-size: 68px; font-weight: 400;
  color: rgba(42,37,32,0.06); position: absolute; top: 12px; right: 18px; line-height: 1;
}
.pillar-icon { width: 30px; height: 1px; background: var(--dark); margin-bottom: 22px; }
.pillar-title { font-family: 'Raleway', sans-serif; font-size: 21px; font-weight: 600; color: var(--txt); margin-bottom: 12px; line-height: 1.25; }
.pillar-text { font-size: 12px; font-weight: 300; line-height: 1.8; color: var(--txt-mid); }

/* ══════════════════ STATEMENT / SOBRE OSANA ══════════════════ */
.statement {
  padding: 100px 48px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; max-width: 1280px; margin: 0 auto;
}
.statement-img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.statement-img img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 16s ease-in-out infinite alternate;
}
@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce) { .statement-img img { animation: none; } }
.statement-frame {
  position: absolute; inset: 14px; border: 1px solid rgba(240,235,226,0.6); pointer-events: none; z-index: 2;
}
.statement-tag {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  background: var(--dark); color: var(--cream2); padding: 10px 18px;
  font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
}
.statement-eyebrow { display: block; font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--sage); margin-bottom: 22px; }
.statement-title {
  font-family: 'Raleway', sans-serif; font-size: clamp(32px, 4vw, 50px); font-weight: 600;
  line-height: 1.12; color: var(--txt); margin-bottom: 26px;
}
.statement-title em { font-style: italic; color: var(--brown); }
.statement-text { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--txt-mid); margin-bottom: 20px; }
.statement-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); padding-top: 28px; margin: 16px 0 32px; }
.stat { padding-right: 20px; }
.stat-n { font-family: 'Raleway', sans-serif; font-size: 38px; font-weight: 700; color: var(--txt); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 9px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--txt-soft); }

/* ══════════════════ GRID SERVICIOS (home) ══════════════════ */
.services-section { background: var(--cream); padding: 90px 48px; }
.services-section .section-eyebrow { color: var(--brown); }
.services-section .section-title { color: var(--txt); }
.services-section .section-header { border-bottom: 1px solid var(--line); }
.services-section .section-link { color: var(--dark); }
.services-section .section-link-line { background: var(--dark); }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--linew); }
.svc-card { background: var(--dark); display: flex; flex-direction: column; overflow: hidden; position: relative; text-decoration: none; transition: background 0.3s; }
.svc-card:hover { background: #211d18; }
.svc-card-img { aspect-ratio: 3/4; overflow: hidden; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); transition: transform 0.6s ease; }
.svc-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-card-body { padding: 26px 24px 28px; flex: 1; }
.svc-card-n { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.svc-card-name { font-family: 'Raleway', sans-serif; font-size: 19px; font-weight: 400; color: var(--cream2); line-height: 1.2; margin-bottom: 10px; }
.svc-card-desc { font-size: 11px; font-weight: 300; line-height: 1.7; color: rgba(240,235,226,0.42); margin-bottom: 16px; }
.svc-card-desde { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(240,235,226,0.32); }
.svc-card-price { font-family: 'Raleway', sans-serif; font-size: 22px; font-weight: 400; color: var(--gold); }
.svc-card-arrow {
  position: absolute; bottom: 24px; right: 24px; width: 30px; height: 30px;
  border: 1px solid var(--linew); display: flex; align-items: center; justify-content: center;
  color: rgba(240,235,226,0.3); font-size: 14px; transition: all 0.2s;
}
.svc-card:hover .svc-card-arrow { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ══════════════════ TEXTURE BREAK ══════════════════ */
.texture-break { height: 440px; position: relative; overflow: hidden; }
.texture-break-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }
.texture-break-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; background: rgba(26,22,18,0.32); }
.texture-quote { font-family: 'Raleway', sans-serif; font-size: clamp(24px, 4vw, 46px); font-style: italic; color: var(--cream2); text-align: center; max-width: 700px; padding: 0 32px; line-height: 1.3; }
.texture-quote-author { font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }

/* ══════════════════ RESEÑAS ══════════════════ */
.reviews-section { padding: 90px 48px; background: var(--cream); }
.reviews-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.reviews-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.reviews-rating { font-family: 'Raleway', sans-serif; font-size: 17px; color: var(--txt); }
.reviews-count { font-size: 11px; color: var(--txt-soft); font-weight: 300; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
.review-card { background: var(--cream); padding: 32px 28px; }
.review-card.alt { background: var(--cream2); }
.review-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; margin-bottom: 14px; }
.review-text { font-family: 'Raleway', sans-serif; font-size: 15px; font-style: italic; line-height: 1.7; color: var(--txt); margin-bottom: 18px; }
.review-author { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brown); }
.review-date { font-size: 10px; font-weight: 300; color: var(--txt-soft); margin-top: 2px; }

/* ── Carrusel de reseñas reales de Google ── */
.reviews-carousel-wrap { position: relative; }
.reviews-carousel {
  display: flex;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.reviews-carousel .review-card {
  scroll-snap-align: start; flex: 0 0 clamp(280px, 32vw, 360px);
  display: flex; flex-direction: column;
  border-left: 1px solid var(--line);
}
.reviews-carousel .review-card:first-child { border-left: none; }
.review-top-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: var(--line); }
.review-avatar-fallback {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--brown); color: var(--cream2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 16px;
}
.review-name-col { display: flex; flex-direction: column; min-width: 0; }
.review-author-name { font-size: 13px; font-weight: 600; color: var(--txt); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.reviews-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 28px; }
.reviews-nav button {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--cream); cursor: pointer; color: var(--txt);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
}
.reviews-nav button:hover { border-color: var(--brown); color: var(--brown); transform: translateY(-2px); }
.reviews-nav button:disabled { opacity: 0.35; cursor: default; transform: none; }
.reviews-nav button svg { width: 18px; height: 18px; }
.reviews-loading { font-size: 12px; color: var(--txt-soft); padding: 32px 28px; }

/* ══════════════════ PROGRAMA DE FIDELIDAD ══════════════════ */
.loyalty-section { background: var(--dark); padding: 90px 48px; text-align: center; }
.loyalty-eyebrow { display: block; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.loyalty-title { font-family: 'Raleway', sans-serif; font-size: clamp(28px, 3.4vw, 44px); font-weight: 600; color: var(--cream2); line-height: 1.2; max-width: 780px; margin: 0 auto 20px; }
.loyalty-title em { font-style: italic; color: var(--gold); }
.loyalty-text { font-size: 14px; font-weight: 300; line-height: 1.8; color: rgba(240,235,226,0.7); max-width: 560px; margin: 0 auto 56px; }
.loyalty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(240,235,226,0.12); max-width: 920px; margin: 0 auto 48px; }
.loyalty-highlight { background: var(--dark); padding: 32px 28px; text-align: left; position: relative; overflow: hidden; }
.loyalty-highlight-n {
  font-family: 'Raleway', sans-serif; font-size: 60px; font-weight: 400;
  color: rgba(240,235,226,0.07); position: absolute; top: 6px; right: 16px; line-height: 1;
}
.loyalty-highlight-title { font-family: 'Raleway', sans-serif; font-size: 16px; font-weight: 600; color: var(--gold); margin-bottom: 10px; position: relative; }
.loyalty-highlight-text { font-size: 12px; font-weight: 300; line-height: 1.7; color: rgba(240,235,226,0.6); position: relative; }
@media (max-width: 900px) {
  .loyalty-section { padding: 64px 24px; }
  .loyalty-grid { grid-template-columns: 1fr; }
}

/* ══════════════════ CTA RESERVA (final de página) ══════════════════ */
.booking-section { background: var(--cream2); padding: 100px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.booking-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.booking-img img { width: 100%; height: 100%; object-fit: cover; }
.booking-eyebrow { display: block; font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--brown); margin-bottom: 22px; }
.booking-title { font-family: 'Raleway', sans-serif; font-size: clamp(32px, 4vw, 52px); font-weight: 600; color: var(--txt); line-height: 1.08; margin-bottom: 18px; }
.booking-title em { font-style: italic; color: var(--brown); }
.booking-text { font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--txt-mid); margin-bottom: 36px; }
.booking-options { display: flex; gap: 14px; flex-wrap: wrap; }
.booking-contact { margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; gap: 26px; flex-wrap: wrap; }
.booking-contact-item { display: flex; flex-direction: column; gap: 4px; }
.booking-contact-label { font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--txt-soft); }
.booking-contact-val { font-size: 12px; font-weight: 300; color: var(--txt-mid); text-decoration: none; }
.booking-contact-val:hover { color: var(--brown); }

/* Widget de reservas embebido (Booksy u otro) */
.booking-widget-wrap { background: var(--cream2); padding: 4px; min-height: 420px; }
.booking-widget-wrap iframe { width: 100%; height: 620px; border: 0; display: block; }
.booking-widget-fallback { padding: 40px 28px; text-align: center; }
.booking-widget-fallback p { font-size: 12px; color: var(--txt-mid); line-height: 1.8; margin-bottom: 20px; }

/* ══════════════════ ACORDEÓN (servicios / formaciones) ══════════════════ */
.intro { padding: 56px 48px 0; max-width: 1100px; margin: 0 auto; display: flex; align-items: flex-start; gap: 26px; }
.intro-line { width: 2px; min-height: 50px; background: var(--sage); flex-shrink: 0; margin-top: 5px; }
.intro-text { font-family: 'Raleway', sans-serif; font-size: 17px; font-weight: 400; color: var(--txt-mid); line-height: 1.75; flex: 1; }
.intro-count { font-family: 'Raleway', sans-serif; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--txt-soft); white-space: nowrap; padding-top: 4px; }

.services { padding: 44px 0 80px; }
.svc { border-top: 1px solid var(--line); }
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc-head {
  width: 100%; border: none; cursor: pointer; text-align: left; padding: 20px 48px;
  display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 16px;
  background: var(--brown); transition: filter 0.2s; color: var(--cream2);
}
.svc-head:hover { filter: brightness(1.08); }
.svc-n { font-size: 11px; font-weight: 400; letter-spacing: 0.18em; color: var(--gold); }
.svc-name { font-size: 16px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream2); }
.svc-sub { font-size: 10px; font-weight: 300; letter-spacing: 0.04em; color: rgba(240,235,226,0.55); margin-top: 4px; }
.svc-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(240,235,226,0.75); margin-bottom: 5px; }
.svc-badge::before { content: '✦'; font-size: 8px; }
.svc-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.svc-desde { text-align: right; }
.svc-desde-label { font-size: 9px; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(240,235,226,0.5); display: block; margin-bottom: 1px; }
.svc-desde-price { font-family: 'Raleway', sans-serif; font-size: 20px; font-weight: 400; color: var(--cream2); }
.svc-icon { width: 18px; height: 18px; position: relative; flex-shrink: 0; }
.svc-icon::before, .svc-icon::after { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(240,235,226,0.5); transition: transform 0.3s, opacity 0.3s; }
.svc-icon::after { transform: rotate(90deg); }
.svc-head.open .svc-icon::after { transform: rotate(0deg); opacity: 0.3; }

.svc-body { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1); }
.svc-body.open { max-height: 2000px; }
.svc-inner { padding: 30px 48px 38px 100px; background: var(--svc-bg); }
.svc-desc { font-size: 13px; font-weight: 300; color: var(--txt-mid); line-height: 1.85; padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.svc-desc-tight { border-bottom: none; padding-bottom: 6px; margin-bottom: 4px; }
.svc-benefits { font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--brown); padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }

.svc-faq-title { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brown); margin: 26px auto 12px; max-width: 720px; }
.svc-two-col .svc-faq-title { margin-top: 0; max-width: none; }
.svc-faq { margin-top: 26px; max-width: 720px; margin-left: auto; margin-right: auto; display: flex; flex-direction: column; gap: 10px; }
.svc-two-col .svc-faq { margin-top: 0; max-width: none; }
.svc-faq-item {
  border: 1px solid var(--line); background: var(--cream); padding: 17px 20px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.svc-faq-item:hover { border-color: var(--gold); }
.svc-faq-item[open] { border-color: var(--brown); background: var(--cream2); box-shadow: 0 6px 20px rgba(20,16,12,0.07); }
.svc-faq-item summary { cursor: pointer; font-size: 13px; font-weight: 600; color: var(--txt); list-style: none; display: flex; align-items: center; gap: 14px; }
.svc-faq-item summary::-webkit-details-marker { display: none; }
.svc-faq-item summary::after {
  content: '+'; flex: none; width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--brown);
  display: flex; align-items: center; justify-content: center; margin-left: auto; line-height: 1; font-size: 13px;
  color: var(--brown); transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.svc-faq-item[open] summary::after { content: '−'; background: var(--brown); color: var(--cream); transform: rotate(180deg); }
.svc-faq-answer { font-size: 12.5px; font-weight: 300; color: var(--txt-mid); line-height: 1.8; padding: 14px 0 2px 36px; }

.svc-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; max-width: 1100px; margin: 0 auto; }
.svc-two-col .ptable { max-width: none; margin: 0; }
.svc-two-col .svc-faq { margin-top: 0; max-width: none; margin-left: 0; margin-right: 0; }

.ptable { width: 100%; max-width: 720px; margin: 0 auto; border-collapse: collapse; table-layout: fixed; }
.ptable thead th { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--txt-soft); padding: 0 0 14px; border-bottom: 1px solid var(--line); text-align: left; }
.ptable thead th:not(:first-child) { text-align: right; }
.ptable tbody td { padding: 12px 20px 12px 0; font-size: 13px; font-weight: 300; border-bottom: 1px solid var(--line); color: var(--txt-mid); text-align: left; }
.ptable tbody td:not(:first-child) { text-align: right; color: var(--txt-mid); font-weight: 400; padding-right: 0; }
.ptable tbody tr:last-child td { border-bottom: none; font-weight: 500; color: var(--txt); }
.ptable tbody tr:hover td { background: rgba(42,37,32,0.03); }
.ptable[data-cols="3"] th:not(:first-child), .ptable[data-cols="3"] td:not(:first-child) { width: 90px; }
.ptable[data-cols="2"] th:last-child, .ptable[data-cols="2"] td:last-child { width: 190px; }

.sub-title { font-family: 'Raleway', sans-serif; font-size: 16px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt); margin: 34px 0 18px; padding-top: 28px; border-top: 1px solid var(--line); text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.sub-title::before { content: '✦'; display: block; font-size: 11px; color: var(--brown); margin-bottom: 8px; letter-spacing: 0; }
.sub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #5c4630; max-width: 1100px; margin: 0 auto; }
.sub-block {
  margin: 0; padding: 30px 22px; background: var(--svc-bg); text-align: center;
  transition: background-color 0.25s ease;
}
.sub-block:hover { background: var(--cream); }
.sub-block-name { font-size: 15px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.sub-block-desc { font-size: 12.5px; font-weight: 300; color: var(--txt-mid); line-height: 1.6; margin-bottom: 14px; }
.sub-block-price { font-family: 'Raleway', sans-serif; font-size: 21px; font-weight: 700; color: var(--dark); }

.svc-cta { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; margin-top: 10px; border-top: 1px solid var(--line); gap: 14px; flex-wrap: wrap; }
.svc-cta-note { font-size: 10px; font-weight: 300; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-soft); }
.svc-btn { font-family: 'Raleway', sans-serif; font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream2); background: var(--brown); border: none; padding: 12px 28px; cursor: pointer; transition: filter 0.25s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease; text-decoration: none; display: inline-block; }
.svc-btn:hover { filter: brightness(1.15); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(20,16,12,0.14); }

/* ══════════════════ PÁGINA GENÉRICA (formaciones/promociones/contacto sin foto hero) ══════════════════ */
.page-hero { padding: 128px 48px 56px; max-width: 1100px; margin: 0 auto; }
.page-hero-eyebrow { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: var(--brown); margin-bottom: 18px; }
.page-hero-title { font-family: 'Raleway', sans-serif; font-size: clamp(34px, 5.5vw, 58px); font-weight: 600; color: var(--txt); line-height: 1.08; margin-bottom: 20px; }
.page-hero-title em { font-style: italic; color: var(--brown); }
.page-hero-text { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--txt-mid); max-width: 640px; }
.breadcrumb { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-soft); margin-bottom: 18px; }
.breadcrumb a { color: var(--brown); text-decoration: none; }

/* ══════════════════ TARJETAS PROMOCIONES ══════════════════ */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); max-width: 1280px; margin: 0 auto; }
.promo-card { background: var(--cream); padding: 36px 32px; position: relative; }
.promo-tag { display: inline-block; font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dark); background: var(--gold); padding: 6px 14px; margin-bottom: 20px; }
.promo-title { font-family: 'Raleway', sans-serif; font-size: 22px; font-weight: 600; color: var(--txt); margin-bottom: 10px; line-height: 1.25; }
.promo-desc { font-size: 12px; font-weight: 300; line-height: 1.75; color: var(--txt-mid); margin-bottom: 20px; }
.promo-prices { display: flex; align-items: baseline; gap: 10px; margin-bottom: 22px; }
.promo-price-old { font-size: 13px; color: var(--txt-soft); text-decoration: line-through; }
.promo-price-new { font-family: 'Raleway', sans-serif; font-size: 24px; color: var(--brown); }
.promo-valid { font-size: 10px; color: var(--txt-soft); letter-spacing: 0.06em; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }

/* ══════════════════ CONTACTO ══════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1280px; margin: 0 auto 0; }
.contact-info { padding: 20px 48px 90px; }
.contact-block { margin-bottom: 34px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.contact-block:last-child { border-bottom: none; }
.contact-label { display: block; font-size: 9px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brown); margin-bottom: 10px; }
.contact-val { font-family: 'Raleway', sans-serif; font-size: 20px; font-weight: 600; color: var(--txt); text-decoration: none; display: block; margin-bottom: 4px; }
.contact-val:hover { color: var(--brown); }
.contact-sub { font-size: 12px; color: var(--txt-soft); font-weight: 300; }
.contact-map { position: relative; min-height: 420px; overflow: hidden; }
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.25) contrast(1.05); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 0; font-size: 12px; border-bottom: 1px solid var(--line); }
.hours-table td:first-child { color: var(--txt-mid); font-weight: 400; }
.hours-table td:last-child { text-align: right; color: var(--txt); font-weight: 500; }
.hours-table tr:last-child td { border-bottom: none; }
.social-row { display: flex; gap: 16px; margin-top: 10px; }
.social-row a { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--txt-mid); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.social-row a:hover { color: var(--brown); border-color: var(--brown); }

/* ══════════════════ FOOTER ══════════════════ */
footer { background: #110e0b; padding: 60px 48px 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--linew); margin-bottom: 26px; }
.footer-brand-name { font-size: 13px; font-weight: 500; letter-spacing: 0.42em; text-transform: uppercase; color: var(--cream2); display: block; margin-bottom: 12px; }
.footer-brand-text { font-size: 11px; font-weight: 300; line-height: 1.8; color: rgba(240,235,226,0.35); max-width: 280px; }
.footer-col-title { font-size: 8px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 11px; font-weight: 300; color: rgba(240,235,226,0.4); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--cream2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 10px; font-weight: 300; letter-spacing: 0.1em; color: rgba(240,235,226,0.22); }
.footer-social { display: flex; gap: 18px; }
.footer-social a { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(240,235,226,0.32); text-decoration: none; }
.footer-social a:hover { color: var(--gold); }

/* ══════════════════ TICKER / CINTA EN MOVIMIENTO ══════════════════ */
.ticker { overflow: hidden; background: var(--dark); border-bottom: 1px solid var(--linew); }
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 26s linear infinite; }
.ticker-group { display: flex; flex-shrink: 0; }
.ticker-item {
  display: flex; align-items: center; gap: 28px;
  padding: 13px 28px; white-space: nowrap;
  font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}
.ticker-item::after { content: '✦'; color: var(--brown); font-size: 8px; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

.ticker.light { background: var(--cream2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ticker.light .ticker-item { color: var(--brown); }
.ticker.light .ticker-item::after { color: var(--sage); }

/* ══════════════════ RESERVA — TIRA COMPACTA ══════════════════ */
.reserve-strip { background: var(--dark); border-bottom: 1px solid var(--linew); }
.reserve-strip-inner {
  max-width: 1280px; margin: 0 auto; padding: 16px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.reserve-strip-label { font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.reserve-strip-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.reserve-strip-actions a {
  font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 18px; text-decoration: none; white-space: nowrap; transition: all 0.2s;
}
.reserve-strip-actions a.gold { background: var(--gold); color: var(--dark); }
.reserve-strip-actions a.gold:hover { filter: brightness(1.1); }
.reserve-strip-actions a.line { border: 1px solid var(--linew); color: rgba(240,235,226,0.7); }
.reserve-strip-actions a.line:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════ HERO — TIPOGRAFÍA MIXTA (italic + caps) ══════════════════ */
.hero-title-mix { line-height: 0.98; margin-bottom: 26px; }
.hero-title-mix .line-italic {
  display: block; font-family: 'Raleway', sans-serif; font-style: italic; font-weight: 400;
  font-size: clamp(30px, 4.2vw, 50px); color: rgba(240,235,226,0.75);
}
.hero-title-mix .line-caps {
  display: block; font-family: 'Raleway', sans-serif; font-weight: 600;
  letter-spacing: 0.015em; text-transform: uppercase;
  font-size: clamp(36px, 7vw, 74px); color: var(--cream2);
}

/* ══════════════════ TILES DE SERVICIOS (home) — foto grande + franja info ══════════════════ */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.tile { text-decoration: none; display: flex; flex-direction: column; background: var(--dark); }
.tile-img-wrap { position: relative; aspect-ratio: 4/4.4; overflow: hidden; }
.tile-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; display: block; }
.tile-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,11,9,0.8) 0%, rgba(12,11,9,0.1) 55%, rgba(12,11,9,0) 100%);
}
.tile:hover .tile-img-wrap img { transform: scale(1.08); }
.tile-name {
  position: absolute; left: 22px; right: 22px; bottom: 18px; z-index: 2;
  font-family: 'Raleway', sans-serif; font-size: clamp(17px, 1.7vw, 23px); font-weight: 700;
  color: var(--cream2); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.2;
}
.tile-n-badge {
  position: absolute; top: 18px; left: 22px; z-index: 2;
  font-size: 10px; letter-spacing: 0.2em; color: var(--gold);
}
.tile-info { background: var(--brown); padding: 22px 24px; flex: 1; display: flex; flex-direction: column; gap: 14px; border-right: 1px solid rgba(240,235,226,0.12); }
.tile:nth-child(3n) .tile-info { border-right: none; }
.tile-desc { font-size: 11px; font-weight: 300; line-height: 1.7; color: rgba(240,235,226,0.75); flex: 1; }
.tile-btn {
  align-self: flex-start; font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream2); background: var(--dark); padding: 11px 20px;
  transition: background 0.25s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1), padding 0.25s ease;
}
.tile:hover .tile-btn { background: #000; padding-left: 24px; padding-right: 24px; }

/* ══════════════════ FORMACIONES — TARJETAS DE CURSO ══════════════════ */
.course-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line); max-width: 1100px; margin: 0 auto; }
.course-card { background: var(--cream); display: flex; flex-direction: column; }
.course-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.course-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.course-card:hover .course-photo img { transform: scale(1.06); }
.course-photo-badge {
  position: absolute; top: 16px; left: 16px; font-size: 9px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--dark); background: var(--gold); padding: 6px 12px; z-index: 2;
}
.course-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.course-n { font-size: 10px; letter-spacing: 0.2em; color: var(--txt-soft); }
.course-name { font-family: 'Raleway', sans-serif; font-size: 20px; font-weight: 700; color: var(--txt); line-height: 1.25; }
.course-oneliner { font-size: 12px; font-weight: 300; color: var(--txt-mid); line-height: 1.7; }
.course-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--line); padding-top: 14px; margin-top: auto;
}
.course-duration { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-soft); }
.course-price { font-family: 'Raleway', sans-serif; font-size: 19px; color: var(--brown); }
.course-details { border-top: 1px solid var(--line); padding-top: 12px; }
.course-details summary {
  cursor: pointer; font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brown); list-style: none; display: flex; align-items: center; gap: 8px;
}
.course-details summary::-webkit-details-marker { display: none; }
.course-details summary::after { content: '+'; font-size: 15px; margin-left: auto; line-height: 1; }
.course-details[open] summary::after { content: '−'; }
.course-details-body { padding-top: 14px; font-size: 12px; color: var(--txt-mid); line-height: 1.85; }
.course-details-body ul { padding-left: 18px; margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.course-cta { margin-top: 4px; }

/* ══════════════════ PROMOCIONES — DESTACADA + FOTOS ══════════════════ */
.promo-featured { display: grid; grid-template-columns: 1.1fr 1fr; background: var(--dark); margin: 0 auto 2px; max-width: 1280px; }
.promo-featured-img { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.promo-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.promo-featured-body { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.promo-featured-title { font-family: 'Raleway', sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 600; color: var(--cream2); line-height: 1.15; }
.promo-featured-desc { font-size: 13px; font-weight: 300; color: rgba(240,235,226,0.55); line-height: 1.85; max-width: 440px; }
.promo-featured .promo-prices .promo-price-old { color: rgba(240,235,226,0.4); }
.promo-featured .promo-prices .promo-price-new { color: var(--gold); }
.promo-featured-valid { font-size: 10px; color: rgba(240,235,226,0.35); letter-spacing: 0.06em; margin-top: 6px; }

.promo-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); max-width: 1280px; margin: 0 auto; }
.promo-photo-card { background: var(--cream); display: flex; flex-direction: column; }
.promo-photo { aspect-ratio: 16/9; overflow: hidden; }
.promo-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.promo-photo-card:hover .promo-photo img { transform: scale(1.06); }
.promo-photo-card .promo-tag { margin: 24px 28px 0; }
.promo-photo-card .promo-title { margin: 12px 28px 0; }
.promo-photo-card .promo-desc { margin: 0 28px; }
.promo-photo-card .promo-prices { margin: 0 28px; }
.promo-photo-card .btn-outline-dark { margin: 0 28px; align-self: flex-start; }
.promo-photo-card .promo-valid { margin: 16px 28px 26px; }

/* ══════════════════ PANEL DE EDICIÓN (?edit) ══════════════════ */
#osed-btn {
  position: fixed; bottom: 90px; right: 20px; z-index: 9998;
  background: var(--dark); color: var(--gold); border: none;
  font-family: 'Raleway', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 13px 20px;
  cursor: pointer; box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
#osed-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: 320px; z-index: 9999;
  background: #1c1814; color: var(--cream2); overflow-y: auto;
  transform: translateX(100%); transition: transform 0.25s ease;
  font-family: 'Raleway', sans-serif;
}
#osed-panel.open { transform: translateX(0); }
.osed-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; position: sticky; top: 0; background: #1c1814;
  border-bottom: 1px solid rgba(240,235,226,0.1); z-index: 1;
}
.osed-title { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
.osed-close { background: none; border: none; color: rgba(240,235,226,0.5); font-size: 18px; cursor: pointer; }
.osed-note {
  margin: 16px 20px; padding: 12px 14px; background: rgba(211,184,150,0.1);
  border-left: 2px solid var(--gold); font-size: 11px; line-height: 1.6; color: rgba(240,235,226,0.75);
}
.osed-section {
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); padding: 18px 20px 8px; border-top: 1px solid rgba(240,235,226,0.08); margin-top: 6px;
}
.osed-row { padding: 6px 20px; }
.osed-toggle { display: flex; align-items: center; gap: 10px; font-size: 12px; cursor: pointer; }
.osed-hint { font-size: 10px; color: rgba(240,235,226,0.4); margin-top: 8px; line-height: 1.6; }
.osed-color-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 20px; font-size: 11px; color: rgba(240,235,226,0.75);
}
.osed-color-row input[type="color"] { width: 34px; height: 24px; border: 1px solid rgba(240,235,226,0.15); background: none; cursor: pointer; }
.osed-action {
  display: block; width: 100%; margin-bottom: 8px; background: rgba(240,235,226,0.06);
  border: 1px solid rgba(240,235,226,0.15); color: var(--cream2);
  font-family: 'Raleway', sans-serif; font-size: 10px; font-weight: 500; letter-spacing: 0.08em;
  padding: 12px 14px; cursor: pointer; text-align: left;
}
.osed-action:hover { background: rgba(240,235,226,0.12); }
.osed-action-danger { color: #d98a6f; border-color: rgba(217,138,111,0.3); }
.osed-msg { font-size: 10px; color: var(--gold); opacity: 0; transition: opacity 0.2s; height: 14px; }
.osed-msg.show { opacity: 1; }

body.osed-editing .osed-editable {
  outline: 1px dashed var(--gold); outline-offset: 2px; cursor: text;
}
body.osed-editing .osed-editable:focus { outline: 2px solid var(--gold); background: rgba(211,184,150,0.08); }

/* ══════════════════ WHATSAPP FLOTANTE ══════════════════ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 400;
  width: 52px; height: 52px; border-radius: 50%; background: #1a1612;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.wa-float svg { width: 24px; height: 24px; fill: var(--gold); }

/* ══════════════════ ANIMACIONES ══════════════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ══════════════════ MOBILE (mobile-first overrides, breakpoint 900/768) ══════════════════ */
@media (max-width: 900px) {
  nav#main-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }

  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--linew); }
  .pillar:last-child { border-bottom: none; }

  .statement { grid-template-columns: 1fr; gap: 36px; padding: 64px 24px; }
  .statement-img-accent { width: 84px; height: 84px; }
  .statement-stats { gap: 0; }

  .services-section { padding: 60px 24px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

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

  .texture-break { height: 300px; }

  .reviews-section { padding: 60px 24px; }
  .reviews-grid { grid-template-columns: 1fr; }

  .booking-section { grid-template-columns: 1fr; padding: 60px 24px; gap: 32px; }
  .booking-img { display: none; }

  .promo-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { padding: 20px 24px 60px; }
  .contact-map { min-height: 320px; }

  footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Footer simplificado en móvil: solo lo esencial (la lista completa se
     queda solo en escritorio, ya que estos enlaces también están en el
     menú principal). */
  .footer-top > .footer-col:nth-child(2) { display: none; } /* Servicios */
  .footer-top > .footer-col:nth-child(3) ul li:nth-child(1),
  .footer-top > .footer-col:nth-child(3) ul li:nth-child(2),
  .footer-top > .footer-col:nth-child(3) ul li:nth-child(3),
  .footer-top > .footer-col:nth-child(3) ul li:nth-child(6) { display: none; } /* Centro: deja Contacto, Reservar cita, Gestionar mi reserva */
  .footer-top > .footer-col:nth-child(4) ul li:nth-child(2),
  .footer-top > .footer-col:nth-child(4) ul li:nth-child(4) { display: none; } /* Contacto: deja teléfono y WhatsApp */

  .page-hero { padding: 108px 24px 44px; }

  /* HERO con foto */
  .hero { min-height: 480px; }
  .hero-content { padding: 0 24px 44px; }
  .hero-title { font-size: clamp(36px, 11vw, 54px); }
  .hero-booking-card { margin: 0 16px 20px; padding: 18px 18px; flex-direction: column; align-items: stretch; }
  .hero-booking-actions { width: 100%; }
  .btn-booking-sm { flex: 1; text-align: center; }

  /* ACORDEÓN */
  .intro { padding: 36px 24px 0; gap: 16px; }
  .intro-text { font-size: 14px !important; line-height: 1.7; }
  .services { padding: 30px 0 60px; }
  .svc-head { padding: 16px 20px !important; grid-template-columns: 36px 1fr auto !important; gap: 10px !important; }
  .svc-name { font-size: 13px !important; }
  .svc-sub { font-size: 9px !important; }
  .svc-desde-price { font-size: 18px !important; }
  .svc-inner { padding: 24px 20px 28px !important; }

  .svc-two-col { grid-template-columns: 1fr; gap: 30px; }

  .ptable { display: block; width: 100%; }
  .ptable thead { display: none; }
  .ptable tbody { display: block; width: 100%; }
  .ptable tbody tr { display: flex; flex-direction: column; padding: 12px 0; border-bottom: 1px solid var(--line); gap: 4px; }
  .ptable tbody tr:last-child { border-bottom: none; }
  .ptable tbody td { display: block !important; border: none !important; padding: 0 !important; text-align: left !important; font-size: 12px; }
  .ptable tbody td:not(:first-child) { text-align: left !important; font-size: 13px; font-weight: 500; color: var(--txt) !important; }
  .ptable[data-cols="3"] tbody tr { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 0 12px; padding: 11px 0; }
  .ptable[data-cols="3"] tbody td { display: block !important; padding: 0 !important; }
  .ptable[data-cols="2"] tbody tr { display: flex; flex-direction: row; justify-content: space-between; align-items: flex-start; padding: 11px 0; gap: 8px; }
  .ptable[data-cols="2"] tbody td:first-child { flex: 1; font-size: 12px; }
  .ptable[data-cols="2"] tbody td:last-child { font-size: 12px; font-weight: 500; text-align: right !important; white-space: nowrap; flex-shrink: 0; }

  .svc-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .svc-btn { text-align: center; }

  /* PANEL DE EDICIÓN */
  #osed-panel { width: 100%; }

  /* RESERVA — tira */
  .reserve-strip-inner { padding: 14px 20px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .reserve-strip-actions { width: 100%; }
  .reserve-strip-actions a { flex: 1; text-align: center; }

  /* TILES SERVICIOS */
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .tile:nth-child(3n) .tile-info { border-right: 1px solid rgba(240,235,226,0.12); }
  .tile:nth-child(2n) .tile-info { border-right: none; }
  .tile-name { font-size: 15px !important; }
  .tile-desc { display: none; }
  .tile-info { padding: 14px 16px !important; gap: 8px !important; }
  .tile-btn { font-size: 10px !important; }

  /* CURSOS */
  .course-grid { grid-template-columns: 1fr; }

  /* PROMOCIONES */
  .promo-featured { grid-template-columns: 1fr; }
  .promo-photo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .booking-options { flex-direction: column; }
  .stat-n { font-size: 30px; }
}
