

main {
  margin-left: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: 100vh;
  box-sizing: border-box;
}

.integrantes {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cartao-integrante {
  display: none;
  background-color: #FDE6C6;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 700px;
  box-sizing: border-box;
  animation: fade 0.4s ease-in-out;
}

.cartao-integrante.ativo {
  display: block;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cartao-topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.cartao-imagem img {
  width: 110px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.detalhes {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.nome {
  font-size: 24px;
  font-weight: bold;
  color: #A84421;
  margin: 0;
}

.rm {
  font-size: 16px;
  color: #9F5C32;
}

.links-sociais {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.links-sociais img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s;
}

.links-sociais img:hover {
  transform: scale(1.1);
}

.sobre {
  margin-top: 20px;
  text-align: justify;
  font-size: 15px;
  color: #2B1D1A;
}

.sobre h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

button#btn-proximo {
  background-color: #F77F00;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  width: 100%;
  max-width: 700px;
  box-sizing: border-box;
  transition: background-color 0.3s;
}

button#btn-proximo:hover {
  background-color: #e76f00;
}
