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

body {
  font-family: 'Istok Web', sans-serif;
  scroll-behavior: smooth;
  background-color: #fff;
}

/* VÍDEO DE FUNDO */
.inicio {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-fundo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.conteudo-video {
  position: relative;
  z-index: 2;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 200px;
  z-index: 5; /* acima do vídeo e do overlay escuro */
  margin-top: -30px;
}

.title {

    position: absolute;
  top: 50px;
  left: 140px;
  width: 200px;
  z-index: 3; 
  margin-top: 20px;
  
}

.frase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.frase span {
  white-space: nowrap;
}

/* BOTÃO */
.botao-saiba-mais {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  text-transform: uppercase;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.botao-saiba-mais:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* SOBRE */
.sobre {
  background-color: #032c0d;
  padding: 60px 20px;
}

.sobre-container {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.sobre-container img {
  width: 300px;
  border-radius: 8px;
}

.sobre-container p {
  position: absolute;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f7f6f6;
  margin-top: -70px;
}

/* SERVIÇOS */
.servicos {
  background-color: #0b7462;
  padding: 60px 20px;
  color: white;
}

.servico {
  display: flex;
  gap: 20px;
  max-width: 900px;
  margin: 40px auto;
  flex-wrap: wrap;
}

.servico img {
  width: 200px;
  height: auto;
  border-radius: 6px;
}

.servico h3 {
  margin-bottom: 10px;
}

.servico p {
  line-height: 1.5;
}

/* RODAPÉ */
footer {
  background-color: #143b20;
  color: white;
  text-align: center;
  padding: 60px;
  font-size: 1.1rem;
  font-size: 32px;
font-family: Itim;
font-weight: 400;
word-wrap: break-word
}

.Agende {
   background-color: rgba(0, 0, 0, 0.6);
  color: white;
  text-transform: uppercase;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.Agende:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
