:root {
    --green-primary:  #1c7c40;
    --green-dark:     #145530;
    --green-light:    #e8f5ed;
    --orange-accent:  #f08020;
    --orange-dark:    #d06010;
    --white:          #ffffff;
    --text-dark:      #1a3a25;
    --text-muted:     #5a7a65;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(150deg, #145530 0%, #1c7c40 40%, #2a9a52 70%, #f08020 120%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 24px 16px 40px;
}

.container {
    width: 100%;
    max-width: 420px;
    text-align: center;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

/* ── Header verde ── */
.profile {
    background: linear-gradient(160deg, var(--green-primary), var(--green-dark));
    padding: 36px 28px 28px;
    position: relative;
}

.profile::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 22px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--orange-accent);
    box-shadow: 0 4px 20px rgba(240, 128, 32, 0.4);
    object-fit: cover;
    background: var(--white);
}

.profile h1 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-top: 14px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.profile p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 13.5px;
    line-height: 1.6;
    margin-top: 8px;
}

/* ── Links / botões ── */
.links {
    padding: 20px 24px 10px;
}

.link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    margin: 10px 0;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--green-primary), #27924c);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
    box-shadow: 0 3px 12px rgba(28, 124, 64, 0.3);
}

.link:hover {
    background: linear-gradient(90deg, var(--orange-dark), var(--orange-accent));
    box-shadow: 0 5px 18px rgba(240, 128, 32, 0.4);
    transform: translateY(-2px);
}

.link:active {
    transform: translateY(0);
}

.link-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.no-groups {
    font-size: 13px;
    color: var(--text-muted);
    padding: 20px 0;
}

/* ── Footer ── */
.footer {
    border-top: 1px solid #e8ede9;
    padding: 14px 20px;
    margin-top: 10px;
}

.footer p {
    font-size: 11px;
    color: var(--text-muted);
}
