* {
    margin: 0px;
    padding: 0px;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    /* Asegura que ocupen toda la ventana */
}

.navbar {
    background: linear-gradient(62deg, rgb(95, 183, 150) 0%, rgba(157, 196, 130, 1) 10%, rgba(255, 203, 0, 1) 50%, rgba(231, 65, 51, 1) 100%);
    width: 100%;
    height: 20px;
    margin-bottom: 40px;
}

.banner-decoration {
    height: 7px;
    background: linear-gradient(62deg, rgb(95, 183, 150) 0%, rgba(157, 196, 130, 1) 25%, rgba(255, 203, 0, 1) 50%, rgba(231, 65, 51, 1) 100%);
}

.teescucha_img {
    width: 80%;
    display: block;
    margin: 0 auto;
    margin-bottom: 40px;
}

.buttons_container {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: 0 auto;
    align-items: center;
    row-gap: 20px;
    margin-bottom: 30px;
}

.buttons {
    display: block;
    width: 200px;
    height: 40px;
    padding: 0;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
}

.buttons a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    text-align: center;
    line-height: 40px;
    /* Centra el texto verticalmente */
    color: black;
    font-weight: bold;
    font-size: 20px;
}

.ingresa_btn {
    background-color: rgb(157, 196, 131);
}

.ingresa_btn:hover {
    background-color: rgb(132, 165, 110);
}

.register_btn {
    background-color: rgb(225, 229, 168);
}

.register_btn:hover {
    background-color: rgb(190, 194, 141);
}

.separetor {
    width: 75%;
    height: 5px;
    background: linear-gradient(62deg, rgb(95, 183, 150) 0%, rgba(157, 196, 130, 1) 10%, rgba(255, 203, 0, 1) 50%, rgba(231, 65, 51, 1) 100%);
    margin: 30px auto;
}

.leyenda {
    width: 75%;
    margin: 0 auto;
}

.important_text {
    font-weight: bold;
    text-align: center;
}

.text {
    text-align: center;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: calc(var(--vh, 1vh) * 100);
}

.contenido {
    flex: 1;
    /* El contenido se expande para ocupar el espacio disponible */
}

.boton-postularse-carrousel {
    background-color: #ffcb00;
    border-radius: 10px;
    padding: 6px 25px;
    font-size: 14px;
    margin: 0 auto;
    transition: background-color 0.3s ease;
    &:hover {
        background-color: #a18100;
    }
    a{
        color: black;
        text-decoration: none;  
        font-size: 16px;
        font-weight: bold;
    }
}

.footer-principal {
    margin-top: auto;
    /* Empuja el footer al final */
    display: flex;
    flex-direction: row;
    background-color: rgb(111, 111, 111);
    padding: 10px 0;
    justify-content: space-around;
    align-items: center;
}

.imagen-zarate {
    width: 40px;
}

.imagen-escudo {
    height: 50px;
}

.imagen-lima {
    height: 60px;
}

.footer_decorator {
    text-align: center;
    background: linear-gradient(62deg, rgba(0, 169, 201, 1) 0%, rgba(157, 196, 130, 1) 25%, rgba(255, 203, 0, 1) 50%, rgba(231, 65, 51, 1) 100%);
}

.copyright {
    font-size: 10px;
}

/* Media Query para pantallas mayores a 750px */
@media (min-width: 750px) {
    .teescucha_img {
        width: 350px;
        margin-top: 50px;
    }

    .buttons_container {
        flex-direction: row;
        width: 50%;
        justify-content: center;
        column-gap: 20px;
    }

    .separetor {
        width: 30%;
        height: 8px;
        margin: 70px auto;
    }

    .leyenda {
        width: 35%;
    }

    .copyright {
        font-size: 12px;
        font-weight: bolder;
    }
}