@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --color_1: #ffffff;
    --color_2: #2d3436;
    --color_3: #00107C;
    --color_4: #1877F2;
    --color_5: #ff3131;
    --color_6: #ff6b0f;
    --color_7: #1d296a;
    --color_8: #f8f9fa;
    --color_9: rgba(42, 42, 42, 0.8);
    --fuente_A: 'Outfit', sans-serif;
    --shadow_soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow_hover: 0 15px 35px rgba(0, 0, 0, 0.15);
    --border_radius_std: 12px;
    --transition_std: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    position: relative;
    font-family: var(--fuente_A);
}

body {
    margin: 0;
    padding: 0;
    color: var(--color_2);
    overflow-x: hidden;
}

/* Base Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reveal {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    visibility: visible;
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fredoka-uniquifier {
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    color: var(--color_1);
}

nav {
    width: 100%;
    height: 7rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    z-index: 1000;
    padding: 0 4%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition_std);
}

.container_img {
    width: auto;
    display: flex;
    align-items: center;
    padding-left: 0;
    order: 1;
}

.container_img img {
    height: 4.5rem;
    width: auto;
    transition: var(--transition_std);
}

.container_img img:hover {
    transform: scale(1.05);
}

.container_nav {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    order: 3;
    gap: 1rem;
}

nav a {
    text-decoration: none;
    color: var(--color_1);
    font-size: 0.95rem;
    font-weight: 600;
    background-color: var(--color_3);
    padding: 12px 24px;
    border-radius: 50px;
    transition: var(--transition_std);
    text-align: center;
}

/* Info Sections Styles */
.caja_info {
    padding: 6rem 8%;
    width: 100%;
    margin: 0;
    transition: var(--transition_std);
}

/* Background Variations */
.caja_info:nth-of-type(1) {
    background-color: var(--color_1);
}

.caja_info:nth-of-type(2) {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.caja_info:nth-of-type(3) {
    background-color: #ffffff;
}

.caja_info:nth-of-type(4) {
    background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.caja_info:nth-of-type(5) {
    background-color: #fbfbfc;
}

.caja_info:nth-of-type(6) {
    background: linear-gradient(to top, #dfe9f3 0%, white 100%);
}

.cajaTexto_A {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    /* Text larger, image smaller */
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

/* Zig-Zag Effect */
.caja_info:nth-of-type(even) .cajaTexto_A {
    direction: rtl;
    /* Flip the grid order */
}

.caja_info:nth-of-type(even) .cajaTexto_A>div {
    direction: ltr;
    /* Reset text direction for children */
}

.caja_a1 p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    font-weight: 300;
}

.caja_a2 img {
    width: 100%;
    max-width: 450px;
    /* Keep image size controlled */
    margin: 0 auto;
    display: block;
    border-radius: var(--border_radius_std);
    box-shadow: var(--shadow_soft);
    transition: var(--transition_std);
}

.caja_a2 img:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow_hover);
}

@media screen and (max-width: 768px) {
    .cajaTexto_A {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        direction: ltr !important;
    }

    .cajaTexto_A>div {
        direction: ltr !important;
    }

    .caja_info {
        padding: 4rem 5%;
    }

    .titulo {
        font-size: 1.8rem;
    }
}

#registro {
    background-color: var(--color_5);
}

nav a:focus,
nav a:hover {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    text-decoration: none;
    background-color: var(--color_5);
    color: var(--color_1)
}

.link__ {
    background-color: var(--color_2);
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    text-decoration: none;
    color: var(--color_1)
}

.link__:hover {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    text-decoration: none;
    background-color: var(--color_4);
    color: var(--color_1)
}

.cajaBuscador {
    width: 40%;
    height: 3.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    order: 2;
    background: var(--color_8);
    border-radius: 50px;
    overflow: hidden;
    padding: 0 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition_std);
}

.cajaBuscador:focus-within {
    box-shadow: 0 5px 15px rgba(0, 16, 124, 0.1);
    border-color: var(--color_3);
}

.cajaBuscador button {
    width: 10%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    color: var(--color_3);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition_std);
}

.cajaBuscador button:hover {
    color: var(--color_5);
    transform: scale(1.1);
}

.cajaBuscador button i {
    color: inherit;
}

.row_ {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.buscador {
    width: 55%;
    height: 100%;
    font-size: 0.95rem;
    padding: 0 1rem;
    background-color: transparent;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color_2);
}

.buscador::placeholder {
    color: #999;
}

.selectCat {
    width: 35%;
    height: 100%;
    font-size: 0.95rem;
    padding: 0 1rem;
    background-color: transparent;
    border: none;
    color: var(--color_2);
    cursor: pointer;
    font-weight: 500;
}

.selectCat:focus {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border: none;
}

.buscador:focus,
.cajaBuscador button {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.titulo {
    color: var(--color_3);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
}

.azul {
    color: var(--color_3);
    text-align: center;
}

.titulo2 {
    color: var(--color_3);
    text-align: center;
    width: 80%;
    margin: 2rem auto;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

h3.titulo2 b {
    font-weight: 600;
}

.verMas {
    cursor: pointer;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: medium;
    width: auto;
    position: absolute;
    top: .5rem;
    right: .5rem;
    color: var(--color_2);
    background-color: var(--color_1);
    width: 30px;
    height: 30px;
    border-radius: 10%;
    z-index: 10;
    padding: 5px;
}

.vista {
    width: 100%;
    height: 70vh;
    position: relative;
    margin-top: 7rem;
    overflow: hidden;
}

.cajaH1 {
    background: linear-gradient(135deg, var(--color_3) 0%, #0019c1 100%);
    min-height: 20rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3rem 10%;
    text-align: center;
    color: var(--color_1);
}

.colorBlanco {
    color: var(--color_1);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.colorBlanco2 {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.4rem);
    max-width: 800px;
    font-weight: 300;
}

.slider {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden;
    scroll-behavior: smooth;
    margin-top: 0;
}

.slider div {
    width: 100%;
    display: flex;
    flex-shrink: 0;
}

.botones {
    position: absolute;
    bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    background: transparent;
    padding: 1rem;
    z-index: 20;
}

.miniatura {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    margin: 0 10px;
    cursor: pointer;
    transition: var(--transition_std);
    opacity: 0.7;
}

.miniatura:hover,
.miniatura.active {
    opacity: 1;
    border-color: var(--color_1);
    transform: scale(1.1);
}

.miniatura img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.presentacion {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.btnIr {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 1rem;
    background-color: var(--color_5);
    color: var(--color_1);
}

.presentacion .texto {
    position: absolute;
    bottom: .5rem;
    left: 1rem;
    width: auto;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    padding: .5rem;
    z-index: 10;
    border-radius: 6px;
    width: 70%;
}

.presentacion .texto2 {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    z-index: 10;
    border-radius: 6px;
}

.presentacion .texto a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color_2);
    color: var(--color_1);
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    border-radius: 2px;
    border: none;
    padding: 1rem;
    text-decoration: none;
    outline: none;
    margin-right: 3rem;
}

.presentacion .texto .bienvenidos {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    color: var(--color_1);
}

.presentacion .texto .bienvenidos2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    color: var(--color_2);
}

.presentacion .texto .nombreHotel {
    width: 80%;
    font-size: 1rem;
    font-family: 'Noto Serif', serif;
    color: var(--color_1);
}

.presentacion .texto .nombreHotel2 {
    width: 80%;
    font-size: 1rem;
    font-family: 'Noto Serif', serif;
    color: var(--color_2);
}

.presentacion .imagen {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.presentacion .imagen img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: 40% 80%;
}

.nombreHotel2 {
    color: var(--color_6);
}

.nombreHotel3 {
    color: var(--color_1);
}

.nombreHotel4 {
    color: var(--color_1);
    width: 50%;
    font-family: 'Noto Serif', serif;
    font-size: 250%;
}

.presentacion2 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    overflow: hidden;
}

.presentacion2 img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 0%;
}

.presentacion2 .caja2 {
    width: 280px;
    height: auto;
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--color_2);
    background-color: rgba(235, 235, 235, 0.6);
    padding: 4rem 1rem;
    border-radius: 20px / 20px;
    font-size: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: justify;
}

.presentacion2 .caja2 a {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color_3);
    color: var(--color_4);
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    border-radius: 20px / 20px;
    border: none;
    padding: .5rem;
    text-decoration: none;
    outline: none;
}

.presentacion3 {
    width: 100%;
    height: 100%;
    color: var(--color_2);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
}

.presentacion3 img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.presentacion3 .caja2 {
    width: 250px;
    height: auto;
    position: absolute;
    left: 2rem;
    bottom: 20rem;
    font-family: 'Raleway', sans-serif;
    color: var(--color_1);
    background-color: rgba(41, 41, 41, 0.8);
    padding: 3rem 1rem;
    border-radius: 20px / 20px;
    font-size: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.presentacion3 .caja2 a {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color_3);
    color: var(--color_4);
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    border-radius: 20px / 20px;
    border: none;
    padding: .5rem;
    text-decoration: none;
    outline: none;
}

.habitacionesTres {
    width: 100%;
    height: auto;
    z-index: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    padding: 5rem 1rem;
    background-color: var(--color_1);
}

.habitacionesTres div {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px 0 rgba(112, 112, 112, 0.849);
}

.habitacionesTres div label {
    position: absolute;
    font-size: 180%;
    color: var(--color_3);
    background-color: rgba(231, 231, 231, 0.623);
    top: 40%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.habitacionesTres div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

._empresas {
    width: 100%;
    height: auto;
    background-color: var(--color_1);
}

.serviciosHome {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding: 10px;
    width: 100%;
}

.cajaEmpleos {
    width: 100%;
    background-color: var(--color_1);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.verEmpleos {
    width: 100%;
    min-height: 400px;
    background-color: var(--color_1);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.evento {
    width: 250px;
    height: 320px;
    margin: 1.5rem;
    border-radius: var(--border_radius_std);
    background-color: var(--color_1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow_soft);
    transition: var(--transition_std);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.evento:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow_hover);
}

.evento img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition_std);
}

.evento:hover img {
    transform: scale(1.08);
}

.fa-trash-alt {
    position: absolute;
    top: .5rem;
    right: .5rem;
    cursor: pointer;
    font-size: 120%;
    color: var(--color_7);
}

.fechaEmpleo {
    width: 100%;
    height: auto;
    background-color: var(--color_8);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 1rem;
}

.textoEmpleo {
    width: 100%;
    height: 25%;
    background-color: var(--color_5);
    color: var(--color_1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: .5rem;
    overflow-y: scroll;
}

.textoEmpleo::-webkit-scrollbar {
    -webkit-appearance: none;
}

.textoEmpleo::-webkit-scrollbar:vertical {
    width: 10px;
}

.textoEmpleo::-webkit-scrollbar-button:increment,
.contenedor::-webkit-scrollbar-button {
    display: none;
}

.textoEmpleo::-webkit-scrollbar:horizontal {
    height: 10px;
}

.textoEmpleo::-webkit-scrollbar-thumb {
    background-color: var(--color_3);
    border-radius: 20px;
    border: 1px solid var(--color_1);
}

.textoEmpleo::-webkit-scrollbar-track {
    border-radius: 10px;
}

.hora {
    font-size: 120%;
    font-family: var(--fuente_A);
    color: var(--color_3);
}

.fa-search {
    color: var(--color_1);
}

.textoEvento {
    width: 100%;
    height: 150px;
    background-color: var(--color_1);
    color: var(--color_2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: .5rem;
    overflow-y: scroll;
}

.textoEvento::-webkit-scrollbar {
    -webkit-appearance: none;
}

.textoEvento::-webkit-scrollbar:vertical {
    width: 10px;
}

.textoEvento::-webkit-scrollbar-button:increment,
.contenedor::-webkit-scrollbar-button {
    display: none;
}

.textoEvento::-webkit-scrollbar:horizontal {
    height: 10px;
}

.textoEvento::-webkit-scrollbar-thumb {
    background-color: var(--color_8);
    border-radius: 20px;
    border: 1px solid var(--color_1);
}

.textoEvento::-webkit-scrollbar-track {
    border-radius: 10px;
}

.eventocal {
    width: 100%;
    height: 300px;
    margin-bottom: 2rem;
    border-radius: .1rem;
    background-color: var(--color_1);
    color: var(--color_1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 5px 15px var(--color_2);
}

.fotoEvento {
    width: 100%;
    height: 75%;
    overflow: hidden;
}

.fotoEvento img {
    width: 100%;
    object-fit: cover;
    object-position: 0 50%;
}

.fa-trash-alt {
    position: absolute;
    top: .5rem;
    right: .5rem;
    cursor: pointer;
    font-size: 120%;
    color: var(--color_1);
}

.fechaEvento {
    width: 100%;
    height: auto;
    background-color: var(--color_5);
    font-size: 1rem;
    color: var(--color_1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.footer {
    background-color: var(--color_3);
    color: var(--color_1);
    padding: 5rem 8% 2rem;
    margin-top: 5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
}

.footer h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color_1);
}

.listaPie {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.listaPie a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition_std);
    font-size: 0.9rem;
}

.listaPie a:hover {
    color: var(--color_1);
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.iconos_redes {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition_std);
}

.iconos_redes:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.empresas__:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow_hover);
}

.empresas__ img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.empresas__ span {
    width: 100%;
    height: auto;
    background: var(--color_1);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    color: var(--color_3);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.textoEmpresa {
    width: 280px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color_8);
    margin-top: 1rem;
    overflow-y: scroll;
    padding: .1rem;
}

.textoEmpresa::-webkit-scrollbar {
    -webkit-appearance: none;
}

.textoEmpresa::-webkit-scrollbar:vertical {
    width: 10px;
}

.textoEmpresa::-webkit-scrollbar-button:increment,
.contenedor::-webkit-scrollbar-button {
    display: none;
}

.textoEmpresa::-webkit-scrollbar:horizontal {
    height: 10px;
}

.textoEmpresa::-webkit-scrollbar-thumb {
    background-color: var(--color_8);
    border-radius: 20px;
    border: 1px solid var(--color_1);
}

.textoEmpresa::-webkit-scrollbar-track {
    border-radius: 10px;
}

.tituloEmpresa {
    color: var(--color_2);
    width: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.textoEmpresa span {
    width: 100%;
    text-align: justify;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Estilos para el modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    width: 90%;
    height: 90%;
}

.modal-content img {
    width: auto;
    height: 70%;
    margin-bottom: 20px;
    object-fit: cover;
    object-position: 50% 50%;
}

.modal-content h2,
.modal-content p {
    margin: 10px 0;
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: var(--color_1);
    width: 40px;
    height: 40px;
    border-radius: 25px;
    background-color: var(--color_5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 10000;
}

.close:hover {
    color: #fff;
    opacity: 1;
    background-color: var(--color_5);
}

.caja_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cajaTexto_A {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 20px;
}

.caja_a1 {
    width: 90%;
    display: flex;
    align-items: center;
    flex-direction: column
}

.caja_a1 p {
    text-align: justify;
}

.caja_a1 ul {
    width: 80%;
}

.caja_a2 {
    width: 90%;
}

.caja_a2 img {
    width: 100%;
    height: auto;
}

.listaPie {
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    /* Cambiado a flex-start para que los ítems inicien desde la izquierda */
    position: absolute;
    top: 2rem;
    overflow-x: auto;
    /* Habilita el desplazamiento horizontal */
    white-space: nowrap;
    /* Evita que los enlaces se rompan en varias líneas */
    height: 2rem;
    /* Limita la altura a 2rem */
}

.listaPie a {
    text-decoration: none;
    margin-right: .5rem;
    color: var(--color_1);
    flex-shrink: 0;
    /* Evita que los enlaces se reduzcan en ancho */
}

.listaPie::-webkit-scrollbar {
    height: 5px;
    /* Altura de la barra de desplazamiento */
}

.listaPie::-webkit-scrollbar-thumb {
    background-color: #ccc;
    /* Color de la barra de desplazamiento */
    border-radius: 10px;
    /* Bordes redondeados */
}

.listaPie::-webkit-scrollbar-track {
    background-color: #f0f0f0;
    /* Color de fondo de la barra */
}

/* Estilos para el modal */
#modalVer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    /* Oculto por defecto */
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    /* Fondo semi-transparente */
    z-index: 1000;
}

.modal-content {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    background-color: #fff;
    justify-content: space-around;
    height: 90vh;
    overflow-y: scroll;
    animation: modalFadeIn 0.3s ease;
}

.modal-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.modal-content button {
    background: #ff5a5f;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.modal-content button:hover {
    background: #ff4045;
}

/* Contenedor general con Flexbox */
.social-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    /* Espaciado entre los elementos */
    margin-top: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ddd;
    height: auto;
}

/* Estilo para cada ítem */
.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Estilo del checkbox pequeño */
.social-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Iconos de redes sociales */
.social-item img {
    width: 40px;
    /* Tamaño del icono */
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-item img:hover {
    transform: scale(1.1);
    /* Efecto de escala al pasar el cursor */
}

.redes {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.redes p a img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
    ;
}

/* Campos de entrada para las URLs */
.url-input {
    display: none;
    width: 90%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.url-input:focus {
    border-color: #00aaff;
    outline: none;
}

.descripcion_modal {
    text-align: justify;
}

#google_translate_element {
    text-align: center;
    margin: 10px auto;
}

.goog-te-gadget {
    font-family: 'Arial', sans-serif !important;
    font-size: 14px !important;
}

.goog-te-gadget select {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}

._partners {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding: 10px;
    width: 100%;
}

.carousel-container {
    width: 350px;
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.carousel {
    display: flex;
    animation: scroll 10s linear infinite;
}

.carousel a {
    flex: 0 0 auto;
    margin: 0 10px;
}

.carousel img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media screen and (min-width: 1024px) {

    .vista {
        width: 100%;
        height: 100vh;
        position: relative;
    }

    .slider {
        width: 100%;
        height: 85vh;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow: hidden;
    }

    .verEmpleos {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .eventocal {
        width: 300px;
        margin-right: 3rem;
    }

    .evento {
        width: 200px;
        margin-bottom: 3rem;
        border-radius: .5rem;
        color: var(--color_1);
        overflow: hidden;
        box-shadow: 5px 5px 15px var(--color_2);
    }

    .buscador {
        width: 70%;
    }

    .selectCat {
        width: 20%;
    }

    .cajaBuscador button {
        width: 10%;
    }

    .empresas__ {
        margin-left: 2rem;
    }
}