body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(241, 225, 225);
}

header {
    color: black; 
    text-align: center; 
    margin: 50px 20px; /
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

main {
    padding: 20px;
}

.product-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    
}

.product {
    text-align: center;
    width: 30%;
    margin-bottom: 20px;
    /* border: 1px solid #ccc; */
    border-radius: 5px;
    padding-top: 10px;
    
}

.product img, .product video{
    max-width: 80%;
    max-height: 400px; 
    height: auto;
    /* cursor: pointer; */
    border-radius: .2em;
}


.product h2 {
    font-size: 18px;
    padding-top: .5em;
    margin-bottom: 10px;
}

.carousel {
    width: 100%;
    display: flex; 
    align-items: center; 
}

.carousel img, .carousel video {
    max-width: 100%;
    height: auto;
    object-fit: cover; 
    margin: 0 auto; 
}

.slick-prev, .slick-next {
    font-size: 0;
    line-height: 3;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    color: #fff;
    outline: none;
    background: rgba(0, 0, 0, 0.5);
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-dots {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: #bbb;
    border-radius: 50%;
}

.slick-dots li.slick-active button {
    background: #333;
}

.menu-container {
    background-color: #333;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px; 
    z-index: 1000; 
}

.catalogo {
    height: 120px;
}

.logo {
    margin-right: auto; 
}

.menu {
    margin-left: auto;
} 

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu ul li {
    display: inline-block;
    margin-left: 10px;
}

.menu ul li:first-child {
    margin-left: 0;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    /* font-weight: bold; */
}

.menu ul li a:hover {
    color: #ccc;
}

.facebook-icon {
    display: inline-flex;
    justify-content: center; 
    align-items: center; 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    background-color: #3a3a3a; 
    color: white; 
    text-decoration: none; 
}

.facebook-icon i {
    font-size: 20px; 
}

.contenedor-imagen {
    display: flex;
    justify-content: center; 
    align-items: center; 
    text-align: center;
    margin: 50px 20px;
}

.round-button {
    display: inline-block;
    background-color: #2c3e50; /* Color de fondo azul oscuro */
    color: white; /* Color de texto blanco */
    border: none;
    border-radius: 2em; /* Forma redonda */
    padding: 15px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.round-button:hover {
    background-color: #34495e; /* Cambio de color al pasar el ratón */
}
