/* TODO TU CSS ORIGINAL — SIN CAMBIOS */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #eef4f1, #f7faf9);
  padding: 90px 20px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 3rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin: 20px auto 30px;
  max-width: 700px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #4a9d8f;
  color: white;
  padding: 14px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: #e6e6e6;
  color: #333;
  padding: 14px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

/* SECTIONS */
.section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}

.section-soft {
  background: #f7faf9;
}

.section-cta {
  background: #eef4f1;
  text-align: center;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* INTRO */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro-image img {
  width: 100%;
  border-radius: 16px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature {
  background: white;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.feature img {
  width: 80px;
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  background: #2c3e50;
  color: white;
  padding: 25px;
  text-align: center;
}

.footer a {
  color: white;
  margin: 0 8px;
  text-decoration: none;
}

/* MODALES */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 14px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* FORMS */
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.form-msg {
  margin-bottom: 12px;
  font-weight: 500;
}

.form-msg.success {
  color: #2e7d32;
}

.form-msg.error {
  color: #c62828;
}

/* INFO CALENDARIO */
.calendar-info {
  background: #f7faf9;
  border-left: 4px solid #4a9d8f;
  padding: 12px 16px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.calendar-info ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

.calendar-info li {
  margin-bottom: 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= POPUP CONFIRMACIÓN RESERVA ================= */
.popup-reserva {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.popup-reserva-content {
  background: #ffffff;
  padding: 30px 35px;
  border-radius: 14px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  animation: popupFadeIn 0.25s ease-out;
}

.popup-reserva-content h3 {
  margin-top: 0;
  color: #2c3e50;
}

.popup-reserva-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 15px 0 25px;
}

.popup-reserva-content button {
  padding: 12px 26px;
  border-radius: 8px;
  border: none;
  background: #4a9d8f;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}

.popup-reserva-content button:hover {
  background: #3f887c;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

