/* --- BANNER CATÁLOGO --- */
.banner-catalogo {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner_catalogo.avif');
    background-size: cover;
    background-position: center;
    min-height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: #ffffff;
}

.banner-contenido-catalogo {
    max-width: 800px;
}

.banner-catalogo .banner-titulo {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #fcf6f0;
}

.banner-catalogo .banner-texto {
    font-size: 1.05rem;
    color: #e6d9c8;
}

/* --- SECCIÓN CUADRÍCULA DEL CATÁLOGO --- */
.seccion-catalogo-grid {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Flexbox Grid para organizar las tarjetas de productos en filas flexibles */
.productos-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.producto-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Contenedor estricto para que todas las imágenes mantengan idénticas dimensiones */
.producto-imagen-contenedor {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.producto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.producto-card:hover .producto-img {
    transform: scale(1.05);
}

.producto-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.producto-nombre {
    font-size: 1.25rem;
    color: #3b2219;
    margin-bottom: 0.5rem;
}

.producto-desc {
    font-size: 0.9rem;
    color: #6b5344;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1; /* Asegura que la caja de texto empuje el precio y botón hacia abajo de forma alineada */
}

.producto-precio {
    font-size: 1.1rem;
    font-weight: bold;
    color: #a66b45;
    margin-bottom: 1.25rem;
}

.btn-whatsapp {
    margin-top: auto;
    display: block;
    text-align: center;
    background-color: #a66b45;
    color: #ffffff;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #8c5736;
}

/* --- CITA FINAL DEL CATÁLOGO --- */
.catalogo-footer-cita {
    text-align: center;
    max-width: 600px;
    margin: 3rem auto 0 auto;
    padding-top: 2rem;
}

.cita-texto {
    font-style: italic;
    color: #3b2219;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.cita-divisor {
    width: 80px;
    height: 1px;
    background-color: #a66b45;
    margin: 0 auto 1rem auto;
}

.cita-autor {
    color: #6b5344;
    font-size: 0.9rem;
}