:root{
    --primaryColor:black;
    --middleColor:#444444;
    --helperColor:#ce000c;
    --lightHelper:#FDFBEE;
    --hrColor:rgb(222, 184, 135);
    --transparentColor:#00d0848f;
    --shadow:rgba(189, 188, 188, 0.514);
    --text-header: #b1b1b1;
   /* --------------------------------- */
    --whatsappColor:#25D366;
    --white:#ffff;
    --blue: #1877F2;
    --green: #25D366;
    --gray:  #f8f8f8;
}

.btnsStyle {
    border: 0.5px solid var(--lightGray);
    border-radius: 50%;
    padding: 1% 0px;
    text-align: center;
    align-content: center;
    cursor: pointer;
    transition: transform 0.3s linear;
}

.btnsStyle:hover {
    transform: translateY(-5px);
}

#contactBtn {
    display: inline-block;
    width:60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    left: 20px;
}

#contactContent {
    position: fixed;
    bottom: 80px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap:30px ;
    transition: display 2s;
}


.faceboook {
    display: inline-block;
    width: 55px;
    height: 55px;
    color: var(--blue);
    font-size: xx-large;
    font-weight: bolder;

}

.faceboook:hover {
    background-color: var(--blue);
    color: var(--white);
}

.whatsappp {
    display: inline-block;
    width: 55px;
    height: 55px;
    color: var(--green);
    font-size: xx-large;
    font-weight: bolder;
}

.whatsappp:hover {
    background-color: var(--green);
    color: var(--white);

}

.phone {

    display: none;
    width: 55px;
    height: 55px;
    font-weight: bolder;
}

.phone:hover {
    background-color: var(--gray);

    color: var(--white);

}
.phoneMobile{
    display: none;
}
.phoneWatstab{
    display: none;
}

@media (max-width: 800px) {
    .phoneWatstab{
    display: inline-block;
}
    .backgroundPhone{
       display: flex;
  align-items: center;
  justify-content: space-around;
  
  background-color: #f3f3f3;
  border: 1px solid var(--blue);
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  color: var(--blue);
  gap: 10px;
  padding:10px 5px;
}

.backgroundWatsap{
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #f3f3f3;
  border: 1px solid var(--green);
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  color: var(--green);
  gap: 10px;
  padding-inline: 5px;

}
  
.phoneMobile{
    display: inline-block;
}

#contactBtn {
    display: none;
}

    #contactContent{
       width: 100%;
       margin: auto;
        height: fit-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        gap: 10px;
        position: fixed;
        bottom: 0px;
        right: 0px;
        padding: 5px 0px;
        background-color: var(--white);
        border-bottom: 1px solid var(--primaryColor);
        box-shadow: 0px 10px 40px var(--shadow);
    }

    .phone{
        display: inline-block;
        width: fit-content;
        height: fit-content;
        font-weight: bolder;
    }

    .whatsappp {
        display: inline-block;
        width:fit-content;
        height: fit-content;
        font-size: 23px;
        font-weight: bolder;
    }
  
}