/* =========================
   RESET BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   ESTILO GLOBAL
========================= */
body {
    font-family: Inter, system-ui, sans-serif;
    min-height: 100vh;
    color: #9ac79c;
}

/* =========================
   IMAGEM DE FUNDO
========================= */
.bg-image {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* 
   CAMADA EXTRA SOBRE O FUNDO
   Deixei pronta caso queira escurecer ou aplicar degradê depois
*/
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: #fffef5a1;
    z-index: -1;
}

/* =========================
   ESTRUTURA PRINCIPAL
   Container central da página
========================= */
.page {
    max-width: 420px;
    margin: 0 auto;
    min-height: 100vh;
    padding: 40px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* =========================
   BLOCO DE PERFIL
========================= */
.profile {
    text-align: center;
    margin-bottom: 30px;
}

/* FOTO DE PERFIL */
.profile-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;

    border: 1px solid #9ac79c;

    box-shadow:
        0 5px 10px #36523d42,
        0 2px 2px #36523d1e;
}

/* TÍTULO */
.profile-title {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

/* DESCRIÇÃO */
.profile-description {
    font-size: 0.95rem;
    color: #36523d;
}

/* =========================
   LISTA DE LINKS
========================= */
.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* =========================
   CARD DO LINK
   Shape arredondado simples
========================= */
.link-card {
    height: 64px;
    padding: 0 20px;
    border-radius: 999px;

    display: flex;
    align-items: center;
    gap: 14px;

    text-decoration: none;
    color: #9ac79c;

    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid #9ac79c;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition: all 0.2s ease;
}

.link-card:hover .link-text,
.link-card:hover .link-icon {
    color: #fffef5;
}

/* HOVER DO CARD */
.link-card:hover {
    transform: translateY(-2px);
    background: #9ac79c;
}

/* =========================
   ÍCONE DO CARD
   Mantém todos alinhados
========================= */
.link-icon {
    width: 22px;
    text-align: center;
    flex-shrink: 0;
    font-size: 18px;
}

/* =========================
   TEXTO DO CARD
========================= */
.link-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
}

/* =========================
   RODAPÉ
========================= */
.footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.75rem;
    color: #9ac79c;
}

/* =========================
   RESPONSIVIDADE
   Apenas complementa o CSS atual
========================= */

/* notebooks e telas menores */
@media (max-width: 1024px) {
    .page {
        padding: 32px 10px;
    }
}

/* tablets */
@media (max-width: 768px) {
    .page {
        max-width: 500px;
        padding: 28px 20px;
        justify-content: center;
    }

    .profile {
        margin-bottom: 24px;
    }

    .profile-image {
        width: 84px;
        height: 84px;
        margin-bottom: 12px;
    }

    .profile-title {
        font-size: 1.7rem;
        margin-bottom: 6px;
    }

    .profile-description {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .links {
        gap: 12px;
    }

    .link-card {
        height: 60px;
        padding: 0 18px;
    }

    .link-icon {
        width: 20px;
        font-size: 17px;
    }

    .link-text {
        font-size: 0.97rem;
    }

    .footer {
        margin-top: 28px;
        font-size: 0.72rem;
    }
}

/* celulares */
@media (max-width: 480px) {
    .page {
        max-width: 100%;
        padding: 36px 30px 24px;
        /* 👈 mais respiro no topo */
        min-height: 100dvh;
        justify-content: flex-start;
        /* 👈 agora fica no topo */
    }

    .profile {
        margin-bottom: 20px;
    }

    .profile-image {
        width: 76px;
        height: 76px;
        margin-bottom: 10px;
    }

    .profile-title {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .profile-description {
        font-size: 0.88rem;
        line-height: 1.4;
    }

    .links {
        gap: 10px;
    }

    .link-card {
        height: 56px;
        padding: 0 16px;
    }

    .link-icon {
        width: 18px;
        font-size: 16px;
    }

    .link-text {
        font-size: 0.94rem;
    }

    .footer {
        margin-top: 22px;
        font-size: 0.68rem;
    }
}

/* celulares muito pequenos */
@media (max-width: 360px) {
    .page {
        padding: 30px 14px 20px;
        /* 👈 mantém respiro proporcional */
        justify-content: flex-start;
        /* 👈 garante topo */
    }

    .profile {
        margin-bottom: 16px;
    }

    .profile-image {
        width: 70px;
        height: 70px;
    }

    .profile-title {
        font-size: 1.35rem;
    }

    .profile-description {
        font-size: 0.82rem;
    }

    .links {
        gap: 8px;
    }

    .link-card {
        height: 52px;
        padding: 0 14px;
    }

    .link-icon {
        width: 17px;
        font-size: 15px;
    }

    .link-text {
        font-size: 0.9rem;
    }

    .footer {
        margin-top: 18px;
        font-size: 0.64rem;
    }
}