.footer {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 40px 20px;
    width: 100%;
}

.footer-wrapper {
    max-width: 1200px;
    margin: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* LOGO + TEXTO */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 50px;
    height: auto;
}

.footer-logo p {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.footer-logo p span {
    color: #d32fc5; /* color chocolate */
}

.footer-logo a {
    margin-left: 15px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
}

.footer-logo a:hover {
    text-decoration: underline;
}

/* REDES SOCIALES */
.footer-social {
    display: flex;
    align-items: center;
}

.social-icon {
    display: flex;
    gap: 15px;
}

.social-icon img {
    width: 120px;
    height: 120px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.social-icon img:hover {
    transform: scale(1.15);
}
.footer-p{
    font-size: 10px;
    color: #525252;
    margin-top: 20px;
    text-align: center;


    line-height: 1.5;
    margin-bottom: 20px;

}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        flex-direction: column;
        gap: 8px;
    }

    .footer-logo a {
        margin-left: 0;
    }
}
