.card {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    min-height: 450px;
}

.card-left {
    background: linear-gradient(135deg, #43a047, #2e7d32);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 41.666667%; /* 5/12 columnas */
}

.card-left-content {
    text-align: center;
    padding: 2rem;
}

.card-right {
    background: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 58.333333%; /* 7/12 columnas */
}

/* Para pantallas pequeñas */
@media only screen and (max-width: 600px) {
    .card {
        flex-direction: column;
        min-height: auto;
    }
    
    .card-left,
    .card-right {
        flex: 0 0 100%;
        min-height: 250px;
    }
}