body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

header {
  background-color: #ff914d;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: 100%;
}

.logo {
  height: 80px;
  display: block;
  margin: 0 auto;
}

nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
  background-color: #ff914d;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

nav .btn {
  background-color: white;
  color: #ff914d;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav .btn:hover {
  background-color: #e67c39;
  color: white;
}

.hero {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  text-align: center;
  background: #ffe8d9;
}

.hero .texto h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

.hero .texto p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.hero .btn {
  background-color: #ff914d;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1em;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;
}

.destaque {
  background-color: #fef6f1;
  padding: 60px 0;
  text-align: center;
}

.destaque h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

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

.card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.sobre {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sobre ul {
  padding-left: 20px;
  list-style: disc;
}

.formulario {
  background-color: #fff3e8;
  padding: 60px 0;
  text-align: center;
}

.formulario form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.formulario input,
.formulario textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.formulario button {
  background-color: #ff914d;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
}

footer {
  background-color: #ff914d;
  color: white;
  text-align: center;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    text-align: left;
  }

  .cards {
    flex-direction: row;
    justify-content: space-between;
  }

  nav {
    justify-content: center;
  }

  .sobre {
    flex-direction: row;
    align-items: center;
  }

  .sobre div {
    flex: 1;
  }
}

/* Botão flutuante do WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: transparent;
  z-index: 1000;
}

.whatsapp-button .whatsapp-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Missão, Visão e Valores */
.mvv {
  background-color: #fef6f1;
  padding: 60px 0;
}

.mvv h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
}

.mvv-bloco {
  margin-bottom: 40px;
}

.mvv-bloco h3 {
  color: #ff914d;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.mvv-bloco p,
.mvv-bloco ul {
  font-size: 1.05em;
  line-height: 1.6;
}

.mvv-bloco ul {
  padding-left: 20px;
  list-style: disc;
}

/* Contato e Endereço */
.contato-info {
  background-color: #f9f4ef;
  padding: 60px 0;
  text-align: center;
}

.contato-info .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bloco-contato h3 {
  color: #ff914d;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.bloco-contato p {
  margin: 5px 0;
  font-size: 1.05em;
}

.bloco-contato a {
  color: #333;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .contato-info .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .bloco-contato {
    flex: 1;
  }

}
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: underline;
  font-weight: 600;
}

.instagram-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
