@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@500&display=swap');
input{
    cursor: pointer;
}
*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body
{
    background-color: #fff;
}

/* BOTON LEFT CARRUSEL */

/*ESTILOS GENERALES*/
.title-fondo-container
{
    position: absolute;
    bottom: 20px;
    left: 40px;
}

.title-fondo-container h1
{
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.swal2-styled.swal2-confirm
{
    background-color: #FF2B25 !important;
}

.swal2-styled.swal2-cancel
{
    background-color: #6e7881 !important;
}

.btn-wsp-container
{
    display:scroll;
    position:fixed;
    width: 100px;
    bottom: 40px;
    right: 0;
    z-index: 15;
}

.btn-wsp-container span
{
    background-color: #0CB757;
    border-radius: 50%;
    padding: 20px 10px;
}


.container-right
{
    width: 12%;
    height: 100%;
    display: flex;
}

.links-modal
{
    text-decoration: none;
    color: #FF2B25;
}

.links-modal:hover
{
    text-decoration: underline;
    color: #FF2B25;
}


.modal-condiciones 
{
    list-style: none;
    padding: 0;
}

.animacion
{
    animation: menu 500ms forwards;
}

.pos
{
    display: flex;
    justify-content: center;
}
@keyframes menu
{
    0% {
        transform: translateX(-100px);
    }

    100%
    {
        transform: translateX(0px);
    }
}

.volver-div, .volver-div2
{
    display: none;
    padding: 10px 0;
}

.volver
{
    color: #fff;
    margin: 0;
}

.phone-email-container a
{
    color: #fff;
    text-decoration: none;
}


/********************** HEADER ***************************/
.social-media2
{
    padding: 7px 150px;
    display: flex;
    position: relative;
    border-bottom: 1px solid #cacaca;
}

.social
{
    display: flex;
    transition: all .3s;
}

.social div
{
    margin-left: 20px;
    padding: 0 15px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.social img
{
    display: block;
    margin: 0 auto;
}

.text-anuncio
{
    overflow: hidden;
}

.text-anuncio a
{
    text-decoration: none;
    color: #FF2B25;
    width: 600px;
    font-size: 16px;
    display: block;
    margin: 0 auto;
    letter-spacing: 1px;
    font-weight: 600;
    animation: text 8.5s linear infinite;
}

@keyframes text {


    0% {
      transform: translateX(-100%);
    }
    
    100% {
      transform: translateX(100%);
    }

}

.info-header-container
{
    padding: 25px 60px;
    display: flex;
}

.social-media-container
{
    display: flex;
}


.info-social-media-container a
{
    text-decoration: none;
}

.info-social-media-container a:hover
{
    text-decoration: underline;
}

.info-social-media-container img
{
    background-color: #FF2B25;
    padding: 8px;
    border-radius: 50%;
    margin-right: 5px;
}

.whatsapp
{
    background-color: #0CB757 !important;
}

/********************** LOGO ***************************/
.logo-container
{
    display: flex;
    align-items: center;
    transition: all .3s;
}


/********************** MENU ***************************/

.nav-menu
{
    background-color: #FF2B25;
    height: 70px;
    width: 100%;
    z-index: 10;
    display: flex;
    position: relative;
}

.menu
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/*********************************/
.menu2
{
    background-color: #FF2B25;
    height: fit-content;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    display: none;
}

.lista
{
    list-style: none;
    margin: 0;
    padding: 0 20px;
    width: 100%;
}

.sub-lista
{
    display:none;
    list-style: none;
}

.item-lista
{
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.item-sub-lista
{
    display: flex;
    flex-direction: column;
}

.item-lista-show
{
    
}

.link-item
{
    color: #fff;
    text-decoration: none;
    padding: 20px 0;
    width: fit-content;
}

.link-item:hover
{
    color: #000;
}

.sub-lista__2
{
    display: none;
    list-style: none;
}

.item-sub-lista
{
    display: flex;
    flex-direction: column;
}


/**************************************/
.fixed
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 8px 10px -8px rgba(0,0,0,1);
    -webkit-box-shadow: 0px 8px 10px -8px rgba(0,0,0,1);
    -moz-box-shadow: 0px 8px 10px -8px rgba(0,0,0,1);
    animation: smooth 500ms forwards;
}

@keyframes smooth
{
    0% {
        transform: translateY(-100px);
    }

    100%
    {
        transform: translateY(0px);
    }
}

.menu-shadow
{
    box-shadow: 3px 16px 13px -2px rgba(0,0,0,0.65);
    -webkit-box-shadow: 3px 16px 13px -2px rgba(0,0,0,0.65);
    -moz-box-shadow: 3px 16px 13px -2px rgba(0,0,0,0.65);
}

.menu-links
{
    height: 100%;
    transition: transform .5s;
    display: flex;
    margin: 0 auto;
    padding-left: 10px;
}

.menu-item
{
    list-style: none;
    position: relative;
    height: 100%;
    /*--clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);*/
    --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
    --transform: rotate(-90deg);
}

.menu-item-res
{
    list-style: none;
    position: relative;
    height: 100%;
    --transform: rotate(-90deg);
}

.hov:hover
{   
    --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    --transform: rotate(0);
}

.sub-menu-item-res
{
    position: relative;
}

.menu-item:hover
{   
    --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    --transform: rotate(0);
}

.hov2:hover
{
    --clip2: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.sub-menu-item
{
    --clip2: polygon(0 0, 0 0, 0 100%, 0% 100%);
    position: relative;
}

.sub-menu-item:hover
{
    --clip2: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.menu-link
{
    color: #fff;
    text-decoration: none;
    padding: 0 30px;
    display: flex;
    height: 100%;
    align-items: center;

}

.menu-link:hover
{
    color: #000;
}


.menu-arrow
{
    transform: var(--transform);
    transition: transform .3s;
    display: block;
    margin-left: 3px;
}


.sub-menu
{
    list-style: none;
    transition: clip-path .3s;
    position: absolute;
    bottom: 0;
    width: max-content;
    transform: translateY(100%);
    background-color: #FF2B25;
    padding: 0;
    z-index: 5;
}

.down
{
    clip-path: var(--clip);
}

.sub-menu2
{
    list-style: none;
    transition: clip-path .5s;
    clip-path: var(--clip2);
    position: absolute;
    top: 0;
    background-color: #FF2B25;
    padding: 0;
    z-index: 5;
    border-left: 1px solid #fff;
}


.sub-menu-link
{
    padding: 7.5px 30px;
}


.sub-menu-link:hover
{
    color: #000;
}

.menu-burguer
{
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    display: none;
    background: none;
    border: none;
}

.menu-img
{
    display: block;
    width: 36px;
}

.sub-menu-link2
{
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    display: block;
}

.sub-menu-link2:hover
{
    color: #000;
}


/* SEARCH */

.search-container-main
{

}

.search-container
{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.input-search
{
    border-style: none;
    padding: 10px;
    outline: none;
    border-radius: 25px;
    background-color: none;
    color:#fff;
    background: none;
}
  
.input-search::placeholder
{
    color:#fff;
    font-weight: 100;
}
  
.btn-search
{
    width: 50px;
    height: 100%;
    border-style: none;
    font-size: 20px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: -10px;
    color:#ffffff ;
    background-color:transparent;
    pointer-events: painted;  
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search:active
{
    transform: scale(0.5);
}



.user-login-container, .bolsa-container-main/*up*/
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-user-login, .btn-bolsa
{
    border: none;
    outline: none;
    background: #fff;
    padding: 8px 10px;
    border-radius: 50%;
    cursor: pointer;
}


.btn-user-login span:hover
{
    fill:#000;
}

/******************* SLIDER - CAROUSEL *****************/

.slider-section
{
    
}

.slider
{
    height: calc(100vh - 235px);
    position: relative;
}

.slider-item img
{
    display: block;
    width: 100%; 
    height: calc(100vh - 235px);
    object-fit: cover !important; 
}

.owl-prev, .owl-next
{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.owl-prev
{
    left: 5px;
}

.owl-next
{
    right: 5px;
}


.owl-theme .owl-nav [class*=owl-]:hover
{
    background: none;
}


/**************** PRODUCTOS DESTACADOS *****************/
.productos-destacados-container .owl-stage-outer
{
    padding: 40px 0;
}

.producto-destacados-section
{
    padding: 0 80px;
    background-color: #F0F3F4;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}
/*
.producto-destacados-section::before
{
    content: '';
    position: absolute;
    width: 100%;
    height: 110%;
    top: 0;
    left: 0;
}
*/
.title-pd-container h1
{
    text-align: center;
    position: relative;
}

.title-pd-container h1::before
{
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    width: 10%;
    height: 4px;
    background-color: #FF2B25;
    margin: auto;
    border-radius: 10px;
}

.productos-destacados-container
{
    
}

.title-pd-container
{
    padding: 50px 0;
    color: #FF2B25;
}

.title-pd-container h1
{
    text-align: center;
    font-weight: 600;
    word-spacing: 10px;
}

.productos-destacados
{
}

.link-producto
{
    width: 100%;
    height: 100%;
    text-decoration: none;
    color:#000;
    cursor: pointer;
    transition: all .2s;
}

.link-producto:hover
{
    color:#FF2B25;
}

.productos{
    width: 100%;
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 7px;
    box-shadow: 0px 1px 11px 0px #0000000f;
    -webkit-box-shadow: 0px 1px 11px 0px #0000000f;
    -moz-box-shadow: 0px 1px 11px 0px #0000000f;
    margin: 0 0 60px 0px;
    background-color: #fff;
    transition: all .2s;
}

.productos:hover
{
    transform: scale(1.1);
}

.img-prod-container{
    position: relative;
    height: 75%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.img-prod-container .foto{
    position: absolute;
    top: 15%;
    left: 0;
    height: 85%;
    width: 100%;   
    object-fit: cover; 
    border-top-left-radius: 7px;
    border-top-right-radius: 7px; 
    object-fit: contain;
}
.img-prod-container .super{
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100px !important;
}

.title-prod
{
    word-break: break-word;
    overflow-wrap: break-word;
    font-size: 18px;
    text-align: center;
    overflow: hidden;
}
.info-prod-container{
    height: 25%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 7px 20px;
    word-break: break-word;
    text-overflow: ellipsis;
    flex-direction: column;
}

.title-prod
{
    overflow: hidden;
}

/******************* VIDEO ADMINISTRABLE ******************/

.section-video
{
    padding: 50px 80px;
}

.title-video-container
{
    padding-bottom: 50px;
}

.title-video-container h1
{
    position: relative;
}

.title-video-container h1:before
{
    content: '';
    position: absolute;
    left: 0;
    right: 0;  
    bottom: -20px;
    width: 10%;
    height: 4px;
    border-radius: 10px;
    background-color: #FF2B25;
    margin: auto;
}

.title-video-container h1
{
    text-align: center;
    color:#FF2B25;
    font-weight: 700;
}

.video-container
{
    display: flex;
    align-items: center;
    justify-content: center;
}


/********************** NOSOTROS ***************************/

.section-nosotros
{
    margin: 60px 0 0px 0;
}

.nosotros-container
{
    
    padding: 0 150px;
    padding-bottom: 50px;
    position: relative;
}

.nosotros-container::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FF2B25;
    border-top-left-radius: 65px;
    z-index: -1;
}

.title-nosotros-container
{
    padding: 50px 0;
    padding-bottom: 20px;
}

.title-nosotros-container h1
{   
    text-align: center;
    color: #fff;
    font-weight: 700;
    position: relative;
}

.title-nosotros-container h1::before
{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    width: 10%;
    height: 4px;
    background-color: #fff;
    margin: auto;
    border-radius: 10px;
}

.info-nosotros-container
{
    max-width: 1440px;
    margin: 0 auto;
}

.info-nosotros-container p 
{
    color: #fff;
    text-align: center;
}

/********************* CONDICIONES ************************/
.section-condiciones
{
    height: 400px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-direction: column;
    box-sizing: border-box;
    background-size: cover;
    border-bottom-right-radius: 65px;
}

.section-condiciones::before
{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: -1;
    border-bottom-right-radius: 65px;
}

.section-condiciones h1
{
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.btn-condiciones
{
    padding: 10px 30px;
    background-color: #FF2B25;
    color: #fff;
    border-radius: 15px;
    text-decoration: none;
    transition: all .3s;

}

.btn-condiciones:hover
{
    background: none;
    border: 1px solid #FF2B25;
    color: #fff;
}

/********************** MARCAS ***************************/
.section-marcas
{
    padding: 50px 80px;
    max-width: 1440px;
    margin: 0 auto;
}

.title-marcas-container {
    padding: 50px 0 0 0 ;
}

.title-marcas-container h1
{
    text-align: center;
    color: #FF2B25;
    font-weight: 500;
    position: relative;
}

.title-marcas-container h1::before
{
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    background-color: #FF2B25;
    height: 4px;
    width: 10%;
    margin: auto;
    border-radius: 10px;
}

.marcas-cotainer
{
    
}
.marcas-logo
{
    height: 250px;
    display: flex !important;
    align-items: center;
}

.marcas-logo img
{
    display: block;
    background-size: cover;
    width: 200px !important;
    height: auto;
    margin: 0 auto;
}





/********************** FOOTER ***************************/


.section-contacto
{
    box-shadow: -4px -5px 15px -5px rgba(0,0,0,0.72);
    -webkit-box-shadow: -4px -5px 15px -5px rgba(0,0,0,0.72);
    -moz-box-shadow: -4px -5px 15px -5px rgba(0,0,0,0.72);

}
.contacto-container
{
    background-size: cover;
    position: relative;
    background-color: #FF2B25;
    padding: 30px 50px;
    color: #fff;
}

.contacto-container a:hover
{
    color: #000;
}

/*
.contacto-container:before
{
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .8;
}
*/


.ultimos-productos-footer-container
{
    position: relative;
}


.title
{
    padding: 25px 0;
    position: relative;
    color: #fff;
}

.title::before
{
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 30%;
    height: 3px;
    background-color: #fff;
    border-radius: 10px;
    margin: 0 auto;
}

.title h3
{
    font-size: 26px;
}

.link-prod-foot
{
    width: 100%;
    cursor: pointer;
    display: block;
    margin-bottom: 20px;
    text-decoration: none;
    color: #000;
}

.prod-foot
{
    display: flex;
    box-shadow: 5px 2px 15px -3px rgba(0,0,0,0.63);
    -webkit-box-shadow: 5px 2px 15px -3px rgba(0,0,0,0.63);
    -moz-box-shadow: 5px 2px 15px -3px rgba(0,0,0,0.63);
    border-radius: 10px;
}

.img-prod-foot
{
    width: 70px;
}

.img-prod-foot img
{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.title-prod-foot
{
    width: calc(100% - 70px);
    display: flex;
    align-items: center;
}

.title-prod-foot p
{
    margin: 0 auto;
}

.contacto-container
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 40px;
    grid-auto-rows: 1fr;
}

.cat-foot-container ul, .serv-foot-container ul
{
    list-style: none;
    padding: 0;
}

.cat-foot-container ul li a, .serv-foot-container ul li a
{
    text-decoration: none;
    color: #fff;
}
.serv-foot-container ul
{
    width: 75%;
    margin: 0 auto;
}

.derechos-container
{
    background-color: #FF2B25;
    padding: 10px 40px;
    color: #fff;
    text-align: center;
    position: relative;
}

.derechos-container::before
{
    content: '';
    position: absolute;
    width: 70%;
    height: 1px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #fff;
}


.categorias-footer-container div {
    width: fit-content;
    margin: 0 auto;
}

.servicios-footer-container div {
    width: fit-content;
    margin: 0 auto;
}

.contacto-footer-container div {
    width: fit-content;
    margin: 0 auto;
}

.phone-email-container div {
    margin: 0;
}

/**************************** RESPONSIVE ***********************/

/******************************** 1200px*/
@media(max-width: 1200px)
{
    /***** GRID AUTOMATICO PARA CADA CONTENEDOR DEL FOOTER */
    .contacto-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .productos
    {
        margin: 0 auto;
    }

    .social-media2
    {
        padding: 7px 50px;
    }

}

@media(max-width: 992px)
{
    .info-header-container
    {
        flex-direction: column;
    }

    .social-media-container
    {
        display: none;
        padding: 20px 0;
    }

    .logo-container
    {
        justify-content: center;
    }

    /******** Menu responsive ********/

    .volver-div, .volver-div2
    {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #fff;
    }


    .menu
    {
        display: none;
    }

    .menu2
    {
        display: none;
    }

    .menu-links
    {
        flex-direction: column;
        width: 100%;
    }

    .menu-burguer
    {
        display: flex;
    }

    .menu-img
    {
        margin: 0 auto;
    }

    .show
    {
        display: block;
    }
    
    .social
    {
        justify-content: center;
    }

    .social-media2
    {
        flex-direction: column;
    }

    .text-anuncio
    {
        margin: 5px 0;
    }

    .menu-link
    {
        padding: 20px 30px;
        width: fit-content;
        margin: 0 auto;
    }

    .menu-burguer
    {
        display: flex;
    }

    .menu-img
    {
        margin: 0 auto;
    }


    /****** Clase que oculta el menu *****/
    .menu-oculto
    {
        --clip3: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    
    /****** Clase que muestra el menu ****/
    .menu-show
    {
        transition: .3s;
        display: block;
        --clip3: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    
}

@media(max-width: 768px)
{
    .producto-destacados-section
    {
        padding: 0 20px;
    }

    .video-container iframe
    {
        width: 100%;
    }
}

@media(max-width: 576px)
{
    .slider-item img
    {
        height: calc(100vh - 228.125px);
    }

    .menu, .menu2
    {
        top: 114px;
    }

    .social-media-container
    {
        flex-direction: column;
    }

    .phone-fijo-container, .phone-container, .email-container
    {
        margin: 10px auto;
    }

    .nosotros-container
    {
        padding: 0 40px;
        padding-bottom: 50px;
    }

    .section-marcas
    {
        padding: 80px 40px;
    }

    .logo-container img
    {
        width: 200px;
    }
    
    .section-video
    {
        padding: 0 40px;
    }

    .video-container iframe
    {
        width: 100%;
        height: 300px;
    }

    .social-media2
    {
        padding: 7px 20px;
    }

    .search-container-main
    {
        position: absolute;
        top: 70px;
        width: 100%;
        background-color: #FF2B25;
    }

    .btn-search
    {
        right: 10px;
    }

}

.precios{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px 10px 10px;
}

.no-desc{
    justify-content: center;
}

.no-desc .precio p{
    color: #FF2B25;
    text-decoration: none;
    text-align: center;
}

.precio p, .desc p{
    margin: 0;
}

.precio p{
    text-decoration: line-through;
    font-weight: 100;
    color: #a3a3a3;
}

.desc p{
    font-weight: 700;
    color: #FF2B25;
}

.oferta{
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FF2B25;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.oferta::before{
    content: '';
    width: 65px;
    position: absolute;
    height: 65px;
    background: transparent;
    border: 1px solid #FF2B25;
    border-radius: 50%;
    left: -10px;
    right: -10px;
    margin: auto;
    box-shadow: 1px 2px 8px 4px rgba(255,43,37,0.18);
    -webkit-box-shadow: 1px 2px 8px 4px rgba(255,43,37,0.18);
    -moz-box-shadow: 1px 2px 8px 4px rgba(255,43,37,0.18);
}