:root {
    /* Paleta de Cores baseada no modelo */
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-tertiary: #737373;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.2);
    
    --blue-500: #218AC2;
    --green-500: #10b981;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

.ambient-background {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 440px;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    min-height: 100vh;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 8px;
}

.profile-title h1 {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-link:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.action-link .icon-wrapper {
    background: var(--bg-tertiary);
    padding: 14px;
    border-radius: 12px;
    transition: background 0.3s ease;
    font-size: 24px;
}

.action-link.bruno:hover {
    border-color: var(--blue-500);
}

.action-link.bruno:hover .icon-wrapper {
    background: rgba(33, 138, 194, 0.1);
}

.action-link.bruno:hover .icon-arrow {
    color: var(--blue-500);
}

.action-link.mylena:hover {
    border-color: var(--green-500);
}

.action-link.mylena:hover .icon-wrapper {
    background: rgba(16, 185, 129, 0.1);
}

.action-link.mylena:hover .icon-arrow {
    color: var(--green-500);
}

.icon-white {
    color: var(--text-primary);
    width: 24px;
    height: 24px;
}

.link-text {
    flex: 1;
}

.link-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.link-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

.icon-arrow {
    color: var(--text-tertiary);
    width: 24px;
    height: 24px;
    transition: color 0.3s ease;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    opacity: 0;
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
