/* Estilos específicos para a página de links (Linktree style) */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.links-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Perfil */
.profile-header {
    margin-bottom: 32px;
}

.profile-img-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--rose-light);
    box-shadow: var(--shadow);
    background-color: var(--white);
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-header h1 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: var(--wine-deep);
}

.profile-header p {
    font-size: 0.95rem;
    color: var(--ink-light);
    font-weight: 500;
}

/* Lista de Links Padronizada */
.links-list {
    width: 100%;
    display: grid;
    gap: 16px;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--rose-light) 0%, #fff 100%);
    border: 1px solid var(--rose-strong);
    border-radius: 16px;
    color: var(--wine-deep);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(211, 127, 152, 0.1);
}

.link-item:hover {
    background: var(--wine);
    border-color: var(--wine);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(58, 31, 41, 0.2);
}

/* Responsividade extra */
@media (max-width: 400px) {
    .link-item {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

.footer-content--links .footer-badges {
    align-items: center;
}

@media (min-width: 860px) {
    .footer-content--links {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .footer-content--links .footer-badges {
        justify-self: end;
        align-items: flex-start;
    }
}
