/* Contenedor del catálogo completo */
.catalogo-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
    margin-top: 40px; /* espacio entre Hero y título */
}

/* Título del catálogo */
.catalogo-titulo {
    font-size: 32px;
    font-weight: 700;
    color: #0A7672;
    margin-bottom: 30px;
}

/* Contenedor de todos los productos */
.catalogo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centra horizontalmente */
    gap: 20px; /* espacio entre tarjetas */
}

/* Cada tarjeta de producto */
.catalogo-item {
    width: 250px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    background: #fff;
    transition: transform 0.2s ease;
}

.catalogo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Imagen del producto */
.catalogo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Nombre del producto */
.catalogo-item p {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

/* Contenedor de precio y WhatsApp */
.catalogo-precio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

/* Precio */
.catalogo-precio span {
    font-size: 16px;
    font-weight: bold;
    color: #0A7672;
}

/* Icono de WhatsApp */
.catalogo-precio img {
    width: 24px;
    height: 24px;
}

/* Responsive tablets */
@media (max-width: 800px) {
    .catalogo-item {
        width: 45%;
    }
}

/* Responsive móviles */
@media (max-width: 500px) {
    .catalogo-item {
        width: 100%;
    }
}
