/* Variables de Estilo */
:root {
    --bg-color: #f8f9fa;
    --primary-color: #6c5ce7;
    --text-color: #2d3436;
    --card-bg: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 450px;
    text-align: center;
}

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

.avatar-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.9rem;
    color: #636e72;
}

/* Enlaces */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-card {
    background: var(--card-bg);
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.2s, background 0.2s;
}

.link-card:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: white;
}

.link-card i {
    font-size: 1.4rem;
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #b2bec3;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}
