/* Estilos para la Página "Catálogo" */

/* Encabezado Específico de la Página */
.masthead-catalogo {
    height: 500px;
    background-image: url('../img/background/catalogo-masthead-bg.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.masthead-catalogo h1 {
    font-size: 3rem;
}

.masthead-catalogo .lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* Sección Catálogo */
.catalogo-container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.product-card {
    background-color: var(--light-gray-bg-alt);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    /* CORRECCIÓN: Se añade 'opacity' a la transición para que la animación de scroll funcione */
    transition: opacity 0.6s ease-out, transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-card-img {
    height: 220px;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    background-color: var(--dark-bg);
    color: var(--light-gray-bg-alt);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-title h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    padding: 5px 0;
}

.product-industria {
    margin-top: auto; /* Empuja esta sección al fondo */
}

.product-industria h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-industria p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 600;
}
@media (max-width: 991.98px) {
    .masthead-catalogo {
        padding-top: 100px;
    }
    .masthead-catalogo h1 {
        font-size: 2.25rem;
    }
}