:root {
    /* Paleta de colores Claro, Minimalista */
    --bg-main: #f8fafc;
    /* Light background */
    --bg-accent-1: #e2e8f0;
    /* Soft gray for orbs */
    --bg-accent-2: #f1f5f9;
    --bg-accent-3: #cbd5e1;

    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: rgba(0, 0, 0, 0.04);
    /* Sombra muy sutil */

    --text-primary: #1e293b;
    --text-secondary: #64748b;

    --hover-bg: rgba(255, 255, 255, 0.95);
    --hover-border: rgba(203, 213, 225, 0.5);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 20px;
}

/* Animaciones de Fondo - Muy sutiles para el minimalismo */
.background-anim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-main);
}

.orb {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--bg-accent-1);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--bg-accent-2);
    bottom: -10%;
    right: -5%;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--bg-accent-3);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(5%, 10%) scale(1.05);
    }

    100% {
        transform: translate(-5%, -5%) scale(0.95);
    }
}

/* Contenedor Principal y Tarjeta Minimalista */
.container {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 10;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px var(--glass-shadow);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Cabecera del Perfil */
.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 500;
    color: var(--text-primary);
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background-color: #10b981;
    border: 3px solid #ffffff;
    border-radius: 50%;
}

.name {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.role {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 400;
}

.company {
    font-size: 12px;
    color: #3b82f6;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
}

.logo {
    position: relative;
    margin: 15px auto 0;
    width: 180px;
    /* Tamaño adaptado para minimalismo */
}

.logo img {
    width: 100%;
    height: auto;
}

/* Enlaces de Contacto */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.contact-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 14px 18px;
    transition: all 0.25s ease;
    color: var(--text-primary);
}

.contact-link:hover {
    background: var(--hover-bg);
    border-color: var(--hover-border);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 14px;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.wa-icon {
    color: #25D366;
}

.phone-icon {
    color: #3b82f6;
}

.email-icon {
    color: #f59e0b;
}

.web-icon {
    color: #ec4899;
}

.fb-icon {
    color: #1877F2;
}

.ig-icon {
    color: #E1306C;
}

.map-icon {
    color: #EA4335;
}

.link-info {
    display: flex;
    flex-direction: column;
}

.link-info strong {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.link-info span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Botón CTA (Llamado a la acción) */
.card-footer {
    text-align: center;
}

.cta-button {
    width: 100%;
    background: #1e293b;
    /* Botón oscuro y elegante */
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 15px rgba(30, 41, 59, 0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(30, 41, 59, 0.2);
    background: #0f172a;
}

.cta-button:active {
    transform: translateY(1px);
}

.cta-icon {
    display: flex;
    align-items: center;
}

.cta-icon svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 480px) {
    .glass-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .name {
        font-size: 22px;
    }
}