/* Fuente y fondo general */
body {
    font-family: Arial, sans-serif;
    background-image: url('/images/logo.png'); /* Asegúrate de que la ruta sea correcta */
    background-size: 50%;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    
}

/* Contenedor principal */
.container {
    padding-top: 20px;
}

/* Franja azul con título */
.catalogo-header {
    background-color: #3949AB; /* Indigo 700 */
    color: white;
    text-align: center;
    padding: 25px 0;
    font-size: 2rem;
    font-weight: bold;
    width: 100%;
    margin-bottom: 40px; /* Mayor separación con las tarjetas */
}

/* Estilo del título dentro de la franja azul */
.catalogo-header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Tarjetas de artículos */
.card {
    background-color: #3f51b5; /* Indigo-700 */
    color: white; /* Mejor contraste */
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background-color: #303f9f; /* Indigo-800 */
}

/* Imágenes dentro de la tarjeta */
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

/* Cuerpo de la tarjeta */
.card-body {
    background-color: #3949AB; /* Indigo 700 */
    padding: 15px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    text-align: center;
}

/* Título de la tarjeta */
.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

/* Enlace sin subrayado */
a {
    text-decoration: none;
    color: inherit;
}

/* Espaciado entre tarjetas */
.col-md-6, .col-lg-3 {
    display: flex;
    justify-content: center;
}
