:root {
    --qvc-primary: #ff3000;
    --qvc-primary-hover: #D42800;
    --qvc-secondary: #32373c;
    --qvc-secondary-hover: #1e2124;
    --text-color: #444;
    --heading-color: #2d0000;
    --bg-body: #f8f9fa;
    --bg-card: #ffffff;
    --border-color: #eeeeee;
}

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

body {
    background-color: var(--bg-body);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.vcard-container {
    background-color: var(--bg-card);
    width: 100%;
    max-width: 450px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 2rem;
}

/* HEADER */
.vcard-header .banner {
    height: 200px;
    background-image: url('https://interativo.digital/wp-content/uploads/2025/05/2-Logotipo-3D-MWCM-zMarca-dagua-Comum-PNG.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-card);
    position: relative;
}

.vcard-header .profile-pic-container {
    display: flex;
    justify-content: center;
    margin-top: -65px;
    position: relative;
    z-index: 1;
}

.profile-pic {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--bg-card);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.profile-info {
    text-align: center;
    margin-top: 10px;
}

.profile-info h1 {
    color: var(--heading-color);
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 2px;
}

.profile-info h2 {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
}

.description {
    padding: 20px 25px;
    font-size: 14px;
    text-align: justify;
    color: var(--text-color);
    line-height: 1.7;
}

/* LINKS */
.vcard-links {
    padding: 0 25px 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-color);
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.link-item:hover {
    border-color: var(--qvc-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.link-item i {
    font-size: 24px;
    margin-right: 15px;
    color: var(--qvc-primary);
}

/* ACTION BUTTONS */
.action-buttons {
    padding: 10px 25px;
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn i {
    font-size: 20px;
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--qvc-primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--qvc-primary-hover);
}

.btn-secondary {
    background-color: var(--qvc-secondary);
    color: #fff;
}

.btn-secondary:hover {
    background-color: var(--qvc-secondary-hover);
}

/* FOOTER */
.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-card);
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
}

.close-btn:hover {
    color: #333;
}

.modal-body {
    padding: 30px 20px;
    text-align: center;
}

#qrcode {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.share-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.2s;
}

.share-icon:hover {
    background-color: var(--bg-body);
    color: var(--qvc-primary);
    border-color: var(--qvc-primary);
}

.copy-link {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.copy-link input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    color: #666;
    font-size: 14px;
}

.copy-link button {
    background: #f1f1f1;
    border: none;
    border-left: 1px solid var(--border-color);
    padding: 0 15px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
}

.copy-link button:hover {
    background: #e1e1e1;
}
