* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General */
body {
    font-family: 'DM Sans', sans-serif;
  background-color: #000;
  color: white;
}

h1 {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 2rem;
  position: relative;
}



/* Contenedor horizontal de tarjetas */
.cards-wrapper-reserva {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}


/* Tarjeta individual */
.card-reserva {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 25px;
  transition: all 0.3s ease;
  padding: 20px;
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
    height: 100%; /* importante */
  flex: 1 1 300px; /* permite que todas crezcan igual */
}
.card-reserva:hover {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Imagen centrada */
.card-reserva img {
  max-width: 100%;
  max-height: 200px;
  padding: 0 10px;
  border-radius: 15px;
  object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
}

.card-reserva-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

/* Títulos y textos */
.card-reserva-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 1rem;
}

.card-reserva-text {
  font-size: 1rem;
  font-weight: 400;
  color: #ccc;
  margin-bottom: 1rem;
}

/* Botón personalizado */
.btn-reserva {
  background-color: transparent !important;
  color: white !important;
  border: 1px solid white !important;
  padding: 10px 25px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 !important;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-reserva:hover,
.btn-reserva:focus {
  background-color: white !important;
  color: black !important;
  text-decoration: none !important;
  border: 1px solid white !important;
}

/* Responsive */
@media (max-width: 992px) {
  h1 {
    font-size: 2.3rem;
  }

  .card-reserva {
    max-width: 280px;
  }

  .card-reserva img {
    max-width: 180px;
    max-height: 160px;
  }

  .card-reserva-title {
    font-size: 1.2rem;
  }

  .card-reserva-text {
    font-size: 1rem;
  }

  .btn-reserva {
    padding: 8px 18px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }

  .card-reserva {
    max-width: 100%;
  }

  .card-reserva img {
    max-width: 160px;
    max-height: 140px;
  }

  .card-reserva-title {
    font-size: 1.1rem;
  }

  .card-reserva-text {
    font-size: 0.9rem;
  }

  .btn-reserva {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}
