html {
  scroll-behavior: smooth;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fffaf4;
  color: #333;
  line-height: 1.6;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #ff9f1c, #ffbf69);
  text-align: center;
  padding: 80px 20px;
}

.logo {
  max-width: 380px;
  width: 100%;
  margin-bottom: 25px;
}

.hero h1 {
  color: #4a2c00;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* BUTTONS */
.btn {
  background: #fff;
  color: #ff7a00;
  padding: 14px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #ff7a00;
  color: #fff;
}

.btn.whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
}

.btn.primary {
  background: #ff7a00;
  color: #fff;
}

/* SECTIONS */
.section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #ff7a00;
}

.section p {
  max-width: 800px;
  margin: auto;
  font-size: 1.05rem;
}

/* ABOUT SLIDER */
.about-slider {
  position: relative;
  max-width: 800px;
  height: 420px;
  margin: 40px auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fffaf4;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.about-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.about-slider img:first-child {
  opacity: 1;
}

/* SLIDER DOTS */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.dot.active {
  background: #ff7a00;
}

/* ESPECIALIDADES */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 12px;
}

.card h3 {
  color: #4a2c00;
  font-size: 1rem;
}

/* REDES SOCIAIS */
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.social-btn {
  padding: 14px 32px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-btn.facebook {
  background: #1877f2;
}

.social-btn:hover {
  transform: scale(1.05);
}

/* AVALIAÇÕES GOOGLE (CORRIGIDO) */
.reviews {
  background: #fff;
}

.review-box {
  max-width: 520px;
  margin: 30px auto 0;
  padding: 32px 24px;
  background: #fffaf4;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stars {
  font-size: 2rem;
  color: #ffb703;
  margin-bottom: 14px;
}

.rating {
  font-size: 1.1rem;
  color: #4a2c00;
  margin-bottom: 26px; /* 👈 espaço correto */
  text-align: center;
}

/* botão dentro da avaliação */
.review-box .btn {
  margin-top: 0;
}

/* UNITS */
.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.unit {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.unit h3 {
  color: #ff7a00;
  margin-bottom: 10px;
}

.btn.small {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  font-size: 0.9rem;
  background: #ff7a00;
  color: #fff;
  border-radius: 22px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn.small:hover {
  background: #e66f00;
}

/* HOURS */
.hours {
  background: #fff3e0;
  border-radius: 20px;
}

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, #ff9f1c, #ffbf69);
  text-align: center;
  padding: 70px 20px;
}

.cta-final h2 {
  color: #4a2c00;
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-final p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* FOOTER */
.footer {
  background: #2f1b00;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.footer img {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.45);
  z-index: 999;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/* MOBILE */
@media (max-width: 768px) {

  .logo {
    max-width: 320px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .about-slider {
    height: 300px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .card img {
    height: 110px;
  }

  .hero-buttons,
  .cta-buttons,
  .social-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn,
  .cta-buttons .btn,
  .social-btn {
    width: 75%;
    max-width: 320px;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }
}
