:root {
    --color-naranja: #df6b3a;
    --color-naranja-oscuro: #b04416;
    --color-azul-extra-claro: #daf7ff;
    --color-azul-claro: #117892;
    --color-azul: #135666;
    --color-azul-hover: #0e4551;
    --color-gris-claro: #dfdfdf;
    --color-gris-extra-claro: #f1f1f1;
    --color-gris: #aeaeae;
    --color-gris-hover: #878787;
}

@font-face {
    font-family: MusticaPro-SemiBold;
    src: url('../fonts/MusticaPro-SemiBold.otf') format('opentype');
}

@font-face {
    font-family: MusticaPro-Light;
    src: url('../fonts/MusticaPro-Light.otf') format('opentype');
}

body {
    margin: 0;
    background: url('/static/src/fondo1.png');
    background-repeat: repeat;
    background-size: 1000px auto;
    background-color: rgb(255 255 255 / 83%);
    background-blend-mode: lighten;
}


.main {
    min-height: 80vh;
    padding: 2rem;
    box-sizing: border-box;
    font-family: MusticaPro-Light;
}

.header {
    background-size: cover;
    background-position: 20% center;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 1rem;
    font-family: MusticaPro-Light;
    height: 8rem;
}

.header img {
    width: 17rem;
    height: auto;
}

.user-section {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    color: #cccccc;
}

.user-section i {
    font-size: 1rem;
    margin-right: 0.5rem;
}

.user-btns {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.session-btn {
    background-color: transparent;
    border: none;
    color: #cccccc;
    display: flex;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    font-family: MusticaPro-Light;
}

@media only screen and (max-width: 1250px) {
    .content {
        max-width: 100%;
    }
}

.footer {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    color: white;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    box-sizing: border-box;
    font-family: MusticaPro-Light;
}

.footer-logo img {
    width: 7rem;
    height: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: large;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ddd;
}

@media (max-width: 850px) {
    .footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-logo img {
        width: 4rem;
    }

    .footer-links {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem
    }
}


#signupInfoModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-wrapper {
    background-color: white;
    border-radius: 1rem;
}

.signup-info-content {
    width: 60rem;
    height: 34rem;
    padding: 1rem;
    border-radius: 1rem;
    background-image: url('/static/src/fondo1.png');
    background-repeat: repeat;
    background-size: 1000px auto;
    background-color: rgba(255, 255, 255, 0.83);
    background-blend-mode: lighten;
}

#signupInfoBody {
    height: 90%;
    overflow-y: auto;
    font-family: MusticaPro-Light;
}

#signupInfoTitle {
    margin: 0;
    text-align: center;
    color: var(--color-azul);
    font-family: MusticaPro-SemiBold;
    padding: 1rem 0;
}

.signup-info-header {
    position: relative;
}

#signupInfoCloseBtn {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    padding: 1rem;
    border-radius: 2rem;
    height: 2rem;
    width: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#signupInfoBody div {
    color: var(--color-azul)
}

#signupInfoBody hr {
    border: none;
    background: var(--color-naranja);
    width: 100%;
    height: 0.8rem;
    margin: 0.6rem 0;
}