/* Empresas Page Styles */
.empresas-section {
    min-height: 100vh;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.font-bold {
    font-weight: 700;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.text-muted {
    color: rgb(107, 114, 128);
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Company Card Hover Effects */
.company-card {
    will-change: transform;
}

.company-card:active {
    transform: translateY(-2px);
}

/* Modal Animations */
#company-modal {
    backdrop-filter: blur(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .text-4xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    
    #companies-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 640px) {
    #companies-grid {
        grid-template-columns: 1fr;
    }
}
