* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;

    display: flex;
    justify-content: center;

    background-color: #d8d2ce;

    font-family: Arial, sans-serif;
}


.pagina-presentes {
    position: relative;

    width: 100%;
    max-width: 430px;
    min-height: 100vh;

    background-color: #f8f3ef;

    padding: 50px 25px;

    text-align: center;

    overflow: hidden;
}

/* TÍTULO */

.titulo-presentes {
    position: relative;

    z-index: 2;

    margin-top: 70px;

    color: #bd2855;
}


.titulo-presentes h1 {
    font-size: 30px;

    font-weight: bold;

    letter-spacing: 1px;

    margin-bottom: 12px;
}


.titulo-presentes p {
    font-size: 16px;

    line-height: 1.4;

    color: #bd2855;
}

/* LISTA DE PRESENTES */

.lista {
    position: relative;

    z-index: 2;

    margin-top: 25px;

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.presente {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 46px;

    padding: 10px 15px;

    border: 2px solid #ef8fb1;

    border-radius: 25px;

    background-color: rgba(255, 255, 255, 0.65);

    color: #bd2855;

    font-size: 16px;

    font-weight: bold;
}


.presente span {
    font-size: 20px;
}

/* MEDIDAS */

.medidas {
    position: relative;

    z-index: 2;

    margin-top: 20px;

    padding: 18px;

    border-radius: 20px;

    background-color: #ef8fb1;

    color: white;
}


.medidas h2 {
    font-size: 20px;

    margin-bottom: 10px;
}


.medidas p {
    font-size: 16px;

    line-height: 1.5;
}

/* PIX */

.pix {
    position: relative;

    z-index: 2;

    margin-top: 20px;

    color: #bd2855;
}


.pix h2 {
    font-size: 20px;

    margin-bottom: 8px;
}


.pix p {
    font-size: 15px;

    line-height: 1.4;
}


.chave-pix {
    margin-top: 10px;

    font-size: 20px !important;

    font-weight: bold;

    letter-spacing: 1px;
}

/* BOTÃO PIX */

.botao-pix {
    margin-top: 12px;

    padding: 10px 22px;

    border: none;

    border-radius: 22px;

    background-color: #bd2855;

    color: white;

    font-size: 14px;

    font-weight: bold;

    cursor: pointer;

    transition: transform 0.2s ease,
                box-shadow 0.2s ease;
}


.botao-pix:hover {
    transform: translateY(-2px);

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* VOLTAR */

.voltar {
    position: relative;
    z-index: 2;

    display: inline-block;

    margin-top: 25px;
    padding: 8px 18px;

    border: 1px solid #bd2855;
    border-radius: 20px;

    color: #bd2855;

    font-size: 14px;
    font-weight: bold;

    text-decoration: none;

    transition: all 0.2s ease;
}


.voltar:hover {
    background-color: #bd2855;
    color: white;
}