:root {
    --bio-width: 520px;
    --bio-height: 76px;
    --bio-radius: 5px;
    --bio-gap: 10px;

}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    background: #222222;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    color: #111;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.img-responsive {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

.bio-page {
    width: 100%;
    min-height: 100vh;
}

.bio-section {
    width: 100%;
    padding: 13px 0 40px;
    overflow: hidden;
}

/* BLOCO CENTRALIZADO: MENU + AVATAR */

.bio-layout {
    position: relative;
    align-items: center;
    min-height: 720px;
    width: 100%;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.bio-menu-col {
    position: relative;
    z-index: 2;
    flex: 0 0 var(--bio-width);
    max-width: var(--bio-width);
    width: var(--bio-width);
}

.bio-avatar-col {
    position: static;
    flex: 0 0 0;
    max-width: 0;
    width: 0;
    padding: 0;
}

/* MENU */

.bio-wrapper {
    width: 100%;
    max-width: var(--bio-width);
    position: relative;
    z-index: 2;
    margin-left: 0;
}

.bio-menu {
    display: flex;
    flex-direction: column;
    gap: var(--bio-gap);
    width: 100%;
}

.bio-link {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: var(--bio-height);
    overflow: hidden;
    border-radius: var(--bio-radius);
    color: #fff;
    background: var(--link-color, #25a596);
    isolation: isolate;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.bio-link:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
    filter: saturate(1.08);
}

.bio-link:active {
    transform: translateY(-1px) scale(.992);
}

.bio-link:focus-visible {
    outline: 3px solid rgba(0, 0, 0, .20);
    outline-offset: 3px;
}

.bio-link::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, .08) 52%,
        rgba(255, 255, 255, .22) 100%
    );
    pointer-events: none;
}

.bio-link-icon {
    position: relative;
    z-index: 2;
    width: 72px;
    min-width: 72px;
    height: var(--bio-height);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    line-height: 1;
    color: #fff;
}

.bio-link-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2px 112px 0 0;
    line-height: .98;
    letter-spacing: .3px;
    color: #fff;
}

.bio-link-text span,
.bio-link-text strong {
    display: block;
    font-size: 21px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}

.bio-link-text span {
    font-weight: 700;
}

.bio-link-text strong {
    font-weight: 900;
}

.bio-link-image {
    position: absolute;
    z-index: 1;
    right: -8px;
    top: 50%;
    width: 122px;
    height: 122px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.bio-link-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* AVATAR SOBREPOSTO - DESKTOP */

.bio-avatar {
    position: absolute;
    z-index: 10;
    left: 525px;
    top: 50%;
    width: 500px;
    transform: translateY(-49%);
    pointer-events: none;
}

.bio-avatar img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* CORES DOS LINKS */

.link-whatsapp::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .25;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, .7) 1px, transparent 1.5px),
        radial-gradient(circle, rgba(255, 255, 255, .5) 1px, transparent 1.5px);
    background-position: 0 0, 13px 13px;
    background-size: 26px 26px;
}

.link-instagram::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at 78% 46%, rgba(255, 255, 255, .22) 0, rgba(255, 255, 255, 0) 36%);
    pointer-events: none;
}

/* IPAD / TABLET / NOTEBOOK PEQUENO */

@media (max-width: 1199.98px) {
    .bio-section {
        padding: 40px 18px 40px;
    }

    .bio-layout {
        min-height: auto;
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }

    .bio-link,
    .bio-link-text {
        text-align: left;
    }

    .bio-link-text {
        align-items: flex-start;
    }

    .bio-menu-col {
        flex: 0 0 100%;
        max-width: var(--bio-width);
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        z-index: 3;
    }

    .bio-wrapper {
        margin: 0 auto;
    }

    .bio-avatar-col {
        display: none;
    }

    .bio-avatar {
        display: none;
    }
}

/* MOBILE */

@media (max-width: 575.98px) {
    :root {
        --bio-width: 100%;
        --bio-height: 68px;
        --bio-gap: 8px;
    }

    .bio-section {
        padding: 34px 18px 32px;
    }

    .bio-link-icon {
        width: 58px;
        min-width: 58px;
        height: var(--bio-height);
        font-size: 26px;
    }

    .bio-link-text {
        padding-right: 84px;
    }

    .bio-link-text span,
    .bio-link-text strong {
        font-size: 17px;
        letter-spacing: .2px;
    }

    .bio-link-image {
        width: 96px;
        height: 96px;
        right: -10px;
    }
}

@media (max-width: 360px) {
    .bio-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .bio-link-icon {
        width: 52px;
        min-width: 52px;
        font-size: 23px;
    }

    .bio-link-text {
        padding-right: 72px;
    }

    .bio-link-text span,
    .bio-link-text strong {
        font-size: 15px;
    }

    .bio-link-image {
        width: 84px;
        height: 84px;
    }
}