@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== RESETEO GENERAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  overflow-x: hidden;
  padding-top: 110px;
}

/* ===== ENCABEZADO ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 110px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition: transform 0.3s ease;
  z-index: 1000;
}

header.oculto {
  transform: translateY(-100%);
}

/* ===== BARRA DE NAVEGACIÓN ===== */
.barra-navegacion {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.logo {
  height: 110px;
  transition: transform 0.25s ease;
  will-change: transform;
}

/* ===== MENÚ PRINCIPAL ===== */
.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}

.menu a {
  text-decoration: none;
  color: #6b4e32;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 20px;
  transition: 0.3s;
}

.menu a:hover,
.menu a.activo {
  background-color: #6b4e32;
  color: #fff;
}

/* ===== SUBMENÚ ===== */
.submenu {
  position: relative;
}

.submenu-contenido {
  display: none;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.97);
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  top: 100%;
  left: 0;
  min-width: 180px;
  z-index: 9999;
}

.submenu:hover .submenu-contenido {
  display: block;
}

.submenu-contenido a {
  display: block;
  padding: 10px;
  color: #6b4e32;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  text-decoration: none;
}

.submenu-contenido a:hover {
  background-color: #a97c50;
  color: #fff;
}

/* ===== BOTÓN HAMBURGUESA DEL NAVBAR ===== */
.btn-hamburguesa-nav {
  display: none;
  background: none;
  border: 2px solid #6b4e32;
  border-radius: 8px;
  font-size: 26px;
  color: #6b4e32;
  cursor: pointer;
  padding: 4px 10px;
  line-height: 1;
  flex-shrink: 0;
}

/* ===== REDES SOCIALES (fijas en pantalla) ===== */
.redes {
  position: fixed;
  right: 18px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.redes a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.redes a img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: transparent !important;
  box-shadow: none !important;
}

.redes a img:hover {
  transform: scale(1.15) translateX(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.redes a img:active {
  transform: scale(1.05) translateX(-6px);
}

.redes a {
  animation: redesFadeIn 0.6s ease forwards;
}

@keyframes redesFadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* === POPUP WHATSAPP === */
.wa-box {
  position: fixed;
  right: 90px;
  bottom: 140px;
  width: 300px;
  background: #f4f6f8;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: all .35s ease;
  z-index: 9999;
}

.wa-box.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.wa-box, .wa-box * {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.wa-header {
  background: #25d366;
  color: white;
  padding: 14px 16px;
  border-radius: 16px 16px 0 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.wa-close { cursor: pointer; font-size: 20px; }
.wa-content { padding: 16px; }

.wa-bubble {
  background: white;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
}

.wa-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 12px;
  border-radius: 25px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.wa-button img { width: 18px; }

/* ===== BANNER CON VIDEO ===== */
.banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.video-fondo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.texto-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  box-sizing: border-box;
  word-break: break-word;
}

.texto-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.texto-banner p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 300;
}

.boton-banner {
  background-color: #a1744e;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.boton-banner:hover { background-color: #c18a5d; }

/* ===== SECCIÓN BIENVENIDA ===== */
.bienvenida {
  background-color: #f3eee7;
  padding: 60px 10%;
  text-align: center;
}

.contenido-bienvenida {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.contenido-bienvenida img {
  width: 350px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.texto-bienvenida {
  max-width: 500px;
  color: #4e3620;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.texto-bienvenida h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #6b4e32;
  margin-bottom: 15px;
}

.texto-bienvenida p {
  line-height: 1.5;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

/* el <b> dentro del párrafo de bienvenida */
.texto-bienvenida p b {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.boton-bienvenida {
  background-color: #a1744e;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.boton-bienvenida:hover { background-color: #c18a5d; }

/* ===== SECCIÓN EXPERIENCIAS ===== */
.experiencias {
  background: #f3eee7;
  text-align: center;
  padding: 80px 10px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.experiencias h2 {
  font-family: 'Playfair Display', serif;
  color: #4a2e1a;
  font-size: 2.5em;
  letter-spacing: 2px;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.carrusel {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 420px;
  margin: auto;
  perspective: 1000px;
}

.slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 100%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  transition: all 1.5s ease;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  animation: respiracion 8s ease-in-out infinite;
}

@keyframes respiracion {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.slide.activo {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 5;
}

.slide.anterior {
  transform: translate(-125%, -50%) scale(0.6) rotateY(20deg);
  opacity: 0.6;
  z-index: 3;
  filter: blur(2px);
}

.slide.siguiente {
  transform: translate(25%, -50%) scale(0.6) rotateY(-20deg);
  opacity: 0.6;
  z-index: 3;
  filter: blur(2px);
}

.texto-nube {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 40px;
  border-radius: 60px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #4a2e1a;
  font-weight: 600;
  opacity: 0;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.slide.activo .texto-nube {
  opacity: 1;
  animation: nubeEntrada 1s ease forwards;
}

@keyframes nubeEntrada {
  0%   { opacity: 0; transform: translateX(-50%) scale(0.6); }
  100% { opacity: 1; transform: translateX(-50%) scale(1); }
}

.flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  font-size: 40px;
  color: #4a2e1a;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  cursor: pointer;
  transition: 0.4s;
  z-index: 10;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.flecha:hover { background: #4a2e1a; color: #fff; }
.flecha.anterior { left: 15px; }
.flecha.siguiente { right: 15px; }

/* ===== PROMOCIONES FLIP ===== */
.promos-flip-section {
  padding: 80px 0;
  text-align: center;
  background: #f3eee7;
}

.promos-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 600;
  color: #222;
}

.promos-flip-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.flip-card {
  width: 260px;
  height: 350px;
  perspective: 1000px;
  cursor: pointer;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.flip-card:hover { transform: translateY(-8px); }

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.flip-card-front img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0; left: 0;
  z-index: -2;
}

.success {
  background: #d4edda;
  color: #155724;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.flip-card-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
  z-index: -1;
}

.flip-card-front h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.promo-badge {
  position: absolute;
  top: 15px; right: 15px;
  background: #ff4444;
  padding: 6px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  border-radius: 20px;
  font-weight: 700;
  color: white;
}

.flip-card-back {
  background: linear-gradient(145deg, #3e2723, #6d4c41);
  color: #fdfaf6;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 25px;
  gap: 14px;
  border-radius: 20px;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.25);
}

.flip-card-back h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.flip-card-back p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.95;
  max-height: 100px;
  overflow-y: auto;
  padding-right: 5px;
}

.flip-card-back button {
  background: linear-gradient(135deg, #d7ccc8, #bcaaa4);
  color: #3e2723;
  border: none;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.flip-card-back button:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 30px 30px 40px 30px;
  width: 60%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 15px;
  animation: slideUp 0.4s ease;
  font-family: 'Poppins', sans-serif;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-content img,
#modalImagen {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.modal-content img:hover,
#modalImagen:hover { transform: scale(1.03); }

.modal-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin: 10px 0 5px 0;
  color: #4e342e;
}

#modalPrecio {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #6d4c41;
  margin: 10px 0;
}

.modal-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin: 10px 0;
  line-height: 1.6;
  color: #5d4037;
}

.btn-reservar {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #5d4037;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-reservar:hover {
  background: #3e2723;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.close {
  float: right;
  font-size: 25px;
  cursor: pointer;
  color: #4e342e;
  transition: 0.3s ease;
}

.close:hover { transform: scale(1.2); }

/* ===== FADE IN SCROLL ===== */
.fade-in {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== UBICACIÓN ===== */
.ubicacion {
  background-color: #f3eee7;
  text-align: center;
  padding: 50px 10px;
}

.ubicacion h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #6b4e32;
  margin-bottom: 10px;
  font-size: 28px;
}

.ubicacion p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #4e3620;
  margin-bottom: 20px;
}

.mapa iframe {
  width: 90%;
  max-width: 900px;
  height: 400px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ===== TÍTULO OPINIONES ===== */
.titulo-opiniones {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 10px;
  position: relative;
  padding: 0 20px;
}

.titulo-opiniones h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 600;
  color: #6b4e32;
}

.titulo-opiniones::after {
  content: "";
  width: 90px;
  height: 3px;
  background: #c6a75e;
  display: block;
  margin: 12px auto 0;
  border-radius: 5px;
}

/* ===== OPINIONES: contenedor principal ===== */
.opiniones-contenedor {
  background: #d9d2c7;
  padding: 40px 60px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  font-family: 'Poppins', sans-serif;
}

/* ===== LOGIN CARD ===== */
.login-card {
  background: linear-gradient(145deg, #fdfbf8, #f3eee7);
  padding: 40px 35px;
  width: 300px;
  min-width: 300px;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.06), 0 10px 25px rgba(0,0,0,0.04);
  text-align: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.login-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.08), 0 15px 35px rgba(0,0,0,0.05);
}

.login-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #5a3e2b;
  margin-bottom: 10px;
}

.login-card p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #7a6a5c;
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-login-opinion {
  background: linear-gradient(135deg, #7a5230, #5a3e2b);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.btn-login-opinion:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(122,82,48,0.3);
}

/* ===== FORMULARIO OPINIÓN ===== */
.form-comentario {
  background: #fdfbf8;
  padding: 35px 30px;
  width: 300px;
  min-width: 300px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.form-comentario:hover { transform: translateY(-5px); }

.form-comentario h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  text-align: center;
  color: #5a3e2b;
  font-size: 18px;
}

.form-comentario textarea,
.form-comentario select {
  background: #f6f3ee;
  border-radius: 15px;
  border: 1px solid #e0d8cf;
  padding: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  transition: 0.3s;
  width: 100%;
}

.form-comentario textarea:focus,
.form-comentario select:focus {
  border-color: #b08d57;
  box-shadow: 0 0 0 3px rgba(176,141,87,0.15);
  outline: none;
}

.form-comentario button {
  background: #7a5230;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 25px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.form-comentario button:hover { background: #5a3e2b; transform: translateY(-3px); }

/* ===== CARRUSEL OPINIONES ===== */
.comentarios-carrusel {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  padding: 20px 60px;
}

.comentarios-track {
  display: flex;
  gap: 25px;
  transition: transform .7s cubic-bezier(.77,0,.18,1);
}

.card-comentario {
  min-width: 260px;
  max-width: 260px;
  background: linear-gradient(145deg, #ffffff, #f7f3ee);
  border-radius: 28px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08), 0 5px 15px rgba(0,0,0,0.04);
  transition: all .5s ease;
  position: relative;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}

.card-comentario::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.6), rgba(0,0,0,.02));
  opacity: .4;
}

.card-comentario:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 10px 30px rgba(0,0,0,0.08);
}

.card-comentario h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 20px;
  color: #5a3e2b;
}

.estrellas { color: #f2b705; font-size: 20px; margin-bottom: 15px; letter-spacing: 3px; }

.card-comentario p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #6b5a4a;
  line-height: 1.6;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(145deg, #ffffff, #e8e2db);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15), inset 0 2px 5px rgba(255,255,255,0.7);
  transition: all .3s ease;
  z-index: 10;
  color: #6b4e32;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.15);
  background: #6b4e32;
  color: white;
}

.prev { left: 5px; }
.next { right: 5px; }

/* ===== PIE DE PÁGINA ===== */
footer {
  background-color: #4e3620;
  color: #f5f0e1;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.footer-contenido { text-align: center; }

.footer-columna {
  display: inline-block;
  width: 22%;
  vertical-align: top;
  margin: 10px;
  text-align: left;
}

/* <b> dentro del footer */
.footer-columna p b {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.footer-columna h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #c89b3c;
  margin-bottom: 8px;
}

.footer-columna a  { color: #f5f0e1; text-decoration: none; }
.footer-columna a:hover { color: #c89b3c; }

.footer-final {
  text-align: center;
  border-top: 1px solid #c89b3c;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

/* ===== MENU USUARIO ===== */
.menu-usuario { position: relative; }

.hamburguesa {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #6b4e32;
}

.dropdown-usuario {
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  background: white;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  overflow: hidden;
  z-index: 2000;
  font-family: 'Poppins', sans-serif;
}

.dropdown-usuario a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: #6b4e32;
  font-weight: 600;
  transition: 0.2s;
}

.dropdown-usuario a:hover { background: #6b4e32; color: white; }
.dropdown-usuario.activo  { display: block; }


/* ================================================================
   RESPONSIVE — TABLET Y MÓVIL
   ================================================================ */

/* -------- TABLET / LAPTOP PEQUEÑO (≤ 1024px) -------- */
@media (max-width: 1024px) {

  header {
    height: 70px;
    padding: 0 20px;
  }

  body { padding-top: 70px; }

  .barra-navegacion {
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    gap: 0;
  }

  .logo { height: 54px; }

  .btn-hamburguesa-nav {
    display: flex;
    align-items: center;
  }

  nav.menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    padding: 6px 0 14px 0;
    z-index: 990;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    gap: 0;
  }

  nav.menu.abierto { display: flex; }

  nav.menu > a {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid #f0e8de;
  }

  nav.menu > a:hover,
  nav.menu > a.activo {
    background-color: #6b4e32;
    color: #fff;
    border-radius: 0;
  }

  nav.menu .submenu { width: 100%; }

  nav.menu .submenu > a {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid #f0e8de;
    color: #6b4e32;
    text-decoration: none;
  }

  nav.menu .submenu:hover .submenu-contenido { display: none; }
  nav.menu .submenu.activo .submenu-contenido { display: block; }

  nav.menu .submenu-contenido {
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: #faf6f1;
    min-width: 100%;
  }

  nav.menu .submenu-contenido a {
    padding: 12px 44px;
    border-bottom: 1px solid #ede6dc;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
  }

  nav.menu .redes { display: none; }

  .opiniones-contenedor { padding: 30px 30px; gap: 25px; }
  .comentarios-carrusel { padding: 20px 55px; }

  .footer-columna { width: 45%; }
}

/* -------- MÓVIL (≤ 768px) -------- */
@media (max-width: 768px) {

  .banner { height: 56vw; min-height: 220px; }
  .texto-banner { width: 92%; padding: 16px; }
  .texto-banner h2 { font-size: 18px; }
  .texto-banner p  { font-size: 13px; margin-bottom: 12px; }

  .bienvenida { padding: 40px 6%; }
  .contenido-bienvenida { flex-direction: column; }
  .contenido-bienvenida img { width: 90%; max-width: 400px; }
  .texto-bienvenida { text-align: center; max-width: 100%; }

  .carrusel { height: 260px; width: 100%; }
  .slide { width: 90%; }
  .texto-nube { font-size: 13px; padding: 10px 18px; width: 80%; white-space: normal; text-align: center; }
  .flecha { width: 40px; height: 40px; font-size: 24px; }
  .experiencias h2 { font-size: 1.6em; letter-spacing: 1px; }

  .promos-flip-section { padding: 40px 10px; }
  .promos-title { font-size: 1.8rem; margin-bottom: 25px; }
  .promos-flip-container { flex-direction: column; align-items: center; gap: 20px; }
  .flip-card { width: min(280px, 88vw); height: 340px; }

  .modal-content { width: 93%; margin: 8% auto; padding: 20px; }

  .mapa iframe { height: 250px; }

  .opiniones-contenedor {
    flex-direction: column;
    align-items: center;
    padding: 25px 16px;
    gap: 20px;
  }

  .login-card,
  .form-comentario {
    width: 100%;
    max-width: 420px;
    min-width: unset;
  }

  .comentarios-carrusel { width: 100%; padding: 15px 45px; }
  .card-comentario { min-width: 220px; max-width: 220px; }
  .carousel-btn { width: 38px; height: 38px; font-size: 16px; }

  .redes { right: 10px; bottom: 50px; gap: 10px; }
  .redes a img { width: 34px; height: 34px; }
  .wa-box { right: 55px; bottom: 50px; width: 260px; }

  .footer-columna { width: 100%; text-align: center; margin: 8px 0; }
}

/* -------- MÓVIL PEQUEÑO (≤ 480px) -------- */
@media (max-width: 480px) {

  .banner { height: 62vw; min-height: 190px; }
  .texto-banner h2 { font-size: 16px; }
  .texto-banner p  { font-size: 12px; }
  .boton-banner    { font-size: 12px; padding: 7px 14px; }

  .bienvenida { padding: 30px 5%; }
  .texto-bienvenida h2 { font-size: 19px; }

  .carrusel { height: 210px; }
  .texto-nube { font-size: 11px; padding: 8px 14px; bottom: 10px; }
  .flecha { width: 34px; height: 34px; font-size: 20px; }
  .experiencias h2 { font-size: 1.3em; }

  .promos-title { font-size: 1.4rem; }
  .flip-card { width: 90vw; max-width: 300px; height: 320px; }

  .modal-content { width: 96%; margin: 10% auto; padding: 16px; }
  #modalPrecio { font-size: 1.4rem; }

  .mapa iframe { height: 210px; }

  .opiniones-contenedor { padding: 20px 10px; }
  .titulo-opiniones h3 { font-size: 24px; }
  .comentarios-carrusel { padding: 12px 36px; }
  .card-comentario { min-width: 190px; max-width: 190px; padding: 18px 14px; }
  .card-comentario h4 { font-size: 15px; }

  footer { padding: 15px 10px; }
  .footer-columna { font-size: 13px; }
  .footer-final   { font-size: 12px; }

  .redes { right: 8px; bottom: 30px; }
  .redes a img { width: 28px; height: 28px; }
  .wa-box { right: 46px; bottom: 30px; width: 240px; }
}