 
    /* 1. DEFINICIÓN DE VARIABLES (MODO CLARO POR DEFECTO) */
    :root {
        /* Colores de Fondo y Texto */
        --bg-color: #fff0f3;       /* Blanco grisáceo suave */
        --card-bg: #ffffff;        /* Blanco puro */
        --text-main: #2d2d2d;      /* Negro suave */
        --text-secondary: #555555; /* Gris */
        --border-color: #e0e0e0;   /* Borde sutil */
        
        /* Colores de Marca */
        --primary-pink: #ff3366;
        --accent-cyan: #20D5D2;
        
        /* Efectos */
        --shadow: 0 4px 15px rgba(0,0,0,0.05); /* Sombra suave */
        --neon-glow: none;         /* Sin brillo neón en modo claro */
        --profile-border: 3px solid white;
    }
/* OUTFIT (Light 300) */
@font-face {
    font-family: 'Outfit';
    src: url('fonts/Outfit-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* OUTFIT (Regular 400 - Texto normal) */
@font-face {
    font-family: 'Outfit';
    src: url('fonts/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* OUTFIT (SemiBold 600 - Destacados) */
@font-face {
    font-family: 'Outfit';
    src: url('fonts/Outfit-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* OUTFIT (ExtraBold 800 - Precios/Impacto) */
@font-face {
    font-family: 'Outfit';
    src: url('fonts/Outfit-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

    /* 2. VARIABLES PARA MODO OSCURO (CLASE .dark-mode) */
    body.dark-mode {
        --bg-color: #0f0f0f;       /* Negro profundo */
        --card-bg: #1a1a1a;        /* Gris oscuro */
        --text-main: #ffffff;      /* Blanco */
        --text-secondary: #a0a0a0; /* Gris claro */
        --border-color: rgba(255,255,255,0.1);
        
        /* Efectos Neón */
        --shadow: 0 4px 15px rgba(0,0,0,0.3);
        --neon-glow: 0 0 20px rgba(255, 51, 102, 0.3); /* EL BRILLO ROSA */
        --profile-border: 3px solid var(--primary-pink);
    }

        /* RESET BÁSICO */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        body { 
            font-family: 'Outfit', sans-serif; 
            background-color: var(--bg-color);
            color: var(--text-main);
            display: flex;
            justify-content: center;
            min-height: 100vh;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .container {
            width: 100%;
            max-width: 480px;
            padding: 40px 20px;
            text-align: center;
            position: relative; 
        }

        /* --- BOTONES DE CONTROL (TOP RIGHT) --- */
        .control-btn {
            position: absolute;
            top: 20px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            z-index: 100;
            color: var(--text-main);
        }
        
        .control-btn:hover { transform: scale(1.1); border-color: var(--primary-pink); }

        /* Posiciones específicas */
        #theme-toggle { right: 20px; }
        #share-btn { right: 70px; } /* Al lado del toggle */

        /* PERFIL */
        .profile-header { margin-bottom: 30px; margin-top: 20px; }
        
        .profile-image-container {
            width: 110px;
            height: 110px;
            margin: 0 auto 15px auto;
            position: relative;
        }

        .profile-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            overflow: hidden;
            border: var(--profile-border);
            box-shadow: var(--neon-glow);
            transition: all 0.3s ease;
        }
        
        .profile-image img { width: 100%; height: 100%; object-fit: cover; }

        .verified-badge {
            position: absolute;
            bottom: 5px; right: 0;
            background-color: var(--accent-cyan);
            color: #000;
            width: 28px; height: 28px;
            border-radius: 50%;
            font-weight: bold;
            display: flex; align-items: center; justify-content: center;
            border: 2px solid var(--bg-color);
            font-size: 14px;
        }

        h1 {
            font-family: 'League Spartan', sans-serif;
            font-size: 2rem;
            margin-bottom: 5px;
            letter-spacing: 1px;
            color: var(--text-main);
        }

        .subtitle {
            color: var(--primary-pink);
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .bio {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 30px;
        }

        /* ENLACES / TARJETAS */
        .links-container {
            display: flex; flex-direction: column; gap: 15px; margin-bottom: 40px;
        }

        .link-card {
            background-color: var(--card-bg);
            color: var(--text-main);
            text-decoration: none;
            padding: 15px 20px;
            border-radius: 16px;
            display: flex; align-items: center;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            text-align: left;
            box-shadow: var(--shadow);
        }

        .link-card:hover {
            transform: translateY(-3px);
            border-color: var(--primary-pink);
        }
        
        body.dark-mode .link-card:hover {
            box-shadow: 0 0 15px rgba(255, 51, 102, 0.3);
        }

        .link-icon { font-size: 1.5rem; margin-right: 15px; }
        .link-content { flex: 1; }
        .link-title { display: block; font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
        .link-desc { font-size: 0.85rem; color: var(--text-secondary); }

        .price-tag {
            background-color: var(--accent-cyan);
            color: #000;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 800;
            margin-left: 8px;
            text-transform: uppercase;
        }

        /* TIKTOK */
        .cta-tiktok {
            background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
            border: 1px solid #333;
            color: white;
            text-decoration: none;
            padding: 15px;
            border-radius: 16px;
            display: flex; align-items: center;
            margin-bottom: 25px;
            transition: transform 0.2s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .cta-tiktok:hover { transform: scale(1.02); }
        .tiktok-icon-box { 
            background: #000; width: 40px; height: 40px; border-radius: 50%; 
            display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 1.2rem;
        }

        /* SERVICIOS */
        h3 { color: var(--text-main); margin-bottom: 20px; font-family: 'League Spartan', sans-serif; }

        .services-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px;
        }

        .service-card {
            background-color: var(--card-bg);
            padding: 20px 15px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
            transition: all 0.3s;
        }
        
        .service-card:hover {
            border-color: var(--accent-cyan);
            transform: translateY(-2px);
        }

        .service-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
        .service-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 5px; color: var(--text-main); }
        .service-price { color: var(--primary-pink); font-size: 0.85rem; font-weight: 600; }

        /* FOOTER */
        .social-links { margin: 30px 0; display: flex; justify-content: center; gap: 20px; }
        .social-icon { font-size: 1.5rem; text-decoration: none; opacity: 0.7; transition: opacity 0.3s; cursor: pointer; }
        .social-icon:hover { opacity: 1; transform: scale(1.1); }
        
        footer { font-size: 0.8rem; color: var(--text-secondary); opacity: 0.6; padding-bottom: 20px;}

        @keyframes pulse-pink {
            0% { box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(255, 51, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 51, 102, 0); }
        }
        .pulse-effect { animation: pulse-pink 2s infinite; }
        /* 1. CÓDIGO BASE (MÓVIL POR DEFECTO) 
   Esto asegura que en el móvil se vea en 1 sola columna vertical. */
.services-grid {
    display: grid;
    grid-template-columns: 1fr; /* ⬅️ 1 Columna (Móvil) */
    gap: 15px;
    margin-bottom: 30px;
}

/* 2. MEDIA QUERY (SOLO PARA PC/TABLET)
   Cuando la pantalla mida más de 768px, se pondrá en 2 columnas. */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr; /* ⬅️ 2 Columnas (PC) */
        gap: 25px;
    }
}