* {
    box-sizing: border-box;
}

section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
}

.video-fundo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container_informacao {
    background: rgba(10, 10, 10, 0.2);
    backdrop-filter: blur(5px);
    margin: 20px;
    padding: 20px 10px;
    box-sizing: border-box;
    width: 95%;
    max-width: 500px;


    height: calc(100vh - 40px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.sugestão {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.lista {
    margin: 90px 0px;
}

.lista ul {
    font-family: Bellota;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 30px;

    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.lista li {
    font-size: 1.3rem;
    color: #ffffff;
}

.pix p {
    font-size: 1.3rem;
    color: red;
    font-family: Bellota;

    text-shadow:
        0 0 5px #640101,
        0 0 10px #c5000085;
}

.nome h1 {
    color: #ff0000;
    font-family: 'Alex Brush', cursive;
    font-size: 4rem;

    text-shadow:
        0 0 5px #640101,
        0 0 10px #c5000085;

}