body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    background-image: url('img/Backgroud.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    color: white;
    box-sizing: border-box;
}

.main-content {
    display: flex;
    flex-direction: column; /* Forçar elementos em coluna */
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 400px; /* Limitar a largura da caixa */
    padding: 20px;
}

.container {
    background: rgba(0, 0, 0, 0.6); /* Fundo semi-transparente */
    border-radius: 20px;            /* Bordas arredondadas */
    padding: 30px;
    width: 100%;
    max-width: 400px;               /* Largura máxima */
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2); /* Sombra glow */
    margin-bottom: 30px;            /* Espaço para o robô */
}


.container__conteudo {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
}

.container__informacoes {
    flex: 1;
    padding: 3rem;
}

.container__botao {
    border-radius: 16px;
    background: #1875E8;
    padding: 16px 24px;
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    border: none;
    margin-top: 2rem;
}

.container__texto {
    margin: 16px 0 16px 0;
}

.container__texto-azul {
    color: #1875E8;
}

.container__input {
    width: 100%;
    height: 72px;
    border-radius: 16px;
    background-color: #FFF;
    border: none;
    color: #1875E8;
    padding: 2rem;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.container__botoes {
    display: flex;
    gap: 2em;
}

h1 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 72px;
    padding-bottom: 3rem;
}

p,
button {
    font-family: 'Inter', sans-serif;
}

.texto__paragrafo {
    font-size: 32px;
    font-weight: 400;
}

button:disabled {
    background-color: gray;
}
@media screen and (max-width: 1250px) {

    h1 {
        font-size: 50px;
    }

    .container__botao {
        font-size: 16px;
    }


    .texto__paragrafo {
        font-size: 24px;
    }

    .container__imagem-pessoa {
        display: none;
    }

    .container__conteudo {
        display: block;
        position: inherit;
    }

    .container__informacoes {
        padding: 1rem
    }

.avatar {
    width: 500px;
    height: auto;
}
.buttons{
  display: flex;
    gap: 10px; /* Aumente ou diminua conforme quiser */
    justify-content: center; /* Para centralizar os botões */
    margin-top: 10px; /* Espaço acima do grupo de botões */
}


}