:root {
    --pwc-orange: #d04a02;
    --soft-peach: #fff0e6;
    --bg-gradient: linear-gradient(135deg, #fceddf 0%, #ffd2b3 100%);
    --text-dark: #000;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: url('../img/fondo.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
    position: relative;
}

#loader {
    font-weight: bold;
    color: var(--pwc-orange);
    font-size: 1.2rem;
}

.card {
    width: 100%;
    max-width: 420px;
    padding: 40px 20px;
    text-align: center;
    display: none;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.logo-top {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 80px;
}

.profile-container {
    margin-top: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

h1 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.job-title {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-family: "Georgia", serif;
}

/* Botón Guardar Contacto */
.btn-save {
    background: #e04b1c;
    color: white;
    border: none;
    padding: 14px 20px;
    width: 100%;
    border-radius: 0;
    font-size: 1.2rem;
    /*font-weight: bold;*/
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 35px;
    text-decoration: none;
}

.btn-save:hover {
    background: #bd3212;
}

.btn-save i {
    font-size: 1.4rem;
}

/* Iconos de Contacto */
.social-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 75px;
}

.nav-item a {
    color: var(--text-dark);
    font-size: 1.7rem;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.nav-item a:hover {
    color: var(--pwc-orange);
}

.nav-item span {
    font-size: 0.75rem;
    color: var(--text-dark);
}

.divider {
    height: 35px;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.15);
    margin: 0 2px;
}

/* Código QR */
.qr-section p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.qr-section p strong {
    font-weight: bold;
}

/* Código QR */
.qr-box img {
    width: 170px;
    background: white;
    padding: 12px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--text-dark);
}

#link-tel i {
    transform: rotate(90deg);
}

#btn-apple-wallet {
    text-decoration: underline;
    color: inherit;
    cursor: pointer;
}

#vcard-download-sink{
    display: none;
}