/* Anas Inn — estilo moderno tipo Holiday Inn Express: limpio, profesional */
:root {
  --primary: #0d9488;
  --primary-hover: #0f766e;
  --primary-soft: #ccfbf1;
  --font-heading: "DM Sans", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --max: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
.landing-footer { margin-top: auto; }
.font-heading { font-family: var(--font-heading); }
img { max-width: 100%; height: auto; display: block; }

/* Nav — minimal, white, border bottom */
.landing-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.landing-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0.75rem 24px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 0.75rem;
}
.landing-nav .nav-left,
.landing-nav .nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.landing-nav .nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.landing-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.0625rem;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.landing-nav a:hover { color: var(--primary); background: var(--primary-soft); }
.landing-nav .logo { height: 38px; width: auto; flex-shrink: 0; }

/* Hero — portada con foto de fondo, título y CTA */
.hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  padding: 48px 24px 56px;
}
.hero.hero-portada {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-image: url('/landing/images/portada.png');
}
.hero.hero-portada::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  z-index: 0;
}
.hero .hero-inner { position: relative; z-index: 1; max-width: 520px; }
.hero .hero-logo-img {
  width: 140px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  filter: brightness(1.05);
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.hero .subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-weight: 400;
}
.hero .cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero .btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s;
}
.hero .btn-primary {
  background: #fff;
  color: #0f172a;
  border: none;
}
.hero .btn-primary:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}
.hero .btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-1px);
}

/* Barra de reserva — flotante bajo el hero (estilo Holiday Inn) */
.booking-bar {
  max-width: var(--max);
  margin: -28px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}
.booking-bar-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--border);
}
.booking-bar-inner a {
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.1s;
}
.booking-bar-inner a:hover { background: var(--primary-hover); transform: translateY(-1px); }

/* Intro block */
.intro-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 48px;
  text-align: center;
}
.intro-block .intro-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}
.intro-block .intro-text {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 56px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Secciones a ancho completo pero con límite para no estirar (ubicación, contacto, reseñas) */
.section-full {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 24px 56px;
  box-sizing: border-box;
}
.section-full .section-title,
.section-full .section-subtitle {
  max-width: none;
}
.section-full .location-box {
  max-width: 100%;
  margin: 0;
}
.section-full .contact-box {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 36px;
}
.section-full .reviews-grid {
  max-width: 100%;
  margin: 0;
}

/* Rooms carousel — una diapositiva por habitación, imágenes grandes, sin botón reservar */
.rooms-carousel-section {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}
.rooms-carousel-section .section-title,
.rooms-carousel-section .section-subtitle {
  max-width: var(--max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.rooms-carousel-section .section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.rooms-carousel-section .section-subtitle { margin-bottom: 24px; }

.rooms-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.rooms-carousel-track-wrap {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.rooms-carousel-track {
  display: flex;
  width: 400%;
  transition: transform 0.4s ease-out;
}
.room-slide {
  flex: 0 0 25%;
  width: 25%;
  display: flex;
  flex-direction: column;
  background: #fff;
  min-width: 0;
  overflow: hidden;
}
.room-slide-img-wrap {
  width: 100%;
  height: 60vh;
  min-height: 380px;
  max-height: 520px;
  background: #e2e8f0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-slide-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.room-slide-caption {
  padding: 32px 24px 40px;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.room-slide-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.room-slide-capacity {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 14px;
}
.room-slide-desc {
  font-size: 1.125rem;
  color: #334155;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 100%;
  width: 100%;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.room-slide-link {
  display: inline-block;
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.25);
}
.room-slide-link:hover {
  background: var(--primary-hover);
  text-decoration: none;
  transform: translateY(-2px);
}

.carousel-btn {
  position: absolute;
  top: 30vh;
  transform: translateY(-50%);
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.96);
  color: #1e293b;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background 0.2s, box-shadow 0.2s;
}
.carousel-btn:hover {
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0 8px;
  flex-wrap: wrap;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot:hover { background: #94a3b8; }
.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Room cards (habitaciones.html) */
.room-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.room-card img { width: 100%; height: 200px; object-fit: cover; }
.room-card .body { padding: 20px; }
.room-card h3 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; margin: 0 0 6px; color: var(--text); }
.room-card .capacity { font-size: 0.8125rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.room-card .room-desc { font-size: 0.9375rem; color: var(--text-muted); margin: 0 0 16px; line-height: 1.5; }
.room-card a.plain { color: inherit; text-decoration: none; }

/* Location + map */
.section-map .location-box { padding: 0; }
.location-box {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-wrap {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: #f8fafc;
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }
.location-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 20px 24px;
}
.location-contact-row .contact-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9375rem;
}
.location-contact-row .contact-link:hover { text-decoration: underline; }
.wa-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}
.wa-inline:hover { text-decoration: underline; }
.wa-inline-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-block;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  gap: 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.review-card {
  background: #fff;
  padding: 28px 24px;
  min-height: 140px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}
.review-card .stars { color: #eab308; margin-bottom: 10px; font-size: 1.1rem; letter-spacing: 0.05em; }
.review-card .text { color: var(--text); font-size: 1rem; margin: 0 0 12px; line-height: 1.6; flex: 1; }
.review-card .author { font-size: 0.9375rem; color: var(--text-muted); margin-top: auto; }

/* Contact box */
.contact-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-box .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}
.contact-box .contact-link:hover { text-decoration: underline; }
.contact-box .contact-whatsapp-label { margin: 24px 0 12px; font-weight: 600; color: var(--text); font-size: 0.9375rem; }
.whatsapp-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-box .btn-wa {
  background: #25D366;
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-box .btn-wa:hover { opacity: 0.92; text-decoration: none; }

/* Buttons generic */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }

/* Footer — oscuro, compacto */
.landing-footer {
  background: #1e293b;
  color: rgba(255, 255, 255, 0.9);
  padding: 32px 24px;
  text-align: center;
  margin-top: auto;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 10px;
  font-size: 1.0625rem;
}
.footer-sep { color: rgba(255, 255, 255, 0.4); user-select: none; }
.footer-address { white-space: nowrap; }
.landing-footer a { color: #7dd3fc; text-decoration: none; font-weight: 500; }
.landing-footer a:hover { text-decoration: underline; }
.landing-footer a.footer-ig { font-size: 1.4rem; display: inline-flex; align-items: center; }
.landing-footer a.footer-ig:hover { text-decoration: none; opacity: 0.9; }
.footer-rights { margin: 1rem 0 0; font-size: 1rem; opacity: 0.9; }
.landing-footer p { margin: 12px 0 0; font-size: 1rem; opacity: 0.9; }

/* Lightbox — galería de fotos en grande (habitaciones) */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 56px 50px;
  box-sizing: border-box;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #1e293b;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: #fff;
  transform: scale(1.05);
}
.lightbox-close { top: 20px; right: 20px; font-size: 1.5rem; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover,
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .lightbox-content { padding: 50px 48px 44px; }
  .lightbox-close { top: 12px; right: 12px; width: 44px; height: 44px; font-size: 1.25rem; }
  .lightbox-prev { left: 10px; width: 44px; height: 44px; font-size: 1.1rem; }
  .lightbox-next { right: 10px; width: 44px; height: 44px; font-size: 1.1rem; }
  .lightbox-counter { bottom: 14px; font-size: 0.9375rem; }
}

/* Lang switcher */
.lang-btn {
  background: #f1f5f9;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-muted);
}
.lang-btn:hover { background: var(--primary-soft); color: var(--primary); }

/* ========== Responsive — celular y tablet ========== */
@media (max-width: 768px) {
  html { font-size: 17px; }
  .landing-nav .container { padding: 0.75rem 16px; flex-wrap: nowrap; min-width: 0; }
  .landing-nav .nav-left { gap: 0.25rem; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; flex-shrink: 1; min-width: 0; }
  .landing-nav .nav-left::-webkit-scrollbar { display: none; }
  .landing-nav .nav-right { gap: 0.35rem; flex-shrink: 0; }
  .landing-nav a { font-size: 0.9375rem; padding: 0.4rem 0.5rem; min-height: 44px; display: inline-flex; align-items: center; flex-shrink: 0; }
  .landing-nav .logo { height: 34px; }
  .lang-btn { padding: 8px 12px; min-height: 44px; font-size: 1rem; flex-shrink: 0; }

  .hero { min-height: 320px; padding: 36px 20px 44px; }
  .hero.hero-portada { min-height: 360px; }
  .hero h1 { font-size: 1.75rem; }
  .hero .subtitle { font-size: 0.9375rem; margin-bottom: 20px; }
  .hero .cta { flex-direction: column; gap: 12px; width: 100%; max-width: 280px; margin: 0 auto; }
  .hero .btn { width: 100%; text-align: center; padding: 14px 20px; min-height: 48px; }

  .intro-block { padding: 40px 20px 36px; }
  .intro-block .intro-title { font-size: 1.35rem; }
  .intro-block .intro-text { font-size: 0.9375rem; }

  .section { padding: 40px 20px 48px; }
  .section-title { font-size: 1.35rem; }
  .section-subtitle { font-size: 0.9375rem; margin-bottom: 24px; }

  .section-full { padding: 40px 16px 48px; max-width: 100%; }
  .section-full .contact-box { padding: 28px 20px; max-width: 100%; }

  .rooms-carousel-section { padding-left: 16px; padding-right: 16px; }
  .rooms-carousel-section .section-title,
  .rooms-carousel-section .section-subtitle { padding-left: 8px; padding-right: 8px; }
  .rooms-carousel-section .section-title { font-size: 1.75rem; }
  .room-slide-img-wrap { height: 55vh; min-height: 300px; max-height: 420px; }
  .room-slide-caption { padding: 24px 20px 32px; }
  .room-slide-caption h3 { font-size: 1.5rem; max-width: 100%; }
  .room-slide-capacity { font-size: 0.9375rem; }
  .room-slide-desc { font-size: 1rem; }
  .room-slide-link { padding: 14px 24px; font-size: 1rem; width: 100%; max-width: 280px; text-align: center; box-sizing: border-box; }

  .carousel-btn { width: 48px; height: 48px; font-size: 1.25rem; top: 22vh; }
  .carousel-prev { left: 12px; right: auto; }
  .carousel-next { left: auto; right: 12px; }
  .carousel-dots { padding: 16px 0 4px; gap: 8px; }
  .carousel-dot { width: 8px; height: 8px; }

  .map-wrap iframe { height: 320px; }
  .location-contact-row { padding: 16px 20px; flex-direction: column; align-items: stretch; }
  .location-contact-row .btn { width: 100%; text-align: center; }

  .reviews-grid { grid-template-columns: 1fr; gap: 16px; padding: 0; }
  .review-card { min-height: auto; padding: 22px 20px; }

  .landing-footer { padding: 24px 16px; }
  .footer-links { font-size: 0.9375rem; gap: 8px 12px; flex-direction: column; align-items: center; text-align: center; }
  .footer-address { white-space: normal; text-align: center; max-width: 280px; }
  .footer-rights { font-size: 0.9375rem; margin-top: 0.75rem; }
}

@media (max-width: 480px) {
  html { font-size: 16px; }
  .landing-nav .container { padding: 0.5rem 12px; min-width: 0; }
  .landing-nav .nav-left { gap: 0.2rem; flex-shrink: 1; min-width: 0; }
  .landing-nav a { font-size: 0.875rem; padding: 0.35rem 0.4rem; flex-shrink: 0; }
  .landing-nav .logo { height: 30px; }
  .lang-btn { flex-shrink: 0; }

  .hero.hero-portada { min-height: 320px; padding: 28px 16px 36px; }
  .hero h1 { font-size: 1.5rem; }
  .hero .cta { max-width: 100%; }

  .section-full { padding: 32px 12px 40px; }
  .section-title { font-size: 1.25rem; }
  .rooms-carousel-section { padding-left: 12px; padding-right: 12px; }
  .rooms-carousel-section .section-title,
  .rooms-carousel-section .section-subtitle { padding-left: 4px; padding-right: 4px; }
  .rooms-carousel-section .section-title { font-size: 1.5rem; }
  .room-slide-img-wrap { min-height: 280px; max-height: 380px; height: 55vh; }
  .room-slide-img-wrap img { object-fit: contain; object-position: center center; }
  .room-slide-caption { padding: 20px 16px 28px; }
  .room-slide-caption h3 { font-size: 1.25rem; max-width: 100%; }

  .carousel-btn { width: 44px; height: 44px; font-size: 1.1rem; }
  .carousel-prev { left: 8px; right: auto; }
  .carousel-next { left: auto; right: 8px; }

  .map-wrap iframe { height: 280px; }
  .contact-box { padding: 24px 16px; }
  .review-card { padding: 20px 16px; }
  .landing-footer { padding: 20px 12px; }
  .footer-links { font-size: 0.875rem; }
}

/* Botón flotante WhatsApp — fijo abajo a la derecha, siempre visible al hacer scroll (como Cebra) */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 99999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.whatsapp-float i {
  font-size: 32px;
  color: #fff;
}
