/* === FOOTER GERAL === */
.footer {
    position: relative;
    background: #1C2944;
    color: #FFFFFF;
    padding: 50px 20px;
    text-align: center;
}

/* === FUNDO COM OPACIDADE === */
.footer-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../image/frame_8/img_fundo_footer.png") center/cover no-repeat;
    opacity: 0.1;
    top: 0;
    left: 0;
    z-index: 0;
}

/* === CONTEÚDO DO FOOTER === */
.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

/* === LOGO === */
.footer-logo img {
    width: 150px;
}

/* === FRASE MOTIVACIONAL === */
.footer-quote {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    max-width: 400px;
}

.footer-line {
    width: 60%;
    height: 2px;
    background: #fff;
    opacity: 0.5;
    margin-bottom: 20px;
}

/* === CONTATO === */
.footer-contact {
    font-size: 16px;
    text-align: center;
}

/* === LINKS IMPORTANTES === */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.footer-links a {
    text-decoration: underline;
    color: #FFFFFF;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #FCA920;
}

/* === REDES SOCIAIS === */
.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #FCA920;
    color: #1C2944;
}

/* === COPYRIGHT === */
.footer-copyright {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 20px;
}

/* === RESPONSIVIDADE (MOBILE-FIRST) === */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: center;
        text-align: left;
        gap: 40px;
    }
    
    .footer-logo img {
        width: 200px;
    }
    
    .footer-line {
        width: 1px;
        height: 180px;
    }
    
    .footer-contact {
        text-align: left;
    }
    
    .footer-links {
        flex-direction: row;
    }
    
    .footer-social a {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}
