/* Estilos base del footer */
.footer-custom {
    width: 100%;
    padding: 32px 16px;
    margin-top: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

/* Contenedor de redes sociales */
.footer-content .social-media {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Enlaces de redes sociales */
.footer-custom .social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    max-width: 80px;
}

.footer-custom .social-link:hover {
    transform: translateY(-4px);
    opacity: 0.9;
}

/* Íconos de redes */
.footer-custom .social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
    background: #f0f0f0;
    padding: 4px;
    box-sizing: border-box;
}

/* Etiquetas de texto bajo los íconos */
.footer-custom .social-link span {
    font-size: 12px;
    text-align: center;
    line-height: 1.3;
}

/* Marca / copyright */
.footer-brand {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

.footer-brand p {
    margin: 0;
    padding: 0;
}

/* === Responsivo === */
@media (max-width: 768px) {
    .footer-custom {
        padding: 24px 12px;
        gap: 20px;
    }

    .footer-custom .social-icon {
        width: 42px;
        height: 42px;
    }

    .footer-custom .social-link span {
        font-size: 11px;
    }

    .footer-brand p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-custom .social-media {
        gap: 14px;
    }

    .footer-custom .social-link {
        max-width: 70px;
    }

    .footer-custom .social-icon {
        width: 38px;
        height: 38px;
    }

    .footer-custom .social-link span {
        font-size: 10px;
    }
}