/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%; /* Garante que o layout ocupe 100% da altura da janela */
  margin: 0;
  display: flex;
  flex-direction: column; /* Layout em coluna */
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: white;
}

header {

  background-image: linear-gradient(to right, rgb(249,217,81), rgb(255,74,11), rgb(255,38,130), rgb(77,66,246), rgb(1,191,244), rgb(15,230,103));
  /* background-color: #b84775; */
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

main {
  flex: 1; /* Faz o conteúdo principal ocupar o espaço restante */
  padding: 2rem;
  text-align: center;
}

.perfil {
  display: flex;
  flex-direction: row; /* Foto e texto lado a lado */
  align-items: center; /* Alinha verticalmente */
  justify-content: center; /* Centraliza horizontalmente */
  margin-bottom: 2rem;
}

.foto-redonda {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgb(255,74,11);
}

.descricao {
  margin-left: 1rem; /* Espaço entre a foto e o texto */
  text-align: left;
}

.descricao h2 {
  font-size: 1.8rem;
  color: rgb(255,38,130);
  margin-bottom: 0.5rem;
}

.descricao p {
  font-size: 1rem;
  color: #555;
}

.botoes {
  display: flex;
  flex-direction: column; /* Botões um abaixo do outro */
  gap: 1rem;
  align-items: center;
}

.botao {
  text-decoration: none;
  color: #fff;
  background-image: linear-gradient(to right, rgb(255,38,130), rgb(77,66,246));
  /* background-color: rgb(249,217,81); */
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  width: 100%; /* Inicialmente 100% */
  max-width: 400px; /* Limita a largura máxima */
  text-align: center;
  transition: background-color 0.3s;
  border: 3px solid rgb(255,74,11);
}

.botao:hover {
  background-color: #f7a9c4;
}

footer {
  /* background-color: #b84775; */
  background-image: linear-gradient(to right, rgb(249,217,81), rgb(255,74,11), rgb(255,38,130), rgb(77,66,246), rgb(1,191,244), rgb(15,230,103));
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  width: 100%; /* Garante que o rodapé ocupe toda a largura */
  position: relative;
  bottom: 0;
  margin-top: auto; /* Empurra o rodapé para o final da página */
  font-weight: bold;
}

/* Responsividade */
@media (max-width: 600px) {
  .perfil {
    flex-direction: column; /* Foto e texto em coluna */
    text-align: center;
  }

  .descricao {
    margin-left: 0;
    margin-top: 1rem;
  }

  .botao {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    width: 90%;
  }
}
