/* Base (estilos iniciales, mobile first) */
header {
    background-color: #f8f9fa;
    font-family: "Montserrat", sans-serif;
}

nav {
    max-width: 100%;
    margin: auto;
}

.nav-link {
    padding: 10px;
    margin: 0 10px;
    text-align: center;
    border-radius: 20px;
}

.nav-link.active,
.nav-link:hover{
    background-color: #4e2178;
    color: white !important;
    border-radius: 20px;
}

.btn-login {
    color: #4e2178;
    border: 2px solid #4e2178;
    font-weight: bold;
}

.btn-login:hover {
    background-color: #4e2178;
    color: white;
}
.container-button-header{
    margin: 25px auto 25px auto
}
.button-dibujo-header {
    background-color: #4e2178;
    color: #ffed00;
    font-size: 14px;
    padding: 10px;
    border: 3px solid #000;
    border-radius: 10px;
    text-align: center;
    box-shadow: -2px 2px 0px #000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 200px;
    margin: 0 auto;
    text-decoration: none;
}

.button-dibujo-header:hover {
    transform: translate(-2px, 2px);
    box-shadow: -4px 4px 0px #000;
}

.button-dibujo-header:active {
    transform: translate(0, 0);
    box-shadow: -1px 1px 0px #000;
}

/* body (start) */

.container-page {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0 0;
    font-family: "Montserrat", sans-serif;
}

/* body (end) */

/* Footer */
footer {
    font-family: "Montserrat", sans-serif;
    width: 100%;
    padding: 10px 0;
    background-color: #4e2178;
    text-align: center;
}

.container__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    margin: auto;
}

.box__footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px 0;
    width: 100%;
    text-align: center;
}

.box__footer .logo {
    width: 50%;
    margin: 0 auto;
    overflow: hidden;
}

.box__footer .logo img {
    width: 80%;
    margin: auto;
}

.box__footer a,
.box__footer p {
    margin: 10px 0;
    color: #ebe5ed;
    text-decoration: none;
}

.box__footer a:hover {
    opacity: 0.8;
}

.box__copyright p {
    color: #fff;
    font-size: 14px;
}

.box__copyright hr {
    border: none;
    height: 2px;
    background-color: #ebe5ed;
}

.container-social-khelechero {
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: auto;
    background: linear-gradient(to right, #ffed00, #ffed00, #ffee0079 60%), url('./../img/FONDO.png') center/cover no-repeat;
    min-height: 115px;
    padding: 10px;
    border-radius: 25px;
}

.container-social-khelechero p {
    color: #4e2178;
    font-size: 17px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Media Queries (Desktop) */
@media (min-width: 768px) {
    .box__footer .logo {
        width: 70%;
        height: auto;
        text-align: center;
    }
    .button-dibujo-header {
        font-size: 16px;
    }

    .container-social-khelechero {
        flex-direction: row;
        min-height: 80px;
    }

    .container-social-khelechero p {
        font-size: 31px;
    }

    .social-links a {
        margin: 0 20px;
    }

    .box__footer {
        margin: 0px 5px;
        width: 30%;
        text-align: left;
    }
    .box__footer a, p{
        text-align: center;
        font-size: 14px;
    }
    .separator {
        margin: auto;
        width: 2px;
        background-color: #ffed00;
        height: 80px;
        display: inline-block;
    }
}
@media (min-width: 992px) {
    .button-dibujo-header {
        font-size: 13px;
    }
}
@media (min-width: 1023px) {
    .button-dibujo-header {
        font-size: 10px;
        font-weight: bold;
    }
    .header-container{
        max-width: 1950px;
        margin:auto;
    }
}

@media (min-width: 1200px) {
    .nav-item a{
        font-size: 20px;
    }
    .container-page {
        width: 1950px;
    }

    .container__footer {
        justify-content: space-between;
        max-width: 85%;
    }
    
    .box__footer a, p{
        font-size: 17px;
    }
    .box__copyright p {
        font-size: 16px;
    }
    .button-dibujo-header {
        font-size: 14px;
    }
}

@media (min-width: 1500px) {
    .box__footer .logo {
        width: 65%;
    }
    .container__footer {
        margin: 10px auto auto auto;
    }
    .button-dibujo-header {
        font-size: 16px;
    }
}