/* ── Footer ── */
#footer {
    position: relative;
    background: linear-gradient(
        135deg,
        rgb(179, 134, 69),
        rgb(120, 85, 40)
    );
    color: white;
    overflow: hidden;
}

.footer-overlay {
    padding: 70px 0 30px;
    backdrop-filter: blur(10px);
}

/* ── Encabezado ── */
.footer-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-subtitle {
    margin-bottom: 35px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ── Redes sociales ── */
.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.social-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.social-icon:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

/* ── Separador ── */
.footer-divider {
    height: 1px;
    margin: 50px 0;
    background: rgba(255, 255, 255, 0.18);
}

/* ── Contacto ── */
.footer-contact {
    row-gap: 20px;
}

.contact-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.contact-item img {
    width: 28px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f7e1b5;
}

/* ── Copyright ── */
.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .footer-overlay {
        padding: 55px 20px 25px;
    }

    .footer-title {
        font-size: 1.8rem;
    }

    .social-icon {
        width: 62px;
        height: 62px;
    }

    .social-icon img {
        width: 28px;
        height: 28px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}