body {
    font-family: 'Exo 2', sans-serif;
}
.navbar{
    height: 8rem
}
.navbar-brand {
    font-weight: bold;
}

.hero {
    background: url('../images/image-Photoroom.jpg') no-repeat center center;
    background-size: cover;
    height: 700px;
    color: white;
}
.product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas de igual ancho */
    gap: 15px 30px; /* Espaciado entre filas y columnas */
    margin-top: 20px;
}
@media (max-width: 767px) {
    .hero {
        background-color: #111111; /* Gris oscuro */
        background-image: none; /* Elimina la imagen de fondo */
      }
      .product-list {
        display: flex;
        flex-direction: column;
        gap:5;
    }
  }
.btn-hero {
    height: 4rem;
    display: inline-block; 
    text-align: center;    
    line-height: 3rem;
    font-size: 20px;
    font-weight: 600;
    margin-top: 2rem
}
.products img {
    width: 100%;
    height: auto;
}
.contact-button{
    display: inline-block; 
    text-align: center;    
    text-decoration: none; 
    line-height: 3.5rem;    
    border: 3px solid #ec1c24;
    color: #ec1c24;
    width: 15rem;
    height: 4rem;
    border-radius: 40px;
    background-color: transparent;
    font-size: 20px;
    font-weight: 600; 
}
.navbar {
    font-size: 20px;
    font-weight: 600; 
    color: #ec1c24;
}


.product-item {
    color: #ec1c24;                  /* Texto rojo */
    text-decoration: none;       /* Quita el subrayado */
    font-size: 30px;             /* Tamaño del texto */
    font-weight: 550;           /* Negrita */
    transition: color 0.3s ease; /* Efecto de transición al hover */
    cursor: pointer;
}
.category-item, .category-item-all {
    color: #ec1c24;                  /* Texto rojo */
    text-decoration: none;       /* Quita el subrayado */
    font-size: 30px;             /* Tamaño del texto */
    font-weight: 550;           /* Negrita */
    transition: color 0.3s ease; /* Efecto de transición al hover */
    cursor: pointer;
}
.border-card{
    border-radius: 10% 10% 10% 10%;
    width: 20rem;
    padding: 0;
}
.border-img{
    border-radius: 16% 16% 0% 0%;
    margin: 0;
    border-color: transparent;
    border-bottom: 0.5px solid #cfcfcf;
}
.product-item:hover {
    color: darkred; /* Cambia el color al pasar el cursor */
}
footer {
    background-color: #ec1c24;
}
.transition-slide {
transition: all 0.2s cubic-bezier(.33, .88, .65, .98);
}
.item {
/* display: none;
opacity: 0; */
list-style-type: none;
transition: opacity 0.3s ease-in-out;
}

.item.visible {
display: block;
opacity: 1;
}