:root {
    --bg-dark: #0f172a;      /* Fondo Oscuro Profesional */
    --bg-card: #1e293b;      /* Fondo de Tarjetas */
    --accent: #00d26a;       /* EL VERDE VIBRANTE DE TU FOTO */
    --accent-glow: rgba(0, 210, 106, 0.3);
    --text-main: #f1f5f9;    /* Blanco */
    --text-muted: #94a3b8;   /* Gris suave */
    --border: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden; /* Solo ocultamos el desborde horizontal */
    /* min-height: 100vh;  <- ESTO ESTÁ BIEN */
    padding-bottom: 100px; /* Espacio para que el botón flotante no tape el final */
}

/* --- FONDO TECH --- */
.tech-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
}

.green-glow {
    position: fixed; top: -10%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(100px); z-index: -1;
}

/* --- LAYOUT & HEADER --- */
.container { max-width: 600px; margin: 0 auto; padding: 20px; }

nav { padding: 20px 0; margin-bottom: 30px; }

.brand {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem; font-weight: 800;
    display: flex; align-items: center; gap: 10px; letter-spacing: -0.5px;
}

.status-indicator {
    width: 10px; height: 10px; background: var(--accent);
    border-radius: 50%; box-shadow: 0 0 10px var(--accent);
}

.text-highlight { color: var(--accent); }

/* --- HERO SECTION --- */
.hero { text-align: left; margin-top: 20px; }

.badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0, 210, 106, 0.1);
    color: var(--accent);
    padding: 8px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px;
    border: 1px solid rgba(0, 210, 106, 0.3);
    margin-bottom: 25px;
}

.badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 3rem; line-height: 1.1; margin-bottom: 20px;
    letter-spacing: -1px; font-weight: 800;
}

/* Texto degradado verde brillante */
.gradient-text {
    background: linear-gradient(to right, var(--accent), #86efac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-muted); font-size: 1.1rem; line-height: 1.6;
    margin-bottom: 40px; max-width: 95%; font-weight: 400;
}

/* --- PROCESO VISUAL (Caja Elegante + Iconos Humanos) --- */
.process-visual {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--bg-card);
    padding: 25px; border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.step { text-align: center; }
.step-icon { font-size: 2.2rem; margin-bottom: 8px; display: block; }
.step-label { font-size: 0.75rem; color: white; font-weight: 700; letter-spacing: 1px; }

.connector { flex-grow: 1; display: flex; align-items: center; padding: 0 20px; color: var(--accent); }
.line { height: 2px; background: rgba(255,255,255,0.1); width: 100%; }
.arrow { font-size: 1.2rem; margin-left: -5px; }

.trust-note {
    background: rgba(0,0,0,0.2);
    padding: 15px; border-radius: 12px; margin-top: 20px;
    font-size: 0.9rem; color: #cbd5e1; text-align: center; font-weight: 500;
    border: 1px solid var(--border);
}

/* --- BOTONES --- */
.bottom-bar {
    position: fixed; bottom: 0; left: 0; width: 100%;
    padding: 20px; background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px); border-top: 1px solid var(--border);
    display: flex; justify-content: center; z-index: 100;
}

.tech-btn, .whatsapp-btn {
    background: var(--accent);
    color: #022c14; /* Texto oscuro sobre verde para contraste */
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 800; font-size: 1rem;
    display: flex; align-items: center; gap: 10px;
    transition: all 0.2s;
    width: 100%; max-width: 400px; justify-content: center;
    box-shadow: 0 0 25px rgba(0, 210, 106, 0.3);
}

.tech-btn:active { transform: scale(0.98); }

/* ESTILOS EXTRA PARA PRODUCTS.HTML (Mantenidos de la versión anterior) */
.back-link { color: var(--text-muted); text-decoration: none; margin-bottom: 20px; display: inline-block; }

.services-grid { display: grid; gap: 20px; }

.service-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 25px;
}

.service-card h3 { margin: 10px 0; color: white; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

.tag { 
    background: rgba(255,255,255,0.1); padding: 4px 8px; 
    border-radius: 4px; font-size: 0.7rem; font-weight: bold; color: var(--accent);
}

/* --- MÓDULO DE PAGO (ARREGLADO) --- */

.payment-module {
    background: rgba(30, 41, 59, 0.6); /* Fondo un poco más transparente */
    padding: 25px; 
    border-radius: 16px;
    border-left: 4px solid var(--accent); /* La línea verde lateral */
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.module-header {
    font-size: 0.9rem; 
    color: var(--accent); 
    font-weight: 800; 
    letter-spacing: 1px;
    margin-bottom: 25px; 
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

/* LÍNEA DE TIEMPO (TIMELINE) */
.timeline { 
    display: flex; 
    justify-content: space-between; /* Separar los números */
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px; /* Espacio debajo de la línea de tiempo */
}

.time-point { 
    display: flex; 
    flex-direction: column; /* Poner número arriba y texto abajo */
    align-items: center; 
    text-align: center;
    flex: 1; /* Que ocupen el mismo ancho */
}

.circle {
    width: 35px; height: 35px; 
    background: var(--bg-dark);
    border: 2px solid var(--accent); 
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; color: var(--accent); 
    margin-bottom: 10px; /* Espacio entre bolita y texto */
    box-shadow: 0 0 10px rgba(0, 210, 106, 0.2);
}

.text strong { 
    display: block; 
    font-size: 0.9rem;
    color: white; 
    margin-bottom: 4px; 
}
.text span { 
    font-size: 0.75rem; 
    color: var(--text-muted); 
    line-height: 1.2;
    display: block;
}

.line-vertical {
    width: 100%; 
    height: 2px; /* Línea horizontal en móvil */
    background: var(--accent);
    margin-top: 18px; /* Alinear con los círculos */
    opacity: 0.3;
    flex: 0.5; /* Que ocupe espacio entre puntos */
}

.separator-line {
    display: none; /* Ocultamos la línea vieja para limpiar */
}

/* --- CAJAS DE COSTOS (SEPARADAS) --- */
.costs-grid {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espacio GRANDE entre las cajas */
}

.cost-box {
    background: rgba(255, 255, 255, 0.03); /* Fondo suave */
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Estilos específicos para diferenciar */
.cost-box.included {
    border-color: rgba(16, 185, 129, 0.3); /* Borde verdoso sutil */
    background: linear-gradient(to bottom, rgba(16, 185, 129, 0.05), transparent);
}

.cost-box.subscription {
    border-color: rgba(251, 191, 36, 0.3); /* Borde amarillento sutil */
    background: linear-gradient(to bottom, rgba(251, 191, 36, 0.05), transparent);
}

.cost-box h4 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.cost-box.included h4 { color: #34d399; } /* Título Verde Claro */
.cost-box.subscription h4 { color: #fbbf24; } /* Título Amarillo */

.check-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.small-note {
    margin-top: 15px;
    padding: 8px;
    text-align: center;
    font-size: 0.75rem;
    border-radius: 6px;
    font-weight: bold;
}
/* --- AGREGADOS PARA PRODUCTS Y LANDING --- */

/* Caja de Suscripción */
.separator-line {
    height: 1px; background: var(--border); margin: 20px 0; opacity: 0.5;
}

.subscription-box h4 { color: white; margin-bottom: 10px; }
.subscription-box p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; }

.check-list { list-style: none; margin-bottom: 15px; }
.check-list li { font-size: 0.85rem; margin-bottom: 5px; color: #cbd5e1; }

.small-note {
    font-size: 0.75rem; background: rgba(0, 210, 106, 0.1);
    color: var(--accent); padding: 5px 10px; border-radius: 4px;
    display: inline-block; font-weight: bold;
}

/* Botones dentro de las tarjetas */
.card-btn {
    display: block; width: 100%; text-align: center;
    margin-top: 20px; padding: 12px;
    background: var(--bg-dark); border: 1px solid var(--accent);
    color: var(--accent); text-decoration: none;
    font-weight: 700; border-radius: 8px; font-size: 0.9rem;
    transition: all 0.2s;
}
.card-btn:hover { background: var(--accent); color: #022c14; }

.card-btn.secondary {
    border-color: var(--border); color: var(--text-muted); cursor: not-allowed; opacity: 0.6;
}

/* --- ESTILOS DE LANDING.HTML (DETALLE) --- */
.detail-header { text-align: center; margin: 20px 0 40px; }
.icon-large { font-size: 4rem; margin-bottom: 10px; }
.subtitle { font-size: 1.1rem; color: var(--text-muted); }

.what-is-it {
    background: var(--bg-card); padding: 20px; border-radius: 16px;
    margin-bottom: 40px; border: 1px solid var(--border);
}
.what-is-it h3 { margin-bottom: 10px; color: white; }

.features-row {
    display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap;
}
.feat {
    background: rgba(255,255,255,0.05); padding: 5px 10px;
    border-radius: 50px; font-size: 0.8rem; color: var(--accent); font-weight: bold;
}

/* GALERÍA DE EJEMPLOS (PORTFOLIO SIMULADO) */
.gallery-grid { display: grid; gap: 25px; margin-top: 20px; }

.portfolio-item {
    background: var(--bg-card); padding: 15px; border-radius: 12px;
    border: 1px solid var(--border);
}
.portfolio-item h4 { margin-top: 15px; margin-bottom: 5px; color: white; }
.portfolio-item p { font-size: 0.85rem; color: var(--text-muted); }

/* Miniaturas de Webs con CSS Puro */
.preview-window {
    height: 150px; border-radius: 8px; position: relative;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.mini-nav {
    position: absolute; top: 0; left: 0; width: 100%; height: 15px;
    background: rgba(0,0,0,0.3); display: flex; gap: 5px; padding-left: 10px; align-items: center;
}
.mini-nav::before { content: '•••'; color: #555; font-size: 10px; letter-spacing: 2px; }

.mini-hero { font-weight: 900; font-size: 1.2rem; z-index: 2; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.mini-btn {
    margin-top: 10px; font-size: 0.6rem; padding: 4px 10px;
    border-radius: 20px; background: white; color: black; font-weight: bold; z-index: 2;
}

/* Estilos Específicos de las Miniaturas */
.mechanic-style {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=300&q=80');
    background-size: cover; color: white;
}
.food-style {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?auto=format&fit=crop&w=300&q=80');
    background-size: cover; color: #ffcc00;
}
.real-estate-style {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=300&q=80');
    background-size: cover; color: white;
}
/* --- BURBUJA WHATSAPP ORBITAL --- */

.whatsapp-orbit {
    position: fixed;
    bottom: 100px; /* Arriba de la barra inferior */
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Verde WhatsApp Oficial */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: transform 0.3s;
}

/* Efecto al pasar el mouse o tocar */
.whatsapp-orbit:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

/* ANILLO DE ENERGÍA QUE GIRA (LO QUE DA VUELTAS) */
.orbit-ring {
    position: absolute;
    top: -5px; left: -5px;
    width: 70px; height: 70px; /* Un poco más grande que el botón */
    border-radius: 50%;
    border: 2px solid transparent;
    border-top: 2px solid #fff;   /* Parte blanca del anillo */
    border-right: 2px solid var(--accent); /* Parte verde del anillo */
    animation: spin-orbit 2s linear infinite; /* Gira infinitamente */
    pointer-events: none; /* Para que no moleste el clic */
}

/* Animación de giro */
@keyframes spin-orbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animación de pulso suave del botón entero */
.whatsapp-orbit {
    animation: float-pulse 3s ease-in-out infinite;
}

@keyframes float-pulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); } /* Flota un poquito */
}
/* --- ESTILOS PARA SISTEMA.HTML (DASHBOARDS) --- */

.preview-dashboard {
    height: 160px;
    background: #0f172a; /* Fondo oscuro de la pantalla */
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    border: 1px solid #334155;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

/* Barra lateral izquierda del sistema falso */
.fake-sidebar {
    width: 30px;
    background: #1e293b;
    border-right: 1px solid #334155;
}

/* Contenido principal del sistema falso */
.fake-content {
    flex-grow: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fake-header {
    font-size: 0.6rem;
    color: #64748b;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

/* --- TEMA STOCK --- */
.fake-row {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,255,255,0.05); padding: 5px; border-radius: 4px;
}
.fake-row span { font-size: 0.6rem; color: #cbd5e1; }
.stock-pill { font-size: 0.5rem; padding: 2px 6px; border-radius: 4px; font-weight: bold; }
.stock-pill.high { background: rgba(16, 185, 129, 0.2); color: #10b981; }
.stock-pill.low { background: rgba(239, 68, 68, 0.2); color: #ef4444; }

/* --- TEMA VENTAS (GRÁFICAS) --- */
.fake-graph-container {
    display: flex; align-items: flex-end; justify-content: space-between;
    height: 100%; padding-top: 10px;
}
.fake-bar {
    width: 15%; 
    background: #334155; 
    border-radius: 4px 4px 0 0;
}
.fake-bar.active {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* --- TEMA USUARIOS --- */
.fake-card-user {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.03); padding: 8px; border-radius: 6px;
}
.fake-avatar { width: 20px; height: 20px; background: #475569; border-radius: 50%; }
.fake-lines { width: 60%; height: 4px; background: #334155; border-radius: 2px; }
/* --- ESTILOS PARA BOTS.HTML (CHAT) --- */

.preview-chat {
    background: #0b141a; /* Fondo oscuro WhatsApp */
    border-radius: 12px;
    border: 1px solid #334155;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    position: relative;
    /* Imagen de fondo sutil típica de whatsapp */
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-opacity: 0.1;
}

.chat-header {
    background: #202c33;
    padding: 10px 15px;
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid #334155;
}

.chat-avatar {
    width: 30px; height: 30px;
    background: var(--accent);
    border-radius: 50%;
}

.chat-name { font-size: 0.8rem; font-weight: bold; color: white; }

.chat-body {
    padding: 20px 15px;
    display: flex; flex-direction: column; gap: 10px;
    min-height: 180px;
}

.msg {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    line-height: 1.4;
    position: relative;
}

/* Mensaje del Usuario (Derecha) */
.msg.user {
    align-self: flex-end;
    background: #005c4b; /* Verde oscuro WhatsApp */
    color: #e9edef;
    border-top-right-radius: 0;
}

/* Mensaje del Bot (Izquierda) */
.msg.bot {
    align-self: flex-start;
    background: #202c33; /* Gris oscuro WhatsApp */
    color: #e9edef;
    border-top-left-radius: 0;
    border: 1px solid #334155;
}

/* Simulación de "Escribiendo..." (Opcional) */
.msg.bot::after {
    content: '';
    position: absolute; bottom: -15px; left: 0;
    font-size: 0.6rem; color: #8696a0;
}
/* --- ESTILOS REDES SOCIALES (MODAL) --- */

/* Botón en el Header */
.social-trigger {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    transition: 0.3s;
    letter-spacing: 1px;
}
.social-trigger:hover {
    border-color: var(--accent);
    color: white;
    background: rgba(16, 185, 129, 0.1);
}

/* Fondo Oscuro (Overlay) */
.social-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000; /* Por encima de todo */
    display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; /* Oculto por defecto */
    transition: 0.3s ease;
}

/* Cuando tiene la clase active se muestra */
.social-overlay.active { opacity: 1; pointer-events: all; }

/* Tarjeta Central */
.social-card {
    background: var(--bg-card);
    border: 1px solid var(--accent);
    padding: 30px; 
    border-radius: 16px;
    text-align: center;
    width: 90%; max-width: 350px;
    transform: scale(0.8); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 40px rgba(0, 210, 106, 0.2);
}

.social-overlay.active .social-card { transform: scale(1); }

.card-header-social {
    color: var(--accent); font-weight: 800; font-size: 1.2rem;
    margin-bottom: 10px; letter-spacing: 1px;
}

.social-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 25px; }

/* Botón Instagram con Gradiente Oficial */
.social-link.instagram {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white; text-decoration: none;
    padding: 12px 20px; border-radius: 12px;
    font-weight: bold; font-size: 1rem;
    transition: transform 0.2s;
    margin-bottom: 15px;
}
.social-link.instagram:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(193, 53, 132, 0.4); }

.close-social {
    background: transparent; border: none; color: #64748b;
    font-size: 0.8rem; cursor: pointer; margin-top: 10px;
    text-decoration: underline;
}

/* --- PASARELA DE PARCEROS --- */
.partners-section {
    margin-top: 40px;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.partners-title {
    font-size: 0.7rem; color: var(--accent); font-weight: 800;
    letter-spacing: 2px; margin-bottom: 15px; text-transform: uppercase;
    opacity: 0.7;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(255,255,255,0.02);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    /* Máscara para desvanecer bordes */
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

/* Animación de desplazamiento */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-item {
    display: flex; align-items: center; justify-content: center;
    min-width: 100px;
    filter: grayscale(100%) opacity(0.6); /* Logos en blanco y negro sutiles */
    transition: 0.3s;
}

.partner-item:hover {
    filter: grayscale(0%) opacity(1); /* Color al pasar el mouse */
    transform: scale(1.1);
}

.partner-item img {
    max-height: 40px; /* Altura uniforme para logos */
    max-width: 120px;
    object-fit: contain;
}
/* --- IDIOMAS (UBICADOS ARRIBA DEL BOTÓN) --- */
.lang-switch {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4); /* Fondo un poco más oscuro */
    padding: 3px 12px; /* Más compacto */
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 6px; /* Espacio que lo separa del botón de abajo */
    margin-right: 0; /* Ya no necesitamos margen a la derecha */
}

.lang-btn {
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.75rem; 
    font-weight: 900;
    /* CAMBIO AQUÍ: Color blanco para el inactivo */
    color: rgba(255, 255, 255, 0.7); /* Blanco con un poco de transparencia para elegancia */
    transition: all 0.3s ease;
}

.lang-btn:hover { color: white; }

.lang-btn.active {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
    transform: scale(1.1);
}

/* Efecto Hover (Prender un poco) */
.lang-btn:hover {
    color: #fff;
    text-shadow: 0 0 5px white;
}

/* ESTADO ACTIVO (NEÓN ENCENDIDO) */
.lang-btn.active {
    color: var(--accent); /* Verde */
    text-shadow: 
        0 0 5px var(--accent),
        0 0 10px var(--accent),
        0 0 20px var(--accent); /* Triple sombra para efecto neón real */
    transform: scale(1.1);
}

/* --- BOTÓN CONECTAR (CYBER-BUTTON) --- */
.social-trigger {
    background: transparent;
    color: var(--accent); /* Texto Verde */
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* Borde Neón */
    border: 2px solid var(--accent);
    border-radius: 4px; /* Bordes rectos son más "Tech" */
    padding: 10px 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Brillo inicial suave */
    box-shadow: 
        0 0 5px rgba(0, 210, 106, 0.2),
        inset 0 0 5px rgba(0, 210, 106, 0.1);
    text-shadow: 0 0 5px rgba(0, 210, 106, 0.5);
}

/* Efecto Hover (EXPLOSIÓN DE LUZ) */
.social-trigger:hover {
    background: var(--accent);
    color: #022c14; /* Texto negro sobre fondo verde */
    border-color: var(--accent);
    
    /* Sombra exterior gigante (Glow) */
    box-shadow: 
        0 0 20px var(--accent),
        0 0 40px var(--accent),
        0 0 10px #fff; /* Núcleo blanco */
        
    transform: translateY(-2px);
    text-shadow: none;
}

/* Efecto Click */
.social-trigger:active {
    transform: scale(0.95);
    box-shadow: 0 0 10px var(--accent);
}
/* --- BOTÓN COMPARTIR (SHARE ORBIT) --- */
.share-orbit {
    position: fixed;
    bottom: 180px; /* Ajustado para estar ARRIBA del WhatsApp */
    right: 25px;   /* Alineado a la derecha */
    width: 50px;
    height: 50px;
    background-color: #3b82f6; /* Azul Tech (Diferente al verde de WhatsApp) */
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.5);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

/* Efecto Hover */
.share-orbit:hover {
    transform: scale(1.1) rotate(15deg);
    background-color: #60a5fa; /* Azul más claro al tocar */
    box-shadow: 0 0 25px #3b82f6; /* Resplandor azul */
}

/* Anillo de energía para el botón compartir */
.share-ring {
    position: absolute;
    top: -4px; left: -4px;
    width: 58px; height: 58px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-left: 2px solid white;
    border-bottom: 2px solid #3b82f6;
    animation: spin-orbit 3s linear infinite reverse; /* Gira al revés para contraste */
    pointer-events: none;
}