:root {
    --cisco-blue: #049FD9;
    --cisco-dark-blue: #005073;
    --cisco-gray: #58585B;
    --cisco-light-gray: #F2F2F2;
    --white: #FFFFFF;
    --black: #333333;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--cisco-light-gray);
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card-container {
    background-color: var(--white);
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    text-align: center;
    position: relative;
    padding-bottom: 30px;
}

.header-bg {
    height: 120px;
    background: linear-gradient(135deg, var(--cisco-blue) 0%, var(--cisco-dark-blue) 100%);
    position: relative;
}

.profile-img-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--white);
    overflow: hidden;
    margin: -60px auto 15px;
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

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

.info-section {
    padding: 0 20px;
}

.name {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.role {
    font-size: 16px;
    color: var(--cisco-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.motto {
    font-size: 14px;
    color: var(--cisco-gray);
    font-style: italic;
    margin-bottom: 15px;
}

.company {
    font-size: 14px;
    color: var(--cisco-gray);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cisco-logo {
    height: 20px;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 30px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--cisco-blue);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(4, 159, 217, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--cisco-dark-blue);
    border: 2px solid var(--cisco-blue);
}

.btn-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.qr-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.qr-title {
    font-size: 14px;
    color: var(--cisco-gray);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#qrcode {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#qrcode img {
    margin: 0 auto;
}

footer {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}