/* =========================
   RESET Y BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0b0b0d;
  --bg-soft: #121216;
  --surface: #17171c;
  --surface-2: #1d1d23;
  --text: #f5f2eb;
  --text-soft: #c7c0b3;
  --gold: #c7a86b;
  --gold-dark: #9c7a3f;
  --gold-light: #e1c48b;
  --border: rgba(199, 168, 107, 0.18);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 14px;
  --transition: all 0.28s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3 {
  font-family: 'Lora', serif;
  line-height: 1.2;
  color: #fff7ea;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

section {
  padding: 88px 0;
}

/* =========================
   HEADINGS / TAGS
========================= */
.section-tag,
.seccion-titulo {
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(199, 168, 107, 0.08);
  margin-bottom: 16px;
  font-size: 0.92rem;
  font-weight: 600;
}

.section-head,
.sobre-nosotros .container,
.carta-masajes .container,
.masajistas-seccion .container,
.reserva .container {
  text-align: center;
}

.section-head h2,
.sobre-nosotros h2,
.carta-masajes h2,
.masajistas-seccion h2,
.reserva h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.section-head p,
.sobre-nosotros p,
.reserva p {
  color: var(--text-soft);
}

/* =========================
   BOTONES
========================= */
.btn,
button,
.hero-buttons a,
.masaje button,
.btn-carrito,
.btn-enviar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  line-height: 1.2;
}

.btn-primary,
.masaje button[data-masaje],
.btn-enviar,
.btn-carrito {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #111;
  box-shadow: 0 10px 25px rgba(199, 168, 107, 0.22);
}

.btn-primary:hover,
.masaje button[data-masaje]:hover,
.btn-enviar:hover,
.btn-carrito:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}

.btn-outline,
.masaje button:not([data-masaje]) {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border);
}

.btn-outline:hover,
.masaje button:not([data-masaje]):hover {
  background: rgba(199, 168, 107, 0.09);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-image: url("imagenes/Imagen de WhatsApp 2025-08-30 a las 16.20.41_d2232db1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.82), rgba(0,0,0,0.58));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}

.logo-hero {
  max-width: 130px;
  margin: 0 auto 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  margin-bottom: 16px;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 26px;
  color: #ece2cf;
  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

/* =========================
   SOBRE NOSOTROS
========================= */
.sobre-nosotros {
  background: linear-gradient(180deg, #111115 0%, #0b0b0d 100%);
}

.sobre-nosotros .container {
  max-width: 860px;
}

.sobre-nosotros p {
  max-width: 760px;
  margin: 0 auto 16px;
}

.sobre-nosotros ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
}

.sobre-nosotros ul li {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text-soft);
}

/* =========================
   MASAJES
========================= */
.carta-masajes {
  background: var(--bg-soft);
}

.tabla-masajes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 34px;
}

.masaje {
  background: linear-gradient(180deg, var(--surface), #111115);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: var(--transition);
}

.masaje:hover {
  transform: translateY(-6px);
}

.masaje img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.masaje h3 {
  font-size: 1.45rem;
  color: var(--gold-light);
  padding: 18px 20px 8px;
}

.masaje p {
  padding: 0 20px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.masaje p:first-of-type {
  color: var(--gold);
  font-weight: 700;
}

.masaje button {
  margin: 0 20px 12px;
}

.masaje button:last-child {
  margin-bottom: 22px;
}

.masaje .button-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px 22px;
}

.masaje .button-group button {
  margin: 0;
}

/* =========================
   MASAJISTAS
========================= */
.masajistas-seccion {
  background: #0e0e12;
}

.grid-masajistas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
  margin-top: 34px;
}

.masajista-card {
  background: linear-gradient(180deg, #1a1a20, #101014);
  border: 1px solid rgba(199, 168, 107, 0.18);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  transition: all 0.28s ease;
}

.masajista-card:hover {
  transform: translateY(-6px);
}

.masajista-principal {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.miniaturas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px 14px 0;
}

.miniaturas img {
  width: 100%;
  height: 95px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid rgba(199, 168, 107, 0.18);
  transition: all 0.25s ease;
}

.miniaturas img:hover {
  transform: scale(1.04);
  border-color: #c7a86b;
}

.masajista-info {
  padding: 20px;
  text-align: left;
}

.masajista-info h3 {
  font-size: 1.45rem;
  color: #e1c48b;
  margin-bottom: 10px;
}

.masajista-info p {
  color: #c7c0b3;
  margin-bottom: 16px;
  line-height: 1.6;
}

.masajista-info .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .masajista-principal {
    height: 280px;
  }

  .miniaturas img {
    height: 80px;
  }
}

/* =========================
   RESERVA
========================= */
.reserva {
  background: linear-gradient(180deg, #101014 0%, #0a0a0c 100%);
}

.reserva .container {
  max-width: 780px;
}

.texto-reserva {
  max-width: 680px;
  margin: 0 auto 26px;
}

/* =========================
   MODALES GENERALES
========================= */
.modal,
.modal-nav,
.modal-galeria {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 18px;
}

.modal.activo,
.modal-nav.activo,
.modal-galeria.activo {
  display: flex;
}

.modal-panel,
.modal-contenido,
.contenido-carrito {
  width: min(560px, 100%);
  background: linear-gradient(180deg, #1a1a20 0%, #101014 100%);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
  position: relative;
}

.modal-close,
.cerrar-modal,
.cerrar {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--gold-light);
  font-size: 1.6rem;
  cursor: pointer;
}

.detalle-panel h3,
.contenido-carrito h3,
.modal-panel h3 {
  font-size: 1.7rem;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.detalle-panel p,
.modal-panel p {
  color: var(--text-soft);
}

/* =========================
   CARRITO
========================= */
.seleccion-carrito {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.seleccion-carrito p {
  margin: 0;
}

.seleccion-carrito strong {
  color: var(--gold-light);
}

#fechaCarrito,
#horaCarrito,
#comentarioCarrito,
textarea {
  width: 100%;
  padding: 14px;
  font-size: 0.96rem;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-family: inherit;
  color: var(--text);
  background: #0d0d11;
}

#comentarioCarrito,
textarea {
  resize: vertical;
  min-height: 110px;
}

.acciones-carrito {
  margin-top: 18px;
  text-align: center;
}

/* =========================
   MENÚ MÓVIL
========================= */
.modal-menu a {
  display: block;
  padding: 14px 16px;
  color: var(--gold-light);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.modal-menu a:hover {
  background: rgba(199, 168, 107, 0.08);
}

.btn-menu-movil,
.btn-carrito-flotante,
.floating-btn {
  position: fixed;
  right: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #111;
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,0.32);
  z-index: 1000;
}

.btn-menu-movil {
  bottom: 88px;
}

.btn-carrito-flotante {
  bottom: 18px;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #060608;
  color: #eadfc9;
  padding: 34px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer a {
  color: var(--gold-light);
  margin: 0 0.35rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .hero {
    min-height: 78vh;
    padding: 64px 18px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .logo-hero {
    max-width: 100px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-buttons a,
  .hero-buttons .btn,
  .masaje button,
  .btn-carrito,
  .btn-enviar {
    width: 100%;
  }

  .tabla-masajes,
  .grid-masajistas {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .masaje img {
    height: 220px;
  }

  .masajista-card img,
  .masajista-principal {
    height: 280px;
  }

  .miniaturas {
    grid-template-columns: repeat(3, 1fr);
  }

  .modal-panel,
  .modal-contenido,
  .contenido-carrito {
    padding: 22px 16px;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 94%;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .masaje h3,
  .masajista-info h3,
  .masajista-nombre {
    font-size: 1.25rem;
  }

  .btn-menu-movil,
  .btn-carrito-flotante,
  .floating-btn {
    width: 52px;
    height: 52px;
  }

  .btn-menu-movil {
    bottom: 80px;
  }

  .btn-carrito-flotante {
    bottom: 14px;
  }
}
/* ===== MODAL PREMIUM ===== */
.premium-modal {
  max-width: 520px;
  width: 90%;
  max-height: 85vh;
  background: linear-gradient(180deg, #111, #0a0a0a);
  border-radius: 18px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  animation: fadeInModal 0.3s ease;
  border: 1px solid rgba(199,168,107,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

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

.modal-header {
  text-align: center;
  margin-bottom: 15px;
}

.modal-header h3 {
  color: #e1c48b;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.linea-dorada {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c7a86b, #e1c48b);
  margin: 0 auto;
  border-radius: 10px;
}

/* CONTENIDO SCROLL */
.modal-body {
  overflow-y: auto;
  max-height: 45vh;
  padding-right: 5px;
}

.modal-body p {
  color: #d6d1c7;
  line-height: 1.7;
  font-size: 0.95rem;
  text-align: justify;
}

/* FOOTER */
.modal-footer {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.modal-footer .btn {
  flex: 1;
}

/* SCROLL PERSONALIZADO */
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: #c7a86b;
  border-radius: 10px;
}