
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* outline: 1px solid limegreen !important; */
}

body {
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

.section-header-nav {
    width: 100%;
    height: 123px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-nav {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-social {
    height: 100%;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.open-nav {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.section-header-nav .logo {
    height: 100%;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo img {
    width: 120px;
    max-width: 178px;
    object-fit: cover;
}

.section-header-nav .nav-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    text-align: center;
}

.section-header-nav .social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav-items li > a {
    text-transform: uppercase;
    color: #ababab;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
}

    .nav-items li > a:hover {
        color: #313131;
    }

.nav-items .active {
    color: #04395a;
    font-weight: 700;
}

.social i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #04395a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.2s ease-in-out;
}

    .social i:hover {
        background-color: #004570;
    }

/*------------------------------------ Home Page ------------------------------------*/

/*------------- Banner -------------*/
/* Contenedor del banner */
.banner {
    position: relative; /* referencia para el overlay */
    width: 100%;
}

    /* La imagen solo escala, NO posiciona */
    .banner img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Capa centradora por encima de la imagen */
.banner__center {
    position: absolute;
    inset: 0; /* ocupa todo el banner */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* para que solo el botón reciba clics */
}

/* El botón */
.banner .cta {
    pointer-events: auto;
    z-index: 2; /* por si hay z-index en otros estilos */
    padding: 12px 28px;
    border-radius: 999px;
    background: #a0172b;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    margin-top: 120px;
}


@media (max-width: 1900px) {
    .banner .cta {
        padding: 16px 36px;
        font-size: 1.4rem;
        margin-top: 13%;
    }
}

@media (max-width: 1200px) {
    .banner .cta {
        padding: 12px 28px;
        font-size: 1rem;
        margin-top: 12%;
    }
}

@media (max-width: 992px) {
    .banner .cta {
        padding: 12px 28px;
        font-size: 1rem;
        margin-top: 10%;
    }
}

@media (max-width: 700px) {
    .banner .cta {
        padding: 8px 22px;
        font-size: 0.7rem;
        margin-top: 12%;
    }
}

@media (max-width: 576px) {
    .banner .cta {
        padding: 5px 10px;
        font-size: 0.4rem;
        margin-top: 15%;
    }
}

.banner-background {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
}

    .banner-background::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0, 0, 0, 0.795);
        z-index: 1;
    }

    .banner-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.banner-content {
    position: absolute;
    z-index: 3;
}

.banner-button {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 190px;
}

    .banner-button a, .banner-button button {
        display: inline-block;
        color: white;
        padding: 15px 40px;
        border-radius: 40px;
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 700;
        text-align: center;
        transition: all 0.2s ease-in-out;
    }

        .banner-button a:first-child {
            background-color: rgba(136, 28, 40, 1);
        }

    .banner-button button {
        background-color: #00254a;
        border: none;
        cursor: pointer;
        font-family: "Montserrat", sans-serif;
    }

    .banner-button .button:hover {
        background-color: #6e0000;
    }

    .banner-button button:hover {
        background-color: #061a30;
    }

.banner h1 {
    font-size: 70px;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.banner p {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 85px;
}


.modal {
    display: none;
    position: fixed;
    z-index: 8;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .modal.show {
        opacity: 1;
    }

.modal-content {
    position: relative;
    background-color: white;
    margin: auto;
    border-radius: 45px;
    max-width: 750px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: black;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-form {
    width: 100%;
    display: flex;
}

    .modal-form .left-column-modal, .modal-form .right-column-modal {
        width: 50%;
    }

    .modal-form .left-column-modal {
        border-radius: 45px;
        background-color: #3D3D3D;
    }

        .modal-form .left-column-modal img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 45px;
        }

    .modal-form .right-column-modal {
        padding: 35px 45px 35px 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.close {
    position: absolute;
    color: #aaa;
    top: 20px;
    right: 25px;
    font-size: 20px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.modal-form input,
.modal-form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #C2C2C2;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
}

.group-input {
    display: flex;
    width: 100%;
    gap: 5px;
}

.right-column-modal > div.group-input:nth-child(4) select {
    width: auto;
    border: none;
    font-weight: 600;
}

.modal-form h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    color: #3D3D3D;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 1px solid #ABABAB;
    font-size: 20px;
}

.submit-btn {
    margin-top: 10px;
    width: 80%;
    padding: 14px 10px;
    background-color: #881C28;
    color: white;
    border: none;
    border-radius: 45px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

    .submit-btn:hover {
        background-color: #6e0000;
        transition: all 0.2s ease-in-out;
    }


/*------------- Welcome Section -------------*/

.welcome {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-container {
    width: 80%;
    margin: 90px 0;
    display: flex;
    gap: 90px;
}

.welcome-image-container,
.welcome-container-description {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .welcome-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .welcome-container-description p {
        font-size: 20px;
        line-height: 30px;
    }

/*--------------- Sponsors ---------------*/

.sponsors {
    width: 100%;
    height: auto;
}

.logos-sponsors {
    margin: 70px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}


.container-logos h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #1a3358;
    text-transform: uppercase;
}

.logos-sponsors .divider {
    width: 300px;
    height: 2px;
    background-color: #3B5E81;
    border-radius: 10px;
    margin: 40px 0;
}

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

footer {
    width: 100%;
    height: 689px;
    background-color: #1a3358;
}

.center-footer {
    width: 100%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-footer {
    width: 80%;
    display: flex;
}

.logos-container {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.main-info {
    width: 55%;
    display: flex;
}

.logos-container img {
    width: 300px;
    object-fit: cover;
}

.main-info > div {
    width: 50%;
}

.footer-tittle {
    color: #e2a520;
    font-size: 30px;
    text-underline-offset: 10px;
    text-transform: uppercase;
    text-decoration: underline;
    margin-bottom: 30px;
}

.menu ul {
    padding-left: 0px !important;
    list-style-type: none !important;
}


    .menu ul li {
        list-style-type: none;
        margin-bottom: 15px;
        color: white;
    }

        .menu ul li a {
            text-transform: uppercase;
            color: #fff;
            font-size: 14px;
            font-weight: 500;
        }

.contact p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 300;
}

.contact > p:nth-child(2) {
    font-weight: 600;
}

.contact p i {
    font-size: 18px;
    margin-right: 6px;
    color: #e2a520;
}

footer > p {
    color: #ffffff;
    font-size: 13px;
    text-align: center;
    font-weight: 400;
}

/*------------------------------------ Agenda Page ------------------------------------*/

.agenda-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

    .agenda-container > div {
        width: 80%;
        height: auto;
    }

.info-agenda-tittle {
    margin-bottom: 20px;
}

    .info-agenda-tittle h2 {
        color: #1A3358;
        font-weight: 700;
        font-size: 30px;
    }

        .info-agenda-tittle h2 ~ h2 {
            margin-bottom: 15px;
        }

    .info-agenda-tittle p {
        font-size: 14px;
        font-weight: 500;
        color: #3D3D3D;
        margin-bottom: 8px;
    }

.pagination-container {
    max-width: 1560px;
    margin: 0 auto;
}

.date-navigation {
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
}

    .date-navigation .date-button {
        padding: 15px 28px;
        border-radius: 86px;
        border: 2px solid #8A1528;
        background-color: #fff;
        font-weight: 700;
        font-size: 16px;
        color: #881C28;
        text-transform: uppercase;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-family: "Montserrat", sans-serif;
    }

.date-button:hover,
.date-button.active {
    background-color: #881C28;
    color: #fff;
}

.table-wrapper {
    position: relative;
    overflow: hidden;
    margin: 30px 0;
}

.agenda-table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
}

    .agenda-table tbody {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.8s ease;
    }

        .agenda-table tbody.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            position: relative;
        }

.pagination-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.date-navigation {
    margin-top: 30px;
}

.nav-button {
    padding: 12px 45px;
    border: none;
    background-color: #1A3358;
    color: #fff;
    cursor: pointer;
    border-radius: 70px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

    .nav-button:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }

    .nav-button:hover:not(:disabled) {
        background-color: #072f53;
    }

.agenda-table th,
.agenda-table td {
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.agenda-table td {
    padding: 30px 15px;
}

.agenda-table th {
    padding-left: 15px;
    padding-top: 25px;
    border-bottom: none;
    border-top: 1px solid #ddd;
}

.agenda-table tbody tr:last-child td {
    border-bottom: none;
}

.agenda-table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    border-spacing: 30px;
    table-layout: auto;
}

    .agenda-table td p {
        margin: 5px 0;
    }

    .agenda-table thead tr th {
        text-align: left;
        font-weight: 600;
        font-size: 13px;
        color: #ABABAB;
        text-transform: uppercase;
    }


    .agenda-table tbody tr td:first-child {
        font-size: 14px;
        color: #3D3D3D;
        font-weight: 600;
    }

.location-cell h4 {
    font-size: 14px;
    color: #3D3D3D;
    font-weight: 600;
}

.location-cell p {
    font-size: 14px;
    font-weight: 400;
}

.activity-cell {
    background-color: #F1F1F1;
    min-height: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #3D3D3D;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 25px;
}

    .activity-cell h3 {
    }

    .activity-cell p {
        font-weight: 400;
    }

    .activity-cell a {
        color: #1A3358;
    }

.time-cell {
    min-width: 80px;
}

/*------------------------------------ Hoteles & Servicios Page ------------------------------------*/

.main-container {
    height: 100vh;
    /* height: calc(100vh - 123px); */
    position: relative;
    background-image: url('../granmeliafenix.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

    .main-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0, 0, 0, 0.795);
        z-index: 1;
    }

.service-header-container {
    position: absolute;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.description-service-header h2 {
    font-size: 70px;
    font-weight: 500;
    text-transform: uppercase;
}

.description-service-header p:nth-child(2) {
    font-size: 30px;
    font-weight: 500;
}

.description-service-header a {
    display: inline-block;
    padding: 15px 50px;
    background-color: #881C28;
    color: #fff;
    text-transform: uppercase;
    border-radius: 70px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    transition: all 0.2s ease-in-out;
}

    .description-service-header a:hover {
        background-color: #6e0000;
    }

.description-service-header p:last-child {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.modals-button-container {
    position: absolute;
    z-index: 4;
    bottom: 0;
    display: flex;
    gap: 40px;
    align-items: end;
}

.item-open-modal {
    cursor: pointer;
    width: 232px;
    height: 130px;
    background-color: #1A3358;
    border-radius: 30px 30px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: height 0.3s ease;
    gap: 10px;
}

    .item-open-modal.active {
        background-color: #fff;
        height: 170px;
        justify-content: start;
    }

        .item-open-modal.active p {
            color: #1A3358;
        }

        .item-open-modal.active .icon-svg {
            margin-top: 30px;
        }

.icon-svg .svg-path {
    fill: #fff;
}

.item-open-modal.active .svg-path {
    fill: #1A3358;
}

.item-open-modal p {
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
}

.content-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    pointer-events: none;
    margin-bottom: 100px;
}

.content-overlay {
    display: none;
    background-color: #fff;
    padding: 35px;
    border-radius: 45px;
    width: 80%;
    height: 70%;
    overflow-y: auto;
    position: absolute;
    z-index: 10;
    pointer-events: all;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 1320px;
}

    .content-overlay.active {
        /* display: block; */
        opacity: 1;
        transform: scale(1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

.btn-container {
    width: 100%;
    display: flex;
    height: 5%;
    align-items: center;
    justify-content: end;
}

.close-btn {
    font-size: 25px;
    color: #3D3D3D;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 40px;
}

.hotel-options, .transport-options, .weather-options, .health-options {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 95%;
    height: 90%;
}

.hotel-card:first-child, .health-card:first-child, .transport-card:first-child, .weather-card:first-child {
    padding-right: 25px;
    border-right: 1px solid #ABABAB;
}

.hotel-card:last-child, .health-card:last-child, .transport-card:last-child, .weather-card:last-child {
    padding-left: 25px;
}

.hotel-card, .health-card {
    width: 50%;
    height: 100%;
}

    .hotel-card .card-img, .health-card .card-img {
        height: 70%;
        margin-bottom: 15px;
    }

    .hotel-card .card-content, .health-card .card-content {
        height: 30%;
    }

    .hotel-card img, .health-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.card-content {
    display: flex;
    color: #3D3D3D;
    gap: 15px;
    justify-content: space-between;
}

    .card-content div:last-child {
        align-items: end;
    }

    .card-content .img-tittle, .card-content .img-details {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .card-content h3 {
        font-size: 25px;
        font-weight: 500;
    }

    .card-content p, .card-content a {
        font-size: 15px;
        font-weight: 500;
    }

    .card-content p {
        margin: 10px 0 5px 0;
    }

    .card-content a {
        display: inline-block;
        color: #3D3D3D;
    }

    .card-content div:first-child i {
        font-size: 13px;
        margin-right: 8px;
    }

.hotel-card .btn-reservar {
    background-color: #881C28;
    color: white;
    padding: 10px 40px;
    font-size: 14px;
    border-radius: 55px;
    font-weight: 700;
    text-transform: uppercase;
}

.card-content > div:last-child a:last-child, .health-card .img-tittle div:last-child a {
    text-decoration: underline;
    color: #1A3358;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    display: block;
    width: 100%;
}

.card-content > div:last-child {
    min-width: 148px;
}

.health-card > div.card-content > div.img-tittle div:last-child {
    min-width: 150px;
    display: flex;
    justify-content: end;
}

.card-content > div:last-child i {
    margin-left: 6px;
}

.card-content > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 20px;
}

.transport-card:first-child {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .transport-card:first-child .card-img {
        width: 100%;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .transport-card:first-child .card-img img {
            width: 90%;
            height: 100%;
            object-fit: contain;
        }

.transport-card:last-child {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transport-card .card-content p {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
}

.card-img-right {
    display: flex;
    gap: 35px;
}

.transport-link {
    margin-top: 50px;
    width: 100%;
}

    .transport-link a {
        font-size: 14px;
        font-weight: 600;
        color: #1A3358;
        text-decoration: underline;
        text-transform: uppercase;
    }

    .transport-link i {
        margin-left: 6px;
    }

.group-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.weather-card:first-child {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.weather-card:last-child {
    width: 45%;
}

.weather-card:first-child .actual-tempeture {
    display: flex;
    gap: 10px;
}

.divider {
    width: 30px;
    display: flex;
    align-items: center;
}

    .divider span {
        width: 100%;
        height: 2px;
        background-color: #ABABAB;
        border-radius: 20px;
    }

.weather-card:first-child .actual-tempeture .from-tempeture, .weather-card:first-child .actual-tempeture .to-tempeture {
    width: 179.69px;
    height: 130px;
    background-color: #284B8012;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.actual-tempeture .from-tempeture p, .actual-tempeture .to-tempeture p {
    font-size: 72px;
    font-weight: 500;
    color: #1A33587D;
    display: flex;
    align-items: start;
}

.actual-tempeture .from-tempeture span, .actual-tempeture .to-tempeture span {
    font-size: 40px;
    font-weight: 600;
}

.tempeture {
    margin-bottom: 30px;
}

    .tempeture h3, .tempeture-month h3, .weather-card:last-child h3 {
        font-weight: 500;
        font-size: 25px;
        color: #3D3D3D;
        margin-bottom: 30px;
    }

.weather-per-day {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.weather-day {
    width: 113px;
    height: 130px;
    background-color: #284B8012;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .weather-day div:first-child p {
        font-size: 15px;
        font-weight: 700;
        color: #1A3358;
    }

    .weather-day div:last-child p {
        display: flex;
        justify-content: center;
        font-weight: 700;
        color: #3D3D3D;
        font-size: 15px;
    }

    .weather-day div:nth-child(2) {
        display: flex;
        justify-content: center;
    }

    .weather-day div:last-child span {
        display: flex;
        align-items: end;
        font-weight: 400;
        font-size: 13px;
    }

.weather-card:last-child img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.weather-card:last-child p {
    font-size: 15px;
    color: #3D3D3D;
    margin-top: 30px;
    font-weight: 500;
}

/*------------------------------------ Multimedia Page ------------------------------------*/

.multimedia-section {
    width: 100%;
    height: auto;
    background: linear-gradient( 180deg, rgba(26, 51, 88, 0.72) 0%, #1a3358 50%, #0c192c 100% );
}

.background-header {
    width: 100%;
    height: 500px;
    position: absolute;
    z-index: -1;
}

.container-header-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient( to bottom, rgba(0, 0, 51, 1) 60%, rgba(0, 0, 51, 0) 100% );
    -webkit-mask-image: linear-gradient( to bottom, rgba(0, 0, 51, 1) 60%, rgba(0, 0, 51, 0) 100% );
}

.header-multimedia-content,
.multimedia-header-button,
.multimedia-section article {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .header-multimedia-content > div {
        margin-top: 90px;
    }

        .header-multimedia-content > div img {
            width: 400px;
        }

.multimedia-header-button {
    margin-top: 40px;
}

    .multimedia-header-button a {
        display: inline-block;
        padding: 15px 60px;
        border: 2px solid #e2a520;
        border-radius: 46px;
        text-transform: uppercase;
        font-weight: 700;
        color: #e2a520;
        transition: all 0.2s ease-in-out;
    }

        .multimedia-header-button a:hover {
            background-color: #e2a520;
            color: #000;
        }

.multimedia-section article {
    width: 100%;
}

.video-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    max-width: 1920px;
    padding: 20px;
    margin: 60px 0;
}

.video-card {
    background-color: #1c1c1c;
    border-radius: 8px;
    height: 257px;
}

.video-thumbnail {
    width: 100%;
    height: 85%;
}

    .video-thumbnail video {
        width: 100%;
        height: 100%;
        border-radius: 8px 8px 0 0;
    }

.video-info {
    height: 15%;
    width: 100%;
    background-color: #000;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
}

    .video-info p {
        margin-left: 36px;
        font-weight: 400;
        text-transform: uppercase;
        color: #ababab;
        font-size: 13px;
    }

/*------------------------------------ Contact Page ------------------------------------*/

.contact-section,
.contact-container,
.left-column,
.right-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-section {
    width: 100%;
    margin: 0 0 50px 0;
}

.contact-container {
    width: 80%;
    gap: 40px;
}

.left-column,
.right-column {
    width: 50%;
    background-color: #f0f2f6;
    border-radius: 16px;
    height: 529px;
    text-align: center;
    color: #3d3d3d;
}

    .left-column > div,
    .right-column > div {
        width: 80%;
    }

    .left-column h2,
    .right-column h2 {
        font-size: 25px;
    }

    .left-column a {
        display: inline-block;
        padding: 15px 45px;
        border-radius: 46px;
        background-color: #881c28;
        color: #fff;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 20px;
        transition: all 0.2s ease-in-out;
        margin-top: 40px;
    }

        .left-column a:hover {
            background-color: #6e0000;
        }

    .left-column i {
        margin-right: 8px;
    }

    .right-column h3 {
        margin: 35px 0;
        font-weight: 500;
    }

.contact-items {
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 20px;
    margin-top:25px;
    font-weight: 400;
}

    .contact-items a {
        color: #3d3d3d;
    }

    .contact-items i {
        margin-right: 8px;
    }

/*--------------- Responsive ---------------*/

@media screen and (max-width: 1400px) {
    .card-container {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        grid-template-rows: 128px;
    }

    .welcome-external-container {
        height: auto;
    }
}

@media screen and (max-width: 1430px) {
    .nav-items li > a {
        font-size: 13px;
    }

    .container-nav {
        width: 50%;
    }

    .container-social {
        width: 25%;
    }

    .section-header-nav .logo {
        width: 25%;
    }

    .section-header-nav .nav-items {
        gap: 30px;
    }

    .social i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .banner h1 {
        font-size: 55px;
    }

    .welcome-container-description p {
        font-size: 16px;
        line-height: 25px;
    }

    .logos-container img {
        width: 250px;
    }

    footer {
        height: 489px;
    }

    .footer-tittle {
        font-size: 25px;
    }

    .menu ul li a {
        font-size: 12px;
    }

    .contact p {
        font-size: 12px;
    }

    .description-service-header {
        margin-bottom: 50px;
    }

    .item-open-modal {
        width: 150px;
        height: 100px;
    }

        .item-open-modal .icon-svg {
            width: 40px;
            height: 40px;
        }

        .item-open-modal p {
            font-size: 13px;
        }

    .content-overlay {
        height: 80%;
    }

    .item-open-modal.active {
        height: 120px;
    }

    .card-content h3 {
        font-size: 18px;
    }

    .card-content p, .card-content a {
        font-size: 13px;
    }

    .hotel-card .btn-reservar {
        padding: 8px 25px;
        font-size: 12px;
    }

    .img-details > div:last-child a:last-child {
        font-size: 12px;
    }

    .hotel-card .card-img, .health-card .card-img {
        height: 65%;
    }

    .hotel-card .card-content, .health-card .card-content {
        height: 35%;
    }

    .transport-card:first-child .card-img img {
        width: 80%;
    }

    .transport-card .card-content p {
        font-size: 18px;
    }

    .card-img-right img {
        width: 150px;
        object-fit: cover;
    }

    .weather-card:first-child {
        justify-content: start;
    }

        .weather-card:first-child .actual-tempeture .from-tempeture, .weather-card:first-child .actual-tempeture .to-tempeture {
            width: 140px;
            height: 100px;
        }

    .actual-tempeture .from-tempeture p, .actual-tempeture .to-tempeture p {
        font-size: 50px;
    }

    .tempeture h3, .tempeture-month h3, .weather-card:last-child h3 {
        margin-bottom: 10px;
    }

    .weather-day {
        height: 118px;
    }

    .weather-card:last-child p {
        margin-top: 10px;
    }
}

@media screen and (max-width: 1230px) {
    .open-nav {
        display: block;
        margin-right: 30px;
    }

        .open-nav i {
            color: #04395a;
            transition: transform 0.3s ease;
        }

    .section-header-nav .logo {
        width: 50%;
        justify-content: start;
    }

    .nav-items li > a {
        color: #ABABAB;
    }

    .nav-items .active {
        color: #04395a;
    }

    .section-header-nav {
        box-shadow: 0px 4px 6.3px 0px rgba(0, 0, 0, 0.07);
    }

    .container-nav {
        width: 100%;
        /* display: none; */
        flex-direction: column;
        position: absolute;
        top: 124px;
        right: 0;
        height: 45%; /*65*/
        z-index: 99;
        padding-bottom: 60px;
        background-color: #ffffff;
        transition: max-height 0.5s ease, opacity 0.5s ease;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
    }

    .container-social {
        position: absolute;
        width: 100%;
        z-index: 999;
        justify-content: center;
        top: 51%;
        height: auto;
        transition: opacity 0.1s ease;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
    }

    .container-nav.active {
        background-color: #ffffff;
        max-height: 45%;
        opacity: 1;
    }

    .container-social.active {
        max-height: 50%;
        opacity: 1;
    }

    .nav-items {
        flex-direction: column;
    }

    .logo {
        margin-left: 30px;
    }

    .contact-items {
        flex-direction: column;
    }
}

@media screen and (max-width: 1158px) {

    .hotel-options, .transport-options, .weather-options, .health-options {
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
        height: 100%;
        gap: 20px;
        margin-top: 25px;
    }

    .hotel-card:first-child, .health-card:first-child, .transport-card:first-child, .weather-card:first-child {
        border: none;
    }

    .transport-card:first-child {
        border-bottom: 1px solid #ABABAB;
        padding-bottom: 20px;
    }

    .hotel-card, .health-card, .transport-card {
        width: 80%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

        .hotel-card .card-img, .health-card .card-img {
            margin-bottom: 0;
        }

        .hotel-card:first-child, .health-card:first-child, .transport-card:first-child, .weather-card:first-child {
            padding-right: 0;
        }

        .hotel-card:last-child, .health-card:last-child, .transport-card:last-child, .weather-card:last-child {
            padding-left: 0;
        }

        .transport-card:first-child .card-img {
            height: 100px;
        }

    .main-container {
        /* height: 1355px; */
        height: auto;
    }

    .content-section {
        width: 100%;
    }

    .content-section, .content-overlay {
        position: static;
    }

    .content-overlay {
        transition: height 0.5s ease;
        width: 80%;
    }

        .content-overlay.active {
            height: auto;
            margin: 50px 0;
            transition: height 0.5s ease;
        }

    .transport-card:last-child {
        width: 100%;
        align-items: center;
    }

    .transport-card .card-img-right {
        flex-direction: column;
        align-items: center;
    }

        .transport-card .card-img-right .group-img {
            flex-direction: row;
        }

    .transport-card .transport-link {
        margin-top: 10px;
        display: flex;
        justify-content: center;
    }

    .weather-options .weather-card {
        width: 100%;
    }

    .weather-card .tempeture > h3 {
        text-align: center;
    }

    .weather-card .actual-tempeture {
        justify-content: center;
    }
}

@media screen and (max-width: 1088px) {
    .banner h1 {
        font-size: 40px;
    }
}

@media screen and (max-width: 930px) {
    .banner h1 {
        font-size: 30px;
    }

    .banner p {
        font-size: 20px;
    }
}

@media screen and (max-width: 872px) {

    .welcome-container {
        width: 70%;
        margin: 80px 0;
        flex-direction: column;
        gap: 25px;
    }

    .welcome-image-container,
    .welcome-container-description {
        width: 100%;
    }

    .content-footer {
        flex-direction: column;
        gap: 90px;
    }

    .main-info > div {
        width: auto;
    }

    .main-info {
        width: 100%;
        justify-content: center;
        gap: 90px;
    }

    .logos-container {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }

        .logos-container img {
            width: 250px;
            object-fit: contain;
        }

    footer {
        height: 659px;
    }

    .modals-button-container {
        gap: 20px;
    }

    .item-open-modal {
        width: 120px;
        height: 100px;
    }

        .item-open-modal p {
            font-size: 12px;
        }

        .item-open-modal .icon-svg {
            width: 38px;
            height: 40px;
        }

    .card-content .img-tittle, .card-content .img-details {
        align-items: start;
    }

    .hotel-card .card-img, .health-card .card-img {
        margin-bottom: 0;
    }

    .health-card {
        gap: 10px;
    }

    .transport-options div:first-child {
        width: 90%;
    }

    .contact-container {
        flex-direction: column;
        width: 90%;
    }

    .left-column,
    .right-column {
        width: 90%;
        height: 400px;
    }
}

@media screen and (max-height: 872px) {
    .container-nav.active {
        min-height: 90vh;
    }

    .container-social {
        top: 80%;
    }

    .section-header-nav .logo img {
        width: 100px;
    }
}

@media screen and (max-width: 840px) {
    .modal-form .left-column-modal {
        display: none;
    }

    .modal-form .right-column-modal {
        width: 100%;
    }

    .modal-content {
        width: 80%;
    }
}

@media screen and (max-width: 752px) {
    .agenda-table td {
        display: grid;
    }

    .agenda-table th {
        display: none;
    }

    .agenda-table td::before {
        content: attr(data-cell);
        text-align: left;
        font-weight: 600;
        font-size: 13px;
        color: #ABABAB;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .agenda-table td:first-child::before, .agenda-table td:nth-child(2)::before {
        content: none;
    }

    .agenda-table th,
    .agenda-table td {
        border: none;
    }

        .agenda-table td:first-child {
            border-top: 1px solid #ddd;
        }

    .agenda-table td {
        padding: 15px 0;
    }

    .time-cell {
        display: flex;
        gap: 8px;
    }
}

@media screen and (max-width: 670px) {
    .logos-container img {
        width: 200px;
    }

    .main-info {
        width: 100%;
        gap: 30px;
    }

    .card-content {
        flex-direction: column;
        align-items: center;
    }

        .card-content > div:first-child {
            width: 100%;
        }

        .card-content > div:last-child {
            align-items: center;
        }

            .card-content > div:last-child a:last-child {
                text-decoration: none;
            }

    .hotel-card .btn-reservar {
        padding: 10px 85px;
    }
}

@media screen and (max-width: 644px) {


    .banner-button {
        margin-top: 100px !important;
    }

        .banner-button a, .banner-button button {
            padding: 10px 20px;
            font-size: 10px;
        }

    .banner-content {
        max-width: 70%;
    }

    .banner h1 {
        font-size: 2rem;
    }

    .content-overlay {
        width: 90%;
    }
}

@media screen and (max-width: 586px) {
    footer {
        height: auto;
        padding: 90px 0;
    }

    .logos-container img {
        width: 190px;
        object-fit: cover;
    }

    .header-multimedia-content > div img {
        width: 300px;
    }

    .multimedia-header-button a {
        padding: 10px 60px;
    }

    .logos-container {
        flex-direction: column;
        align-items: center;
        gap: 70px;
    }

        .logos-container img {
            width: 290px;
            object-fit: cover;
        }

    .main-info {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

        .main-info > div {
            width: 65%;
        }

    footer > p {
        margin-top: 80px;
    }

    .transport-card .card-content {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 569px) {


    .modals-button-container {
        width: 100%;
        gap: 0;
    }

    .item-open-modal {
        width: 25%;
        border-radius: 0;
    }

        .item-open-modal:first-child {
            border-top-left-radius: 14px;
        }

        .item-open-modal:last-child {
            border-top-right-radius: 14px;
        }

        .item-open-modal.active {
            height: 100px;
            justify-content: center;
        }

            .item-open-modal.active .icon-svg {
                margin-top: 0;
            }

    .content-overlay {
        padding: 0;
        padding-bottom: 30px;
        border-radius: 15px;
    }

    .hotel-card, .health-card {
        width: 100%;
        align-items: center;
    }

    .hotel-options, .health-options {
        width: 100%;
        margin-top: 0;
    }

    .close-btn {
        right: 30px;
    }

    #alojamiento > .close-btn {
        color: #fff;
    }

    .card-content {
        width: 85%;
    }

    .weather-card .tempeture {
        margin-top: 30px;
    }

    .weather-per-day .weather-day img {
        width: 35px;
    }

    .weather-per-day .weather-day:last-child {
        display: none;
    }
}

@media screen and (max-width: 594px) {

    .date-navigation {
        justify-content: start;
    }

        .date-navigation .date-button {
            font-size: 12px;
            padding: 10px 18px;
        }

    .agenda-container > div {
        width: 90%;
    }

    .info-agenda-tittle h2 {
        font-size: 25px;
    }
}

@media screen and (max-width: 435px) {


    .modal-content {
        border-radius: 24px;
    }

    .video-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .header-multimedia-content > div img {
        width: 200px;
    }

    .item-open-modal p {
        display: none;
    }

    .left-column,
    .right-column {
        height: 300px;
    }

        .left-column h2,
        .right-column h2 {
            font-size: 20px;
        }

        .right-column h3 {
            font-size: 15px;
            margin: 20px 0;
        }

        .left-column a {
            padding: 10px 45px;
            font-size: 12px;
            margin-top: 20px;
        }

    .contact-items {
        gap: 10px;
    }

        .contact-items p, .contact-items a {
            font-size: 12px;
        }

    .description-service-header h2 {
        font-size: 30px;
        text-align: center;
    }

    .description-service-header p:nth-child(2) {
        font-size: 20px;
    }

    .description-service-header a {
        padding: 15px 75px;
    }
}

a {
    text-decoration: none !important;
}

@media screen and (max-width: 420px) {
    .weather-options .weather-card h3 {
        font-size: 18px;
    }

    .weather-options .weather-card:first-child h3 {
        text-align: start;
    }

    .weather-options .weather-card > p {
        font-size: 13px;
    }

    .weather-card .actual-tempeture {
        justify-content: start;
    }

    .weather-card:first-child .actual-tempeture .from-tempeture, .weather-card:first-child .actual-tempeture .to-tempeture {
        height: auto;
        width: auto;
        padding: 10px 20px;
    }


    .weather-options {
        margin-top: 8px;
    }

    .actual-tempeture .from-tempeture p, .actual-tempeture .to-tempeture p {
        font-size: 40px;
    }

    .actual-tempeture .from-tempeture span, .actual-tempeture .to-tempeture span {
        font-size: 30px;
    }

    .weather-card .tempeture {
        margin-bottom: 18px;
    }
}

@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1rem !important;
    }
}

body {
    font-family: 'Montserrat' !important;
}
