/* footer.css */

.site-footer {
    background-color: #0A4D40;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
    z-index: 2;
    min-height: 400px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo {
    flex: 0 0 100%;
    max-width: 280px;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 160px;
    height: auto;
    margin-bottom: 0px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links-container {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links-column {
    flex: 1;
    min-width: 160px;
}

.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    display: block;
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #F18F1C;
    display: block;
    margin: 8px auto;
    position: static;
    transform: none;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #F18F1C;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact {
    text-align: center;
    margin: 0;
    padding: 0;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-svg {
    width: 20px;
    height: 20px;
    stroke: #F18F1C;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.contact-method a, 
.contact-method address {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-style: normal;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #fff;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 100%;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-actions {
    display: flex;
    align-items: center;
}

.footer-action-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-action-link:hover {
    color: #fff;
}

.footer-action-link.highlight {
    color: #F18F1C;
    font-weight: 600;
}

.footer-action-link.highlight:hover {
    color: #ffb05c;
}

.divider {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.3);
}

/* Media Queries para Responsividade */
@media (max-width: 1199px) {
    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .footer-top {
        padding: 60px 0 40px;
        min-height: 550px;
    }
    
    .footer-logo {
        text-align: center;
        margin: 0 auto 30px;
    }
    
    .footer-links-container {
        justify-content: space-around;
    }
    
    .footer-links-column {
        flex: 0 0 calc(50% - 30px);
        margin-bottom: 0px;
    }
    
    .footer-contact {
        flex: 0 0 100%;
        text-align: center;
    }
    
    .contact-method {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding: 30px 0 30px;
        min-height: 980px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        order: 2;
    }
    
    .footer-actions {
        order: 1;
        margin-bottom: 15px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-links-column {
        flex: 0 0 100%;
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
    }
}