:root {
    --bg: #ffffff;
    --accent: #aa8c67;
    --accent-dark: #8f7350;
    --text: #5a4a42;
    --white: #ffffff;
    /* Gradiente dourado suave */
    --gold: linear-gradient(135deg, #bda072 0%, #aa8c67 100%);
    --gold-hover: linear-gradient(135deg, #ac8f5e 0%, #957a52 100%);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    /* Textura bem leve sobre o fundo branco */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='%23aa8c67' fill-opacity='0.05'%3E%3Ccircle cx='10' cy='10' r='1.4'/%3E%3Ccircle cx='30' cy='30' r='1.4'/%3E%3C/g%3E%3C/svg%3E");
    color: var(--text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 32px 20px 48px;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Profile */
.profile-section {
    text-align: center;
    margin-bottom: 32px;
}

.profile-image {
    display: inline-block;
    padding: 4px;
    border-radius: 50%;
    background-image: var(--gold);
    box-shadow: 0 6px 18px rgba(170, 140, 103, 0.35);
}

.profile-image img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid var(--white);
}

.profile-name {
    margin-top: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.profile-handle {
    margin-top: 4px;
    font-size: 0.95rem;
    color: var(--accent);
}

/* Links */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-button {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 20px;
    background-image: var(--gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(120, 90, 50, 0.3);
    box-shadow: 0 4px 12px rgba(170, 140, 103, 0.35);
    transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.link-button i {
    font-size: 1.15rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.link-button:hover,
.link-button:focus {
    background-image: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(170, 140, 103, 0.45);
}

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

/* Social */
.social-section {
    display: flex;
    gap: 20px;
    margin-top: 32px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #faf6f0;
    color: var(--accent);
    font-size: 1.4rem;
    text-decoration: none;
    border: 1px solid rgba(170, 140, 103, 0.25);
    box-shadow: 0 3px 10px rgba(170, 140, 103, 0.2);
    transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.social-icon:hover,
.social-icon:focus {
    background-image: var(--gold);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

@media (min-width: 481px) {
    .profile-image img {
        width: 190px;
        height: 190px;
    }

    .profile-name {
        font-size: 1.7rem;
    }
}
