/* ===== Estilo general ===== */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: linear-gradient(to bottom, #5fd0ff, #7fdcff);
  color: #333;
}

/* ===== Header ===== */
header {
  background-color: transparent;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 30px;
  font-weight: bold;
  color:#1b167f; /* Texto azul */
  text-decoration: none;
}

.logo .icono-maleta {
  color: #ffb300; /* Maleta naranja */
  margin-right: 5px;
}


nav {
  display: flex;
  gap: 15px;
}

nav a {
  color: #1b167f;
  text-decoration: none;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
}

nav a:hover {
  background-color: #f0f0f0;
}

.language-currency {
  display: flex;
  gap: 10px;
}

.language-currency select {
  padding: 5px;
  border-radius: 4px;
  border: none;
}

/* ===== Hero Section ===== */
.hero {
  text-align: center;
  padding: 40px 20px 20px;
  color: #1b167f;
}

.hero h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.search-box {
  background-color: #ffb300;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  margin: auto;
}

.search-box input,
.search-box select {
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  min-width: 140px;
}

.search-box button {
  background-color: #1b167f;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.search-box button:hover {
  background-color: #e09c00;
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
  .search-box {
    flex-direction: column;
    align-items: stretch;
  }
  .search-box input,
  .search-box select,
  .search-box button {
    width: 100%;
  }
}

.ayuda {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  background-color: #fff;
  border-radius: 10px;
}

.ayuda h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.ayuda p {
  font-size: 16px;
  margin-bottom: 20px;
}

.boton-ayuda {
  background-color: #0071c2;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 30px;
}

.tabs-ayuda {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.tabs-ayuda button {
  background: #f2f2f2;
  border: 1px solid #ccc;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
}

.tabs-ayuda .tab-activa {
  background-color: #0071c2;
  color: white;
  font-weight: bold;
  border: none;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-item:hover {
  background-color: #e6f0ff;
}
.alerta-seguridad {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  padding: 15px 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  font-size: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.alerta-seguridad {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  padding: 15px 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  font-size: 15px;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.cerrar-alerta {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 18px;
  color: #856404;
  cursor: pointer;
}
.faq-categoria {
  margin-bottom: 40px;
}

.faq-categoria h3,
.faq-categoria h4 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

.faq-lista {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-item:hover {
  background-color: #e6f0ff;
}
.faq-item {
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.faq-item:hover {
  background-color: #e6f0ff;
}

.faq-respuesta {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  display: none;
}
