/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* BASE */
body {
  font-family: "Noto Sans", sans-serif;
  background-color: #f3faf6;
  color: #2f2f2f;
}
 
/* ================= CAROUSEL ================= */
 
.carouselc {
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}
 
.d-block {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}
 
/* ================= FOTO PERFIL ONG ================= */
 
.perfil-ong {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
 
.ong_img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  background-color: #fff;
  border: 6px solid #ffffff;
  box-shadow:
    0 10px 25px rgba(0,0,0,0.15),
    0 0 0 6px rgba(47, 166, 106, 0.25);
}
 
/* ================= TÍTULO ================= */
 
h1 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1f7a4d;
  margin: 25px 0 40px;
}
 
/* ================= CAIXA PRINCIPAL ================= */
 
.caixa {
  max-width: 1200px;
  margin: 60px auto;
  padding: 50px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #6bdba7, #2fa66a);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  text-align: center;
}
 
/* ================= MAIS SOBRE NÓS ================= */
 
.caixa > h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 30px;
}
 
/* ================= OBJETIVO ================= */
 
.objetivo {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 40px 30px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
 
.objetivo h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1f7a4d;
  margin-bottom: 15px;
}
 
.objetivo h3 {
  font-size: 1.05rem;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}
 
/* ================= BOTÃO ================= */
 
.botao {
  padding: 14px 36px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #1f7a4d, #2fa66a);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 10px 20px rgba(47,166,106,0.4);
}
 
.botao:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 35px rgba(47,166,106,0.55);
}
 
/* ================= CENTRALIZAÇÃO ================= */
 
.col-auto {
  display: flex;
  justify-content: center;
}
 
/* ================= RESPONSIVO ================= */
 
@media (max-width: 768px) {
  .d-block {
    height: 40vh;
  }
 
  .ong_img {
    width: 130px;
    height: 130px;
  }
 
  h1 {
    font-size: 1.6rem;
  }
}
 