/* Visitar Header */

.visitar-header-button {
    border: white solid 2px;
    background-color: rgba(180,180,180,0);
}

.visitar-header-button:hover {
    background-color: rgba(180,180,180,0);
}

/* Visitar Cards */

.visitar-cards-container {
    width: 100%;
    padding: 140px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
    box-sizing: border-box;
}

.visitar-cards-container h2 {
    color: #FFF;
    font-size: 78px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 40px;
}

.visitar-cards-container .button-main {
    max-width: 300px;
}

.visitar-cards {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    overflow-x: scroll;
    padding: 20px;
    box-sizing: border-box;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
}

.visitar-cards::-webkit-scrollbar {
    display: none;
}

.visitar-card-row {
    display: flex;
    gap: 25px;
    overflow: hidden;
    width: fit-content;
}

.visitar-card-row:first-of-type > div:nth-of-type(odd) {
    background-color: #58BCAD;
    color: #325D5F;
}

.visitar-card-row:first-of-type > div:nth-of-type(even) {
    background-color: #325D5F;
    color: white;
}

.visitar-card-row:last-of-type > div:nth-of-type(even) {
    background-color: #58BCAD;
    color: #325D5F;
}

.visitar-card-row:last-of-type > div:nth-of-type(odd) {
    background-color: #325D5F;
    color: white;
}

.visitar-card {
    height: 270px;
    width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 15px;
    padding: 30px;
    box-sizing: border-box;
}

.visitar-card > div {
    font-family: RUBIK, serif;
    font-size: 22px;
    width: min-content;
    min-width: 80%;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
    position: relative;
    margin-left: 50px;
}

.visitar-card span {
    font-family: RUBIK, serif;
    font-size: 58px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    top: -34px;
    left: -55px;
}

.visitar-cards-container .button-main {
    font-size: 26px;
    width: 270px;
}

@media (max-width: 1400px) {
    .visitar-cards-container h2 {
        font-size: 56px;
    }

    .visitar-card > div {
        font-size: 18px;
        line-height: 1.1;
    }

    .visitar-card span {
        font-size: 42px;
        top: -25px;
    }

    .visitar-card {
        height: 200px;
        width: 290px;
        gap: 30px;
    }

    .visitar-cards-container .button-main {
        font-size: 20px;
        width: 210px;
    }

    .visitar-cards-container {
        padding: 100px 0;
        gap: 50px;
    }

    .visitar-cards-container h2 {
        font-size: 50px;
        line-height: 1.2;
    }
}


/* Visitar Horario */

.visitar-horario-container {
    background-color: white;
    padding: 0 40px 100px 40px;
}

.visitar-horario {
    max-width: 1600px;
    width: 100%;
    margin: auto;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.visitar-horario h2 {
    color: #FFF;
    font-size: 72px;
    font-weight: 400;
    margin: 0;
}

.visitar-horario span {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
}

@media (max-width: 1400px) {
    .visitar-horario-container {
        padding: 70px 20px 100px 20px;
    }

    .visitar-horario h2 {
        font-size: 54px;
    }

    .visitar-horario span {
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    .visitar-horario {
        flex-direction: column;
    }

    .visitar-horario-container {
        padding: 70px 20p;
    }
}

@media (max-width: 500px) {
    .visitar-horario-container {
        background-color: white;
        padding: 0 20px 100px 20px;
    }
}


/* Visitar Ubicación */

.visitar-ubicacion-container {
    padding: 120px 40px;
    background-color: white;
    box-sizing: border-box;
}

.visitar-ubicacion {
    width: 100%;
    max-width: 1600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.visitar-ubicacion h2 {
    color: #325D5F;
    font-size: 72px;
    font-weight: 400;
    line-height: 75px;
    margin: 0 0 30px 0;
}

.visitar-ubicacion > div {
    display: flex;
    gap: 40px;
}

.visitar-ubicacion > div:nth-of-type(odd) {
    flex-direction: row-reverse;
}

.visitar-ubicacion-image, .visitar-ubicacion-info {
    width: 50%;
}

.visitar-ubicacion-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

.visitar-ubicacion-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visitar-ubicacion-info > .button-main {
    font-size: 24px;
    max-width: 280px;
}

.visitar-ubicacion-info p {
    color: #325D5F;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 34px;
}

.visitar-ubicacion-info span {
    color: #58BCAD;
    font-size: 24px;
}

.visitar-ubicacion-image {
    border-radius: 20px;
    overflow: hidden;
}

.visitar-ubicacion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visitar-ubicacion-info > div {
    display: flex;
    color: #325D5F;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 34px;
    gap: 20px;
}

.visitar-ubicacion-info > div > div {
    width: calc(50% - 20px);
}

@media (max-width: 1400px) {
    .visitar-ubicacion-image {
        height: 350px;
    }

    .visitar-ubicacion h2 {
        font-size: 52px;
    }

    .visitar-ubicacion-info p {
        font-size: 18px;
    }

    .visitar-ubicacion-info > .button-main {
        font-size: 20px;
    }

    .visitar-ubicacion-info > div {
        font-size: 18px;
        line-height: 1.4;
    }
}

@media (max-width: 900px) {
    .visitar-ubicacion {
        gap: 50px;
    }

    .visitar-ubicacion > div {
        flex-direction: column;
    }

    .visitar-ubicacion-image, .visitar-ubicacion-info {
        width: 100%;
        gap: 20px;
    }

    .visitar-ubicacion > div:nth-of-type(odd) {
        flex-direction: column;
    }

    .visitar-ubicacion h2 {
        margin: 0;
    }
}

@media (max-width: 500px) {
    .visitar-ubicacion-container {
        padding: 70px 20px;
    }
}


/* Visitar Hoteles */

.visitar-hoteles-container {
    padding: 60px 40px;
    background-color: #58BCAD;
    box-sizing: border-box;
}

.visitar-hoteles {
    max-width: 1600px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visitar-hoteles h2 {
    color: #FFF;
    font-size: 72px;
    font-weight: 400;
    margin: 0;
}

.visitar-hoteles .button-main {
    color: #FFF;
    font-size: 26px;
    font-weight: 400;
    padding: 16px 56px;
}

@media (max-width: 1400px) {
    .visitar-hoteles h2 {
        font-size: 50px;
    }

    .visitar-hoteles .button-main {
        font-size: 18px;
    }
}

@media (max-width: 900px) {
    .visitar-hoteles {
        flex-direction: column;
        gap: 30px;
    }
}









