/* ============================================ */
/* FOOTER - CONSULENTE TIM BUSINESS              */
/* ============================================ */

.site-footer {
    background: #FFFFFF;
    padding: 60px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Container com padding nas laterais */
.site-footer .container {
    padding-left: 40px;
    padding-right: 40px;
}

/* ============================================ */
/* CONTEÚDO PRINCIPAL                           */
/* ============================================ */

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* ============================================ */
/* COLUNA 1 - BRAND                             */
/* ============================================ */

.footer-brand {
    text-align: left;
}

.footer-logo {
    height: 65px;
    width: auto;
    margin-bottom: 15px;
}

.footer-desc {
    color: #555;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

/* #EB0028es sociais */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #F5F7FA;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1f5a9c;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* ============================================ */
/* COLUNAS 2, 3, 4                              */
/* ============================================ */

.footer-title {
    color: #555;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

/* Links rápidos */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #555;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-menu a:hover {
    color: #1f5a9c;
    padding-left: 8px;
}

.footer-menu a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #1f5a9c;
    font-weight: 700;
}

.footer-menu a:hover::before {
    left: -5px;
    opacity: 1;
}

/* Informações de contato - ÍCONES ALINHADOS */
.footer-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #555;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}

.footer-info li i {
    font-size: 16px;
    color: #555;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.footer-info li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-info li a:hover {
    color: #1f5a9c;
}

/* CTA */
.footer-cta-text {
    color: #555;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.footer-btn {
    background: #EB0028;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.footer-btn i {
    font-size: 16px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.footer-btn:hover {
       background: #EB0028;

    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 90, 156, 0.3);
}

/* ============================================ */
/* DIVISOR                                      */
/* ============================================ */

.footer-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

/* ============================================ */
/* COPYRIGHT - CENTRALIZADO                     */
/* ============================================ */

.footer-bottom {
    text-align: center;
    padding-bottom: 25px;
}

.footer-copy {
    color: #555;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.footer-copy a {
    color: #555;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.footer-copy a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #1f5a9c;
    transition: width 0.3s ease;
}

.footer-copy a:hover {
    color: #1f5a9c;
}

.footer-copy a:hover::after {
    width: 100%;
}

/* ============================================ */
/* RESPONSIVO                                   */
/* ============================================ */

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .site-footer {
        padding: 40px 0 0;
    }
    
    .site-footer .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .site-footer .container {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    /* TUDO ALINHADO À ESQUERDA NO MOBILE */
    .footer-col {
        text-align: left;
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-logo {
        height: 55px;
        margin-right: auto;
        margin-left: 0;
    }
    
    .footer-desc {
        text-align: left;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-menu a {
        padding-left: 0;
    }
    
    .footer-menu a:hover {
        padding-left: 8px;
    }
    
    .footer-menu a::before {
        content: '›';
        left: -15px;
        right: auto;
    }
    
    .footer-menu a:hover::before {
        left: -5px;
        right: auto;
        opacity: 1;
    }
    
    .footer-info li {
        justify-content: flex-start;
    }
    
    .footer-btn {
        justify-content: flex-start;
        margin-left: 0;
        margin-right: auto;
    }
    
    .footer-bottom {
        text-align: left;
    }
    
    .footer-copy {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .site-footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-title {
        font-size: 12px;
    }
    
    .footer-desc,
    .footer-cta-text {
        font-size: 12px;
    }
}

/* ============================================ */
/* ACESSIBILIDADE                               */
/* ============================================ */

.social-link:focus-visible,
.footer-btn:focus-visible,
.footer-menu a:focus-visible,
.footer-info a:focus-visible,
.footer-copy a:focus-visible {
    outline: 2px solid #1f5a9c;
    outline-offset: 2px;
}

