.review-image-container {
  background-size: cover;
  background-position: center;
  height: 300px;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}

.review-image-container .overlay-text {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  padding: 1rem;
  overflow-y: auto;
  border-radius: 0.5rem;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #666 transparent;
}

/* Scroll personalizado (opcional) */
.review-image-container .overlay-text::-webkit-scrollbar {
  width: 6px;
}
.review-image-container .overlay-text::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 3px;
}
.review-image-container .overlay-text::-webkit-scrollbar-track {
  background: transparent;
}

#reviewModal .modal-title .stars {
  color: #ffc107; /* amarillo tipo TripAdvisor */
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

#reviewModal .modal-header {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  border-bottom: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#reviewModal .modal-header {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  border-bottom: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#reviewModal .modal-header:hover {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.review-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border: 1px solid #e2e8f0; /* color base suave */
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08); /* sombra inicial */
  border-radius: 12px;
}

.review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 128, 0, 0.15); /* verde translúcido */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25); /* sombra más intensa */
  z-index: 1;
}

.review-card:hover::after {
  opacity: 1;
}

.btn-review {
  background-color: #146c43; /* verde oscuro */
  color: #fff;
  padding: 0.6rem 1.4rem;
  font-weight: 500;
  border-radius: 0.4rem;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-review:hover {
  background-color: #1a7f52;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.btn-review i {
  transition: transform 0.3s ease;
}

.btn-review:hover i {
  transform: scale(1.2);
}


.footer-minimal {
  font-size: 0.75rem; /* lo más pequeño legible */
  padding: 0.8rem 0;
  background-color: #212529; /* dark bg */
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-minimal a {
  color: #86efac; /* verde claro */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-minimal a:hover {
  color: #bbf7d0; /* verde aún más claro al pasar */
}

.contact-wrapper {
  max-width: 800px;
  background-color: #3b322a;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.form-control-dark {
  background-color: #2a2521;
  color: #fff;
  border: 1px solid #51453d;
  border-radius: 6px;
}

.form-control-dark::placeholder {
  color: #b8b8b8;
}

.form-control-dark:focus {
  background-color: #201c19;
  border-color: #d1b08b;
  box-shadow: 0 0 0 0.15rem rgba(209, 176, 139, 0.25);
  color: #fff;
}

.contact-social-media a {
  transition: all 0.3s ease;
}

.contact-social-media a:hover {
  color:rgb(55, 84, 214);
  transform: translateY(-2px);
}