
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 900px;
  border-radius: 8px;
}
.modal .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.modal .close:hover,
.modal .close:focus {
  color: black;
  text-decoration: none;
}
#videoModal {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
#mapModalContainer {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
#weatherContainer {
  background-color: #cce5ff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#weatherIcon {
  font-size: 64px;
  margin: 10px 0;
}
#weatherInfo {
  font-size: 18px;
  text-align: center;
}
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.hotel-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.hotel-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.hotel-info {
  padding: 10px;
  text-align: center;
}
.hotel-info h4 {
  margin: 5px 0;
  font-size: 18px;
}
.hotel-info p {
  color: #666;
  font-size: 14px;
}
.restaurante-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.restaurante-card {
  width: 220px;
  height: 200px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
}

.restaurante-card:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.restaurante-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}


.restaurante-info {
  padding: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.restaurante-info h4 {
  margin: 0;
  font-size: 16px;
}

.restaurante-info p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}
#restaurantesModal h2 {
  margin-bottom: 30px;
}
#custom-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  background-color: #ff0000;
  color: #000000;
  padding: 32px 48px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
#custom-alert,
#custom-alert * {
  color: #fff !important;
}

#custom-alert.show {
  opacity: 1;
  pointer-events: auto;
}

#custom-alert.hide {
  opacity: 0;
}
#custom-alert2 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  background-color: #2bff00;
  color: #000000;
  padding: 32px 48px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
#custom-alert2,
#custom-alert2 * {
  color: #fff !important;
}

#custom-alert2.show {
  opacity: 1;
  pointer-events: auto;
}

#custom-alert2.hide {
  opacity: 0;
}
.rating-box {
  margin-top: 30px;
  text-align: center;
}

.stars {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  letter-spacing: 5px;
  user-select: none;
}

.stars .selected {
  color: #ffc107;
}
#modalVideoLocal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

#modalVideoLocal .modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}

#modalVideoLocal .close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 28px;
  cursor: pointer;
}

 #contact-us {
          background-color: #b3e5fc; /* Fondo celeste */
          padding: 40px 0; /* Espaciado superior e inferior */
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-icons li {
  display: inline-block;
}
.social-icons li a {
  text-decoration: none;
  color: inherit;
  font-size: 20px;
}
/* Fondo semitransparente solo sobre la sección sobre-nosotros */
#modalVideoLocal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
}
#modalVideoLocal.active {
  display: flex;
  pointer-events: auto;
}
#modalVideoOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  z-index: 0;
  pointer-events: none;
}
#modalVideoOverlay.visible {
  background: rgba(0, 0, 0, 0.8);
  pointer-events: auto;
}
#modalVideoContent {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  margin: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

#loginModal:focus {
  outline: 2px solid #007bff;
}