/* PALETA DE COLORES MONSEP
   Fondo general oscuro: #0f172a (Azul profundo corporativo)
   Acentos y botones principales: #f97316 (Naranja intenso para conversión)
*/

:root {
    --bg-main: #0f172a;
    --bg-card: #1e293b;
    --accent: #f97316;
    --accent-hover: #ea580c;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --whatsapp: #25d366;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Contenedor Principal de la Tarjeta */
.vcard-container {
    background-color: var(--bg-card);
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Banner Superior */
.vcard-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
    border-bottom: 2px solid var(--accent);
}

.company-logo {
    max-height: 50px;
    object-fit: contain;
}

/* Contenedor de la foto de perfil */
.profile-wrapper {
    display: flex;
    justify-content: center;
    margin-top: -60px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--bg-card);
    background-color: var(--bg-main);
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* Textos de Información */
.vcard-info {
    text-align: center;
    padding: 20px 25px 10px;
}

.vcard-info h1 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.vcard-info h2 {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.company-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #cbd5e1;
}

.bio {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Botones de Acción */
.vcard-actions {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-email {
    background-color: #334155;
    color: #ffffff;
    border: 1px solid #475569;
}

.btn-phone {
    background-color: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

/* Lista de Servicios */
.vcard-services {
    padding: 15px 25px;
    background-color: rgba(15, 23, 42, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vcard-services h3 {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
}

.vcard-services ul {
    list-style: none;
}

.vcard-services li {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vcard-services i {
    color: var(--accent);
    font-size: 14px;
    width: 20px;
    text-align: center;
}

/* Botón Final (Guardar Contacto) */
.vcard-footer {
    padding: 25px;
    text-align: center;
}

.btn-save {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-save:hover {
    background-color: var(--accent);
    color: #ffffff;
}