:root {
    --primary-color: #800020;
    /* Vinho Yalumê */
    --primary-hover: #a00028;
    --bg-color: #FDFBF7;
    /* Creme/Bege suave */
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(128, 0, 32, 0.1);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --radius-lg: 30px;
    --radius-md: 15px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}



.container {
    width: 100%;
    max-width: 480px;
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

/* Profile Section */
.profile {
    text-align: center;
    margin-bottom: 45px;
}

.profile-img-container {
    margin-bottom: 20px;
}

.profile-img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

/* Removed profile-name as per user request (Retire o titulo) */

.profile-bio {
    font-size: 1rem;
    font-weight: 300;
    color: var(--primary-color);
    max-width: 320px;
    margin: 0 auto;
}

/* Links Section */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    /* Regular as requested */
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(128, 0, 32, 0.1);
    transition: var(--transition);
    text-align: center;
}

.link-item:hover {
    transform: translateY(-4px) scale(1.02);
    background-color: var(--primary-hover);
    box-shadow: 0 10px 25px rgba(128, 0, 32, 0.2);
}

.link-item:active {
    transform: translateY(-1px) scale(0.98);
}

/* Social Media Section */
.social-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    /* Changed from auto to fixed to allow scrolling when many links exist */
    padding-bottom: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1.5px solid var(--primary-color);
    /* Outlined style */
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px) rotate(5deg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}



/* Responsive adjustments */
@media (max-width: 400px) {
    .container {
        padding: 40px 16px;
    }

    .profile-img {
        max-width: 150px;
    }
}