body {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  background-color: #ffc700;
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

header {
  background-color: #0b0b0b;
  padding: 1rem 0;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
  animation: fadeInDown 1s ease forwards;
}

.logo {
  width: 34rem;
  height: auto;
  object-fit: contain;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 2s ease;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4) saturate(1.2);
}

.blocodepalavras {
  position: relative;
  top: -3;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  animation: slideUp 1.5s ease;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 3px;
  text-shadow: 3px 3px 6px #000;
}

.hero p {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 2px 2px 4px #000;
}

.botao {
  background-color: #ffc700;
  border: 2px solid #000;
  padding: 14px 32px;
  color: #000;
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.4s ease;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.botao:hover {
  background-color: #000;
  color: #ffffff;
  border-color: #ffc700;
  transform: scale(1.05);
}

section {
  padding: 70px 20px;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.sobre,
.servicos,
.quimica,
.tratamentos {
  background-color: #fff;
  color: #000;
}

section h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

section p {
  font-size: 1.3rem;
  line-height: 1.9;
  max-width: 900px;
  margin: auto;
}

.lista {
  max-width: 850px;
  margin: auto;
  text-align: left;
  font-size: 1.2rem;
  line-height: 2.2;
  padding: 20px;
}

.item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding: 8px 0;
}

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);
}

#map {
  height: 400px;
  width: 100%;
  margin-top: 30px;
}

.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-fixo video {
  width: 60px;
  height: 60px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.botao-time {
  position: fixed;
  bottom: 40px;
  left: 20px;
  background-color: #000;
  color: #ffc700;
  padding: 14px 20px;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: pulse 2s infinite;
}

.botao-time:hover {
  background-color: #ffc700;
  color: #000;
  transform: scale(1.05);
}
.sobre-conteudo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

.foto-jair {
  width: 220px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.redes-sociais {
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 50px 20px;
}

.link-social {
  color: #000;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.link-social:hover {
  color: #ffc700;
}
.destaque {
  color: #ffc700;
}

a.botao-agendamento {
  display: inline-block;
  background-color: #ffc700;
  border: 2px solid #000;
  color: #000;
  font-size: 1.3rem;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  cursor: pointer;
  text-align: center;
}

a.botao-agendamento:hover {
  background-color: #000;
  color: #ffc700;
  border-color: #ffc700;
  transform: scale(1.05);
  text-decoration: none;
}

/* Responsividade adicional */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1.4rem;
  }

  .botao,
  .botao-time,
  a.botao-agendamento {
    padding: 12px 24px;
    font-size: 1.1rem;
  }

  .logo {
    width: 80%;
  }

  .item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.categoria-servico {
  margin-bottom: 40px;
}

.categoria-servico h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #111;
}

.lista-servicos {
  list-style: none;
  padding: 0;
}

.lista-servicos li {
  font-size: 18px;
  padding: 4px 0;
}

.observacao {
  font-size: 14px;
  color: #777777;
  margin-bottom: 10px;
}
.destaque {
  color: #ffc700;
}
body {
  font-family: "Segoe UI", sans-serif;
  background-color: #ffc700;
  margin: 0;
  padding: 0;
  color: #333;
}

section#servicos {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

section#servicos h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  color: #111;
}

.categoria-servico {
  margin-bottom: 40px;
}

.categoria-servico h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffc700;
  text-transform: uppercase;
  font-weight: 700;
}

.categoria-servico .observacao {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
  font-style: italic;
}

.lista-servicos {
  list-style: none;
  padding: 0;
}

.lista-servicos li {
  padding: 10px 15px;
  margin: 5px 0;
  background-color: #f2f2f2;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.lista-servicos li:hover {
  background-color: #e0e0e0;
}

/* Responsivo */
@media (max-width: 600px) {
  section#servicos {
    margin: 20px;
    padding: 15px;
  }

  .categoria-servico h3 {
    font-size: 1.2rem;
  }

  .lista-servicos li {
    font-size: 0.95rem;
    padding: 8px 12px;
  }
}
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Layout geral */
body {
  font-family: "Bebas Neue", sans-serif;
  background-color: #fff;
  color: #000;
}

/* Responsividade do logo */
.logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  color: white;
}

.hero video {
  width: 100%;
  height: auto;
}

/* .blocodepalavras {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  width: 90%;
  max-width: 400px;
} */

.destaque {
  color: #ffd700;
  font-weight: bold;
}

/* Botões */
.botao {
  padding: 10px 20px;
  background-color: #ffd700;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 16px;
}

.botao:hover {
  background-color: #e0c200;
}

/* Sobre */
.sobre {
  padding: 20px;
  text-align: center;
}

.foto-jair {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

.sobre-conteudo {
  padding: 10px;
  text-align: justify;
}

/* Serviços */
.servicos {
  padding: 20px;
}

.categoria-servico {
  margin-bottom: 20px;
}

.lista-servicos {
  list-style: none;
  padding: 0;
}

/* Mapa */
.mapa-container {
  width: 100%;
  overflow: hidden;
}

/* Redes sociais */
.redes-sociais {
  padding: 20px;
  text-align: center;
}

.link-social {
  color: #ffd700;
  text-decoration: none;
}

.link-social:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  padding: 20px;
  text-align: center;
  background-color: #000;
  color: #fff;
}

/* Botões Fixos */
.whatsapp-fixo {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 1000;
}

.whatsapp-fixo img {
  width: 100%;
  height: auto;
}

.botao-time {
  width: 60rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 18rem;
  bottom: 20px;
  background-color: #ffd700;
  padding: 10px 15px;
  border-radius: 20px;
  font-weight: bold;
  z-index: 1000;
  text-decoration: none;
  color: black;
}

/* Media Queries: Responsividade para tablets e celulares */
@media (max-width: 768px) {
  .blocodepalavras {
    font-size: 14px;
    padding: 8px;
  }

  .botao {
    width: 100%;
    max-width: 300px;
    font-size: 14px;
  }

  .botoes-sobre {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .botao-time,
  .whatsapp-fixo {
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 480px) {
  /*   .blocodepalavras {
    bottom: 10px;
    width: 95%;
  } */

  .botao {
    font-size: 13px;
  }

  h2,
  h3 {
    font-size: 22px;
  }

  .sobre-conteudo p {
    font-size: 14px;
  }

  .botao-time {
    font-size: 12px;
    padding: 8px 12px;
  }

  .whatsapp-fixo {
    width: 40px;
    height: 40px;
  }
}
/* Responsividade específica para os três botões */
@media (max-width: 768px) {
  .botao,
  .botao-time,
  a.botao-agendamento {
    width: 90%;
    font-size: 1rem;
    padding: 10px 20px;
    margin: 0 auto;
    display: block;
    text-align: center;
  }

  .botao-time {
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
    width: auto;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .botao,
  .botao-time,
  a.botao-agendamento {
    font-size: 0.95rem;
    padding: 8px 16px;
  }

  .botao-time {
    bottom: 70px;
  }
}
/* Seção de produtos */
section.produtos {
  padding: 70px 20px;
  text-align: center;
  background-color: #fff;
  color: #000;
  animation: fadeInUp 1s ease forwards;
}

section.produtos .container {
  max-width: 1200px;
  margin: auto;
}

section.produtos h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: #0b0b0b;
}

.galeria-produtos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.produto {
  background-color: #ffc700;
  border-radius: 12px;
  overflow: hidden;
  width: 280px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.produto img {
  width: 100%;
  display: block;
}

.produto p {
  background-color: #0b0b0b;
  color: #ffc700;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  padding: 12px 0;
  margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .galeria-produtos {
    flex-direction: column;
    align-items: center;
  }

  .produto {
    width: 90%;
    max-width: 400px;
  }
}

/* Animação de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Georgia', serif;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 3px solid #c59d5f;
  display: inline-block;
  padding-bottom: 10px;
  animation: fadeInDown 1s ease;
}

.nossaEquipe {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.nossaEquipe img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 100%;
  max-width: 600px;
}

.nossaEquipe img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  section h2 {
    font-size: 2rem;
  }

  .nossaEquipe img {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 10px;
  }

  section h2 {
    font-size: 1.7rem;
    letter-spacing: 1px;
  }

  .nossaEquipe img {
    border-radius: 12px;
  }
}
.livro-container {
  position: relative;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.livro-btn {
  background-color: #c59d5f;
  color: #111;
  border: border;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  padding: 12px 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.livro-btn:hover {
  background-color: #ffffff;
}

.livro-btn.left {
  left: 10px;
}

.livro-btn.right {
  right: 10px;
}

/* Responsivo: esconde botões se necessário */
@media (max-width: 480px) {
  .livro-btn {
    font-size: 1.5rem;
    padding: 8px 12px;
  }
}

/* Esconde seta no celular (telas pequenas) */
@media (max-width: 768px) {
  .seta {
    display: none;
  }
}

/* Mostra seta no PC (telas maiores) */
@media (min-width: 769px) {
  .seta {
    display: block;
  }
}
.avaliacao {
  background-color: #111;
  color: #ffd700;
  text-align: center;
  padding: 40px 20px;
}

.avaliacao h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: 'Bebas Neue', sans-serif;
}

.avaliacao p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.avaliacao__estrelas {
  font-size: 2.5rem;        /* tamanho das estrelas */
  color: #ffd700;           /* amarelo ouro */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.destaque-corte {
  background-color: #111;
  color: #ffc700;
  text-align: center;
  padding: 60px 20px;
  animation: fadeInUp 1s ease;
}

.destaque-corte h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  font-family: 'Bebas Neue', sans-serif;
}

.destaque-corte p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.depoimentos {
  background-color: #fff;
  color: #111;
  padding: 60px 20px;
  text-align: center;
}

.depoimentos h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #0b0b0b;
  text-transform: uppercase;
}

.depoimentos-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.depoimento {
  background-color: #ffc700;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.depoimento strong {
  display: block;
  margin-top: 10px;
  color: #000;
}
