* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  font-family: 'Barlow Condensed', sans-serif;
}
.hero {
  position: relative;
  height: 100vh;
  background: url("fondo.png") no-repeat center center/cover;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
}
/* Cabecera */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(0,0,0,0.2);
  z-index: 100;
}
header img {
  height: 50px;
}
/* Menú */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}
nav ul li a:hover {
  color: #ddd;
}
/* Botón hamburguesa */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}
/* Contenido hero */
.hero-content {
  margin: auto;
  max-width: 1000px;
  padding: 20px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.hero-content h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
text-decoration:none;
}

/* Columnas: lista y botones */
.info ul,
.info .buttons {
  flex: 1;              /* Cada columna ocupa mismo espacio */
  min-width: 250px;     /* Evita que se achiquen demasiado */
}

.info ul {
  list-style: none;
  font-size: 1.8rem;
  text-align: center;     /* Alineación del texto */
  width: 100%;          /* Ocupa todo el ancho de su columna */
  padding-left: 10px;   /* Pequeño margen interno opcional */
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  padding: 7px;
  font-size: 1.2rem;
  border-radius: 30px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: bold;
  gap: 10px;
  transition: transform 0.2s;
margin:10px;
}
.btn:hover {
  transform: scale(1.05);
}
.btn.whatsapp { background: #25D366; }
.btn.telefono { background: #FF7F11; }
.btn.sms { background: #0078FF; }
.btn.email { background: #0078FF; }
/* Mostrar/ocultar según pantalla */
.btn.sms { display: none; }


/* Responsivo */
@media (max-width: 768px) {
  .info {
    flex-direction: column;
    align-items: center;
  }
  .btn.sms { display: flex; }
 

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    background: rgba(0,0,0,0.85);
    display: none;
    flex-direction: column;
    padding: 20px;
  }
  nav ul {
    flex-direction: column;
    gap: 15px;
  }
  .menu-toggle {
    display: block;
  }
  nav.active {
    display: flex;
  }
.hero-content{
margin-top:10%;
}
.info ul{
font-size:1.2rem;
}
.buttons .btn{
width:100%;
padding:2px;
}
}

/* Sección Tripadvisor */
.tripadvisor {
  background: #000;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tripadvisor img {
  max-width: 250px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.tripadvisor img:hover {
  transform: scale(1.1);
}


/* Sección Quiénes Somos */
.about {
  background: #444; /* gris oscuro */
  color: white;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Barlow Condensed', sans-serif;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.about p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
.about img {
  width:300px;
}



/* Sección Nuestros Servicios */
.services {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Barlow Condensed', sans-serif;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}


/* Sección Nuestras Unidades */
.units {
  background: #FF7F11; /* Naranja */
  text-align: center;
  padding: 80px 20px;
  font-family: 'Barlow Condensed', sans-serif;
}

.units h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 50px;
}

.units-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

.units-grid.top-row {
  grid-template-columns: repeat(4, 1fr);
}

.units-grid.bottom-row {
  grid-template-columns: repeat(3, 1fr);
  justify-content: center; /* centra las 3 columnas */
}

.unit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.unit-item img {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.unit-item img:hover {
  transform: scale(1.05);
}

.unit-item p {
  font-size: 1.2rem;
  color: #000; /* texto negro */
  font-weight: bold;
}

/* Responsivo */
@media (max-width: 992px) {
  .units-grid.top-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .units-grid.bottom-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .units-grid.top-row,
  .units-grid.bottom-row {
    grid-template-columns: 1fr;
  }
}


/* Sección Aeropuertos */
.airports {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Barlow Condensed', sans-serif;
}

.airports h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.airports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.airport-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.airport-item img {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.airport-item img:hover {
  transform: scale(1.05);
}

.airport-item p {
  font-size: 1.2rem;
  font-weight: bold;
}

/* Responsivo */
@media (max-width: 992px) {
  .airports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .airports-grid {
    grid-template-columns: 1fr;
  }
}


.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-item img {
  width: 30%;
  max-width: 200px;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.service-item img:hover {
  transform: scale(1.05);
}

.service-item p {
  font-size: 1.2rem;
  font-weight: bold;
}

/* Responsivo */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* Sección Excursiones */
.excursions {
  background: lightgray;
  color: #000;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Barlow Condensed', sans-serif;
}

.excursions h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.excursions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.excursion-item {

  border-radius: 12px;
  padding: 20px;
   transition: transform 0.3s ease;
}

.excursion-item:hover {
  transform: translateY(-5px);
}

.excursion-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.excursion-item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.excursion-item p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Botón */
.excursions-btn {
  text-align: center;
}

.btn-excursions {
  display: inline-block;
  background: #FF7F11;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  border: 2px solid white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s, background 0.3s;
}

.btn-excursions:hover {
  transform: scale(1.05);
  background: #e66f0c;
}

/* Responsivo */
@media (max-width: 992px) {
  .excursions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .excursions-grid {
    grid-template-columns: 1fr;
  }
}


/* Sección Por qué elegir Ricardo Transfer */
.why-choose {
  background: gray;
  color: white;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Barlow Condensed', sans-serif;
}

.why-choose h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.why-choose-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

/* Texto */
.why-text {
  flex: 0 0 60%; /* 60% ancho */
  text-align: center;
}

.why-text ul {
  list-style: disc;
  padding-left: 0;
  display: inline-block; /* para centrar */
  text-align: left; /* viñetas alineadas a la izquierda */
  font-size: 1.6rem;
  line-height: 2;
}

/* Imagen */
.why-image {
  flex: 0 0 30%; /* 30% ancho */
}

.why-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.why-image img:hover {
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 992px) {
  .why-choose-grid {
    flex-direction: column;
  }
  .why-text, .why-image {
    flex: 1 1 100%;
  }
  .why-text ul {
    text-align: center;
  }
}



.reseñas-section {
    background-color: #fff;
    padding: 50px 20px;
    font-family: 'Montserrat', sans-serif;
}

.reseñas-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start; /* alineación vertical superior */
    flex-wrap: wrap;
}

/* Columna izquierda */
.reseñas-left {
    flex: 1 1 350px;
    max-width: 400px;
}

.reseñas-left h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.rating {
    font-size: 2rem;
    color: #ffde59;
    cursor: pointer;
    margin-bottom: 15px;
}

.rating span:hover,
.rating span:hover ~ span {
    color: #ccc;
}

.reseñas-left textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: none;
}

.reseñas-left button {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.reseñas-left button:hover {
    background-color: #333;
}

/* Columna derecha */
.reseñas-right {
    flex: 1 1 400px;
    max-width: 500px;
    text-align: center;
}

.reseñas-right h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.carousel {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    font-weight: bold;
    font-size: 1rem;
}

.carousel-item.active {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .reseñas-container {
        flex-direction: column;
        align-items: center;
    }
    .reseñas-left, .reseñas-right {
        max-width: 100%;
    }
}
.form-container {
    background-color: gray;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin:40px auto;
}

.form-container h2 {
    text-align: center;
    color: white;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
}

label {
    display: block;
    color: white;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
}

.inline-fields {
    display: flex;
    justify-content: space-between;
}

.field {
    width: 48%;
}

.spam-and-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spam-question {
    flex: 1;
    margin-right: 10px;
}

#spam-label {
    margin-bottom: 5px;
    display: block;
}

#spam-check {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}

button {
    width: 50%;
    padding: 10px;
    background-color: white;
    border: none;
    border-radius: 5px;
    color: gray;
    font-size: 1.2rem;
    cursor: pointer;
}

button:hover {
    background-color: lightgray;
}

.white-text {
    color: white;
}

/* Footer */
footer {
  font-family: 'Barlow Condensed', sans-serif;
}

.footer-bg {
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.footer-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* sombra oscura sobre la imagen */
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.footer-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.footer-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-menu ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-menu ul li a:hover {
  color: #FF7F11;
}

/* Franja de copyright */
footer .footer-copyright {
  background: #000;
  color: white;
  text-align: center;
  padding: 15px 20px;
  font-size: 0.9rem;
}
/* Sección Excursiones Detalladas */
.excursion-detail {
  background: #f2f2f2;
  color: #000;
  padding: 80px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  text-align: center;
}

.excursion-item-detail {
  margin-bottom: 60px;
}

.excursion-item-detail h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.excursion-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.excursion-images img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.excursion-images img:hover {
  transform: scale(1.05);
}

.excursion-item-detail p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 992px) {
  .excursion-images {
    flex-direction: column;
    align-items: center;
  }
}


/* Botón Reservar excursiones */
.btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366; /* verde WhatsApp */
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  border: 2px solid white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  gap: 10px;
  transition: transform 0.3s, background 0.3s;
  margin-top: 15px;
}

.btn-reserve:hover {
  transform: scale(1.05);
  background: #1ebe57;
}
