/* ========================= */
/* Estilos para páginas info */
/* ========================= */

body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9fafc;
  color: #333;
  line-height: 1.6;
}

/* Encabezado */
.page-header {
  background: linear-gradient(135deg, #0071c2, #005a9e);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  animation: fadeInDown 1s ease;
}

.page-header h1 {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
}

/* Contenido */
.page-content {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.page-content h2 {
  color: #0071c2;
  margin-top: 30px;
  font-size: 1.6rem;
  border-left: 4px solid #0071c2;
  padding-left: 10px;
}

.page-content p,
.page-content li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 12px;
}

/* Formularios (contacto) */
.contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0071c2;
  box-shadow: 0 0 0 3px rgba(0, 113, 194, 0.15);
  outline: none;
}

.contact-form .submit-btn {
  background: #0071c2;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form .submit-btn:hover {
  background: #005fa3;
  transform: translateY(-2px);
}

/* Listas legales */
.legal-page section {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  animation: fadeInUp 0.8s ease;
}

.legal-page h2 {
  font-size: 1.3rem;
  color: #0071c2;
}

/* Animaciones */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsivo */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.8rem;
  }

  .page-content {
    margin: 20px auto;
  }
}


/* ====== Preguntas Frecuentes (FAQ) ====== */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #0071c2;
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #005a9e;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f9f9f9;
  padding: 0 16px;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin: 12px 0;
  font-size: 0.95rem;
  color: #444;
}

.faq-question.active {
  background: #005a9e;
}



.reservations-container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
}

.reservations-list {
  display: grid;
  gap: 20px;
}

.reservation-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  border-left: 6px solid #0071c2;
  transition: transform 0.2s;
}

.reservation-card:hover {
  transform: translateY(-3px);
}

.reservation-card h3 {
  color: #0071c2;
  margin-bottom: 10px;
}

.reservation-card p {
  margin: 5px 0;
  color: #444;
}

.cancel-btn {
  background: #dc3545;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  margin-top: 10px;
}

.cancel-btn:hover {
  background: #b02a37;
}
