/* =======================
   RESETEO Y BASE GENERAL
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(135deg, #000000, #000000);
  color: #62bbff;
}

/* =======================
         HEADER
======================= */
header {
  background-color: #007bc7;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 30px;
  height: 30px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

nav a:hover {
  text-decoration: underline;
}

/* =======================
         HERO SECTION
======================= */
.hero {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 85vh;
  padding: 40px;
  gap: 30px;
  flex-wrap: wrap;
}

.text {
  max-width: 500px;
  text-align: left;
}

.text h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.text p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #62bbff;
}

.text img {
  max-width: 100%;
  height: auto;
}

/* =======================
         FORMULARIO
======================= */
.search-box {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  width: 400px;
  color: #000;
}

.search-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.inputs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

label {
  font-weight: 600;
  color: #62bbff;
}

input, select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
}

button {
  background-color: #007bc7;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

button:disabled {
  background-color: #9dc7e0;
  cursor: not-allowed;
}

button:hover:not(:disabled) {
  background-color: #005f99;
}

/* =======================
     MEDIA QUERIES
======================= */

/* Tablets (pantallas medianas) */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text {
    max-width: 90%;
    text-align: center;
  }

  .search-box {
    width: 80%;
  }
}

/* Celulares (pantallas pequeñas) */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    padding: 20px;
    gap: 10px;
  }

  nav a {
    font-size: 0.95rem;
  }

  .hero {
    padding: 20px;
  }

  .text h2 {
    font-size: 1.6rem;
  }

  .text p {
    font-size: 1rem;
  }

  .search-box {
    width: 100%;
    padding: 20px;
  }

  .inputs {
    flex-direction: column;
  }

  button {
    padding: 10px;
    font-size: 0.95rem;
  }
}

/* ======== Sección de destinos ======== */
.destinos {
  background: #000;
  padding: 60px 5%;
  color: #fff;
  text-align: center;
}

.destinos h2 {
  color: #62bbff;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Contenedor con scroll horizontal */
.cards-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 15px;
  scrollbar-width: thin;
  scrollbar-color: #62bbff transparent;
}

.cards-container::-webkit-scrollbar {
  height: 8px;
}

.cards-container::-webkit-scrollbar-thumb {
  background-color: #62bbff;
  border-radius: 4px;
}

/* Tarjeta individual */
.card {
  background: #111;
  border-radius: 16px;
  min-width: 280px;
  max-width: 300px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(98, 187, 255, 0.3);
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #fff;
}

.card-content .price {
  font-size: 1rem;
  color: #ccc;
}

.card-content .price span {
  color: #62bbff;
  font-weight: bold;
}

.card-content .details {
  font-size: 0.85rem;
  color: #888;
}

/* ======== Responsividad ======== */
@media (max-width: 768px) {
  .cards-container {
    gap: 12px;
  }

  .card {
    min-width: 240px;
  }

  .destinos h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .card {
    min-width: 220px;
  }
}


/* ======== Sección Nosotros ======== */
.nosotros {
  background: #0a0a0a;
  padding: 70px 8%;
  color: #fff;
  text-align: center;
}

.nosotros h2 {
  color: #62bbff;
  font-size: 2rem;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.nosotros-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Quiénes somos */
.nosotros-info {
  max-width: 800px;
}

.nosotros-info h3 {
  color: #62bbff;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.nosotros-info p {
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
}

/* Misión y visión */
.mision-vision {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.box {
  background: #111;
  border-radius: 16px;
  padding: 25px;
  width: 320px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(98,187,255,0.3);
}

.box h3 {
  color: #62bbff;
  margin-bottom: 10px;
}

.box p {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Políticas */
.politicas {
  background: #111;
  padding: 30px;
  border-radius: 20px;
  max-width: 800px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.politicas h3 {
  color: #62bbff;
  margin-bottom: 15px;
}

.politicas ul {
  list-style: none;
  padding-left: 0;
}

.politicas li {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.politicas li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #62bbff;
}

/* ======== Responsividad ======== */
@media (max-width: 768px) {
  .mision-vision {
    flex-direction: column;
    align-items: center;
  }

  .box {
    width: 100%;
    max-width: 400px;
  }

  .politicas {
    padding: 25px;
  }
}
 

/* ======== Footer ======== */
footer {
  background-color: #ffffff;
  color: #000;
  padding: 40px 8%;
  border-top: 3px solid #62bbff;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo img {
  display: block;
  margin: 0 auto 10px auto;
}

.footer-logo p {
  font-size: 0.9rem;
  color: #333;
}

.footer-links {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-links a {
  color: #007bc7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #62bbff;
}

.footer-contact {
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  color: #333;
}

.footer-contact p {
  margin: 5px 0;
}

/* ======== Responsividad ======== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
