/* FOOTER */
.section-footer {
    background-color: #3d3d3d;
    color: #ffffff;
    text-align: center;
    padding: 50px 20px;
}

/* CONTENEDOR */
.contenedor-footer {
    max-width: 900px;
    margin: 0 auto;
}

/* LOGO */
.footer-logo {
    width: 140px; /* 👈 más grande */
    height: 140px;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px auto; /* 👈 centrado */
    border-radius: 50%; /* 👈 circular */
    background: #ffffff; /* 👈 fondo blanco */
    padding: 15px; /* 👈 espacio interno para que respire */
}

/* FRASE */
.footer-frase {
    font-size: 16px;
    margin-bottom: 25px;
    color: #dcdcdc;
}

/* REDES */
.footer-redes {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-redes  a{
    cursor: pointer;
}

/* ICONOS */
.footer-icono {
    width: 40px;
    height: 40px;
    background: #555;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* HOVER ICONOS */
.footer-icono:hover {
    background: #6a00f4;
    transform: translateY(-3px);
}

/* COPYRIGHT */
.footer-copy {
    font-size: 14px;
    margin-bottom: 5px;
    color: #ccc;
}

/* DERECHOS */
.footer-derechos {
    font-size: 13px;
    color: #aaa;
}

/* ========================= */
/* 🔽 RESPONSIVE 🔽 */
/* ========================= */

/* <= 768px */
@media (max-width: 768px) {
    .footer-logo {
        width: 120px;
        height: 120px;
    }

    .footer-frase {
        font-size: 14px;
    }

    .footer-icono {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .footer-copy {
        font-size: 13px;
    }

    .footer-derechos {
        font-size: 12px;
    }
}

/* <= 480px */
@media (max-width: 480px) {
    .section-footer {
        padding: 40px 15px;
    }

    .footer-logo {
        width: 100px;
        height: 100px;
    }

    .footer-frase {
        font-size: 13px;
        line-height: 18px;
    }

    .footer-redes {
        gap: 10px;
    }

    .footer-icono {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .footer-copy {
        font-size: 12px;
    }

    .footer-derechos {
        font-size: 11px;
    }
}