footer{
    background: #141414;
    border-top-left-radius: 135px;
    background: linear-gradient(to right, #b3000962, #6600006a);
}
.container-footer {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: white;
    text-align: left;
    padding: 30px 10px 30px 40px;
    border-top-left-radius: 135px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-top: 50px;
    margin-bottom: 20px;

}

.F-Img {
    width: 230px;
    height: auto;
}

.F-Description {
    font-size: 14px;
    color: #bfbfbf;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
}

.link-container {
    margin-bottom: 20px;
}

.T-Footer{
    font-family: 'Poppins';
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    position: relative; /* Hace que los elementos con position absolute dentro se basen en este */
    display: inline-block; /* Para que el ancho se ajuste al contenido */
}

.navbar_links_footer {
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    list-style: none;
    padding: 0;
}

.navbar_links_footer li {
    margin-bottom: 8px;
}

.item-nav-footer {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.item-nav-footer:hover {
    color: #ff4d4d;
}

.link-codipre{
    font-weight: bold;
    font-size: 12px;
    color: white;
    background-color: #e63946; /* Rojo llamativo */
    padding: 6px 13px;
    border-radius: 50px 15px 50px 15px; /* Bordes curvados de forma asimétrica */
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.5); /* Sombra para dar efecto 3D */
}

.link-codipre:hover{
    border-radius: 15px 50px 15px 50px;
    color: #212021;
    background-color: #ff4f5e; /* Un rojo más claro al hacer hover */
    transform: scale(1.04); /* Aumento más sutil */
}

.social-container {
    margin-bottom: 20px;
}

.content-footer-social{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    color: white;
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #ff4d4d;
}

.separador-contairner{
    width: 98%;
    height: 50px;
    margin: 10px auto;
    text-align: center;
}
.separador {
    width: 100%;
    margin: 20px auto;
    border: 0.5px solid #ffffff;
}

.copy {
    font-size: 12px;
    color: #bfbfbf;
}

.T-Footer .underline{
    width: 100%;
    height: 5px;
    background-color: #e63946;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span{
    width: 15px;
    height: 100%;
    background-color: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}
@keyframes moving{
    0%{
        left: -20px
    }
    100%{
        left: 100%
    }
}

@media (min-width: 1024px){
    .container-footer {
        flex-direction: row;
        justify-content: space-around;
    }
    .logo-container {
        width: 30%;
        display: flex;
        flex-direction: column;
        align-items: start;
        margin-top: 50px;
        margin-bottom: 20px;
    
    }

    .content-footer-social{
        align-items: center;
        flex-direction: column;
    }
}