/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: Arial, sans-serif;
  background: #f7f2e9;
  color: #000;
  line-height: 1.6;
}

/* TOPO */
.topo {
  background: #f7f2e9;
  padding: 15px 0;
  border-bottom: 1px solid #e0d6c8;
}

.topo-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  gap: 15px;
}

.topo-col img {
  max-height: 70px;
}

.atendimento {
  text-align: center;
  font-size: 14px;
}

/* BOTÕES */
.btn-whats {
  background: #c9a24d;
  color: #000;
  padding: 16px 24px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-whats:hover {
  background: #b18d3f;
}

.btn-whats.grande {
  font-size: 18px;
  padding: 18px 30px;
}

.btn-saiba {
  margin-top: 25px;
  display: inline-block;
  background: #c9a24d;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

/* MENU */
.menu {
  background: #e5d8c8;
}

.menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px;
}

.menu li a {
  margin: 8px 15px;
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

/* HERO */
.hero {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
}

.hero-img img {
  width: 100%;
  max-width: 500px;
  margin: 30px auto;
  display: block;
  border-radius: 10px;
}

/* SEÇÕES */
.secao {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.secao h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.secao h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.preco {
  font-size: 20px;
  font-weight: bold;
}

/* SERVIÇOS */
.servico {
  background: #fff;
  border-radius: 14px;
  padding: 35px 25px;
  margin: 50px auto;
  max-width: 720px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.img-central {
  width: 100%;
  max-width: 420px;
  margin: 30px auto;
  border-radius: 10px;
  display: block;
}

/* DEPOIMENTOS */
.depoimentos {
  background: #fff;
  padding: 50px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.carousel {
  max-width: 420px;
  margin: 30px auto;
  position: relative;
}

.slide {
  display: none;
}

.slide.ativo {
  display: block;
}

.slide img {
  width: 100%;
  border-radius: 10px;
}

/* BOLINHAS */
.dots {
  text-align: center;
  margin: 15px 0;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
}

.dot.ativo {
  background: #c9a24d;
}

/* ===============================
   WHATSAPP FLUTUANTE (CORRETO)
=============================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-float img {
  width: 60px;
  height: auto;
  cursor: pointer;
}

/* RODAPÉ */
.rodape {
  background: #d4c3ad;
  text-align: center;
  padding: 30px 15px;
  font-size: 14px;
  margin-top: 60px;
}

/* MOBILE */
@media (max-width: 768px) {
  .topo-container {
    flex-direction: column;
    text-align: center;
  }

  .btn-whats,
  .btn-saiba {
    width: 100%;
  }
}

/* AJUSTE DE TEXTO DOS CARDS */
.servico h3 {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.servico p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.servico .preco {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

/* ===== WHATSAPP FLUTUANTE FIXO NA TELA ===== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}

.whatsapp-float img {
  width: 60px;
  height: auto;
}

/* Ajuste no mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    right: 15px;
    bottom: 15px;
  }

  .whatsapp-float img {
    width: 55px;
  }
}