.container-menor {
    display: flex;
    flex-direction: column;
}

/* Título principal */
h1 {
    font-size: 2.2em;
    color: #e63946;
    margin-bottom: 10px;
    text-align: center;
}

/* Texto motivador */
.container-menor p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

/* Caixa de informações de impacto */
.impact {
    background-color: #e63946;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    line-height: 1.6;
}

.impact p {
    text-align: center;
}

.container-menor ul {
    /* background-color: yellow; */
    margin-bottom: 13px;
}

.container-menor ul li {
    text-align: center;
    list-style: none;
}

/* Imagem do QR Code */
.qr-code {
    max-width: 300px;
    margin: 20px auto;
}

/* Campo da chave Pix e botão copiar */
.pix-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.pix-key {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 70%;
    text-align: center;
    background-color: #f4f4f9;
}

/* Botão copiar chave Pix */
.btn-copy {
    background-color: #e63946;
    color: #fff;
    padding: 10px 15px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-copy:hover {
    background-color: #c5303e;
}

/* Responsividade */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }

    .pix-key {
        width: 60%;
        font-size: 0.9em;
    }
}