@import url('https://fonts.googleapis.com/css2?family=Sofia&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chicle&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');



*{
    padding: 0;
    outline: none;
    border: none;
    margin: 0;
    font-family: "Karla", sans-serif;
    box-sizing: border-box;
    text-decoration: none;
    transition: all .2s linear;
}


:root{

    /*Fuentes Empieza*/
    --Sofia:"Sofia", cursive;
    --Karla:"Karla", sans-serif;
    --Dancing:"Dancing Script", cursive;
    --Chicle:"Chicle", serif;
    --Description:"Pacifico", cursive;
    /*Fuentes Termina*/

    /*Base de Colores Empieza*/
    --black100:#000;
    --black70:#202020;
    --black50:#242424;
    --gray:#808080;
    --graymimd:#5c5c5c;

    --brow10:#e7b8a1;
    --brown50:#8a6756;
    --brown70:#4e2917;
    --brown100:#3e1704;

    /*Acentos Empieza*/
    --mostaza:#e2b857;
    --turquesa:#a8dadc;
    --frambuesa:#d45d5d;
    --malva:#bfa0c9;
    --cobre:#cc6b49;
    --verdesalvia:#b8c2b1;
    /*Acentos Termina*/

    /*Base de Colores Termina*/
}





html{
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}
html::-webkit-scrollbar{
    width:.7rem;
}
 html::-webkit-scrollbar-track{
    background-color: transparent;
}
 html::-webkit-scrollbar-thumb{
    background-color: var(--brown50);
    border-radius: 5rem;
}
body{
    overflow-x: hidden;
}

section{
    padding: 2rem 4%;
    min-height: 100vh;
}









/*Social Empieza*/

.blockSocial{
    position: fixed;
    top: 105%;
    min-height: 100vh;
    height: 100%;
    width: 100%;
    background: rgba(63, 95, 95, 0.5);
    z-index:25;
    backdrop-filter: blur(3px);
    opacity: 0;
    left: 0;
    transition: 150ms ease-in-out;
}
.blockSocial.active{
    opacity: 1;
    top: 0;
}

/*RRSS Empieza*/
.socialCont{
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 30;
    display: flex;
    align-content: center;
    justify-content: center;
}
.socialCont .btnRRSS{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    transform: translateY(-50%);
    height: 3rem;
    width: 3rem;
    background: var(--black70);
    z-index: 28;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    border: 2px solid var(--mostaza);
    cursor: pointer;
    box-shadow: 0 3px 5px rgba(88, 63, 40, .7);
}
.socialCont .btnRRSS i{
    font-size: 1.3rem;
}

.socialCont .container{
    position: relative;
    height: 2.7rem;
    width: 2.7rem;
}

.socialCont .container a{
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 20;
    transform: translateX(-50%);
    transform: translateY(-50%);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brow10);
    border-radius: 50%;
    color: var(--brown100);
    border: 2px solid var(--brown70);
}
.socialCont .container a:nth-child(1){
    z-index: 20;
}
.socialCont .container a:nth-child(2){
    z-index: 18;
}
.socialCont .container a:nth-child(3){
    z-index: 16;
}
.socialCont .container a:nth-child(4){
    z-index: 14;
}



.socialCont .container a:nth-child(1).active{
    z-index: 20;
    left: -70%;
    box-shadow: 0 2px 3px rgba(88, 63, 40, .7);
}
.socialCont .container a:nth-child(2).active{
    z-index: 18;
    left: -190%;
    transition-delay:.1s ;
    box-shadow: 0 2px 3px rgba(88, 63, 40, .7);
}
.socialCont .container a:nth-child(3).active{
    z-index: 16;
    left: -310%;
    transition-delay:.2s ;
    box-shadow: 0 2px 3px rgba(88, 63, 40, .7);
}
.socialCont .container a:nth-child(4).active{
    z-index: 14;
    left: -430%;
    transition-delay: .3s;
    box-shadow: 0 2px 3px rgba(88, 63, 40, .7);
}

.socialCont .container a:hover{
    background:var(--brown100) ;
    color: var(--mostaza);
    border: 2px solid var(--frambuesa);
}
/*RRSS Termina*/




/*Productos LAB Empieza*/
.sectionLAB{
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem 4% !important;
    width: 100%;
}

.sectionLAB.show{
    display: flex;
}

.sectionLAB h1{
    font-size: clamp(1.2rem, 3vw, 2rem);
    width: 100%;
}
.sectionLAB .textAdvice{
    margin-bottom: 2rem;
    color: #525252;
    border-bottom: 1px solid #e2e2e2;
    padding: 1rem 0;
    font-style: oblique;
    font-size: clamp(.8rem, 2vw, 1rem);
    text-align: left;
}

.sectionLAB .containerCardsLAB{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    gap: 1rem;
    width: 100%;
    row-gap: 2rem;
}

.sectionLAB .containerCardsLAB .cardLAB{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    border-radius: 7px;
    box-shadow: 0 3px 5px rgba(0,0,0, .2);
    border: 1px solid #cccccc;
    background: #fff;
    cursor: default;
}

.sectionLAB .containerCardsLAB .cardLAB .nameLAB{
   width: 100%;
   padding: .5rem 1rem;
   background: var(--black50);
   color: #fff;
   font-size: 1.1rem;
   font-weight: 900;
   font-style: oblique;
}
.sectionLAB .containerCardsLAB .cardLAB .imageLAB{
    width: 100%;
    padding: .3rem;
    border-bottom: 1px solid #eee;
    height: 17rem;
    object-fit: contain;
}
.sectionLAB .containerCardsLAB .cardLAB .typeLAB{
    font-weight: 600;
    width: 100%;
    text-align: right;
    padding: .5rem;
    font-style: oblique;
}
.sectionLAB .containerCardsLAB .cardLAB .descriptionLAB{
    margin-bottom: auto;
    padding: .5rem;
    font-size: .9rem;
    color: #474747;
    border-bottom:1px solid #eee ;
    border-top:1px solid #eee ;
    background: #f9f9f9;
}
.sectionLAB .containerCardsLAB .cardLAB .priceLAB{
    font-size: 2.5rem;
    padding: .3rem;
    width: 100%;
    text-align: right;
    font-weight: 900;
    color: #04837d;
}

.sectionLAB .containerCardsLAB .cardLAB .priceLAB span{
    font-size: 1.7rem;
    font-weight: 400;
}
/*Productos LAB Termina*/








/*Cuchareables Empieza*/
.otros{
    min-height: 30vh;
    background: #eeeeee;
    margin-top: 2rem;
}
.otros h1{
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--black50);
}
.otros p{
    margin-bottom: 1rem;
    color: var(--graymimd);

}

.otros .container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    gap: .5rem;
    row-gap: 2rem;
}
.otros .container .object{
    border: 2px solid #fdd889;
    background: #fff;
    box-shadow: -3px 3px 5px rgba(0,0,0, .5),
                 3px -7px 7px #fff;
    position: relative;
    overflow: hidden;
    border-radius: 35px;
}
.otros .container .object img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.otros .container .object p{
    background: #2e2e2e;
    color: #fff;
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.otros .container .object .price{
    height: 15rem;
    width: 15rem;
    background: rgb(202, 0, 0);
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    top:60%;
    left: 60%;
    cursor: default;
    border: 5px solid #fdd889;
    box-shadow: -3px 3px 5px rgba(0,0,0, .3);
}
.otros .container .object .price h3{
    margin-top: calc(100% - 70%);
    margin-left: calc(100% - 92%);
    color: #fdd889;
    font-size: clamp(2.2rem, 3vw, 2rem);
}
.otros .container .object .price h3 strong{
    font-size: 1.2rem;
    font-weight: 400;
}
/*Cuchareables Termina*/












@media(max-width:1200px){

    .inicio h1 span img{
    width: 1.5rem;
    }

    .swiper-pagination{
        left: 50% !important;
        transform: translateX(-50%) !important;
  }
  .swiper p{
    top: 16%;
  }


  .swiper .btnCallOne{
    top: 5.5rem;
  }

}