/* ======================================================
   VARIABLES GENERALES
====================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --naranja: #FF8C42;
  --azul: #1E90FF;
  --beige: #FFF8F0;
  --gris: #444;
  --blanco: #fff;
  --fuente: "Poppins", sans-serif;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background: var(--beige);
  color: var(--gris);
  scroll-behavior: smooth;
}

/* Para escritorio, mantener una sola línea */
@media (min-width: 1024px) {
  .hero-content h1 {
    margin-bottom: 5px;
    white-space: nowrap;
  }
}


/* ======================================================
   NAVBAR
====================================================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Contenedor principal */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo y texto */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 60px;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
  background: linear-gradient(45deg, var(--naranja), var(--azul));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.logo-text span {
  font-weight: 700;
  color: var(--naranja);
  -webkit-text-fill-color: var(--naranja);
}

/* Enlaces */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  transition: transform 0.4s ease;
}

.nav-links a {
  text-decoration: none;
  color: var(--gris);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--azul);
}

/* Botón menú hamburguesa */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}

.nav-toggle span {
  height: 3px;
  width: 100%;
  background: var(--gris);
  border-radius: 2px;
  transition: 0.3s;
}

/* ======================================================
   MÓVIL
====================================================== */
@media (max-width: 900px) {
  .nav-container {
    padding: 12px 5%;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 220px;
    transform: translateX(100%);
    padding: 25px 0;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-links a {
    margin: 12px 0;
    color: var(--gris);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  /* animación del icono */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  .logo-text {
    font-size: 1rem;
  }
  .logo-img {
    height: 45px;
  }
}


/* ======================================================
   QUIÉNES SOMOS
====================================================== */
.quienes {
  padding: 100px 5%;
  background: #f9f9f9;
}

.quienes .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.quienes .texto {
  flex: 1;
  min-width: 320px;
}

.quienes .texto h2 {
  color: var(--azul);
  font-size: 2rem;
  margin-bottom: 15px;
}

.quienes .texto p {
  color: var(--gris);
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.quienes .imagen {
  flex: 1;
  min-width: 320px;
}

.quienes .imagen img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* ======================================================
   NUESTRA FORMA DE VIAJAR
====================================================== */
.forma-viajar {
  padding: 100px 5%;
  background: linear-gradient(135deg, #ffffff 60%, #f6f9fb 100%);
}

.forma-viajar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.forma-viajar .texto {
  flex: 1;
  min-width: 320px;
}

.forma-viajar h2 {
  color: var(--azul);
  font-size: 2rem;
  margin-bottom: 20px;
}

.forma-viajar p {
  color: var(--gris);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 15px;
}

.pilares {
  display: flex;
  gap: 25px;
  margin-top: 25px;
}

.pilar {
  text-align: center;
}

.pilar i {
  font-size: 1.8rem;
  color: var(--naranja);
  margin-bottom: 8px;
}

.pilar h4 {
  font-size: 1rem;
  color: var(--azul);
}

/* Imagen */
.forma-viajar .imagen {
  flex: 1;
  min-width: 320px;
}

.forma-viajar .imagen img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .forma-viajar .container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .pilares {
    justify-content: center;
  }
}


/* ======================================================
   POR QUÉ ELEGIRNOS
====================================================== */
.por-que {
  padding: 100px 5%;
  background: #f5f5f5;
  text-align: center;
}

.por-que h2 {
  color: var(--azul);
  font-size: 2rem;
  margin-bottom: 40px;
}

.beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.beneficio {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.beneficio:hover {
  transform: translateY(-6px);
}

.beneficio i {
  font-size: 2rem;
  color: var(--naranja);
  margin-bottom: 12px;
}

.beneficio h4 {
  color: var(--azul);
  margin-bottom: 10px;
}

/* ======================================================
   GALERÍA
====================================================== */
.galeria {
  padding: 100px 5%;
  text-align: center;
  background: white;
}

.galeria h2 {
  color: var(--azul);
  margin-bottom: 40px;
}

.grid-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.grid-galeria img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.grid-galeria img:hover {
  transform: scale(1.05);
}




/* ======================================================
   FOOTER (OPTIMIZADO Y COMPACTO)
====================================================== */
.footer {
  background: #0e1a2b;
  color: white;
  text-align: center;
  padding: 50px 5% 25px;
  font-family: inherit;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 25px;
}

/* Logo y slogan */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.footer-logo img {
  width: 80px;
  height: auto;
  margin-bottom: 5px;
}

.footer-logo .slogan {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
}

/* Contacto */
.footer-contacto {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-contacto h4 {
  color: var(--naranja);
  font-size: 1rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contacto .direccion {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
  line-height: 1.4;
  max-width: 300px;
}

.footer-contacto a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  transition: color 0.3s;
}

.footer-contacto a i {
  color: var(--naranja);
  font-size: 1rem;
}

.footer-contacto a:hover {
  color: var(--naranja);
}

/* Parte inferior */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 15px;
}

.footer-bottom p {
  margin: 3px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

.footer-bottom .creditos a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom .creditos a:hover {
  color: var(--naranja);
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-logo,
  .footer-contacto {
    align-items: center;
    text-align: center;
  }

  .footer-contacto .direccion {
    max-width: 90%;
  }

  .footer {
    padding: 40px 20px 20px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

/* ===================== */
/* RESPONSIVO */
/* ===================== */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    align-items: center;
  }

  .footer-contacto {
    align-items: center;
  }

  .footer-contacto a {
    justify-content: center;
  }

  .footer {
    padding: 50px 20px 25px;
  }
}
