/* ============================================
   ESTRUCTURAS.PHP - Estilos Consolidados
   ============================================ */

.card-feature {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-feature img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background-color: #f5f5f5;
}

.card-feature .card-body {
    flex-grow: 1;
    background: #fff;
    color: #333;
    text-align: center;
    padding: 25px;
}

.card-feature .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 12px;
}

/* Centrar y agrandar las cards */
.cards-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

.cards-wrapper .card-feature {
    width: 100%;
    max-width: 480px;
}

@media (max-width: 992px) {
    .cards-wrapper .card-feature {
        max-width: 90%;
    }
}