/* ============================================
   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: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cards-wrapper .card-feature {
    width: 100%;
}

/* Tablet landscape y desktop pequeño */
@media (max-width: 1200px) {
    .cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

/* Tablet portrait y móvil */
@media (max-width: 768px) {
    .cards-wrapper {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .cards-wrapper .card-feature {
        max-width: 100%;
    }
}

/* Info Section */
.info-section {
    margin-top: 50px;
    padding: 0 15px;
}

.info-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    text-align: justify;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
}

.equipment-table {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1rem;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.equipment-table th,
.equipment-table td {
    padding: 12px 15px;
    vertical-align: middle;
}

.equipment-table th {
    background-color: #cedcea !important;
    color: #333;
    font-weight: bold;
    border-bottom: 2px solid #ddd;
}

.equipment-table tbody tr:hover {
    background-color: #f1f1f1;
}