body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
p {
    font-family: "Poppins", sans-serif;
}

/* ---------------Navegacion y logo--------- --------*/
.container {
    margin: 0 auto;
    max-width: 90%;
    
}

.header {
    background: linear-gradient(90deg, #004aad, #00bfa6);
    /* background-color: #004aad; */
    padding: 0px;
    text-align: left;
}
.header__Logo{
    text-align: center;
}
.header__img {
    width: 8rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}


.header__navegacion {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.header__enlace {
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-family: "Poppins", sans-serif;
}

.header__enlace--active {
    color: #ffd60a;
}

.header__enlace1 {
    padding: 7px;
    background-color: #ffd60a;
    border-radius: 0.5rem;
    color: black;
    text-align: center;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

@media (min-width: 770px) {
    .header {
        display: flex;
        align-items: center;
    }

    .header__img {
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }
}

/* ---------------------------------------Hero---------------------------------------- */

.hero {
    background-image: url(img/hero.jpg);
    width: 100%;
    height: 80vh;
    background-position: center center;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero__bloque {
    z-index: 5;
}

.hero__titulo {
    font-size: 3rem;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    text-align: left;
}

.hero__parrafo {
    font-size: 2rem;
    text-align: left;
    font-family: "Poppins", sans-serif;
}

.hero__enlace {
    text-decoration: none;
    padding: 10px;
    background-color: #ffd60a;
    border-radius: 0.5rem;
    color: black;
    font-family: "Poppins", sans-serif;
    text-align: left;
}

@media (min-width: 770px) {
    .hero__titulo {
        font-size: 4rem;
        font-weight: 500;
    }
}

/* ---------------------------------------Why choose us---------------------------------------- */

.choose__us {
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.main__titulo {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 2rem;

}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: "Poppins", sans-serif;
    gap: 2rem;

}

.main__bloque {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 15px;
    border-radius: 20px;
}

@media (min-width: 770px) {
    .main {
        flex-direction: row;
        justify-content: space-evenly;
    }
}

/* ---------------------------------------Feature Tours---------------------------------------- */

.tours {
    background-color: #f7fbf7;
}

.tours__header {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    margin-top: 3rem;
    background: linear-gradient(90deg, #004aad, #00bfa6);
    -webkit-background-clip: text;
    /* aplica el fondo solo al texto */
    -webkit-text-fill-color: transparent;
    /* hace el texto transparente para ver el degradado */
    font-weight: 700;
}

.tours__bloque {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tour__card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
}

.tour__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    /* más intensa al hover */
}

.tours__titulo {
    font-family: "Poppins", sans-serif;
    font-size: x-large;

}

.tours__precio {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
}

.tours__enlace {
    text-decoration: none;
    background-color: #4fd1c5;
    color: white;
    padding: 10px;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 1.5rem;
}

@media (min-width: 770px) {
    .tours__bloque {
        flex-direction: row;
        align-items: flex-end;
        place-content: center;
    }

    .tours__imagen {
        max-width: 100%;
        background-size: cover;
        /* display: block; */
        height: 300px;
        object-fit: cover;
        justify-content: center;
    }
}

/* --------------------------------------Video---------------------------------------------- */

.video__bloque {
    margin-top: 1rem;
    position: relative;
    width: 100vw;
    height: 70vh;
    overflow: hidden;
}

.video__video {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: 70%;
    object-fit: cover;
}

@media (min-width: 770px) {
    .video__video {
        width: 100vw;
        height: 80vh;
        overflow: hidden;
        object-fit: cover;
    }
}

/* ----------------------------------gallery-------------------------------------------- */
.gallery__grid {
    display: grid;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.gallery__grid img {
    width: 100%;
    object-fit: cover;
    height: 400px;
}

.Gallery__titulo {
    text-align: center;
    font-size: 3rem;
    background: linear-gradient(90deg, #004aad, #00bfa6);
    -webkit-background-clip: text;
    /* aplica el fondo solo al texto */
    -webkit-text-fill-color: transparent;
    /* hace el texto transparente para ver el degradado */
    font-weight: 700;
    margin: 3rem 3rem;
}

@media (min-width: 770px) {
    .gallery__grid {
        grid-template-columns: unset;
        display: grid;
        grid-template-columns: repeat(4, 1fr);

        gap: 2rem;
    }

}

/* ----------------------------------Footer-------------------------------------------- */

.footer {
    background: linear-gradient(90deg, #004aad, #00bfa6);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer__header {
    text-align: center;
    color: white;
}

.header__texto {
    color: white;
}

.footer__titulo {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    margin: 0;
    background: linear-gradient(90deg, #004aad, #00bfa6);
}

.footer__description {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    color: white;
}

.footer__links {
    color: white;
}

.footer__links a {
    text-decoration: none;
    color: white;
    display: block;
}

.footer__contact {
    color: white;
}

@media (min-width: 770px) {
    .footer__flexbox {
        flex-direction: unset;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
        gap: 2rem;
    }

    hr {
        visibility: hidden;
    }

    .footerEnlaces___links {
        display: flex;
        flex-direction: column;
    }

    .footerEnlaces___links h3 {
        font-size: 1.5rem;
    }

    .footer__contact h3 {
        font-size: 1.5rem;
    }
}

/* ----------------------------------About-------------------------------------------- */
.about__header {
    background-image: url(img/aboutHero.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 15vh;
}

.about__bloque {
    font-family: "Poppins", sans-serif;
    margin-bottom: 1rem;
}

.mision__imagen {
    width: 20rem;
    margin: 0 auto;
}

.experience__imagen {
    width: 20rem;
}

.quality__imagen {
    width: 20rem;
}

@media (min-width: 770px) {
    .about__header {
        height: 30vh;
        background-position: center center;
    }

    .about__bloque {
        display: grid;
        grid-template-columns: repeat(2, 2fr);
        align-items: center;
        max-width: 60%;
        margin: 0 auto;
        margin-bottom: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin-top: 1rem;
        border-radius: 1rem;
    }

    .mision__imagen {
        grid-row: 1 / 2;
    }

    .mision {
        grid-column: 2 / 3;
    }

    .quality {
        grid-row: 3 / 4;
    }
}

/* ===== CONTACT INFO ===== */
.contact-info {
    background: #f7f9fc;
    padding: 60px 10%;
    text-align: center;
}

.info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 280px;
}

.info-box h3 {
    color: #0b3d91;
    margin: 10px 0;
}

.info-box i {
    font-size: 2rem;
    color: #FFD43B;
    margin-bottom: 10px;
}

/* -------------------------------- CONTACT FORM -------------------------------------*/
.contact-form-section {
    padding: 80px 10%;
    text-align: center;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    color: #0b3d91;
    margin-bottom: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.btn-submit {
    background: #FFD43B;
    color: #0b3d91;
    font-weight: 600;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #f1c40f;
}

/* ===== MAP ===== */
.map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(90deg, #005c97, #363795);
    color: white;
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.8;
}

/* ----------------------------------------Transfer-------------------------------------------------- */

.transfers {
    background-color: #f7f9fb;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.transfers .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.transfers h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 10px;
}

.transfers .intro {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.table-container {
    overflow-x: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.transfers-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.transfers-table thead {
    background: linear-gradient(90deg, #004aad, #00bfa6);
    color: #fff;
}

.transfers-table th,
.transfers-table td {
    padding: 14px 20px;
}

.transfers-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s ease;
}

.transfers-table tbody tr:hover {
    background-color: #f0f8ff;
}

.cta {
    margin-top: 40px;
}

.btn {
    background-color: #ffcc00;
    color: #003366;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background-color: #ffd633;
}

@media (max-width: 768px) {
    table {
        min-width: 100%;
    }

    th,
    td {
        font-size: 0.9em;
        padding: 10px;
    }

    .transfers h2 {
        font-size: 1.6em;
    }

    .transfers .subtitle {
        font-size: 0.95em;
    }

}

/* ---------------------------------Tours------------------------------------------ */

.tours1 {
    background-color: #f7f9fb;
    padding: 80px 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.tours1 .container {
    max-width: 90%;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(90deg, #004aad, #00bfa6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-weight: 700;
}

.subtitle {
    color: #555;
    font-size: 1rem;
    margin: 10px auto 50px;
    max-width: 600px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.tour-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    text-align: left;
}

.card-content h3 {
    color: #003366;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.price {
    color: #00bfa6;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.price span {
    color: #666;
    font-weight: 400;
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    background-color: #ffcc00;
    color: #003366;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ffd633;
}

/* Responsive ajustes */
@media (max-width: 768px) {
    .gradient-text {
        font-size: 1.9rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .tour-card img {
        height: 180px;
    }
}

/* -------------------------------tours pages------------------------------------ */

.gallery1 {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Layout específico */
.gallery-item.large {
    grid-row: span 2;
}

.gallery-item.small {
    grid-column: 2;
}

.tour {
    max-width: 1100px;
    margin: 60px auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* GALLERY */
.tour__gallery {
    flex: 1 1 45%;
}

.tour__image {
    width: 100%;
    border-radius: 10px;
}

.tour__image--main {
    margin-bottom: 10px;
}

.tour__gallery-row {
    display: flex;
    gap: 10px;
}

/* DETAILS */
.tour__details {
    flex: 1 1 45%;
}

.tour__title {
    color: black;
    font-size: 35px;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.tour__description {
    line-height: 1.6;
    color: #333;
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
}

/* INFO SECTIONS */
.tour__info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
}

.tour__section {
    flex: 1;
    margin-bottom: 2rem;
}

.tour__subtitle {
    font-size: 18px;
    margin-bottom: 8px;
    font-family: "Poppins", sans-serif;
}

.tour__price {
    font-size: 1.2rem;
    color: #00a86b;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.tour__price-unit {
    font-size: 1.2rem;
    color: #444;
}

.tour__list {
    list-style: none;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

.tour__item {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* BUTTON */
.tour__button {
    background-color: #fcd34d;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s ease;
    text-decoration: none;
    color: black;
}

.tour__button:hover {
    background-color: #fbbf24;
}

/* WHAT TO BRING SECTION */
.tour__section--bring {
    margin-top: 25px;
    font-size: 1.2rem;
}

.tour__section--bring .tour__subtitle {
    color: #007a5c;
    font-size: 1.2rem;
}

.tour__section--bring .tour__item {
    margin-bottom: 6px;
    font-size: 1.2rem;
    color: #333;
}

/* RESPONSIVE
@media (max-width: 768px) {
    .tour {
        flex-direction: column;
    }

    .tour__info {
        flex-direction: column;
    }
} */


/* 📱 Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item.large {
        grid-row: auto;
    }
}

/* ----------------------------------------------------------------Alerrta en formulario JS ---------------------------------------------------------------*/

.alerta {
    padding: 10px;
    color: white;
    font-size: medium;
    font-family: "Poppins", sans-serif;
    background-color: red;
    border-radius: 7px;
}