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

body {
  font-family: 'Poppins', sans-serif;
  background: #ffe6f7;
  color: #555;
  line-height: 1.6;
}


.header {
  background: linear-gradient(to right, #ff99cc, #ffb3e6);
  text-align: center;
  padding: 1.5em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  margin-bottom: 10px;
}

.nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}


.section {
  max-width: 1200px;
  margin: 2em auto;
  padding: 0 1em;
}

.section h3 {
  text-align: center;
  font-size: 2em;
  color: #d63384;
  margin-bottom: 1.5em;
}


.card-group {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-bottom: 2em;
  flex-wrap: wrap;
}


.card {
  background-color: #fff0f8;
  border-radius: 10px;
  padding: 1em;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  max-width: 100%;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.5em;
  border: 2px solid #ffcce0;
}

.card h4 {
  color: #d63384;
  font-size: 1.2em;
  margin: 0.5em 0;
}

.card a {
  display: inline-block;
  margin-top: 0.5em;
  padding: 6px 12px;
  background-color: #ff66b2;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.card a:hover {
  background-color: #ff3399;
}


.card.pequeno {
  width: 250px;
}

.card.medio {
  width: 300px;
}

.card.grande {
  width: 350px;
}


.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}

.info,
.goals {
  background-color: #fff0f8;
  padding: 1.5em;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.info h4,
.goals h4 {
  color: #d63384;
  margin-bottom: 1em;
}

.info p,
.goals p {
  color: #444;
}

.info a {
  color: #ff66b2;
  font-weight: bold;
  text-decoration: none;
}


.footer {
  background: #ff99cc;
  color: white;
  text-align: center;
  padding: 2em 1em;
  margin-top: 2em;
}

.socials a {
  color: white;
  margin: 0 10px;
  font-size: 1.5em;
  transition: color 0.3s;
}

.socials a:hover {
  color: #fff0f8;
}


@media (max-width: 768px) {
  .card-group {
    flex-direction: column;
    align-items: center;
  }

  .card.pequeno,
  .card.medio,
  .card.grande {
    width: 90%;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
  }
}