/* Reset básico e estilo geral */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #d9e1e8 100%);
  color: #333;
}

header {
  background: #4a90e2;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 600;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

main {
  padding: 2rem 0;
}

.intro {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.intro p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555;
}

.api-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.api-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.api-card__image {
  width: 100%;
  height: 200px; /* Define a altura fixa para a imagem */
  object-fit: cover; /* Faz com que a imagem cubra a área sem distorção */
  display: block;
}

.api-card__content {
  padding: 2rem;
}

.api-card h2 {
  font-size: 1.75rem;
  color: #4a90e2;
  margin-top: 0;
  font-weight: 600;
}

.api-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.api-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
