/* =========================================
   RESET E BASE
========================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================
   VARIÁVEIS
========================================= */

:root {
    --bg-dark: #444;
    --bg-darker: #292929;
    --text-light: #ccc;
    --text-white: #fff;
    --text-muted: #6c6c6c;
    --primary: #2e7ece;
}


/* =========================================
   FOOTER BASE
========================================= */

.main-footer-loopnerd {
    width: 100%;
    background: var(--bg-dark);
    color: var(--text-light);
}


/* Container principal (mantém estrutura original) */

.footer-primary-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


/* =========================================
   COLUNAS (mantém proporções originais)
========================================= */

.footer-column {
    padding: 0 10px;
    margin-bottom: 30px;
}


/* Larguras fixas como no teu layout */

.branding-social {
    width: 30%;
}

.navigation-menu {
    width: 30%;
}

.newsletter-subscribe {
    width: 30%;
}


/* =========================================
   BRANDING
========================================= */

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-description {
    display: flex;
    line-height: 1.6;
    font-size: 14px;
    font-weight: 100;
    padding: 0 0px;
    max-width: 1400px;
    margin-top: 0px;
    margin-left: 0px;
}


/* =========================================
   REDES SOCIAIS
========================================= */

.footer-col .social-links {
    margin-top: 15px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    transition: all 0.3s ease;
}

.footer-col .social-links a:hover {
    background: var(--text-white);
    color: var(--primary);
}


/* =========================================
   MENU
========================================= */

.menu-links-list {
    list-style: none;
}

.menu-links-list li {
    margin-bottom: 8px;
}

.menu-links-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: 0.3s;
}

.menu-links-list a:hover {
    color: var(--primary);
}


/* =========================================
   SEPARADOR
========================================= */

.footer-separator {
    width: 100%;
    height: 1px;
    background: var(--text-muted);
    margin: 20px 0 30px;
}


/* =========================================
   INFORMAÇÕES
========================================= */

.footer-quick-info {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.quick-info-block {
    min-width: 280px;
    margin-bottom: 20px;
}

.quick-info-block-1 {
    gap: 18px;
    min-width: 280px;
    margin-bottom: 20px;
    margin-left: clamp(-300px, -15vw, 0px);
}

.quick-info-block-2 {
    gap: 18px;
    min-width: 280px;
    margin-bottom: 20px;
    margin-left: clamp(-300px, -15vw, 0px);
    align-items: end;
}

.info-icon {
    font-size: 1.6rem;
    color: var(--primary);
}

.info-title {
    font-size: 0.9rem;
}

.info-value {
    font-weight: 700;
    color: var(--text-white);
}


/* =========================================
   COPYRIGHT
========================================= */

.footer-copyright-bar {
    background: var(--bg-darker);
    padding: 15px 20px;
}

.copyright-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.copyright-text {
    font-size: 0.85rem;
}


/* =========================================
   RESPONSIVIDADE (SEM QUEBRAR LAYOUT)
========================================= */


/* Tablet */

@media (max-width: 992px) {
    .branding-social,
    .navigation-menu,
    .newsletter-subscribe {
        width: 45%;
    }
    .footer-primary-content {
        justify-content: flex-start;
    }
}


/* Mobile */

@media (max-width: 576px) {
    .branding-social,
    .navigation-menu,
    .newsletter-subscribe {
        width: 100%;
        text-align: center;
    }
    .footer-quick-info {
        flex-direction: column;
        align-items: center;
    }
    .quick-info-block {
        text-align: center;
    }
}