/* ==========================================================================
   DIVINEVO - SISTEMA DE DISEÑO FUTURISTA Y TECNOLÓGICO
   ========================================================================== */

/* Variables y Paleta de Colores Corporativa */
:root {
    /* Modo Oscuro (Predeterminado) */
    --bg-primary: #060412;
    --bg-secondary: #0a071d;
    --bg-card: rgba(14, 10, 35, 0.75);
    --bg-card-hover: rgba(22, 16, 52, 0.85);
    --bg-terminal: #050310;

    --border-glass: rgba(255, 255, 255, 0.1);
    --border-neon-pink: rgba(255, 32, 128, 0.5);
    --border-neon-cyan: rgba(0, 240, 255, 0.5);
    --border-neon-purple: rgba(189, 48, 255, 0.5);

    /* Neones Corporativos */
    --neon-pink: #ff1480;
    --neon-pink-glow: rgba(255, 20, 128, 0.6);
    --neon-cyan: #00f0ff;
    --neon-cyan-glow: rgba(0, 240, 255, 0.6);
    --neon-purple: #bd30ff;
    --neon-purple-glow: rgba(189, 48, 255, 0.6);
    --neon-blue: #0077ff;

    /* Textos */
    --text-primary: #ffffff;
    --text-secondary: #b3a7d6;
    --text-muted: #796c9e;

    /* Gradientes */
    --grad-pink-cyan: linear-gradient(135deg, #ff1480, #bd30ff 50%, #00f0ff);
    --grad-cyan-blue: linear-gradient(135deg, #00f0ff, #0077ff);
    --grad-purple-pink: linear-gradient(135deg, #bd30ff, #ff1480);
    --grad-text-div: linear-gradient(180deg, #38f9d7 0%, #00d2ff 50%, #0088ff 100%);
    --grad-text-inevo: linear-gradient(180deg, #ffffff 20%, #e0d4fc 70%, #baa3ff 100%);

    --shadow-neon: 0 10px 30px rgba(0, 0, 0, 0.6);
    --code-color: #38f9d7;
}

/* Modo Claro */
html[data-theme="light"] {
    --bg-primary: #f8f9fe;
    --bg-secondary: #eef1fc;
    --bg-card: rgba(255, 255, 255, 0.88);
    --bg-card-hover: #ffffff;
    --bg-terminal: #171131;

    --border-glass: rgba(0, 0, 0, 0.08);
    --border-neon-pink: rgba(255, 20, 128, 0.3);
    --border-neon-cyan: rgba(0, 180, 216, 0.35);
    --border-neon-purple: rgba(147, 51, 234, 0.3);

    --neon-pink: #ff1480;
    --neon-pink-glow: rgba(255, 20, 128, 0.25);
    --neon-cyan: #00b4d8;
    --neon-cyan-glow: rgba(0, 180, 216, 0.25);
    --neon-purple: #9333ea;
    --neon-purple-glow: rgba(147, 51, 234, 0.25);

    --text-primary: #190f33;
    --text-secondary: #4d3d75;
    --text-muted: #7e6f9e;

    --grad-text-div: linear-gradient(180deg, #00c9e8 0%, #0088cc 100%);
    --grad-text-inevo: linear-gradient(180deg, #2b1f4c 20%, #503d7c 70%, #765da8 100%);

    --shadow-neon: 0 10px 30px rgba(90, 50, 150, 0.08);
}

/* Reseteo y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

/* Fondo de rejilla cibernética sutil */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

html[data-theme="light"] body::before {
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
}

/* Contenedor general */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   HEADER / NAVBAR FUTURISTA
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(6, 4, 18, 0.82);
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.3s ease;
}

.navbar .container {
    max-width: 1420px;
}

html[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.9);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    flex-shrink: 0;
    padding-right: 25px;
    border-right: 1px solid var(--border-glass);
    margin-right: 5px;
}

.brand-title {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.tag-cyan {
    color: var(--neon-cyan);
}

.text-inevo-brand {
    background: var(--grad-text-inevo);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    flex-wrap: nowrap;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.25s ease;
    position: relative;
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-block;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10px;
    right: 10px;
    width: 0%;
    height: 2px;
    background: var(--grad-pink-cyan);
    transition: width 0.25s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 20px);
}

.nav-cta-btn {
    background: var(--grad-pink-cyan);
    color: #ffffff !important;
    padding: 9px 20px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 15px var(--neon-pink-glow);
    transition: all 0.25s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.nav-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 22px var(--neon-cyan-glow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Selector de Tema */
.theme-pill {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    padding: 3px;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
    gap: 2px;
}

html[data-theme="light"] .theme-pill {
    background: rgba(0, 0, 0, 0.05);
}

.theme-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.theme-btn:hover {
    color: var(--text-primary);
}

.theme-btn.active {
    background: var(--grad-pink-cyan);
    color: #ffffff;
    box-shadow: 0 0 12px var(--neon-pink-glow);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION FUTURISTA & CONVERSIÓN INMEDIATA
   ========================================================================== */
.hero-section {
    padding: 140px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 20, 128, 0.1);
    border: 1px solid var(--border-neon-pink);
    border-radius: 30px;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--neon-pink);
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 20, 128, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: blinkDot 1.5s infinite;
}

@keyframes blinkDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--grad-pink-cyan);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 25px rgba(189, 48, 255, 0.4));
}

.hero-slogan {
    font-size: 1.25rem;
    color: var(--neon-cyan);
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 0 0 10px var(--neon-cyan-glow);
}

.hero-description {
    font-size: 1.12rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 600px;
}

.hero-hire-highlight {
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.12), rgba(189, 48, 255, 0.12));
    border-left: 3px solid var(--neon-cyan);
    padding: 12px 18px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 28px;
    font-size: 0.98rem;
    color: var(--text-primary);
    font-weight: 600;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--grad-pink-cyan);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px var(--neon-pink-glow);
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--neon-cyan-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

html[data-theme="light"] .btn-secondary {
    background: rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: translateY(-3px);
}

.hero-email-quick {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-email-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dashed var(--neon-cyan);
    transition: all 0.2s ease;
}

.hero-email-link:hover {
    color: var(--neon-pink);
    border-color: var(--neon-pink);
}

/* Tarjeta 3D del Logo en el Hero */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-logo-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 22px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(189, 48, 255, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
}

.hero-logo-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.3));
}

.logo-dark-view {
    display: block;
}

.logo-light-view {
    display: none;
}

html[data-theme="light"] .logo-dark-view {
    display: none;
}

html[data-theme="light"] .logo-light-view {
    display: block;
}

.card-code-badge {
    margin-top: 14px;
    background: var(--bg-terminal);
    padding: 10px 16px;
    border-radius: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 0.82rem;
    color: var(--code-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-glass);
}

/* ==========================================================================
   SECCIONES COMUNES
   ========================================================================== */
.section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 55px;
}

.section-tag {
    display: inline-block;
    font-family: 'Fira Code', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background: rgba(0, 240, 255, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-neon-cyan);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 1.12rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   1. ANATOMÍA Y SIGNIFICADO DE <Div>InEvo
   ========================================================================== */
.anatomy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 35px;
}

.anatomy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.anatomy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.card-div::before {
    background: var(--grad-cyan-blue);
}

.card-inevo::before {
    background: var(--grad-purple-pink);
}

.anatomy-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.15);
}

.card-inevo:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 15px 40px rgba(255, 20, 128, 0.15);
}

.anatomy-icon-badge {
    display: inline-flex;
    padding: 12px 20px;
    border-radius: 12px;
    font-family: 'Fira Code', monospace;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.badge-div {
    background: rgba(0, 240, 255, 0.12);
    color: var(--neon-cyan);
    border: 1px solid var(--border-neon-cyan);
}

.badge-inevo {
    background: rgba(255, 20, 128, 0.12);
    color: var(--neon-pink);
    border: 1px solid var(--border-neon-pink);
}

.anatomy-title {
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.anatomy-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.synthesis-banner {
    background: linear-gradient(135deg, rgba(255, 20, 128, 0.1), rgba(0, 240, 255, 0.1));
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 25px;
    backdrop-filter: blur(16px);
}

.synthesis-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--grad-pink-cyan);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 0 20px var(--neon-purple-glow);
}

.synthesis-text {
    font-size: 1.12rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* ==========================================================================
   2. MISIÓN Y VISIÓN
   ========================================================================== */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(16px);
    transition: all 0.35s ease;
    position: relative;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.mv-card-vision:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 50px rgba(0, 240, 255, 0.15);
}

.mv-card-mission:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 20px 50px rgba(189, 48, 255, 0.15);
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-icon {
    background: rgba(0, 240, 255, 0.15);
    color: var(--neon-cyan);
    border: 1px solid var(--border-neon-cyan);
}

.mission-icon {
    background: rgba(189, 48, 255, 0.15);
    color: var(--neon-purple);
    border: 1px solid var(--border-neon-purple);
}

.mv-title {
    font-size: 1.75rem;
    font-weight: 800;
}

.mv-content p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    margin-bottom: 14px;
    line-height: 1.7;
}

.mv-content p:last-child {
    margin-bottom: 0;
}

.mv-highlights {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-highlight {
    background: rgba(255, 255, 255, 0.06);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-cyan);
    border: 1px solid var(--border-glass);
}

/* ==========================================================================
   3. SERVICIOS Y SOLUCIONES DIGITALES
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 35px 28px;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 35px rgba(0, 240, 255, 0.18);
}

.service-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid var(--border-neon-cyan);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background: var(--grad-pink-cyan);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    font-family: 'Fira Code', monospace;
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* ==========================================================================
   4. SECCIÓN PRODUCTOS (PRÓXIMAMENTE / EN DESARROLLO)
   ========================================================================== */
.products-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 22px;
    padding: 34px 28px;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    flex: 1 1 340px;
    max-width: 560px;
    width: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-pink-cyan);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-purple);
    box-shadow: 0 15px 40px rgba(189, 48, 255, 0.2);
}

.product-header-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.coming-soon-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 20, 128, 0.15);
    border: 1px solid var(--border-neon-pink);
    color: var(--neon-pink);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(255, 20, 128, 0.2);
}

.product-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(189, 48, 255, 0.12);
    color: var(--neon-purple);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-neon-purple);
    margin-bottom: 0;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 22px;
    flex-grow: 1;
}

.product-status-bar {
    margin-bottom: 18px;
}

.status-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-family: 'Fira Code', monospace;
}

.progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--grad-pink-cyan);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--neon-cyan-glow);
}

.product-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features-list li svg {
    color: var(--neon-cyan);
    flex-shrink: 0;
}

.products-custom-cta {
    background: linear-gradient(135deg, rgba(189, 48, 255, 0.12), rgba(0, 240, 255, 0.12));
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.products-custom-info h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.products-custom-info p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ==========================================================================
   5. VALORES CORPORATIVOS (10 VALORES)
   ========================================================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 26px;
    backdrop-filter: blur(14px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: 0 12px 30px rgba(189, 48, 255, 0.2);
}

.value-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.value-num {
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--neon-pink);
    background: rgba(255, 20, 128, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

.value-name {
    font-size: 1.22rem;
    font-weight: 700;
}

.value-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   6. OBJETIVOS ESTRATÉGICOS
   ========================================================================== */
.objectives-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.general-objective-card {
    background: linear-gradient(135deg, rgba(14, 10, 35, 0.9), rgba(25, 15, 60, 0.9));
    border: 1px solid var(--border-neon-purple);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(189, 48, 255, 0.15);
}

.obj-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-purple);
    font-family: 'Fira Code', monospace;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.general-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.general-desc {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.7;
}

.specific-objectives-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.specific-obj-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.25s ease;
}

.specific-obj-item:hover {
    transform: translateX(6px);
    border-color: var(--neon-cyan);
    background: var(--bg-card-hover);
}

.obj-index {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid var(--border-neon-cyan);
    color: var(--neon-cyan);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 0.88rem;
}

.obj-item-text {
    color: var(--text-primary);
    font-size: 0.96rem;
    line-height: 1.5;
}

/* ==========================================================================
   7. IDENTIDAD DE MARCA & PALETA DE COLORES
   ========================================================================== */
.brand-identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.palette-box,
.typography-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 35px;
    backdrop-filter: blur(16px);
}

.box-title {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.swatches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 14px;
}

.swatch-card {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    cursor: pointer;
    transition: all 0.25s ease;
}

.swatch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.swatch-color {
    height: 60px;
    width: 100%;
}

.swatch-info {
    padding: 10px;
    text-align: center;
}

.swatch-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.swatch-hex {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.type-sample-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
    border: 1px solid var(--border-glass);
}

.type-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--neon-cyan);
    margin-bottom: 6px;
}

.type-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   8. SECCIÓN CONTÁCTANOS (CONTRATACIONES & DESARROLLO)
   ========================================================================== */
.contact-section-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 35px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-direct-box {
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid var(--border-neon-cyan);
    border-radius: 18px;
    padding: 24px;
    margin: 25px 0;
}

.contact-email-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'Fira Code', monospace;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-email-address {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--neon-cyan);
    text-decoration: none;
    display: block;
    margin-bottom: 14px;
    word-break: break-all;
    transition: color 0.2s ease;
}

.contact-email-address:hover {
    color: var(--neon-pink);
}

.copy-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.copy-email-btn:hover {
    background: var(--neon-cyan);
    color: #060412;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 20, 128, 0.08);
    border: 1px solid var(--border-neon-pink);
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 0.92rem;
    color: var(--text-primary);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-neon-purple);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.form-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-family: 'Fira Code', monospace;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    outline: none;
}

html[data-theme="light"] .form-input,
html[data-theme="light"] .form-select,
html[data-theme="light"] .form-textarea {
    background: rgba(255, 255, 255, 0.9);
    color: #190f33;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit-contact {
    width: 100%;
    background: var(--grad-pink-cyan);
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 8px 25px var(--neon-pink-glow);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-submit-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--neon-cyan-glow);
}

/* ==========================================================================
   GLOSARIO TECNOLÓGICO Y DE PROGRAMACIÓN
   ========================================================================== */
.glossary-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 45px;
}

.glossary-search-box {
    position: relative;
    width: 100%;
    max-width: 620px;
}

.glossary-search-box svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neon-cyan);
    pointer-events: none;
}

.glossary-search-input {
    width: 100%;
    padding: 14px 20px 14px 52px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-neon-cyan);
    border-radius: 30px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.98rem;
    outline: none;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    transition: all 0.3s ease;
}

html[data-theme="light"] .glossary-search-input {
    background: rgba(255, 255, 255, 0.95);
    color: #190f33;
}

.glossary-search-input:focus {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.35);
    border-color: var(--neon-cyan);
    background: rgba(0, 0, 0, 0.5);
}

html[data-theme="light"] .glossary-search-input:focus {
    background: #ffffff;
}

.glossary-filter-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.glossary-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

html[data-theme="light"] .glossary-chip {
    background: rgba(0, 0, 0, 0.04);
}

.glossary-chip:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.08);
}

.glossary-chip.active {
    background: var(--grad-pink-cyan);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px var(--neon-pink-glow);
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.glossary-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 28px 24px;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.glossary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-cyan-blue);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.glossary-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 35px rgba(0, 240, 255, 0.15);
}

.glossary-card:hover::before {
    height: 4px;
    background: var(--grad-pink-cyan);
    opacity: 1;
}

.glossary-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.glossary-category-badge {
    font-family: 'Fira Code', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    background: rgba(189, 48, 255, 0.12);
    color: var(--neon-purple);
    border: 1px solid var(--border-neon-purple);
    text-transform: uppercase;
}

.glossary-icon-mini {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--neon-cyan);
    font-family: 'Fira Code', monospace;
}

.glossary-term-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.glossary-term-desc {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.glossary-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

html[data-theme="light"] .glossary-card-footer {
    border-top-color: rgba(0, 0, 0, 0.08);
}

.glossary-empty {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    border: 1px dashed var(--border-glass);
    border-radius: 16px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ==========================================================================
   9. TERMINAL DE COMANDOS INTERACTIVA
   ========================================================================== */
.terminal-window {
    background: var(--bg-terminal);
    border: 1px solid var(--border-neon-cyan);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 240, 255, 0.2);
    font-family: 'Fira Code', monospace;
}

.terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.terminal-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 25px;
    min-height: 260px;
    max-height: 380px;
    overflow-y: auto;
    color: var(--code-color);
    font-size: 0.95rem;
    line-height: 1.7;
}

.terminal-prompt-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.prompt-symbol {
    color: var(--neon-pink);
    font-weight: 800;
}

.terminal-input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    flex-grow: 1;
}

.terminal-quick-chips {
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-glass);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.chip-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cmd-chip {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--border-neon-cyan);
    color: var(--neon-cyan);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cmd-chip:hover {
    background: var(--neon-cyan);
    color: #060412;
}

/* ==========================================================================
   FOOTER FUTURISTA
   ========================================================================== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-glass);
    background: rgba(4, 2, 12, 0.85);
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-slogan {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.08);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-neon-cyan);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Toast de Notificación */
.toast-msg {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--grad-pink-cyan);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.toast-msg.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   BARRA LATERAL DE OPCIONES MÓVIL (DRAWER & OVERLAY)
   ========================================================================== */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 2, 12, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 86%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-neon-cyan);
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(0, 240, 255, 0.05);
    z-index: 1600;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.02);
}

.drawer-brand {
    font-size: 1.35rem;
    font-weight: 900;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.drawer-close-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.drawer-close-btn:hover {
    background: rgba(255, 20, 128, 0.2);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    transform: rotate(90deg);
}

.drawer-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.drawer-section-title {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    color: var(--neon-cyan);
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 4px;
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.drawer-icon {
    font-size: 1.15rem;
    width: 24px;
    display: inline-flex;
    justify-content: center;
}

.drawer-link:hover {
    color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.08);
    border-color: var(--border-neon-cyan);
    transform: translateX(4px);
}

.drawer-link.active {
    color: #ffffff;
    background: linear-gradient(90deg, rgba(255, 20, 128, 0.2), rgba(0, 240, 255, 0.15));
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 20, 128, 0.15);
}

.drawer-cta-wrapper {
    margin-top: 10px;
}

.drawer-cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--grad-pink-cyan);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px var(--neon-pink-glow);
    transition: all 0.3s ease;
}

.drawer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--neon-cyan-glow);
}

.drawer-contact-info {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-glass);
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
}

.drawer-email-label {
    color: var(--text-muted);
    margin-bottom: 4px;
}

.drawer-email-val {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 700;
}

/* ==========================================================================
   BARRA FLOTANTE DE OPCIONES EN CELULARES (MOBILE BOTTOM NAVIGATION BAR)
   ========================================================================== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 460px;
    background: rgba(9, 7, 27, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-neon-cyan);
    border-radius: 35px;
    padding: 8px 12px;
    z-index: 1400;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 240, 255, 0.2);
    justify-content: space-around;
    align-items: center;
}

html[data-theme="light"] .mobile-bottom-bar {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 15px rgba(0, 240, 255, 0.2);
}

.bottom-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.bottom-bar-item svg {
    transition: transform 0.2s ease, color 0.2s ease;
}

.bottom-bar-item:hover,
.bottom-bar-item.active {
    color: var(--neon-cyan);
}

.bottom-bar-item.active svg {
    transform: translateY(-2px) scale(1.15);
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 8px var(--neon-cyan));
}

.bottom-bar-menu-btn {
    color: var(--neon-pink);
}

.bottom-bar-menu-btn .menu-icon-bars {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 18px;
    height: 16px;
    justify-content: center;
}

.bottom-bar-menu-btn .menu-icon-bars span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--neon-pink);
    border-radius: 2px;
    box-shadow: 0 0 6px var(--neon-pink);
}

/* ==========================================================================
   RESPONSIVIDAD INTEGRAL PARA TODOS LOS DISPOSITIVOS
   ========================================================================== */
@media (max-width: 1180px) {
    .nav-links {
        display: none;
    }

    .nav-brand {
        border-right: none;
        padding-right: 0;
    }

    .mobile-menu-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-glass);
        color: var(--text-primary);
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .mobile-menu-btn:hover {
        border-color: var(--neon-cyan);
        color: var(--neon-cyan);
        background: rgba(0, 240, 255, 0.1);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 24px;
    }

    .hero-hire-highlight {
        margin: 0 auto 24px;
        text-align: left;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .anatomy-grid,
    .mission-vision-grid,
    .objectives-container,
    .brand-identity-grid,
    .contact-section-wrapper {
        grid-template-columns: 1fr;
    }

    .glossary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 75px; /* Espacio para barra de opciones inferior */
    }

    .mobile-bottom-bar {
        display: flex;
    }

    .hero-section {
        padding: 110px 0 50px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .section {
        padding: 65px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .glossary-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        width: 100%;
    }

    .product-card {
        max-width: 100%;
    }

    .synthesis-banner,
    .products-custom-cta {
        flex-direction: column;
        text-align: center;
    }

    .footer {
        padding: 45px 0 25px;
        margin-top: 50px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 16px;
    }

    .navbar {
        padding: 12px 0;
    }

    .nav-cta-btn {
        display: none; /* Se accede limpiamente desde la barra de opciones */
    }

    .theme-pill .theme-btn span {
        display: none; /* Muestra solo iconos para ahorrar espacio en móviles */
    }

    .theme-pill .theme-btn {
        padding: 6px 8px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-slogan {
        font-size: 1.05rem;
    }

    .hero-description {
        font-size: 0.98rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-logo-card {
        padding: 14px;
        border-radius: 18px;
    }

    .card-code-badge {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .anatomy-card,
    .mv-card,
    .general-obj-card,
    .contact-form-card,
    .contact-info-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .swatches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .terminal-body {
        padding: 16px;
        font-size: 0.85rem;
    }

    .terminal-quick-chips {
        padding: 12px 16px;
        gap: 6px;
    }

    .cmd-chip {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .glossary-search-input {
        padding: 12px 16px 12px 46px;
        font-size: 0.9rem;
    }

    .glossary-chip {
        padding: 6px 12px;
        font-size: 0.78rem;
    }
}