/* =============================================
   SIDEBAR / ASIDE - ESTILOS CSS SIN TAILWIND
   ============================================= */

/* Contenedor principal del aside */
.sidebar {
  display: flex;
  flex-direction: column;
}

.sidebar > * + * {
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .sidebar {
    grid-column: span 4 / span 4;
    order: 1;
  }
}

/* =============================================
   TARJETAS DE BENEFICIOS
   ============================================= */

/* Tarjeta de beneficio */
.benefit-card {
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border-radius: 0.75rem;
}

.benefit-icon {
  color: #0044a5;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.benefit-title {
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #1A1A1A;
}

.benefit-description {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.625;
  margin: 0;
}

/* =============================================
   SECCIÓN DE RESERVA (CTA)
   ============================================= */

.reserva-cta {
  margin-top: 4rem;
  padding: 2rem;
  background-color: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  text-align: center;
}

.reserva-cta-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: #1A1A1A;
}

.reserva-cta-text {
  color: #6b7280;
  font-weight: 300;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.reserva-cta-button {
  display: inline-block;
  background-color: #0044a5;
  color: #ffffff;
  padding: 1rem 2.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: center;
}

.reserva-cta-button:hover {
  background-color: #003380;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.reserva-cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 68, 165, 0.5);
}

@media (min-width: 640px) {
  .reserva-cta-button {
    width: auto;
  }
}

/* =============================================
   NAVEGACIÓN DE HABITACIONES
   ============================================= */

.habitaciones-nav {
  background-color: #1A1A1A;
  color: #ffffff;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border-radius: 0.75rem;
}

.habitaciones-nav-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #0044a5;
  font-weight: 400;
}

.habitaciones-nav-divider {
  width: 2rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
  border: none;
}

.habitaciones-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.habitaciones-nav-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.habitaciones-nav-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.habitaciones-nav-list li + li {
  margin-top: 0;
}

.habitaciones-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease;
}

.habitaciones-nav-link:hover {
  color: #0044a5;
}

.habitaciones-nav-arrow {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.habitaciones-nav-link:hover .habitaciones-nav-arrow {
  opacity: 1;
}

/* =============================================
   UTILIDADES ADICIONALES
   ============================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}