:root{
    --principal-color: #fee6e3;
}


*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    font-size: 62.5%;
    font-family: 'Itim', cursive;
}

body{
    font-family: 'Itim', cursive;
}
.bgImage{
    /* border: 1px solid red; */
    position: relative;
    width: 100%;
    height: 100vh;
    /* background-image: url('/assets/img/Mocca-Teddy.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
    background-color: var(--principal-color);
}

.header-logo{
    width: 250px;
    height: 100px;
}
.header-logo img{
    width: 100%;
    height: 100%;
}

.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
 
}

.content{
    position: relative;
    width: 100%;
    height: 100%;
    color: #eeeeee;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    z-index: 2;
}

/* Nav */
.container-nav ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 1.5rem;
}
.container-nav ul li a{
    font-family: 'Itim', cursive;
    font-size: 1.8rem;
}
.container-social{
    width: 150px;
    height: 50px;
}
.text{
    padding: 1rem 0 0 0;
    font-size: 2rem;
    text-align: center;
}
.container-social ul{
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    gap: 1rem;
}

/* fa-solid */
.fa-solid, .fa-whatsapp, .fa-regular{
    margin-right: 1rem;
}

/* button */
.button-56 {
    align-items: center;
    background-color: #fee6e3;
    border: 2px solid #111;
    border-radius: 8px;
    box-sizing: border-box;
    color: #111;
    cursor: pointer;
    display: flex;
    font-family: Inter,sans-serif;
    font-size: 16px;
    height: 48px;
    justify-content: center;
    line-height: 24px;
    max-width: 100%;
    padding: 0 25px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .button-56:after {
    background-color: #111;
    border-radius: 8px;
    content: "";
    display: block;
    height: 48px;
    left: 0;
    width: 100%;
    position: absolute;
    top: -2px;
    transform: translate(8px, 8px);
    transition: transform .2s ease-out;
    z-index: -1;
  }
  
  .button-56:hover:after {
    transform: translate(0, 0);
  }
  
  .button-56:active {
    background-color: #ffdeda;
    outline: 0;
  }
  
  .button-56:hover {
    outline: 0;
  }
  
  @media (min-width: 768px) {
    .button-56 {
      padding: 0 40px;
    }
  }