/* ===============================
   RESET & BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}

html, body {
  height: 100%;
}

/* ===============================
   BODY - FONDO PLAYA AZUL
================================ */
body {
  min-height: 100vh;
  color: #ffffff;

  background:
    linear-gradient(
      rgba(5, 20, 45, 0.8),
      rgba(5, 20, 45, 0.8)
    )/* ,
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80")
    center / cover no-repeat;

  overflow-x: hidden; */
}

/* ===============================
   APP CONTENEDOR PRINCIPAL
================================ */
/* .app {
  min-height: 100vh;
  padding-bottom: 90px;

  background:
    linear-gradient(
      rgba(8, 25, 55, 0.6),
      rgba(8, 25, 55, 0.6)
    ),
    url("img/fondo.png");

  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: #ffffff;
} */

.app {
  min-height: 100vh;
  padding-bottom: 90px;

  background: radial-gradient(
    ellipse at center,
    #0d3580 0%,
    #07134c 45%,
    #040404 100%
  );

  color: #ffffff;
}



/* ===============================
   HEADER
================================ */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 16px;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo strong {
  color: #f5b301;
  font-weight: 700;
}


.map-pin {
  width: 14px;
  height: 14px;
  background: #f5b301;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  flex-shrink: 0;
}

.map-pin::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: #0b1f3a;
  border-radius: 50%;
  top: 4px;
  left: 4px;
}

.contact.wsp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
}

.wsp-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact.wsp {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wsp-icon {
  width: 22px;
  height: 22px;
  display: block;
}


/* ===============================
   HERO
================================ */
.hero {
  padding: 18px 16px;
}

.hero h1 {
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: 600;
}

/* ===============================
   MENU / CARDS
================================ */
.menu {
  padding: 10px 16px;
}

.menu h2 {
  margin-bottom: 14px;

  font-size: 1.25rem;
  font-weight: 700;

  color: #f5b301;
  letter-spacing: 0.3px;
}

.menu h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 6px;

  background: #f5b301;
  border-radius: 3px;
}

.menu .card {
  text-decoration: none;
  color: inherit;
}

.menu .card:visited,
.menu .card:hover,
.menu .card:active {
  color: inherit;
  text-decoration: none;
}


.card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;

  padding: 14px 16px;
  margin-bottom: 12px;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);

  border-radius: 16px;
  border: 1px solid rgba(245, 179, 1, 0.35); /* contorno amarillo fino */

  cursor: pointer;
  transition: 
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}


.card:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(245, 179, 1, 0.7);
  transform: translateY(-2px);
}


.card span {
  font-weight: 600;
}

.card small {
  grid-column: 2;
  font-size: 0.75rem;
  opacity: 0.75;
}

.card b {
  background: #f5b301;
  color: #000;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===============================
   OFERTAS DESTACADAS
================================ */
.featured {
  padding: 12px 16px;
}

.featured h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
}

.offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.offer {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  overflow: hidden;
}

.offer img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
  background: #0b1f3a;
}

.offer p {
  padding: 6px;
  font-size: 0.78rem;
  text-align: center;
  opacity: 0.95;
}

/* ===============================
   FOOTER INFO
================================ */
.footer {
  margin: 14px 16px;
  padding: 12px;

  background: #f5b301;
  color: #000;

  border-radius: 12px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 45px;
}

/* ===============================
   BOTTOM NAV (FIJA)
================================ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 70px;

  display: flex;
  justify-content: space-around;
  align-items: center;

  background: rgba(8, 25, 55, 0.95);
  backdrop-filter: blur(8px);

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
}

.bottom-nav button {
  background: none;
  border: none;
  color: #ffffff;

  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  opacity: 0.9;
}

.bottom-nav button:hover {
  opacity: 1;
}

/* ===============================
   DESKTOP LIMIT (MOBILE FIRST)
================================ */
@media (min-width: 768px) {
  .app {
    max-width: 420px;
    margin: 0 auto;
  }

  .bottom-nav {
    max-width: 420px;
    left: 50%;
    transform: translateX(-50%);
  }
}


.restaurant-view {
  max-width: 420px;
  margin: 0 auto;
  padding: 16px;
  color: #fff;
}

.restaurant-view h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

.restaurant-info{
  padding: 10px;
}
.restaurant-info h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.restaurant-info p {
  font-size: 14px;
  opacity: 0.9;
}

.restaurant-card {
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.restaurant-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.map-container {
  margin: 16px 0;
  border-radius: 14px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 220px;
  border: 0;
}






.ads-section {
  padding: 20px;
}

.section-title {
  color: #f5c400;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Base */
.ad-card {
  background: rgba(10, 30, 60, 0.85);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.ad-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.ad-content {
  padding: 15px;
  color: #fff;
}

.ad-content h3 {
  margin: 0;
  font-size: 1.2rem;
}

.description {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 8px 0;
}

.info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Badges */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 0.7rem;
  border-radius: 20px;
  font-weight: bold;
}

.gold-badge {
  background: #f5c400;
  color: #081937;
}

.premium-badge {
  background: #3fa9f5;
  color: #fff;
}

/* GOLD */
.ad-card.gold {
  border: 2px solid #f5c400;
  box-shadow: 0 0 18px rgba(245, 196, 0, 0.35);
}

.gold .tagline {
  color: #f5c400;
  font-weight: 600;
  margin: 6px 0;
}

.gold-btn {
  background: #f5c400;
  color: #081937;
}

/* PREMIUM */
.ad-card.premium {
  border: 2px solid #3fa9f5;
}

.premium-btn {
  background: transparent;
  border: 1px solid #3fa9f5;
  color: #3fa9f5;
}

/* Botones */
.btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  text-align: center;
}

/* Responsive */
@media (min-width: 768px) {
  .ad-card {
    flex-direction: row;
    min-height: 220px; /* opcional */
  }

  .ad-card img {
    width: 40%;
    height: 100%;
  }

  .ad-content {
    width: 60%;
  }
}

.ad-card.base {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #3fa9f5;
  margin-bottom: 20px;
}

.ad-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.ad-content {
  padding: 14px 16px;
  color: #fff;
}

.ad-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.ad-category {
  font-size: 0.85rem;
  color: #ffd700;
  display: block;
  margin-bottom: 6px;
}

.ad-info {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.map-link {
  font-size: 0.85rem;
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
}

@media (min-width: 768px) {
  .ad-card.base {
    flex-direction: row;
  }

  .ad-image {
    width: 35%;
    height: auto;
  }

  .ad-content {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ===============================
   PLAN BASE – AJUSTES PUNTUALES
================================ */
/* ===============================
   CARD BASE (solo menos alta)
================================= */
.restaurant-card.base {
  /* mantiene todo igual que gold/premium */
  min-height: 120px;   /* un poco menos que las otras */
}


/* Info de la card: texto arriba, botón abajo */
.restaurant-card.base .restaurant-info,
.restaurant-card.gold .restaurant-info,
.restaurant-card.premium .restaurant-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* separa el texto del botón */
  flex: 1;
  padding: 12px; /* mantiene espacio desde los bordes */
}

/* Botón unificado */
.restaurant-card .base-btn {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 16px;
  background: transparent;
  border: 1px solid #3fa9f5;
  color: #3fa9f5;
  text-decoration: none;
  margin: 0; /* sin margen superior */
}

.base-btn {
 margin-top: 12px !important;
}

.base-btn:hover {
  background: rgba(63, 169, 245, 0.3);
}

/* Hover según tipo de card */
.restaurant-card.gold .gold-btn:hover {
  background: rgba(245, 180, 1, 0.925); /* más dorado */
}

.restaurant-card.premium .premium-btn:hover {
  background: rgba(63, 169, 245, 0.3); /* azul suave */
}

/* ===============================
   BADGES SOBRE IMAGEN (GOLD / PREMIUM)
================================ */

.restaurant-card {
  position: relative;
}

/* Base común badge */
.restaurant-card.gold::after,
.restaurant-card.premium::after {
  position: absolute;
  top: 12px;
  left: 12px;

  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.4px;

  backdrop-filter: blur(6px);
  text-transform: uppercase;
}

/* GOLD - Destacado */
.restaurant-card.gold::after {
  content: "DESTACADO";
  background: rgba(245, 179, 1, 0.95);
  color: #081937;
  box-shadow: 0 0 10px rgba(245, 179, 1, 0.45);
}

/* PREMIUM - Recomendado */
.restaurant-card.premium::after {
  content: "RECOMENDADO";
  background: rgba(63, 169, 245, 0.85);
  color: #ffffff;
}


/* ===============================
   FILTROS – ESTILO APP
================================ */

.filters-bar {
  margin: 12px 0 18px;
}

.filters-bar label {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
}

/* SELECT */
.filters-bar select {
  background: transparent;
  color: #ffffff;

  border: none;
  border-bottom: 2px solid rgba(245, 179, 1, 0.6);

  padding: 6px 4px;
  margin-left: 6px;

  font-size: 0.85rem;
  cursor: pointer;
  outline: none;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Flechita custom (opcional pero elegante) */
.filters-bar select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 14px;
  padding-right: 18px;
}

/* Opciones desplegadas */
.filters-bar select option {
  background: #081937;   /* azul app */
  color: #ffffff;
}

.empresa-distancia {
    font-size: 13px;
    color: #4db904;
    font-weight: bold;
    margin-top: 4px;
}


/* ===============================
   BENEFICIOS
================================ */

.benefits-view {
  padding: 16px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.benefit-card {
  background: #0c1e3c;
  border-radius: 18px;
  padding: 18px 14px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.benefit-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  background: #0f2650;
}

.benefit-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.benefit-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.benefit-card p {
  font-size: 0.8rem;
  opacity: 0.85;
}


.beneficio-card {
  display: flex;
  gap: 14px;
  background: #0c1e3c;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: transform .15s ease, box-shadow .15s ease;
}

.beneficio-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}

.beneficio-icon {
  font-size: 28px;
  width: 48px;
  height: 48px;
  background: rgba(245,179,1,0.15);
  color: #f5b301;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.beneficio-content h3 {
  font-size: 0.95rem;
  margin: 0 0 4px;
}

.beneficio-lugar {
  font-size: 0.75rem;
  opacity: 0.85;
  margin-bottom: 6px;
}

.beneficio-desc {
  font-size: 0.8rem;
  line-height: 1.3;
  opacity: 0.9;
}

.beneficio-card {
  position: relative;
  display: flex;
  gap: 15px;
  padding: 16px;
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.beneficio-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}

/* BASE */
.beneficio-base {
  border: 1px solid #243b63;
}

/* PREMIUM */
.beneficio-premium {
  border: 2px solid rgba(63, 169, 245, 0.85);
}

/* GOLD */
.beneficio-gold {
  border: 2px solid #f5b301;
  background: linear-gradient(
    135deg,
    rgba(245,179,1,0.12),
    rgba(12,30,60,0.95)
  );
  box-shadow:
    0 0 0 1px rgba(245,179,1,0.25),
    0 10px 24px rgba(245,179,1,0.15);
}
.beneficio-gold:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(245,179,1,0.35),
    0 14px 32px rgba(245,179,1,0.25);
}
/* BADGE DESTACADO – GOLD */
.beneficio-gold .beneficio-badge {
  background: rgba(12, 30, 60, 0.85); /* igual que recomendado */
  color: #ffffff;
  font-weight: 600;

  border: 1.5px solid #f5b301; /* dorado sutil */
  box-shadow: 0 0 8px rgba(245,179,1,0.25);

  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* BADGE */
.beneficio-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  background: #111;
  color: #fff;
}

.beneficio-icon {
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
}


/* ===============================
   BENEFICIO – IMAGEN EMPRESA
================================ */

.beneficio-image {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #081937;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.beneficio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.empty-msg {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 8px 0 14px;
}

.beneficio-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.beneficio-link:hover {
  color: inherit;
}
.beneficio-link:active .beneficio-card {
  transform: scale(0.99);
}


.badge.hot {
  position: absolute;
  top: 12px;
  right: 12px;   /* 👈 CLAVE */
  left: auto;    /* 👈 anula el left */

  display: inline-flex;
  align-items: center;
  width: auto;

  background: #ff5722;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
  font-weight: bold;
  z-index: 15;
}
.badge.hot {
  font-size: 11px;
  opacity: 0.95;
}


.empresa-nombre {
  font-size: 1.1em; /* probá 1.05, 1.1 o 1.15 */
}

.red-card {
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease;
}

/* hover */
.red-card:hover {
  transform: translateY(-2px);
}

/* layout interno */
.red-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* iconos */
.red-icon i {
  font-size: 1.6rem;
}

/* Blindaje contra estilos globales */
.red-card,
.red-card  {
  text-decoration: none;
}

/* Instagram */
.red-icon .fa-instagram {
  color: #E1306C;
}

/* Facebook */
.red-icon .fa-facebook {
  color: #1877F2;
}

/* TikTok */
.red-icon .fa-tiktok {
  color: #000000;
}

/* Web */
.red-icon .fa-globe {
  color: rgba(63, 169, 245, 0.85);
}

/* WhatsApp */
.red-icon .fa-whatsapp {
  color: #25D366;
}




.contact-bar {
  position: fixed;
  bottom: 60px; /* arriba del nav */
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  opacity: 0;

  width: 100%;
  max-width: 420px;
  height: 64px;

  background: #0b1020;
  padding: 10px 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 250;

  transition: transform .3s ease, opacity .3s ease;
}

/* cuando aparece */
.contact-bar.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.contact-text {
  font-size: 0.85rem;
  color: #d1d5db;
  margin: 0;
  max-width: 70%;
  line-height: 1.2;
}

.contact-icons {
  display: flex;
  gap: 14px;
}

.contact-icons a {
  text-decoration: none;
  cursor: pointer;
}

.contact-icons i {
  font-size: 1.3rem;
  transition: transform .2s ease, opacity .2s ease;
}

/* hover */
.contact-icons a:hover i {
  transform: scale(1.1);
  opacity: 0.85;
}

/* colores */
.fa-whatsapp { color: #f5b301; }
.fa-envelope { color: #f5b301; }
.fa-instagram { color: #f5b301; }

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 420px;
  height: 60px;

  z-index: 300;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-sumate {
  background: linear-gradient(135deg, #f5b301, #ffcc33);
  color: #07134c;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;

  box-shadow: 0 4px 12px rgba(245,179,1,0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta-sumate:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(245,179,1,0.45);
}

.contact-bar.highlight {
  box-shadow:
    inset 0 0 12px rgba(245, 179, 1, 0.4),   /* difuminado hacia adentro */
    0 0 10px rgba(245, 179, 1, 0.2);        /* glow externo leve */
  transition: box-shadow 0.3s ease;
}
.contact-bar {
  transition:
    transform .3s ease,
    opacity .3s ease,
    box-shadow .3s ease;
}

/* ===============================
   CHAT BOT - TURISTA PLUS
================================ */

/* Botón flotante */
.chat-toggle {
  position: fixed;
  bottom: 120px;
  right: 16px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #f5b301 0%, #ffcc4d 100%);
  color: #0b1f3a;
  font-size: 26px;
  cursor: pointer;
  z-index: 9999;

  box-shadow:
    0 6px 16px rgba(245, 179, 1, 0.45),
    0 12px 30px rgba(0,0,0,.35);
}

.chat-toggle:hover {
  transform: translateY(-1px);
  box-shadow:
    0 8px 22px rgba(245, 179, 1, 0.6),
    0 14px 34px rgba(0,0,0,.4);
}

/* Caja del chat */
.chat-box {
  position: fixed;
  bottom: 160px;
  right: 16px;
  width: 300px;
  border-radius: 18px;
  overflow: hidden;
  z-index: 9999;

  background: radial-gradient(
    ellipse at top,
    #0d3580 0%,
    #07134c 55%,
    #040404 100%
  );

  box-shadow:
    0 20px 50px rgba(0,0,0,.6),
    inset 0 0 0 1px rgba(255,255,255,.06);
}

/* Oculto */
.hidden {
  display: none;
}

/* Header */
.chat-header {
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(0,0,0,.25);
  backdrop-filter: blur(4px);
}

.chat-header span {
  cursor: pointer;
  font-size: 1.1rem;
  opacity: .85;
}

.chat-header span:hover {
  opacity: 1;
}

/* Body */
.chat-body {
  padding: 14px;
}

.chat-body .bot {
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #dbe4ff;
}

/* Opciones */
.chat-option {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: none;
  cursor: pointer;

  font-size: 0.9rem;
  font-weight: 600;
  color: #0b1f3a;

  background: linear-gradient(
    135deg,
    #f5b301 0%,
    #ffcc4d 100%
  );

  box-shadow:
    0 4px 12px rgba(245, 179, 1, 0.35);
}

.chat-option:hover {
  transform: translateY(-1px);
  box-shadow:
    0 6px 18px rgba(245, 179, 1, 0.55);
}



/* ===============================
   ALERT MODAL - TURISTA PLUS
================================ */

.alert-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 20, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.alert-box {
  background: radial-gradient(
    ellipse at top,
    #0d3580 0%,
    #07134c 55%,
    #040404 100%
  );

  color: #ffffff;
  padding: 26px 22px;
  max-width: 340px;
  width: calc(100% - 40px);
  border-radius: 18px;
  text-align: center;

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.alert-box h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.alert-box p {
  font-size: 0.95rem;
  line-height: 1.45;
  color: #dbe4ff;
}

.alert-box button {
  margin-top: 18px;
  background: linear-gradient(
    135deg,
    #f5b301 0%,
    #ffcc4d 100%
  );
  border: none;
  padding: 11px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  color: #0b1f3a;

  box-shadow:
    0 6px 16px rgba(245, 179, 1, 0.45);
}

.alert-box button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 8px 22px rgba(245, 179, 1, 0.6);
}

/* INSTALACION DE APP */
.install-banner {
  display: none;
  background: #f5b301;
  color: #000;
  padding: 8px 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.install-banner button {
  background: #000;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}


/* flechas flotantes sobre la imagen */

/* contenedor relativo para centrar flechas */
#empresa-img {
    display: block;
    width: 100%;
}

/* envoltorio invisible para posicionar */
.img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* flechas */
.img-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 20px;
    z-index: 10;
}

.img-prev { left: 10px; }
.img-next { right: 10px; }


.ver-mapa-btn {
  margin-left: 10px;
  padding: 4px 8px;
  font-size: 0.8rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;

  background: rgba(255,255,255,0.12);
  color: #fff;

  transition: 0.2s;
}

.ver-mapa-btn:hover {
  background: rgba(255,255,255,0.25);
}


/* ===== COMENTARIOS ===== */

.comentarios {
    background: #111;
    border-radius: 14px;
    padding: 20px;
    margin-top: 25px;
}

.comentarios h3 {
    margin-bottom: 15px;
    color: #f5b301;
}

.lista-comentarios {
    max-height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comentario {
    background: #1c1c1c;
    padding: 12px;
    border-radius: 10px;
}

.comentario strong {
    color: #fff;
}

.google-btn,
.comentar-btn,
.enviar-btn {
    background: #f5b301;
    color: #000;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}

textarea {
    width: 100%;
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
}

.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
  font-size: 32px;
}

.rating input {
  display: none;
}

.rating label {
  cursor: pointer;
  color: #444;
  transition: 0.2s;
}

/* hover */
.rating label:hover,
.rating label:hover ~ label {
  color: #f5b301;
  transform: scale(1.15);
}

/* seleccionado */
.rating input:checked ~ label {
  color: #f5b301;
}

.rating {
  background: #111;
  padding: 10px 14px;
  border-radius: 12px;
  width: fit-content;
}
.comentario-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fecha {
  font-size: 12px;
  color: #888;
}
