/* style.css */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #141414;
  color: #fff;
  scroll-behavior: smooth;
}

h2 {
  text-align: center;
  margin: 2rem 0 1rem;
  color: #e50914;
}

.hero {
  background: url('../img/hero.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  padding: 0.8rem 1.5rem;
  background: #e50914;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #b20710;
}

.servicos .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}
.servicos {
  opacity: 0,5;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.servicos.visible {
  opacity: 1;
  transform: translateY(0);
}
.card {
  background: #222;
  padding: 1.5rem;
  border-radius: 6px;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.sobre, .agendamento {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.avaliacoes {
  padding: 2rem;
  background: #1c1c1c;
  text-align: center;
}

.carousel .item {
  display: none;
  font-style: italic;
  margin: 1rem auto;
  max-width: 600px;
  transition: opacity 0.5s ease-in-out;
}

.carousel .item.ativo {
  display: block;
  opacity: 1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  width: 100%;
}

form button {
  padding: 0.8rem;
  background: #e50914;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  width: 107%;
}

form button:hover {
  background: #b20710;
}

footer {
  background: #111;
  padding: 2rem;
  text-align: center;
}

footer a {
  margin: 0 0.5rem;
  color: #e50914;
  text-decoration: none;
}

footer iframe {
  width: 100%;
  height: 200px;
  margin-top: 1rem;
  border: none;
}
