 /* --- PALETA DE COLORES: DARK MODE NEÓN --- */

        :root {
            --bg-page: #070c0a;
            --bg-card: rgba(15, 28, 23, 0.85);
            --esmeralda: #10b981;
            --lima-brillante: #a3e635;
            --lima-hover: #bef264;
            --texto-principal: #f8fafc;
            --texto-gris: #94a3b8;
            --sombra-neon: 0 0 20px rgba(163, 230, 53, 0.1);
            --borde-neon: 1px solid rgba(163, 230, 53, 0.2);
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            margin: 0;
            background-color: var(--bg-page);
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.05), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(163, 230, 53, 0.05), transparent 25%);
            color: var(--texto-principal);
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        .img-placeholder {
            background-color: rgba(16, 185, 129, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--lima-brillante);
            font-size: 0.9rem;
            font-weight: 700;
            border-radius: 24px;
            border: 1px dashed rgba(163, 230, 53, 0.4);
            overflow: hidden;
        }
        .img-placeholder img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }

        header {
            background: rgba(7, 12, 10, 0.85);
            backdrop-filter: blur(15px);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: var(--borde-neon);
        }

        .logo-area { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--texto-principal); }
        .logo-area .img-placeholder { width: 45px; height: 45px; border-radius: 12px; border: none; background: rgba(163, 230, 53, 0.1); }
        .logo-area h1 { margin: 0; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; }

        nav { display: flex; gap: 30px; align-items: center; }
        nav a { text-decoration: none; color: var(--texto-gris); font-weight: 600; transition: 0.2s; }
        nav a:hover { color: var(--lima-brillante); text-shadow: 0 0 10px rgba(163, 230, 53, 0.4); }

        .btn-lima {
            background: transparent;
            color: var(--lima-brillante) !important;
            padding: 10px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            transition: 0.3s;
            border: 1px solid var(--lima-brillante);
            box-shadow: 0 0 15px rgba(163, 230, 53, 0.2);
            cursor: pointer;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1rem;
        }
        .btn-lima:hover { 
            background: var(--lima-brillante); 
            color: var(--bg-page) !important; 
            box-shadow: 0 0 25px rgba(163, 230, 53, 0.6); 
            transform: translateY(-2px); 
        }

        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            padding: 80px 5%;
            align-items: center;
            min-height: 75vh;
            border-bottom: var(--borde-neon);
        }

        .hero-text h2 { font-size: 4.5rem; line-height: 1.1; margin: 0 0 20px 0; letter-spacing: -2px; }
        .hero-text h2 span { color: var(--lima-brillante); text-shadow: 0 0 20px rgba(163, 230, 53, 0.3); }
        .hero-text p { font-size: 1.25rem; color: var(--texto-gris); margin-bottom: 40px; font-weight: 400; }
        .hero-visual { height: 500px; border: var(--borde-neon); background: var(--bg-card); backdrop-filter: blur(10px); box-shadow: var(--sombra-neon); }

        .section-wrapper { padding: 80px 5%; }
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-header h3 { font-size: 2.8rem; margin: 0; color: var(--texto-principal); letter-spacing: -1px; }
        .section-header p { font-size: 1.2rem; color: var(--texto-gris); max-width: 800px; margin: 15px auto 0; }

        .historia-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            background: var(--bg-card);
            padding: 50px;
            border-radius: 30px;
            box-shadow: var(--sombra-neon);
            border: var(--borde-neon);
            backdrop-filter: blur(10px);
        }
        .historia-texto h4 { font-size: 1.8rem; color: var(--lima-brillante); margin-top: 0; }
        .historia-texto p { font-size: 1.1rem; color: var(--texto-gris); margin-bottom: 20px; text-align: justify; }
        .historia-visual { height: 350px; }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: minmax(280px, auto);
            gap: 24px;
        }

        .bento-card {
            background: var(--bg-card);
            border-radius: 28px;
            padding: 40px;
            box-shadow: var(--sombra-neon);
            display: flex;
            flex-direction: column;
            justify-content: center;
            border: var(--borde-neon);
            transition: 0.3s;
            backdrop-filter: blur(10px);
        }
        .bento-card:hover { transform: translateY(-5px); border-color: var(--lima-brillante); box-shadow: 0 10px 30px rgba(163, 230, 53, 0.15); }
        .bento-card.col-2 { grid-column: span 2; }
        
        .bento-card.bg-verde { background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(163, 230, 53, 0.1) 100%); }
        .bento-card.bg-verde h4 { color: var(--lima-brillante); }
        .bento-card.bg-verde p { color: var(--texto-principal); }
        
        .bento-card h4 { font-size: 1.6rem; margin: 0 0 15px 0; color: var(--texto-principal); line-height: 1.2; }
        .bento-card p { font-size: 1.05rem; color: var(--texto-gris); margin: 0; text-align: justify;}
        .bento-tag { display: inline-block; background: rgba(163, 230, 53, 0.1); color: var(--lima-brillante); padding: 5px 15px; border-radius: 50px; font-weight: 800; font-size: 0.8rem; margin-bottom: 15px; width: max-content; border: 1px solid rgba(163, 230, 53, 0.3); }

        .simuladores-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
        .sim-card { background: var(--bg-card); border-radius: 28px; padding: 25px; box-shadow: var(--sombra-neon); text-align: center; transition: 0.4s; border: var(--borde-neon); backdrop-filter: blur(10px); }
        .sim-card:hover { transform: translateY(-10px); border-color: var(--lima-brillante); box-shadow: 0 15px 40px rgba(163, 230, 53, 0.2); }
        .sim-cover { height: 220px; margin-bottom: 25px; }
        .sim-card h4 { font-size: 1.6rem; margin: 10px 0; color: var(--texto-principal); }

        .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-top: 40px; }
        .team-member { 
            text-align: center; 
            background: var(--bg-card); 
            padding: 30px 20px; 
            border-radius: 24px; 
            border: var(--borde-neon);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }
        .team-member:hover {
            transform: translateY(-8px);
            border-color: var(--lima-brillante);
            box-shadow: 0 15px 40px rgba(163, 230, 53, 0.25);
        }
        .team-photo { width: 140px; height: 140px; border-radius: 50%; margin: 0 auto 20px; }
        .team-member h4 { margin: 0 0 8px 0; font-size: 1.1rem; color: var(--texto-principal); }
        .team-member p { margin: 0; font-size: 0.85rem; color: var(--lima-brillante); font-weight: 600; }

        .form-container {
            background: var(--bg-card);
            max-width: 600px;
            margin: 0 auto;
            padding: 40px;
            border-radius: 28px;
            box-shadow: var(--sombra-neon);
            border: var(--borde-neon);
            backdrop-filter: blur(10px);
        }

        .form-group { display: flex; flex-direction: column; text-align: left; margin-bottom: 20px; }
        .form-group label { font-weight: 700; color: var(--lima-brillante); margin-bottom: 8px; font-size: 0.95rem; }

        .form-input {
            padding: 15px;
            border-radius: 16px;
            border: 1px solid rgba(163, 230, 53, 0.3);
            background: rgba(0, 0, 0, 0.4);
            font-family: inherit;
            font-size: 1rem;
            color: var(--texto-principal);
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--lima-brillante);
            box-shadow: 0 0 15px rgba(163, 230, 53, 0.2);
            background: rgba(0, 0, 0, 0.6);
        }
        .form-input::placeholder { color: #475569; }

        .btn-enviar-form { width: 100%; margin-top: 10px; padding: 16px; font-size: 1.1rem; }

        footer { 
            text-align: center; 
            padding: 60px 5%; 
            background: #040806; 
            color: var(--texto-gris); 
            display: flex;
            flex-direction: column;
            align-items: center;
            border-top: var(--borde-neon);
        }
        .footer-logos { display: flex; gap: 40px; margin-bottom: 40px; justify-content: center; }
        .footer-logos .img-placeholder {
            width: 140px; height: 70px; background: rgba(16, 185, 129, 0.05); border: 1px dashed rgba(163, 230, 53, 0.3); color: var(--lima-brillante); border-radius: 12px;
        }
        footer h2 { color: var(--lima-brillante); margin: 0 0 10px 0; font-size: 2rem; letter-spacing: 1px;}
        footer p { margin: 5px 0; }

        @media (max-width: 900px) {
            .hero, .historia-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-text h2 { font-size: 3rem; }
            .bento-grid { grid-template-columns: 1fr; }
            .bento-card.col-2 { grid-column: span 1; }
            nav { display: none; }
        }