/* Footer */

.footer {
    background-color: #21483F;
    color: white;
    padding: 40px 20px 20px 20px;
    margin-top: auto;
    
}

.social-section {
    padding: 20px 0;
}

.social-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: opacity 0.3s;
    gap: 8px;
}

.social-link:hover {
    opacity: 0.8;
    color: white;
}

.social-link i {
    font-size: 32px;
    margin-bottom: 5px;
}

.social-link span {
    font-size: 14px;
    text-align: center;
}

.contact-info {
    text-align: right;
    padding: 20px 0;
    margin-top: 40px;
}

.contact-info p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.4;
}

.address {
    font-weight: 400;
}

.cnpj {
    font-weight: 400;
}

.version {
    font-weight: 400;
}

.top-links a {
    color: white;
    text-decoration: none;
}

.top-links a:hover {
    color: #ffd700;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
        gap: 20px;
    }
    
    .contact-info {
        text-align: center;
        margin-top: 20px;
    }
    
    .decoration-row {
        gap: 8px;
    }
    
    .shape-rectangle-large {
        width: 50px;
        height: 35px;
    }
    
    .shape-rectangle-medium {
        width: 35px;
        height: 25px;
    }
    
    .shape-square {
        width: 25px;
        height: 25px;
    }
    
    .shape-circle {
        width: 25px;
        height: 25px;
    }

}