* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Work Sans', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

.hero {
  background: url('img/logo.png') no-repeat center center/cover;
  height: 100vh;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content {
  color: #fff;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background-color: #f7941d;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #d97c10;
}

section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #146a60;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 200px;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 15px;
  text-align: center;
  font-weight: 600;
}

footer {
  background-color: #fafafa;
  text-align: center;
  padding: 20px;
  color: #666;
}

.depoimento {
  background-color: #f9f9f9;
  text-align: center;
  padding: 60px 20px;
}

.depoimento blockquote {
  font-style: italic;
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 10px;
}

.depoimento .autor {
  font-weight: bold;
  color: #146a60;
}

.contato {
  background-color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.contato p {
  margin: 10px 0;
  font-size: 1rem;
}

.contato a {
  color: #146a60;
  text-decoration: none;
}

.contato a:hover {
  text-decoration: underline;
}

.carousel {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  margin: 40px auto;
}

.carousel-track {
  display: flex;
  animation: scroll 30s linear infinite;
  gap: 40px;
}

.carousel-item {
  min-width: 300px;
  flex-shrink: 0;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
