* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

:root{
    --colorBlanco: rgb(255,255,255);
    --colorLogo1: rgb(88,41,29);
    --colorLogo2: rgb(215,202,116);
    --colorLogo3: rgb(245,135,108);
    --colorComplementario: rgb(213,152,74);
    --colorGris: rgb(85,85,85);
    --borderBtn: 20px;
}

.dancing-script{
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.open-sans{
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Back */
.contBack{
    width: 100%;
    height: 100vh;
    background-image: url(../img/background2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.filterBack{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.back{
    width: 95%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.textBack{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.textBack h2{
    font-size: 90px;
    color: var(--colorBlanco);
    margin-bottom: 5px;
    font-family: "Dancing Script", cursive;
}

.textBack p{
    width: 80%;
    font-size: 16px;
    font-weight: 200;
    color: var(--colorBlanco);
    margin-bottom: 15px;
}

.textBack a{
    text-decoration: none;
}

.textBack a button{
    width: 160px;
    height: 40px;
    border: 1px solid var(--colorBlanco);
    font-size: 15px;
    font-weight: 550;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: var(--colorBlanco);
    transition: .6s;
}

.textBack a button:hover{
    transform: translate(15px);
}

.textBack a button i{
    font-size: 16px;
    font-weight: 600;
    margin-left: 5px;
    color: var(--colorBlanco);
}

.infoBack{
    width: 50%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.itemBack{
    width: 30%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--colorBlanco);
    margin: 10px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    transition: .6s;
}

.itemBack:hover{
    transform: scale(1.03);
}

.imgItemBack{
    width: 100%;
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgItemBack img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.textItemBack{
    width: 100%;
    height: 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    user-select: none;
}

.textItemBack p{
    font-size: 16px;
    font-weight: 400;
    color: var(--colorGris);
    margin-bottom: 10px;
}

.textItemBack a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--colorComplementario);
}

.textItemBack a i{
    font-size: 16px;
    color: var(--colorComplementario);
    margin-left: 5px;
    transition: .8s;
}

.textItemBack a:hover i{
    transform: rotate(360deg);
}

@media screen and (max-width: 1150px){
    .itemBack{
        width: 40%;
    }
}

@media screen and (max-width: 1000px){
    .itemBack{
        width: 45%;
    }
}

@media screen and (max-width: 950px){
    .back{
        flex-direction: column;
    }
    .textBack{
        width: 95%;
        margin-bottom: 15px;
        align-items: center;
        text-align: center;
    }
    .infoBack{
        width: 95%;
    }
    .itemBack{
        width: 30%;
    }
    .textItemBack{
        height: 150px;
    }
}

@media screen and (max-width: 768px){
    .textItemBack{
        height: 175px;
    }
}

@media screen and (max-width: 650px){
    .itemBack{
        width: 45%;
    }
    .textBack h2{
        font-size: 70px;
    }
    .textItemBack{
        height: 130px;
    }
    .itemBack:nth-child(3){
        display: none;
    }
}

@media screen and (max-width: 550px){
    .textItemBack{
        height: 150px;
    }
}

@media screen and (max-width: 450px){
    .itemBack{
        width: 44%;
    }
    .textItemBack{
        height: 170px;
    }
}

@media screen and (max-width: 414px){
    .textBack h2{
        font-size: 65px;
    }
    .textBack p{
        width: 100%;
        font-size: 15.5px;
    }
    .itemBack{
        width: 44%;
    }
    .textItemBack{
        height: 150px;
    }
    .textItemBack p{
        font-size: 14px;
    }
    .textItemBack a{
        font-size: 14px;
    }
    .textItemBack a i{
        font-size: 14px;
    }
}

@media screen and (max-width: 375px){
    .textBack h2{
        font-size: 55px;
    }
    .textBack p{
        width: 100%;
        font-size: 14px;
    }
    .textItemBack{
        height: 140px;
        padding: 10px 5px;
    }
    .textItemBack p{
        font-size: 13.5px;
    }
    .textItemBack a{
        font-size: 13.5px;
    }
    .textItemBack a i{
        font-size: 13.5px;
    }
}


/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* About Us */
.contWe{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.we{
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.titleWe{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.iconTittleWe{
    width: 90px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iconTittleWe img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.titleWe2{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -25px;
}

.titleWe2 p{
    font-size: 23px;
    font-weight: 600;
    color: var(--colorComplementario);
}

.titleWe2 h3{
    width: 80%;
    font-size: 40px;
    color: var(--colorGris);
}

.contCoffe{
    width: 95%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.tarjetCoffe{
    width: 30%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    margin: 15px;
    border-radius: var(--borderBtn);
    box-shadow: 3.1px 3.1px 3.6px rgba(0, 0, 0, 0.024),
    8.6px 8.6px 10px rgba(0, 0, 0, 0.035),
    20.8px 20.8px 24.1px rgba(0, 0, 0, 0.046),
    69px 69px 80px rgba(0, 0, 0, 0.07);
    background-color: var(--colorBlanco);
    transition: .6s;
}

.tarjetCoffe:hover{
    transform: scale(1.05);
}

.imgTarjetCoffe{
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.imgTarjetCoffe img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.textTarjetCoffe{
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.textTarjetCoffe h2{
    font-size: 26px;
    color: var(--colorComplementario);
    margin-bottom: 5px;
}

.textTarjetCoffe p{
    font-size: 16px;
    color: var(--colorGris);
}

@media screen and (max-width: 1000px){
    .titleWe2 p{
        font-size: 20px;
    }
    .titleWe2 h3{
        font-size: 33px;
    }
    .tarjetCoffe{
        width: 40%;
    }
}

@media screen and (max-width: 768px){
    .titleWe2 p{
        font-size: 19px;
    }
    .titleWe2 h3{
        font-size: 30px;
    }
    .tarjetCoffe{
        width: 45%;
        height: 420px;
    }
    .textTarjetCoffe h2{
        font-size: 24px;
    }
    .textTarjetCoffe p{
        font-size: 15.5px;
    }
}

@media screen and (max-width: 700px){
    .tarjetCoffe{
        width: 80%;
        height: 350px;
    }
    .imgTarjetCoffe{
        height: 150px;
    }
}

@media screen and (max-width: 650px){
    .titleWe2 p{
        font-size: 17px;
    }
    .titleWe2 h3{
        font-size: 27px;
    }
}

@media screen and (max-width: 550px){
    .titleWe2 p{
        font-size: 16px;
    }
    .titleWe2 h3{
        font-size: 25px;
    }
}

@media screen and (max-width: 450px){
    .titleWe2 p{
        font-size: 15px;
    }
    .titleWe2 h3{
        font-size: 23px;
    }
    .tarjetCoffe{
        width: 90%;
        height: 350px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Servicios */
.contService{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    position: relative;
}

.icons{
    width: 100%;
    height: 100%;
    position: absolute;
}

.icons img:first-child{
    width: 120px;
    height: 90px;
    transform: rotate(50deg);
    left: 0px;
    position: absolute;
    object-fit: contain;
    z-index: 1;
}

.icons img:nth-child(2){
    width: 120px;
    height: 90px;
    object-fit: contain;
    transform: rotate(50deg);
    bottom: 0px;
    right: 20px;
    position: absolute;
}

.service{
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.textService{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.titleService{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px 20px 10px 0px;
}

.titleService p{
    width: 100%;
    font-size: 17px;
    color: var(--colorComplementario);
    font-weight: 550;
    margin-bottom: 5px;
}

.titleService h2{
    font-size: 35px;
    color: var(--colorGris);
}

.descService{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px 0px 10px 20px;
}

.descService p{
    font-size: 17px;
    font-weight: 550;
    color: var(--colorGris);
}

.imgService{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.oneImg{
    width: 50%;
    height: auto;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.oneImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fourImg{
    width: 50%;
    height: auto;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.fourImg img{
    width: 45%;
    height: 100%;
    object-fit: cover;
    margin: 5px;
}

@media screen and (max-width: 950px){
    .titleService p{
        font-size: 17px;
    }
    .titleService h2{
        font-size: 29px;
    }
    .descService p{
        font-size: 15.5px;
    }
    .textService{
        flex-direction: column;
    }
    .titleService{
        width: 70%;
        text-align: center;
        margin: 0px;
        margin-bottom: 10px;
    }
    .descService{
        width: 90%;
        text-align: center;
        margin: 0px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 850px){
    .titleService{
        width: 75%;
    }
    .titleService p{
        font-size: 16px;
    }
    .titleService h2{
        font-size: 27px;
    }
    .descService p{
        font-size: 15px;
    }
}

@media screen and (max-width: 700px){
    .titleService{
        width: 75%;
    }
    .titleService p{
        font-size: 15px;
    }
    .titleService h2{
        font-size: 25px;
    }
}

@media screen and (max-width: 650px){
    .descService{
        width: 95%;
    }
}

@media screen and (max-width: 550px){
    .titleService{
        width: 85%;
    }
    .titleService h2{
        font-size: 23px;
    }
    .imgService{
        flex-wrap: wrap;
    }
    .oneImg{
        width: 95%;
    }
    .fourImg{
        width: 95%;
    }
}

@media screen and (max-width: 414px){
    .titleService h2{
        font-size: 22px;
    }
}

@media screen and (max-width: 375px){
    .titleService h2{
        font-size: 20px;
    }
    .descService p{
        font-size: 13.5px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* Products */
.contProducts{
    width: 100%;
    height: 930px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    position: relative;
}

.iconsProducts{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.iconsProducts img:first-child{
    width: 350px;
    height: 340px;
    position: absolute;
    object-fit: contain;
    bottom: 80px;
    left: 50px;
}

.iconsProducts img:nth-child(2){
    width: 350px;
    height: 340px;
    position: absolute;
    object-fit: contain;
    right: 100px;
}

.products{
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.itemProduct{
    width: 400px;
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    padding: 15px;
    box-shadow: 3.1px 3.1px 3.6px rgba(0, 0, 0, 0.024),
    8.6px 8.6px 10px rgba(0, 0, 0, 0.035),
    20.8px 20.8px 24.1px rgba(0, 0, 0, 0.046),
    69px 69px 80px rgba(0, 0, 0, 0.07);
    border-radius: var(--borderBtn);
}

.itemProduct:first-child{
    left: 20%;
    bottom: 0;
}

.itemProduct:nth-child(2){
    right: 20%;
    top: 0;
}

.imgProduct{
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgProduct img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.textProduct{
    width: 95%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* .textProduct h2{
    font-size: 23px;
    color: var(--colorComplementario);
    margin-bottom: 5px;
} */

.textProduct p{
    font-size: 14.5px;
    font-weight: 500;
    color: var(--colorGris);
}

.textProduct a{
    text-decoration: none;
}

.textProduct a button{
    width: 140px;
    height: 40px;
    border: none;
    background-color: var(--colorComplementario);
    color: var(--colorBlanco);
    font-size: 15px;
    font-weight: 550;
    margin-top: 10px;
    border-radius: var(--borderBtn);
    cursor: pointer;
    transition: .6s;
}

.textProduct a button:hover{
    transform: translate(15px);
}

@media screen and (max-width: 1280px){
    .contProducts{
        height: auto;
    }
    .products{
        flex-direction: row;
    }
    .iconsProducts img:first-child{
        width: 260px;
        height: 250px;
        bottom: 150px;
    }
    .iconsProducts img:nth-child(2){
        width: 260px;
        height: 250px;
        bottom: 20px;
    }
    .itemProduct{
        width: 40%;
        margin: 0px 20px;
        position: static;
    }
    .textProduct p{
        font-size: 14px;
    }
}

@media screen and (max-width: 850px){
    .iconsProducts img:first-child{
        width: 210px;
        height: 200px;
    }
    .iconsProducts img:nth-child(2){
        width: 210px;
        height: 200px;
    }
    .itemProduct{
        width: 44%;
    }
    .imgProduct img{
        object-fit: contain;
    }
}

@media screen and (max-width: 700px){
    .itemProduct{
        width: 60%;
        margin: 15px;
    }
    .iconsProducts img:first-child{
        width: 160px;
        height: 150px;
        top: 40px;
        left: 0px;
    }
    .iconsProducts img:nth-child(2){
        width: 130px;
        height: 120px;
        bottom: 20px;
        right: 0px;
    }
}

@media screen and (max-width: 550px){
    .itemProduct{
        width: 70%;
    }
    .iconsProducts img:first-child{
        width: 160px;
        height: 150px;
        top: 40px;
        left: 0px;
    }
    .iconsProducts img:nth-child(2){
        width: 90px;
        height: 80px;
        bottom: 20px;
        right: 0px;
    }
}

@media screen and (max-width: 450px){
    .itemProduct{
        width: 85%;
    }
}

@media screen and (max-width: 414px){
    .itemProduct{
        width: 95%;
    }
    .iconsProducts img:first-child{
        width: 120px;
        height: 110px;
    }
    .iconsProducts img:nth-child(2){
        right: 15px;
    }
}