* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.logo img {
    height: 100px;
}

.menu a {
    margin: 0 15px;
    color: #ffde59;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* CABECERA */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.logo img {
    height: 100px;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: #ffde59;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
}

.menu a:hover {
    text-decoration: underline;
}

.call-button a {
    background-color: #ffde59;
    color: #000;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}

.call-button a:hover {
    background-color: #e6c84f;
}

/* Botón hamburguesa oculto en escritorio */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #ffde59;
    cursor: pointer;
}

/* PORTADA */
.hero {
    background: url('fondo1.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
}

.overlay {
    position: relative;
    top: 150px;
    text-align: center;
    color: white;
    padding: 0 20px;
    width:70%;
    margin:auto;
}

.overlay h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    margin-bottom: 10px;
}

.two-columns {
    display: flex;
       gap: 20px;
justify-content:right;
align-items: center; /* 👈 Centrado vertical */
  }

.col {
    width: 45%;
 
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: rgba(0,0,0,0.9);
        flex-direction: column;
        align-items: flex-start;
        width: 200px;
        padding: 10px;
        display: none;
    }

    .menu a {
        display: block;
        padding: 10px 15px;
        width: 100%;
    }

    .menu.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .call-button {
        display: none;
    }

    .overlay h1 {
        font-size: 1.3rem;
    }

    .two-columns {
        flex-direction: column;
    }

    .col {
        width: 100%;

    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .overlay h1 {
        font-size: 1.2rem;
    }
}
/* Botón WhatsApp */
.whatsapp-btn {
    width: 70%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: #286302;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    transition: background-color 0.3s;
}

.whatsapp-btn img {
    width: 24px;
    height: 24px;
 }

.whatsapp-btn:hover {
    background-color: #f0f0f0;
}

/* Lista de aeropuertos */
.right-col h2 {
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    margin-bottom: 10px;
text-align:left;
}

/* Frase promociones */
.promo-text {
    margin-top:10px;
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}
/* Ajuste columnas */
.left-col{
    display: flex;
    flex-direction: column;
     justify-content: center; /* 👈 Centrado vertical interno */
    align-items: center;

}
.right-col {
    display: flex;
    flex-direction: column;
     justify-content: center; /* 👈 Centrado vertical interno */
    align-items: left;

}


Explicación rápida de los cambios:
/* Responsive ajustes extra */
@media (max-width: 768px) {
    .whatsapp-btn {
        font-size: 9px;
        padding: 10px 15px;
  
    }

    .whatsapp-btn img {
        width: 20px;
        height: 20px;
    }

    .right-col h2 {
        font-size: .4rem;
    }

    .promo-text {
        font-size: 1rem;
    }
.two-columns {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }
}
.black-section {
    background-color: #000;
    border-top: 12px solid #ffde59; /* línea gruesa arriba */
    justify-content: center;
    align-items: center;
    padding: 40px 50px;
text-align: center;
}
.black-section p {
    width:70%;
    margin:auto;
    font-size: 1rem;
    color:white;
    font-weight: bold;
       margin-bottom: 50px;
text-align:center;
}
.black-section .section-button {
    width: 24%;
    max-width: 400px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;

}

.black-section .section-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Ajuste en móviles */
@media (max-width: 768px) {
    .black-section .section-button {
        width: 60%;
    }
}
.vehiculos-section {
    background-color: #fff;
    padding: 50px 50px;
    text-align: center;
}

.vehiculos-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #000;
}

.vehiculos-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.vehiculo-item {
    flex: 1 1 calc(33.333% - 30px);
    max-width: 350px;
    margin-top:20px;
}

.vehiculo-item img {
    width: 80%;
    border-radius: 8px;

}

.vehiculo-item p {
    margin-top: 10px;
    font-size: 1rem;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .vehiculo-item {
        flex: 1 1 100%;
       width: none;
    }
.vehiculo-item img {
    width: 70%;
    
}
}
.servicios-section {
    background-color: rgba(255, 222, 89, 0.7); /* #ffde59 con 70% opacidad */
    padding: 50px 20px;
    text-align: center;
}

.servicios-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #000;
}

.servicios-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.servicio-item {
    flex: 1 1 calc(33.333% - 30px);
    max-width: 250px;
    display: flex;                /* Para alinear contenido en columna */
    flex-direction: column;
    align-items: center;          /* Centrado horizontal */
    justify-content: center;      /* Centrado vertical */
    text-align: center;
}

.servicio-item img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.servicio-item p {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .servicio-item {
        flex: 1 1 100%;
        max-width: none;
    }

    .servicio-item img {
        width: 60px;
    }
}
.excursiones-section {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.excursiones-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #000;
}

.excursiones-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.excursion-item {
    flex: 1 1 calc(33.333% - 30px);
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.excursion-item img {
    width: 70%;
    border-radius: 8px;
        margin-bottom: 10px;
}

.excursion-item p {
    font-size: 1rem;
    color: #000;
    text-align: center;
}

.excursiones-button a {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.excursiones-button a:hover {
    background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .excursion-item {
        flex: 1 1 100%;
        max-width: none;
    }
}
.galeria-section {
    background-color: rgba(255, 222, 89, 0.7); /* amarillo 70% opaco */
    padding: 30px 20px;
}

.galeria-grid {
    display: flex;
    gap: 10px; /* separación entre columnas */
    flex-wrap: wrap;
    justify-content: center;
}

.galeria-item {
    flex: 1 1 calc(25% - 10px); /* 4 columnas */
    max-width: calc(25% - 10px);
}

.galeria-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .galeria-item {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .galeria-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
.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;
}










.site-footer {
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 80px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.logo-col {
    text-align: left;
}

.footer-logo {
    width: 80px;
    margin-bottom: 10px;
}

.footer-title {
    font-weight: bold;
    line-height: 1.4;
    font-size: 1rem;
}

.menu-col ul {
    list-style: none;
    padding: 0;
}

.menu-col ul li {
    margin: 5px 0;
}

.menu-col ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #ffde59; /* Color de la cabecera */
}

.footer-call-btn {
    display: inline-block;
    padding: 10px 50px;
    border-radius: 25px;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;

}

.footer-call-btn:hover {
    background-color: #f0f0f0;
}

.facebook-icon img {
    width: 30px;
   
}

@media (max-width: 768px) {
    .site-footer {
        flex-direction: column;
        text-align: center;
    }
    .logo-col {
        text-align: center;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
    display: block;
filter: brightness(0) invert(1); /* Convierte en blanco */
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
.footer-bottom {
    background-color: #333; /* Gris oscuro */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-bottom p {
    margin: 0;
}
/* PORTADA2 */
.hero2 {
    background: url('fondo1.jpg') no-repeat center center/cover;
    height: 50vh;
    position: relative;
}

.hero2 .overlay {
    position: relative;
    top: 150px;
    text-align: center;
    color: white;
    padding: 0 20px;
    width:70%;
    margin:auto;
}

.hero2 .overlay h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    margin-bottom: 10px;
}
  

@media (max-width: 700px) {
 
    .hero2 .overlay h1 {
        font-size: 1.2rem;
    }
}
.excursiones-detalle {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.excursiones-detalle h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #000;
}

.excursion-item {
    display: flex;
    flex-direction: row; /* columnas lado a lado en pantallas grandes */
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align:center;
}

.excursion-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.excursion-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
 
}

.excursion-info {
    flex: 1;
    max-width: 500px;
}

.excursion-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.excursion-info p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.precio {
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.btn-reservar {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    background-color: #ccc;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-reservar:hover {
    background-color: #999;
}

/* Responsivo: en móviles las columnas se apilan */
@media (max-width: 768px) {
    .excursion-item {
        flex-direction: column;
        text-align: center;
    }
    .excursion-info {
        text-align: center;
    }
}
.excursion-separator {
    border-bottom: 2px solid #ccc; /* línea gris */
    margin: 40px 0; /* espacio arriba y abajo */
}
/* Estilos para la sección de Pedro */
.about-pedro {
  background-color: #fff;
  padding: 60px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.about-text {
  flex: 1 1 45%;
}

.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.about-photos {
  flex: 1 1 50%;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.about-photos img {
  width: 30%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsivo */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-photos {
    width: 100%;
    justify-content: center;
  }
  .about-photos img {
    width: 30%;
  }
}
