/* =============================================
   FAQ HABITACIONES - ESTILOS CSS SIN TAILWIND
   ============================================= */

/* Contenedor principal de la sección */
.faq-habitaciones-section {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid #e5e7eb;
}

/* Header de la sección */
.faq-habitaciones-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-habitaciones-label {
  color: #0044a5;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}

.faq-habitaciones-title {
  font-size: 1.875rem;
  color: #111827;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

@media (min-width: 768px) {
  .faq-habitaciones-title {
    font-size: 2.25rem;
  }
}

.faq-habitaciones-divider {
  width: 2.5rem;
  height: 1px;
  background-color: #0044a5;
  margin: 1rem auto 0;
  border: none;
}

/* Contenedor de preguntas */
.faq-habitaciones-container {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.faq-habitaciones-container > * + * {
  margin-top: 1rem;
}

/* Cada pregunta (details) */
.faq-habitaciones-details {
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: box-shadow 0.3s ease;
}

.faq-habitaciones-details:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* Ocultar el marcador por defecto del details en navegadores WebKit */
.faq-habitaciones-details summary::-webkit-details-marker {
  display: none;
}

/* Ocultar el marcador en Firefox y otros navegadores */
.faq-habitaciones-details summary {
  list-style: none;
}

/* Estilo del summary */
.faq-habitaciones-summary {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  color: #1A1A1A;
  list-style: none;
}

.faq-habitaciones-summary::-webkit-details-marker {
  display: none;
}

.faq-habitaciones-question {
  font-size: 1.125rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq-habitaciones-icon {
  transition: transform 0.3s ease;
  color: #0044a5;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.faq-habitaciones-details[open] .faq-habitaciones-icon {
  transform: rotate(180deg);
}

.faq-habitaciones-icon svg {
  width: 24px;
  height: 24px;
}

/* Respuesta */
.faq-habitaciones-answer {
  margin-top: 1rem;
  color: #6b7280;
  font-weight: 300;
  line-height: 1.625;
  font-size: 0.875rem;
}

/* =============================================
   UTILIDADES ADICIONALES
   ============================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}