/* Estilos Generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background-color: #004a99; /* Azul Imprenta */
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Grilla del Catálogo */
.catalog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Tarjeta de Producto */
.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-details h3 {
    margin: 0 0 10px 0;
    color: #004a99;
}

.description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.product-details ul {
    font-size: 0.85rem;
    padding-left: 18px;
    color: #444;
    margin-bottom: 15px;
}

.price {
    font-weight: bold;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-top: auto;
    margin-bottom: 10px;
}

.btn-cta {
    display: block;
    text-align: center;
    background-color: #ff6600; /* Naranja contraste */
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-cta:hover {
    background-color: #e65c00;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    background-color: #333;
    color: white;
}



