* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-size: 16px;
    font-family: "Inter", sans-serif;
    position: relative;
    user-select: none;
}
body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    background-image: url(https://ugc.production.linktr.ee/d916efb5-864d-46ed-9191-285c17920793_DOT--negro.png?io=true&size=avatar-v1_0);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0.25;
    filter: blur(50px);
}
section {
    place-content: center;
    min-height: 100vh;
    width: 100vw;
    display: grid;
    grid-template: auto / auto;
    /* background-color: #f3f6f9; */
    padding: 64px;
    gap: 2em;
    position: relative;
}
img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
[modal] {
    position: absolute;
    background-color: #33333396;
    height: 100vh;
    width: 100vw;
    z-index: 9999;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
}
[modal].open {
    display: flex!important;
}
[modal] .container {
    width: 500px;
    background: #fff;
    height: auto;
    padding: 20px;
    border-radius: 10px;
}
[modal] .container p {
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
}
[modal] .container div {
    display: grid;
    gap: 5%;
    grid-template: auto / repeat(2, calc(95% / 2));
    height: fit-content;
}
[modal] .container div .options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    text-decoration: none;
    text-align: center;
    color: #333;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ededed;
    box-shadow: 0 11px 5px -8px #e7edf3;
    transition: box-shadow .4s;
}
[modal] .container div .options:hover {
    box-shadow: 0 11px 5px -8px #ccd9e5;
}
[description] figure {
    width: 100px;
    height: 100px;
    margin: 0 auto 1em;
}
[description] p {
    width: 55%;
    margin: 8px auto 0;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5;
    font-weight: 500;
}
[description] h1 {
    display: block;
    font-weight: 700;
    font-size: 1.2em;
    text-align: center;
}
[content] {}
[content] ul {
    list-style-type: none;
}
[content] ul li.item_share {
    width: 92%;
    margin: 0 auto 1em;
    position: relative;
    transition: transform 0.15s cubic-bezier(0, 0.2, 0.5, 3);
}
[content] ul li.item_share a {
    display:block;
    background-color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 22px 0;
    text-align: center;
    border: none;
    box-shadow: rgba(10, 11, 13, 0.08) 0px 2px 4px 0px;
    border-radius: 4px;
    text-decoration: none;
    container: link-button / inline-size;
    color: #333;
    hyphens: auto;
    font-weight: 600;
    transition: box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99), border-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99), transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99), background-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
}
/* [content] ul li.item_share a {
} */
[content] ul li.item_share:hover {
    transform: scale(1.02);
}
[content] ul li.item_share#whatsapp {
    position: relative;
}
[content] ul li.item_share figure#whatsapp_profile {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 48px;
    height: 48px;
}


@media (max-width: 780px) {
    [description] p {
        width: 85%;
    }
    [content] ul li.item_share {
        width: 100%;
    }
}

@media (max-width : 530px) {
    body {
        font-size: 12px;
    }
    section {
        padding: 34px;
    }
    [description] p {
        width: 100%;
    }
    [modal] .container {
        width: 300px;
    }
}