.custom-card {
    height: 300px; /* Altura total fija para todas las tarjetas */
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.custom-card:hover {
    transform: scale(1.03);
}

.custom-card .card-body {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-card img {
    width: 100%;
    height: 300px; /* Altura fija para todas las imágenes */
    object-fit: cover;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.custom-text {
    padding: 0.75rem;
    background-color: #f8f9fa;
    font-weight: bold;
    text-transform: uppercase;
    height: 100%;
}
