/* Public site footer — self-contained styles (scoped under .modern-footer) */

.modern-footer {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    overflow-x: hidden;
    position: relative;
    z-index: 5;
}

.modern-footer .footer-contact {
    background: linear-gradient(135deg, rgba(30, 181, 58, 0.97) 0%, rgba(0, 71, 171, 0.97) 100%);
    padding: clamp(2.5rem, 5vw, 3.25rem) 0;
    width: 100%;
    box-sizing: border-box;
}

.modern-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
    width: 100%;
    box-sizing: border-box;
}

.modern-footer .footer-contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.modern-footer h3.footer-title {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    font-family: "Montserrat", sans-serif;
}

.modern-footer .footer-contact-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.modern-footer .footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    width: 100%;
}

.modern-footer .footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
}

.modern-footer .footer-link:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.modern-footer .footer-link i {
    font-size: 1.05rem;
    width: 1.25rem;
    text-align: center;
    flex-shrink: 0;
}

.modern-footer .footer-social-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    padding-top: 0.25rem;
}

.modern-footer .footer-social-block:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding-top: 1.35rem;
    margin-top: 0.25rem;
}

.modern-footer .footer-social-label {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.modern-footer .site-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.modern-footer .site-social-links--footer {
    margin-top: 0;
}

.modern-footer .site-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.modern-footer .site-social-link:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
    color: #fff;
    text-decoration: none;
}

.modern-footer .site-social-link.social--whatsapp { background: #25d366; }
.modern-footer .site-social-link.social--facebook { background: #1877f2; }
.modern-footer .site-social-link.social--instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.modern-footer .site-social-link.social--youtube { background: #ff0000; }
.modern-footer .site-social-link.social--tiktok { background: #010101; }
.modern-footer .site-social-link.social--x { background: #000; }
.modern-footer .site-social-link.social--linkedin { background: #0a66c2; }

.modern-footer .footer-copyright-bar {
    background: #141414;
    padding: 1.15rem 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
}

.modern-footer .footer-copyright-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.modern-footer .copyright-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

.modern-footer .copyright-text strong {
    font-weight: 600;
    color: #fff;
}

.modern-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
}

.modern-footer .footer-link-item {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.modern-footer .footer-link-item:hover {
    color: #7dd3fc;
    text-decoration: none;
}

.modern-footer .footer-separator {
    color: rgba(255, 255, 255, 0.35);
}

.modern-footer .footer-dev-text {
    color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 576px) {
    .modern-footer .footer-contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .modern-footer .footer-link {
        width: auto;
        min-width: 220px;
        flex: 0 1 auto;
    }
}

@media (min-width: 768px) {
    .modern-footer .footer-copyright-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.65rem 1.25rem;
    }

    .modern-footer .footer-links {
        gap: 0.5rem 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .modern-footer .footer-separator {
        display: none;
    }

    .modern-footer .footer-links {
        flex-direction: column;
        gap: 0.35rem;
    }
}
