/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Bebas Neue", sans-serif;
  background-color: #ffc700;
  color: #000;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

header {
  background-color: #0b0b0b;
  padding: 1rem 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
}

.logo {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero {
  position: relative;
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.2);
}

.blocodepalavras {
  position: absolute;
  z-index: 2;
  padding: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px #000;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

a.botao-agendamento, .botao, .botao-time {
  background-color: #ffc700;
  border: 2px solid #000;
  padding: 12px 24px;
  color: #000;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 8px;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

a.botao-agendamento:hover, .botao:hover, .botao-time:hover {
  background-color: #000;
  color: #ffc700;
  transform: scale(1.05);
}

section {
  padding: 60px 20px;
  text-align: center;
}

section h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #111;
}

.sobre-conteudo p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: auto;
  text-align: justify;
}

.botoes-sobre {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.foto-jair {
  width: 100%;
  max-width: 240px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin: 20px 0;
}

.lista-servicos {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: auto;
}

.lista-servicos li {
  padding: 10px 15px;
  margin: 5px 0;
  background-color: #f2f2f2;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 500;
  color: #000;
}

.lista-servicos li:hover {
  background-color: #e0e0e0;
}

.observacao {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
  font-style: italic;
}

footer {
  background-color: #111;
  text-align: center;
  padding: 25px;
  color: #aaa;
  font-size: 1rem;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.6);
}

.mapa-container {
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
}

.redes-sociais {
  padding: 30px 20px;
  background-color: #fff;
  color: #000;
}

.link-social {
  color: #000;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.link-social:hover {
  color: #ffc700;
}

.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-fixo img {
  width: 50px;
  height: 50px;
}

.botao-time {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
  max-width: 90%;
  font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .botao,
  .botao-time,
  a.botao-agendamento {
    width: 90%;
    font-size: 1rem;
    padding: 10px 20px;
  }

  .botao-time {
    bottom: 70px;
  }

  .sobre-conteudo p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .botao-time {
    bottom: 60px;
    font-size: 0.95rem;
  }

  .blocodepalavras {
    font-size: 0.9rem;
  }

  .logo {
    max-width: 200px;
  }
}
