@import url(navbar.css?v=3);
@import url(footer.css?v=3);
@import url(tabela.css?v=3);
@import url(responsiveSection1.css?v=3);
@import url(responsiveSection2.css?v=3);
@import url(galeria.css?v=3);
@import url(avaliacoes.css?v=3);
@import url(responsiveSection3.css?v=3);

html {
  scroll-behavior: smooth;
  padding: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-image: url(../img/background/background4.png);
  background-size: cover; /* cobre toda a área, ajustando a imagem proporcionalmente */
  background-position: center; /* centraliza a imagem */
  background-repeat: no-repeat; /* evita que a imagem repita */
  background-attachment: fixed; /* fixa a imagem, deslizando com o conteúdo */;
}

@media(max-width: 999px){
  body {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-image: url(../img/background/backgroundMobile.png);
  background-size: cover; /* cobre toda a área, ajustando a imagem proporcionalmente */
  background-position: center; /* centraliza a imagem */
  background-repeat: no-repeat; /* evita que a imagem repita */
}
}

.botao-container {
    position: fixed;
    top: 50%; 
    transform: translateY(-50%);
    right: 40px;
    z-index: 1;
}
  
#img-link{
    width: 250px;
    height: auto;
}

@media (max-width: 999px){
    #img-link{
        max-width: 150px;
        height: auto;
}
    .botao-container {
      position: fixed;
      top: 50%; 
      transform: translateY(-50%);
      right: 0px;
      z-index: 1;
}
}

@media (max-width: 450px){
    #img-link{
        display: none;
}

.botao-container {
        display: none;
}
}


.agendamento-container {
  display: flex;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  justify-content: center;
}

.agende-aqui {
  display: block;
  width: 100%;
  max-width: 180px;
  padding: 12px;
  background-color: #ffc120;
  color: #000;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}

.agende-aqui:hover {
  background-color: #e6ae1d; /* Um tom ligeiramente mais escuro para o efeito hover */
}

@media(min-width: 999px){
  .agendamento-container {
   display: none;
}

.agende-aqui {
  display: none;
}
}