@charset "utf-8";
/* CSS Document */
footer.footer {
    background: #ffffffd9;
    backdrop-filter: blur(8px);
    border-top: 2px solid var(--primary);
    padding: 40px 20px;
    color: var(--primary-dark);
    font-family: 'Inter', sans-serif;
}

/* TOP: Marca + enlaces */
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 25px;
    text-align: center;
}

.footer-brand h2 {
    margin: 0;
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 700;
}

.footer-brand p {
    margin: 5px 0 0;
    font-size: 0.95rem;
    color: #444;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* MIDDLE: Info + Redes */
.footer-middle {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 25px;
    text-align: center;
}

.footer-info p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 18px;
    align-items: center;
}

.footer-social img {
    width: 30px;
    height: 30px;
    transition: 0.2s ease;
    cursor: pointer;
}

.footer-social img:hover {
    transform: scale(1.15);
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #555;
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-top,
    .footer-middle {
        flex-direction: column;
        gap: 20px;
    }
}
