/* === ESTILOS GLOBALES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  height: 100%;
}

body {
  background: #fffdf9;
  color: #333;
  transition: background .6s ease, color .6s ease;
  scroll-behavior: smooth;
}

#check__menu {
  display: none;
}

/* ======== BANNER ========== */
.banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 4rem 1rem;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/img/banner.png') no-repeat center center;
  background-size: 60%;
  opacity: .30;
  z-index: 0;
  transition: opacity .4s ease, filter .4s ease;
}

.overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  padding: 2.2rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.3s ease, transform 1.3s ease;
}

.overlay.visible {
  opacity: 1;
  transform: translateY(0);
}

.overlay h1 {
  font-size: 3rem;
  color: #f6d66a;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(246,214,106,.25);
}

.overlay p {
  font-size: 1.2rem;
  margin: .6rem 0 1rem;
  color: #fdf6d8;
}

.btn {
  text-decoration: none;
  background: linear-gradient(to right, #f6d66a, #fff3c0);
  color: #000;
  padding: .85rem 1.6rem;
  border-radius: 25px;
  font-weight: 700;
  display: inline-block;
  transition: transform .25s ease, background .25s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.04);
  background: #fff;
}

/* flor decorativa */
.loto {
  width: 120px;
  margin-bottom: 1rem;
  animation: brillar 4s infinite alternate;
}

@keyframes brillar {
  0% { filter: drop-shadow(0 0 6px #f6d66a); }
  100% { filter: drop-shadow(0 0 18px #fff4b2); }
}

/* === BOTÓN MODO OSCURO === */
.modo-btn {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 9999;
  background: rgba(255,255,255,.95);
  color: #111;
  border: 1px solid #e6d79a;
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.modo-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

/* =========  MISIÓN / VISIÓN =========== */
.mv {
  padding: 60px 20px;
  width: 100%;
  text-align: center;
  background: #f9f6ef;
}

.mv h2 {
  margin-bottom: 2rem;
  color: #333;
  font-size: 2.2rem;
}

.mv-botones {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.mv-botones button {
  background: #f4d06f;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: .25s;
}

.mv-botones button:hover {
  transform: scale(1.05);
}

.mv-botones button.activo {
  background: #5c3722;
  color: #fff;
}

.mv-contenido {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.mv-img {
  width: 450px;
  height: 300px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
  box-shadow: 0 0 20px rgba(0,0,0,.25);
}

.mv-img.show {
  opacity: 1;
  transform: translateY(0);
}

.mv-texto {
  max-width: 520px;
  font-size: 19px;
  line-height: 1.5;
  color: #333;
  opacity: 0;
  transition: opacity .4s ease;
}

.mv-texto.show {
  opacity: 1;
}

/* clases de background para MV */
.mv0 { background-image: url("/img/Lugar.jpg"); }
.mv1 { background-image: url("/img/Entrada.jpg"); }
.mv2 { background-image: url("/img/foto1.jpg"); }

/* ============ GALERÍA ========= */
.galeria {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  background: #f9f6ef;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.galeria h2 {
  margin-bottom: 2rem;
  color: #333;
  font-size: 2.2rem;
  width: 100%;
}

.galeria-botones {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.galeria-botones button {
  background: #f4d06f;
  padding: 12px 26px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  transition: .25s;
}

.galeria-botones button:hover {
  transform: scale(1.05);
}

.galeria-botones button.activo {
  background: #5c3722;
  color: #fff;
}

.galeria-contenido {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.galeria-img {
  width: 900px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: 420px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
  opacity: 0;
  transition: opacity .35s ease;
  position: relative;
  z-index: 1;
}

.galeria-img.show {
  opacity: 1;
}

/* clases de background para la galería */
.i0 { background-image: url("/img/Habitaciones.jpg"); }
.i1 { background-image: url("/img/Habitacion.jpg"); }
.i2 { background-image: url("/img/instalacion3.jpg"); }

/* flechas */
.flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #6e6e6e;
  color: #f6d66a;
  border: 2px solid #f6d66a;
  width: 55px;
  height: 55px;
  border-radius: 12px;
  font-size: 29px;
  cursor: pointer;
  transition: .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.flecha.izq {
  left: 12px;
}

.flecha.der {
  right: 12px;
}

.flecha:hover {
  background: #f6d66a;
  color: #000;
  transform: translateY(-50%) scale(1.1);
}

.galeria-texto {
  margin-top: 20px;
  font-size: 20px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
  text-align: center;
  width: 100%;
}

/* ==========  GALERÍA - SAUNA =========== */
.galeria-sauna {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 30px auto 0;
}

.galeria-sauna .sauna-img-contenedor {
  width: 420px;
  height: 620px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}

.galeria-sauna .galeria-img-sauna {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
}

/* Texto estilo “Valores” */
.galeria-sauna .galeria-texto-sauna {
  max-width: 680px;
  padding: 20px;
  font-size: 22px;
  line-height: 1.7;
  text-align: justify;
}


.galeria-img-sauna.show {
  opacity: 1;
}

.s0 { background-image: url("/img/sauna4.jpg"); }
.s1 { background-image: url("/img/Sauna3.jpg"); }
.s2 { background-image: url("/img/sauna2.jpg"); }
.s3 { background-image: url("/img/Turco5.jpg"); }
.s4 { background-image: url("/img/Turco.jpg"); }
.s5 { background-image: url("/img/Turco3.jpg"); }

.sauna-botones {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.flecha-sauna {
  background: #6e6e6e;
  color: #f6d66a;
  border: 2px solid #f6d66a;
  width: 55px;
  height: 55px;
  border-radius: 12px;
  font-size: 29px;
  cursor: pointer;
  transition: .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.flecha-sauna:hover {
  background: #f6d66a;
  transform: scale(1.1);
  color: #000;
}

/* ==== GALERÍA - MASAJES ===== */
.galeria-masajes {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 30px auto 0;
}

.galeria-masajes .masaje-img-contenedor {
  order: 1;
  width: 420px;
  height: 620px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}

.galeria-masajes .galeria-img-masaje {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
}

/* Texto estilo “Valores” */
.galeria-masajes .galeria-texto-masaje {
  max-width: 680px;
  padding: 20px;
  font-size: 22px;
  line-height: 1.8;
  text-align: justify;
}

.galeria-img-masaje.show {
  opacity: 1;
}

.m0 { background-image: url("/img/AmigosNovia.jpg"); }
.m1 { background-image: url("/img/FelizDia.jpg"); }
.m2 { background-image: url("/img/Cumpleaños.jpg"); }
.m3 { background-image: url("/img/Love.jpg"); }

.masaje-botones {
  order: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 15px;
}


.masaje-texto-contenedor {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  justify-content: center;
}

.galeria-texto-masaje {
  order: 3;
  font-size: 20px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
  text-align: justify;
  letter-spacing: normal;
  word-spacing: normal;
}


.flecha-masaje {
  background: #6e6e6e;
  color: #f6d66a;
  border: 2px solid #f6d66a;
  width: 55px;
  height: 55px;
  border-radius: 12px;
  font-size: 29px;
  cursor: pointer;
  transition: .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.flecha-masaje:hover {
  background: #f6d66a;
  transform: scale(1.1);
  color: #000;
}
/* ======== CITAS ========= */
.citas {
  padding: 3rem 1rem;
  background: #f9f6ef;
  text-align: center;
}

.citas h2 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 2.2rem;
}

.citas p {
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1.1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  max-width: 420px;
  margin: 0 auto;
}

input,
button {
  padding: .9rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

input {
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
}

input::placeholder {
  color: #999;
}

button {
  background: linear-gradient(to right, #f6d66a, #fff3c0);
  font-weight: 700;
  cursor: pointer;
  transition: transform .3s ease, background .3s ease;
  border: none;
  color: #000;
}

button:hover {
  transform: scale(1.03);
  background: #fff;
  border: 1px solid #f6d66a;
}

/* ======= MAPA ======= */
.ubicacion {
  padding: 3rem 1rem;
  text-align: center;
  background: linear-gradient(to bottom, #111, #1a1a1a);
  color: #f6d66a;
}

.ubicacion h2 {
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.mapa {
  width: 100%;
  max-width: 1000px;
  height: 420px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  border: 2px solid rgba(246,214,106,.12);
  background: #0f0f0f;
}

/* ======== WHATSAPP ============ */
footer {
  padding: 1rem;
  text-align: center;
  background: #000;
  color: #f6d66a;
  font-size: 1rem;
}

.whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 9999;
  box-shadow: 0 8px 22px rgba(0,0,0,.2);
  transition: transform .2s ease;
  text-decoration: none;
}

.whatsapp:hover {
  transform: scale(1.06);
}

/* ====== MENSAJES FLOTANTES ========= */
.mensaje {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-30px);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  transition: all .35s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.mensaje.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.mensaje.exito {
  background: #d1f8e4;
  color: #155724;
  border-left: 4px solid #28a745;
}

.mensaje.error {
  background: #fde2e2;
  color: #7a1212;
  border-left: 4px solid #e03b3b;
}

.mensaje .icono {
  font-size: 1.4rem;
  animation: pop .4s ease;
}

@keyframes pop {
  0% { transform: scale(.4); opacity: 0; }
  60% { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); }
}

/* ======= MENÚ PRINCIPAL ========= */
.Container__menu {
  width: 100%;
  height: 70px;
  background: #f6d66a;
  padding: 0 20px;
}

.menu {
  max-width: 1200px;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
}

nav {
  height: 100%;
  width: 100%;
}

nav > ul {
  height: 100%;
  display: flex;
  align-items: center;
}

nav ul li {
  list-style: none;
  position: relative;
  height: 100%;
}

nav > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 0 20px;
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  transition: all .3s ease;
}

nav > ul > li > a:hover {
  transform: scale(1.1);
  background: #5c3d2e;
  box-shadow: 0 0 10px rgba(0,0,0,.5);
  color: #fff;
}

nav > ul > li:first-child > a {
 
  background-size: 80px;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px 40px;
}

/* submenú */
nav ul li ul {
  width: 300px;
  display: flex;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 70px;
  left: -5px;
  padding: 14px 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 10px rgba(0,0,0,.5);
  z-index: 10;
  transition: all .3s ease;
}

nav ul li:hover ul {
  visibility: visible;
  opacity: 1;
}

nav ul li ul::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #fff;
  position: absolute;
  top: -12px;
  left: 20px;
}

nav ul li ul li a {
  display: block;
  color: #000;
  padding: 12px 14px;
  font-size: 14px;
  text-decoration: none;
  transition: all .3s ease;
}

nav ul li ul li a:hover {
  background: #f6d66a;
  color: #000;
  transform: scale(1.05);
  padding-left: 30px;
}

/* === MENÚ RESPONSIVE === */
.icon__menu {
  display: none;
  font-size: 32px;
  cursor: pointer;
  color: #000;
  margin-left: auto;
  padding: 10px 15px;
  z-index: 10000;
}

@media (max-width: 900px) {
  .icon__menu { display: block; }

  nav ul {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #f6d66a;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all .3s ease;
  }

  #check__menu:checked ~ nav ul {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav > ul > li {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
  }

  nav > ul > li > a {
    width: 100%;
    padding: 15px 0;
  }

  nav ul li ul {
    position: static;
    width: 100%;
    box-shadow: none;
    background: #fff3d1;
    display: none;
  }

  nav ul li:active ul {
    display: block;
  }

  nav ul li ul li a {
    color: #000;
  }

  nav ul li ul li a:hover {
    background: #000;
    color: #f6d66a;
    padding-left: 0;
  }
}

/* ===== ANIMACIONES ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ======  RESPONSIVE EXTRA ======= */
@media (max-width: 768px) {
  .overlay h1 { font-size: 2.2rem; }
  .overlay p { font-size: 1rem; }

  .modo-btn {
    top: 12px;
    right: 12px;
    padding: 8px 10px;
    font-size: .95rem;
  }

  .galeria-img { height: 280px; }
  .galeria-img-sauna { height: 280px; }
  .galeria-img-masaje { height: 280px; }

  .flecha,
  .flecha-sauna,
  .flecha-masaje {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }

  .flecha.izq { left: 6px; }
  .flecha.der { right: 6px; }

  .galeria-sauna,
  .galeria-masajes {
    flex-direction: column;
    gap: 20px;
  }

  .sauna-texto-contenedor,
  .sauna-img-contenedor,
  .masaje-img-contenedor,
  .masaje-texto-contenedor {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .galeria-img,
  .galeria-img-sauna,
  .galeria-img-masaje {
    height: 200px;
  }

  .galeria-texto-sauna,
  .galeria-texto-masaje {
    font-size: 16px;
  }

  .flecha,
  .flecha-sauna,
  .flecha-masaje {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .mapa { height: 320px; }
}

body.oscuro {
  background: #111;
  color: #f3e7da;
}

/* Banner */
body.oscuro .banner {
  background-color: #000;
}

body.oscuro .banner h1,
body.oscuro .banner p {
  color: #f3e7da;
}

/* Botón del modo oscuro */
body.oscuro #modoOscuro {
  background: #f3e7da;
  color: #111;
}

/* Secciones */
body.oscuro section {
  background: #1a1a1a;
  color: #f3e7da;
}

/* Textos */
body.oscuro p,
body.oscuro h2,
body.oscuro h3,
body.oscuro .mv-texto {
  color: #f3e7da;
}

/* Footer */
body.oscuro footer {
  background: #000;
  color: #f3e7da;
}

/* Galería botones */
body.oscuro .galeria-botones button.activo {
  background-color: #d8be8f;
  color: #111;
}

body.oscuro .galeria-botones button {
  background-color: #2a2a2a;
  color: #f3e7da;
}

/* Botones generales */
body.oscuro button {
  background: #2b2b2b;
  color: #f3e7da;
}

body.oscuro button:hover {
  background: #d8be8f;
  color: #111;
}


body.oscuro .mv-contenido.is-valores .mv-texto {
  color: #f3e7da;
}

/* responsive: en pantallas pequeñas volver a apilar */
@media (max-width: 768px) {
  .mv-contenido.is-valores {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .mv-contenido.is-valores .mv-img {
    width: 100%;
    height: 320px;
    background-position: center;
  }
  .mv-contenido.is-valores .mv-texto {
    text-align: center;
    max-width: 100%;
    padding: 0 16px;
  }
}

.mv-contenido.is-valores .img-vertical {
  width: 420px;
  height: 620px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}

.mv-contenido.is-valores .mv-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  box-shadow: none;
}

.mv-contenido.is-valores .mv-texto {
  max-width: 680px;
  padding: 30px;
  text-align: left;
  font-size: 25px;
  line-height: 1.8;
}

/* MODO OSCURO SOLO PARA VALORES */
body.oscuro .mv-contenido.is-valores .mv-texto {
  color: #f3e7da;
}


