:root {
    --bg-color: #f0f2f5;
    --card-bg: #ffffff;
    --primary-color: #004e92; /* Azul Confiança */
    --secondary-color: #000428; /* Preto Profundo */
    --accent-color: #d4af37; /* Dourado */
    --text-color: #333;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.profile-container {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 400px; /* Largura mobile */
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    text-align: center;
}

/* Header */
.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--card-bg);
}

.profile-header h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.profile-header .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.profile-header .bio-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn .icon {
    width: 30px;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
}

.btn span {
    flex: 1;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    color: #fff;
    border: none;
}

.btn-secondary {
    background-color: #fff;
    color: var(--text-color);
    border: 2px solid #eee;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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