    body{
        margin: 0;
        padding: 0;
        background-color: #EEEFF1;
    }
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: 'Chewy', cursive;
        color: white;
        padding: 4px 10px; 
        background: #312D81;
        flex-wrap: nowrap;
    }

    .menu{
    display: flex;
    gap: 15px; 
    }

    .boton {
        font-size: 18px;    
        background-color: #262361;
        color: white;
        border: 6px solid #262361; 
        border-radius: 10px;
        text-decoration: none;
        padding: 4px 8px;   
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;   
    }

    .boton:hover {
    background-color: #413c8f;
    border: 6px solid #413c8f;
    cursor: pointer;
    }

    h1 {        
        padding: 0 15px;     
        font-family: 'Chewy';
        font-size: 30px;    
        color: #ffffff;
    }

@keyframes myAnim {
	0% {
		opacity: 0;
		transform: translateX(-250px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}

}
    .Logo {
        padding: 2px;
        height: 80px;
        animation: myAnim 2s ease 0s 1 normal forwards;
    }
    .Bienvenido {
        
        font-optical-sizing: auto;
        font-style: normal;
        text-align: center;
        margin-top: 200px;
        font-size: 40px;
        color: black;
    }

    h2 {

        padding: 0 15px;     
        
        font-size: 30px;    
        color: #000000;
        font-family: "DM Sans", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        text-align: center;
        
    }

    nav.menu {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none; 
}

nav.menu::-webkit-scrollbar {
    display: none; 
}



.informacion {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "DM Sans", sans-serif;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-box img {
    width: 200px;
    height: auto;
    border-radius: 12px;
    flex-shrink: 0;
}

.info-text h3 {
    margin: 0 0 8px;
    font-size: 32px;
    color: #312D81;
}

.info-text p {
    margin: 0;
    font-size: 20px;
    color: #444;
    line-height: 1.5;
}

.btnacceder{
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    background: #051a90;
    transition: background 0.3s;
}


.footer {
    margin-top: 90px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #312D81, #262361);
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    text-align: center;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.15);
}

.footer-top {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer_ref {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 20px;
    background: #413c8f;
    transition: background 0.3s ease, transform 0.2s ease;
}

.footer_ref:hover {
    background: #5a55b3;
    transform: translateY(-2px);
}

.footer-contacto {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
}

.footer-contacto a {
    color: #ffffff;
    text-decoration: underline;
}


@media (max-width: 480px) {
    .boton {
        font-size: 18px;
        padding: 4px 8px;
        border-width: 3px;
        white-space: nowrap;
    }
        .boton:hover {
        background-color: #413c8f;
        border: 3px solid #413c8f;
        cursor: pointer;
    }
    .Logo {
        height: 70px;
    }
    .info-box{
    display: flex;
    flex-direction: column;
    }
    .footer {
        padding: 25px 15px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer_ref {
        font-size: 14px;
        padding: 5px 12px;
    }

    .footer-contacto {
        font-size: 13px;
    }
    
}