.site-footer {
    background-color: #05070a !important;
    padding: 40px 0 20px 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between; /* Separa logo de contenido */
    align-items: center; /* Alineación vertical central */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px 20px;
    gap: 30px;
}

/* Logo a la izquierda */
.footer-logo-img {
    max-width: 160px;
    display: block;
}

/* Contenido derecha */
.footer-right {
    display: flex;
    align-items: center;
    gap: 30px; /* Separación entre texto e iconos */
}

.footer-description {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
    max-width: 400px; /* Ajusta según prefieras */
    text-align: right;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.social-link:hover {
    background: #1e50a0;
}

/* Copyright Centrado */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: #64748b;
    font-size: 13px;
    margin: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column; /* Apila todo en vertical */
        text-align: center;
        gap: 25px;
    }

    .footer-right {
        flex-direction: column; /* Apila texto e iconos en vertical */
        gap: 20px;
    }

    .footer-description {
        text-align: center; /* Centra el texto en móvil */
        max-width: 100%;
    }
}