:root {
    --color-principal: #333333; /* Marrón del logo */
    --color-fondo: #F5F0E6; /* Beige claro */
    --color-whatsapp: #25d366;
}

body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: var(--color-fondo);
    color: var(--color-principal);
}

/* Header */
header {
  background: linear-gradient(90deg, var(--color-principal), #0b3d91); /* degradado elegante */
  color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 60px;
  height: auto;
}
.logo-container img {
  width: 100px;
  height: auto;
}

.logo-text {
  font-family: "Poppins", sans-serif; /* o Montserrat, Lato, Roboto */
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 10px;
  color: #fff;
  background: linear-gradient(90deg, #ffd700, #ffffff); /* dorado a blanco */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* hace el degradado en el texto */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700; /* dorado elegante */
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  height: auto;
}

.hero-swiper {
  width: 100%;
  height: 400px; /* define la altura del slider */
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* mantiene proporción y corta si es necesario */
}
/* Texto encima del slider */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10; /* Se asegura de estar encima del slider */
  text-shadow: 0 2px 10px rgba(0,0,0,0.7); /* para que se lea mejor */
}

.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.btn-whatsapp {
  background: #25d366;
  padding: 12px 24px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-whatsapp:hover {
  background: #1ebc57;
}


/* Servicios */
.servicios-container {
    display: flex;
    justify-content: space-around;
    padding: 30px;
    gap: 15px;
}

.servicio {
    background: white;
    padding: 35px;
    border-radius: 35px;
    width: 30%;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.servicio:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
}

#servicios h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    position: relative;
}

#servicios h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #007BFF; /* azul o el color principal de tu página */
    margin: 10px auto 0;
    border-radius: 2px;
}


/*Nostros*/

#nosotros {
    background: linear-gradient(to right, #f9f9f9, #e0f7fa);
    padding: 80px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

/* Título principal */
#nosotros h2 {
    font-size: 36px;
    color: #00796b;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Contenedor para centrar el contenido */
.nosotros-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Tarjeta de nosotros */
.nosotros {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nosotros:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Subtítulo */
.nosotros h3 {
    font-size: 24px;
    color: #004d40;
    margin-bottom: 15px;
}

/* Texto descriptivo */
.nosotros p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/*Destinos comunes*/
#destinos {
  padding: 50px 20px;
  background-color: #f7f7f7;
  text-align: center;
}

#destinos h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #333;
}

#destinos p {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #666;
}

.destinos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.destino {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  width: 220px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.destino:hover {
  transform: translateY(-10px);
}

.destino img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.destino h3 {
  padding: 15px 10px;
  font-size: 1.1rem;
  color: #333;
}


/* Footer */
footer {
  background: linear-gradient(90deg, var(--color-principal), #0b3d91); /* igual que el header */
  color: white;
  text-align: center;
  padding: 20px 10px;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  list-style: none;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffd700; /* mismo dorado del header */
}




