*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  background-image: url(imagens/back_black_copy.jpg);
  display: flex;
  align-items: center;
  justify-content: center;
}


.parent3{
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.paraUp2{
  color: #d89664;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: 'Pavanam', sans-serif;
  padding: 10px;
  text-align: center;
}

.paraUp3{
  color: #d89664;
  font-size: 0.8rem;
  font-weight: 800;
  font-family: 'Pavanam', sans-serif;
  padding: 8px;
  text-align: center;
  margin-top: 2px;
}

.imagemBack{
  background-image: url(reserva/reserva-img.png);
  width: 70rem;
  height: 57.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 6rem; 
}

.reservas{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.reserva-top,.reserva-mid,.reserva-bot{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}


.btnArea1{
  text-shadow: 1px 1px 2px #000000;
  margin-top: 7rem;
  color: #D89664;
  padding: 10px;
  background-color: transparent;
  border: transparent;
  font-size: 1.3rem;
  font-family: 'Pavanam', sans-serif;
  font-weight: 900;
  cursor: pointer;
  transition: 0.8s;
  position: relative;
  /* border-radius: 10px; */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.8px);
  
  
}

.btn-side::after{
  content: " ";
  width: 0%;
  height: 0.8px;
  background-color: #D89664;
  border-bottom: 1px solid #D89664;
  transition: 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.btn-side:hover::after{
 width: 100%;
}

.mesa1,.mesa2,.mesa3,.mesa4,.mesa5,.mesa6,.mesa7,.mesa8,.mesa9{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* gap: 5px; */
  border: 1px #D89664 solid;
  width: 230px;
  height: 230px;
  font-size: 14px;
  font-weight: 700;
  color: #D89664;
  margin: 10px;
  margin-top: 10px;
  transition: 0.9s;
  
}

.mesa-img{
  width: 150px;
  height: 150px;
  cursor: pointer;
}

/* .mesa1, .mesa2, .mesa3, .mesa4, .mesa5, .mesa6, .mesa7, .mesa8, .mesa9{
  width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0000004b;
    z-index: 999;
    align-items: center;
    justify-content: center;
    display: none;
} */

.mesa1, .mesa2, .mesa3, .mesa4, .mesa5, .mesa6, .mesa7, .mesa8, .mesa9:hover{
transform: scale3d(1.5);
transition: 0.5s;
box-shadow: 15px 15px 15px #000000;
border-radius: 50%;
}

.janela-modal001{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0000004b;
    z-index: 999;
    align-items: center;
    justify-content: center;
    display: none;
}

.janela-modal001.abrir{
  display: flex;
}

.modal001 {
  width: 60%;
  min-width:400px;
  min-height: 200px;
  background-color: #ffffff62;
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 10px;
  transition: 0.8s;
  color: #fcaf62;
  font-weight: 700;
  font-size: 1.4rem;
  font-family: 'Pavanam', sans-serif;
}

.fechar{
  background-color: transparent;
  color: #4b4b4b;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background-color: #fcaf62;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  
}
@keyframes abrirModal001 {
  from{
      opacity: 0;
      transform: translate3d(0, -20px, 0);
  }

  to{
      opacity: 1;
      transform: translate3d(0, 0, 0);
  }
}

.janela-modal001.abrir{
  display: flex;
}

.abrir .modal001{
  animation: abrirModal1 0.8s;
}