/* 
 * Footer Standardization CSS
 * Padronização visual dos rodapés do site
 */

/* Estilos base do rodapé */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 20px 0;
}

.footer_top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Estilos dos widgets do rodapé */
.footer_widget {
    text-align: left;
    margin-bottom: 30px;
}

.footer_widget h3 {
    color: #EBB44A !important;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer_widget p,
.footer_widget li {
    color: #E5E5E5 !important;
    line-height: 1.7;
    font-size: 14px;
}

.footer_widget a {
    color: #CBA135;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_widget a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer_widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_widget ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.footer_widget ul li:before {
    content: "▶";
    color: #CBA135;
    position: absolute;
    left: 0;
    top: 0;
}

/* Estilos específicos para informações de contato */
.contact_info {
    list-style: none !important;
}

.contact_info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-left: 0 !important;
}

.contact_info li:before {
    display: none;
}

.contact_info li i {
    color: #CBA135;
    width: 20px;
    margin-right: 15px;
    font-size: 16px;
}

/* Estilos para links sociais */
.social_links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social_links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #CBA135;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social_links a:hover {
    background-color: #CBA135;
    color: #fff;
    transform: translateY(-3px);
}

/* Separadores visuais entre colunas */
.footer_top .row > div {
    padding: 0 15px;
}

.footer_top .row > div.border-right {
    border-right: 1px solid rgba(255,255,255,0.2);
}

/* Rodapé inferior com copyright */
.copy-right_text {
    background-color: #1a252f;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
}

.copy-right_text p {
    color: #B8B8B8 !important;
    margin: 0;
    text-align: center;
    font-size: 13px;
}

.copy-right_text a {
    color: #CBA135;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer_widget h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .footer_top .row > div.border-right {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    
    .social_links {
        justify-content: center;
    }
    
    .contact_info li {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 40px 0 15px 0;
    }
    
    .footer_widget {
        margin-bottom: 25px;
        text-align: center;
    }
    
    .footer_widget h3 {
        font-size: 1.2rem;
    }
}
