* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

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

a {
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

/* HERO */
.hero {
  background: linear-gradient(
      rgba(60, 20, 80, 0.7),
      rgba(60, 20, 80, 0.7)
    ),
    url("../img/hero-clinica.jpeg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 140px 20px;
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn {
  background: #7a1fa2;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
}

/* SEÇÕES */
.section-light {
  background: #fff;
}

.section-soft {
  background: #f4f1f7;
}

h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #4a145e;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* LISTAS */
.list {
  max-width: 800px;
  margin: auto;
}

.list li {
  margin-bottom: 10px;
}

/* CTA */
.cta {
  background: #4a145e;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  color: #fff;
  margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }
}


form {
  max-width: 500px;
  margin: auto;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

form textarea {
  height: 120px;
  resize: none;
}

form button {
  width: 100%;
  cursor: pointer;
}
