html,body{
    position: relative;
    height: 100%;
}

body {
    background: #fff url(../images/logo_fondo_62.png);
    background-repeat: no-repeat;
	background-size: contain;
    font-family: Helvetica Neue, Helvetica;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.el-logo {
    width: 100%;
    text-align: center; /* Centra el contenido horizontalmente */
    padding: 20px 0; /* Añade espaciado alrededor del logotipo */
    background-color: #761611;
}

.centrada {
    display: block;
    margin: auto;
    background-color: #761611;
}

/* Otros estilos que tengas para el resto de la página */


.swiper{
    width: 100%;
    padding: 150px 0 50px 0;
}

.swiper-slide{
    width: 300px;
    height: 500px;
    background-color: #eeeeee;
    box-shadow: 0 0 20px rgb(0, 0, 0, 0.4);
    padding: 0 20px 0 20px;
    text-align: center;
    text-decoration: none;
}

.slide-content {
    text-align: center;
    display: flex; /* Usa flexbox para centrar verticalmente */
    flex-direction: column; /* Apila el contenido verticalmente */
    justify-content: center; /* Centra verticalmente */
    height: 100%;
}

/* Eliminar subrayado de enlaces dentro de h3 y p */
.product-txt h3 a,
.product-txt p a {
    text-decoration: none;
}


.slide-content img {
    width: 100%;
}

.product-content{
    margin-top: 20px;
    text-decoration: none;
}


.product-txt span{
    font-size: 25px;
    color: #ffb908;
    font-weight: bold;
    text-decoration: none;
}

.product-txt h3{
    font-size: 20px;
    color: #000000;
    text-transform: uppercase;
    text-decoration: none;
}

.product-txt p{
    font-size: 14px;
    color: #000000;
    text-decoration: none;
}

.product-image{
    flex-basis: 50%;
    text-align: right;
}

.product-image img{
    width: 120px;
}


.swiper-slide:hover {
    background-color: #a7a7a7;


}


.swiper-button-prev,
        .swiper-button-next {
            position: absolute;
            top: 50%;
            width: auto;
            height: auto;
            padding: 10px;
            margin-top: -20px;
            z-index: 10;
            cursor: pointer;
            color: white;
            background-color: rgba(0, 0, 0, 0.4);
            border-radius: 10%;
        }

        .swiper-button-prev {
            left: 10px;
        }

        .swiper-button-next {
            right: 10px;
        }

        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }