body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f0eb; /* Cor de fundo clara similar à imagem */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1300px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 800px;
}

.header {
    display: flex;
    justify-content: center;  /* centraliza o h1 */
    align-items: center;       /* alinha verticalmente */
    position: relative;
    padding-bottom: 20px;
}

.header h1 {
    font-family: 'Georgia', serif; /* Ou uma fonte similar manuscrita */
    font-size: 2.5em;
    color: #333;
    margin: 0;
}

.decorative-element {
    position: absolute;
    top: 20px;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: #f0e1d1; /* Cor para o elemento decorativo */
    border-radius: 50%;
    transform: rotate(45deg); /* Exemplo, ajuste conforme o design original */
    /* Para criar o efeito de 'raios' ou 'pétalas', pode ser mais complexo com pseudo-elementos ou SVG */
    transform: translateY(-50%); /* deixa alinhado no meio da altura do H1 */
}

.content {
    display: flex;
    flex-wrap: wrap; /* Permite que os elementos quebrem a linha em telas menores */
    gap: 30px;
    min-height: 450px;
}

.image-section {
    flex: 1;
    min-width: 300px; /* Largura mínima para a imagem */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
}

.profile-pic {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px; /* Borda levemente arredondada */
}

.text-section {
    flex: 2;
    min-width: 350px; /* Largura mínima para o texto */
    font-size: 1.4em;
    line-height: 1.6;
    color: #555;
    display: flex;
    flex-direction: column;
}

.text-section p {
    margin-bottom: 4px;
}

.social i {
    font-size: 32px;
    margin: 0 10px;
    color: #000;
    transition: 0.3s;
}

.social i:hover {
    color: #ff0066;
    transform: scale(1.2);
}

.handle {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

/* Responsividade */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .image-section {
        margin-bottom: 20px;
    }

    .profile-pic {
        max-width: 250px;
    }

    .social-links {
        justify-content: center; /* Centralizar em telas menores */
    }
}

/* container do botão: garante largura total e centralização */
.botao-centro {
  width: 100%;               /* garante ocupar toda a linha */
  display: flex;
  justify-content: center;       
  margin: 0;
  box-sizing: border-box;
}

/* botão: inline-block para manter tamanho natural, sem margin que atrapalhe */
.botao, .botao-foto {
  display: inline-block;
  padding: 12px 20px;
  background: #114422;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  margin: 0;                  /* remove margens que atrapalham o centro */
  transition: transform .18s ease, box-shadow .18s ease;
}

/* hover opcional bonito */
.botao:hover, .botao-foto:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17,68,34,0.15);
}


          