.main-footer {
    background-color: #1e0038; /* Fondo morado oscuro */
    color: #fff;
    padding: 40px 20px;
    font-family: sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    flex: 1 1 200px; /* Ocupa espacio inicial y permite crecer/decrecer */
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px; /* Ajusta el tamaño del logo */
    height: auto;
}

.footer-column {
    flex: 1 1 150px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #ddd;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #eee;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #aaa;
}



.siguenos .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    font-size: 1.3em;
}

.siguenos .social-icons a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease;
}

.siguenos .social-icons a:hover {
    color: #aaa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8em;
    color: #aaa;
}

.footer-bottom .bottom-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom .bottom-links a:hover {
    color: #ccc;
}

.footer-bottom .bottom-links span {
    margin: 0 5px;
}

.footer-bottom .made-by {
    margin: 10px 0;
    flex-basis: 100%; /* Ocupa todo el ancho en pantallas pequeñas */
    text-align: center;
}

.footer-bottom .made-by i {
    color: #ff69b4; /* Color del corazón */
}

.footer-bottom .bottom-links.right {
    text-align: right;
}

/* Adaptación para pantallas más pequeñas */
@media (max-width: 768px) {
    .footer-column {
        flex-basis: 50%;
    }

    .footer-logo, .made-by {
        flex-basis: 100%;
        text-align: center;
    }

    .footer-column.siguenos {
        flex-basis: 100%;
        align-items: center;
        text-align: center;
    }

   

    .siguenos .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom .bottom-links, .footer-bottom .bottom-links.right {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom .bottom-links a {
        margin: 5px 0;
    }
}