/* Cabeçalho */
.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f1d951; /* Fundo amarelo suave */
  padding: 10px 5%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap; /* Para evitar que os elementos se sobreponham em telas menores */
}

/* Logo */
.menu .logo img {
  max-height: 100px; /* Reduzido para melhor proporção */
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  background-color: #FFF5BA;
  padding: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito de hover */
.menu .logo img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Centralizar os itens do menu */
.menu nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.menu nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 100px; /* Reduzido o espaçamento entre os links */
  margin: 0;
  padding: 0;
}

.menu nav a {
  text-decoration: none;
  color: #092715;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s;
}

/* Hover do menu */
.menu nav a:hover {
  color: #a3c48b;
}

/* Responsividade */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 5%;
  }

  .menu nav {
    width: 100%;
  }

  .menu nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .menu .logo img {
    max-height: 60px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

.video-full-container {
  width: 100%;
  height: 100vh; /* Ocupa toda a altura da tela */
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Faz o vídeo preencher sem distorcer */
  display: block;
}

.video-controles {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.video-controles button {
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
}

.video-controles button:hover {
  background-color: rgba(255, 255, 255, 1);
}


/* Mensagem abaixo do vídeo */
.mensagem {
  padding: 80px 20px;
  background-color: #FFF5BA;
  text-align: center;
}

.mensagem .conteudo {
  max-width: 800px;
  margin: 0 auto;
  color: #4A7856;
}

.mensagem h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.mensagem p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* Botão Agendar */
.btn-agende {
  display: inline-block;
  padding: 12px 25px;
  background-color: #4A7856;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.btn-agende:hover {
  background-color: #A8D5BA;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  scroll-behavior: smooth;
  background-color: #fffdf6;
}

.header {
  background-color: #ffffff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  max-width: 200px;
  margin-bottom: 10px;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: #4a7856;
  font-weight: 600;
  transition: color 0.3s;
}

.menu a:hover {
  color: #a3c48b;
}

.botoes-flutuantes {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.btn-flutuante img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s;
}

.btn-flutuante img:hover {
  transform: scale(1.1);
}

.sobre {
  scroll-margin-top: 40px;
  padding: 100px 5% 60px;
  background: 
    linear-gradient(135deg, #FFF5BA 0%, #E6F4E6 100%),
    url('https://www.transparenttextures.com/patterns/soft-wallpaper.png');
  background-blend-mode: overlay;
  background-size: cover;
  background-repeat: repeat;
}


.container-sobre {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.foto-mary img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.texto-sobre {
  max-width: 600px;
  color: #4A7856;
}

.texto-sobre h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #4A7856;
}

.texto-sobre p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 15px;
}
.servicos {
  scroll-margin-top: 70px;
  background: linear-gradient(135deg, #FFF5BA 0%, #E8F5E9 100%);
  padding: 80px 20px;
  text-align: center;
  
}

.container-servicos {
  max-width: 1200px;
  margin: 0 auto;
}

.servicos h2 {
  font-size: 36px;
  color: #4A7856;
  margin-bottom: 10px;
  
}

.subtitulo-servicos {
  font-size: 18px;
  color: #6D6D6D;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


.servico-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.servico-item:nth-child(even) {
  flex-direction: row-reverse;
}

.foto-servico {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.texto-servico {
  max-width: 500px;
  text-align: left;
}

.texto-servico h3 {
  font-size: 28px;
  color: #4A7856;
  margin-bottom: 15px;
}

.texto-servico p {
  font-size: 18px;
  color: #5B5B5B;
}

.botao-servicos {
  margin-top: 40px;
}

.botao-servicos .btn-agende {
  padding: 14px 30px;
  font-size: 18px;
}


/* Estilo da seção Agendamento */
.agendamento {
  scroll-margin-top: 80px; /* ajusta conforme a altura do seu menu fixo */
  background-color: #a3c48b;
  padding: 50px 20px;
}


.agendamento h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.agendamento p {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.formulario-agendamento {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.formulario-agendamento input,
.formulario-agendamento select,
.formulario-agendamento textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.formulario-agendamento textarea {
  resize: vertical;
}

.formulario-agendamento button {
  background-color: #44d67f;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.formulario-agendamento button:hover {
  background-color: #4A7856;
}

/* Estilo de links */
a {
  text-decoration: none;
  color: #5B5B5B;
}

a:hover {
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
  .sobre .container-sobre {
    flex-direction: column;
    align-items: center;
  }

  .servicos .servico-item {
    flex-direction: column;
    align-items: center;
  }

  .formulario-agendamento {
    width: 90%;
  }
}

.localizacao {
  scroll-margin-top: 70px; /* compensa o header fixo */
  background-color: #E8F5E9;
  padding: 60px 20px;
  text-align: center;
}


.container-localizacao {
  max-width: 800px;
  margin: 0 auto;
}

.container-localizacao h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #4A7856;
}

.container-localizacao p {
  font-size: 1rem;
  margin: 5px 0;
}

.localização {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-lateral {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.social-lateral a {
  background-color: #f1f1f1;
  padding: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.social-lateral a:hover {
  background-color:#4A7856;
  transform: translateX(5px);
}

.social-lateral img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%) brightness(0.4);
  transition: filter 0.3s ease;
}

.social-lateral a:hover img {
  filter: none;
}

.rodape {
  text-align: center;
  padding: 20px;
  background-color:#f1d951;
  font-size: 0.9em;
}

.voltar-topo {
  display: inline-block;
  margin-top: 10px;
  color: #5B5B5B;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}
#botao-musica {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #a7d7c5;
  color: #333;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s;
  z-index: 9999;
}

#botao-musica:hover {
  background-color: #8ccfb4;
}
