﻿/* CSS */
.row.g-4 {
    display: flex;
    flex-wrap: wrap;
}

.product-items.equal-height {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.row portfolio-items {
    display: flex;
    flex-wrap: wrap;
}
.marcas-items .equal-height {
    width: 70%; /* Ancho ajustado al 70% */
    height: 70%; /* Alto ajustado al 70% */
    display: inline-block; /* Mantener elementos en línea */
    text-align: center; /* Centrar texto horizontalmente */
    vertical-align: middle; /* Alinear contenido verticalmente */
    line-height: calc(70%); /* Centrar texto en relación al nuevo tamaño */
    box-sizing: border-box; /* Asegurar que bordes no afecten dimensiones */
    background-color: lightgray; /* Fondo opcional */
    border: 1px solid black; /* Bordes */
    max-width: 70px; /* Tamaño máximo en píxeles */
    max-height: 70px; /* Altura máxima en píxeles */
}

