/* ============================================
   EMPRESAS PAGE - FLIP CARD ANIMATION
   ============================================ */

.company-card-link {
    text-decoration: none;
    display: block;
}

.company-card {
    perspective: 1000px;
    height: 350px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.company-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-front {
    background: white;
    z-index: 2;
}

.card-back {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    transform: rotateY(180deg);
    z-index: 1;
}

.company-logo {
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

.card-front h4 {
    color: #00c6ff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-top: 1.5rem;
}

.card-back .btn {
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .company-card {
        height: 300px;
    }
    
    .card-front h4 {
        font-size: 1.2rem;
    }
}
