body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--cor-fundo);
    margin: 0;
    padding: 0;
}

main {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 7rem;
    margin-top: 7rem;
    gap: 2rem;
    padding-bottom: 8rem;
}

.clusterSugestao {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 340px;
    min-height: 160px;
    max-width: 90vw;
    margin-bottom: 2rem;
    background: none;
    box-shadow: none;
}

/* Post-it azul */
#postIt {
    width: 100%;
    height: 170px;
    background: var(--cor-apoio);
    border-radius: 1rem;
    box-shadow:
        0 4px 24px #017cc224,
        0 1px 0 #fff8 inset,
        0 0.5rem 1.5rem #017cc240;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    transition: box-shadow 0.2s;
    overflow: hidden;
}

/* Simula a dobra no canto inferior direito */
#postIt::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fff8 65%, transparent 100%);
    border-bottom-right-radius: 1rem;
    box-shadow:
        -8px 8px 16px #017cc233 inset,
        0 0 4px #fff6;
    opacity: 0.45;
    pointer-events: none;
    z-index: auto;
}

/* Borda da dobra para reforçar o efeito */
#postIt::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border-bottom: 2px solid #fff9;
    border-right: 2px solid #fff9;
    border-bottom-right-radius: 1rem;
    opacity: 0.25;
    z-index: auto;
}

.sugestao {
    position: relative;
    z-index: auto;
    width: 85%;
    min-height: 70px;
    margin: 8% 7.5%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-family: "Huninn", sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--cor-preto);
    background: transparent;

    text-shadow: 0 1px 2px #fff8, 0 0px 4px #017cc244;
    padding: 1.2rem 1.6rem;
    word-break: break-word;
}

@media (max-width: 422px) {
    .clusterSugestao {
        width: 95vw;
        min-height: 120px;
    }
    #postIt {
        min-height: 90px;
    }
    .sugestao {
        font-size: 1rem;
        padding: 1rem 0.5rem;
    }
}