:root {
    /* COLORES PRINCIPALES */
    --cyan: #00f3ff;
    --purple: #bc13fe;
    --dark-bg: #020205;
    --panel-bg: rgba(10, 10, 16, 0.7);
    --border-glow: rgba(0, 243, 255, 0.5);
    
    /* VARIABLES QUE FALTABAN (Corregidas) */
    --neon-blue: #00f3ff;  /* Igual al cyan */
    --neon-purple: #bc13fe; /* Igual al purple */
    --neon-green: #00ff00;
    --text-gray: #a0a0a0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--dark-bg);
    font-family: 'Rajdhani', sans-serif;
    color: white;
    overflow-x: hidden;
}

/* =========================================
   FONDO DE REJILLA 3D (MOVIMIENTO INFINITO)
   ========================================= */
.retro-grid {
    position: fixed; width: 100%; height: 100vh; top: 0; left: 0; z-index: -1;
    perspective: 1000px; overflow: hidden;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}
.grid-plane {
    position: absolute; width: 200%; height: 200%; bottom: -50%; left: -50%;
    background-image: 
        linear-gradient(var(--cyan) 1px, transparent 1px),
        linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center;
    transform: rotateX(60deg);
    opacity: 0.15;
    animation: planeMove 5s linear infinite;
    mask-image: linear-gradient(to top, transparent 0%, black 40%);
}

@keyframes planeMove {
    0% { transform: rotateX(60deg) translateY(0); }
    100% { transform: rotateX(60deg) translateY(80px); }
}

.brand-link {
    text-decoration: none; /* Sin subrayado */
    color: white;          /* Color del texto principal */
    font-weight: bold;     /* Asegura que se vea grueso */
    cursor: pointer;       /* Manito al pasar el mouse */
}


/* =========================================
   NAVBAR (MENÚ SUPERIOR)
   ========================================= */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: fixed; width: 100%; top: 0; z-index: 1000;
}

.brand {
    font-family: 'Orbitron', sans-serif; font-size: 1.5rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 2px;
    background: linear-gradient(90deg, #fff, var(--neon-blue));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.nav-btn {
    background: transparent; border: 1px solid var(--neon-blue); color: var(--neon-blue);
    padding: 8px 20px; font-family: 'Orbitron', sans-serif; text-transform: uppercase;
    font-size: 0.8rem; cursor: pointer; transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
    text-decoration: none;
}
.nav-btn:hover {
    background: var(--neon-blue); color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
}

.brand-link {
    text-decoration: none; /* Sin subrayado */
    color: white;          /* Color del texto principal */
    font-weight: bold;     /* Asegura que se vea grueso */
    cursor: pointer;       /* Manito al pasar el mouse */
}



/* =========================================
   NAVBAR (MENÚ)
   ========================================= */
nav {
    padding: 20px 5%; display: flex; justify-content: space-between; align-items: center;
    position: fixed; width: 100%; z-index: 100; backdrop-filter: blur(5px);
    border-bottom: 1px solid #595959 !important; /* Línea gris abajo */
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
}
.logo { font-family: 'Orbitron'; font-weight: 900; font-size: 1.5rem; letter-spacing: 2px; }
.back-btn { text-decoration: none; color: var(--cyan); font-weight: bold; text-transform: uppercase; border: 1px solid var(--cyan); padding: 5px 15px; transition: 0.3s; }
.back-btn:hover { background: var(--cyan); color: #000; box-shadow: 0 0 15px var(--cyan); }

/* =========================================
   HEADER TÍTULO (PROTOCOLOS)
   ========================================= */
.page-header {
    text-align: center; padding-top: 150px; margin-bottom: 20px;
}
.glitch-title {
    font-family: 'Orbitron', sans-serif; font-size: 3.5rem; font-weight: 900;
    position: relative; color: white; text-transform: uppercase;
    text-shadow: 2px 2px var(--purple);
    display: inline-block;
}
.glitch-title::before, .glitch-title::after {
    content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--dark-bg);
}
.glitch-title::before {
    left: 2px; text-shadow: -1px 0 var(--cyan); clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}
.glitch-title::after {
    left: -2px; text-shadow: -1px 0 var(--purple); clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 30px, 0); }
    20% { clip: rect(80px, 9999px, 100px, 0); }
    40% { clip: rect(10px, 9999px, 60px, 0); }
    60% { clip: rect(40px, 9999px, 90px, 0); }
    80% { clip: rect(70px, 9999px, 20px, 0); }
    100% { clip: rect(20px, 9999px, 50px, 0); }
}
@keyframes glitch-anim-2 {
    0% { clip: rect(60px, 9999px, 90px, 0); }
    20% { clip: rect(10px, 9999px, 40px, 0); }
    40% { clip: rect(50px, 9999px, 80px, 0); }
    60% { clip: rect(20px, 9999px, 40px, 0); }
    80% { clip: rect(90px, 9999px, 10px, 0); }
    100% { clip: rect(30px, 9999px, 60px, 0); }
}

.subtitle { color: var(--cyan); letter-spacing: 4px; margin-top: 10px; font-size: 1.2rem; }

/* =========================================
   HERO SECTION (BANNER + REACTOR)
   ========================================= */
.hero {
    min-height: 80vh; display: flex; align-items: center; justify-content: space-between;
    padding: 50px 10%; position: relative;
}

.hero-text { max-width: 600px; z-index: 2; }

.hero-text h1 {
    font-family: 'Orbitron', sans-serif; font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px;
    text-transform: uppercase;
}

/* Efecto de energía en el texto "Soluciones Tecnológicas" */
.hero-text h1 span {
    background: linear-gradient(90deg, var(--neon-blue) 0%, #ffffff 25%, var(--neon-purple) 50%, #ffffff 75%, var(--neon-blue) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    animation: holographic-flow 3s linear infinite;
    font-weight: 900;
}

.hero-p { 
    color: var(--text-gray); font-size: 1.1rem; margin-bottom: 40px; 
    border-left: 3px solid var(--neon-purple); padding-left: 20px; 
}

.cta-button {
    padding: 15px 40px; background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: white; border: none; font-weight: bold; font-family: 'Orbitron', sans-serif; letter-spacing: 1px;
    cursor: pointer; clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: 0.3s; text-decoration: none; display: inline-block;
}
.cta-button:hover { transform: translateY(-5px); box-shadow: 0 0 30px rgba(188, 19, 254, 0.6); }

/* REACTOR CIBERNÉTICO */
.reactor-container {
    width: 450px; height: 450px;
    position: relative; display: flex; justify-content: center; align-items: center;
    animation: float-reactor 6s ease-in-out infinite;
}

.reactor-ring {
    position: absolute; border-radius: 50%;
    border: 2px solid transparent; 
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.ring-1 {
    width: 100%; height: 100%;
    border-top: 4px solid var(--neon-blue); border-bottom: 4px solid var(--neon-purple);
    animation: spin-right 10s linear infinite; filter: drop-shadow(0 0 10px var(--neon-blue));
}
.ring-2 {
    width: 80%; height: 80%;
    border-left: 4px solid var(--neon-green); border-right: 4px solid var(--neon-blue);
    animation: spin-left 7s linear infinite;
}
.ring-3 {
    width: 60%; height: 60%;
    border-top: 2px solid #fff; border-bottom: 2px solid #fff; opacity: 0.5;
    animation: spin-right 4s linear infinite;
}
.ring-4 {
    width: 120%; height: 120%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    animation: spin-left 20s linear infinite;
}

.reactor-core {
    width: 220px; height: 220px;
    background: transparent; display: flex; justify-content: center; align-items: center; z-index: 10;
    animation: float-img 4s ease-in-out infinite;
}
.reactor-core img {
    width: 100%; height: auto; max-height: 250px; object-fit: contain;
    filter: brightness(0.6) grayscale(0.2) drop-shadow(0 0 15px #00f3ff); /* Ajustado para que se vea mejor */
    position: relative; z-index: 5; transition: 0.5s;
}
.reactor-container:hover .reactor-core img {
    filter: brightness(1) grayscale(0) drop-shadow(0 0 25px #bc13fe);
}

@keyframes spin-right { 100% { transform: rotate(360deg); } }
@keyframes spin-left { 100% { transform: rotate(-360deg); } }
@keyframes float-reactor { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* =========================================
   GRID DE SERVICIOS
   ========================================= */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; padding: 0 10% 100px 10%;
    max-width: 1400px; margin: 0 auto;
}

/* TARJETA FUTURISTA (Holo Card) */
.holo-card {
    background: var(--panel-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Borde gris abajo que querías */
    border-bottom: 4px solid #dcdcdc; 
    padding: 40px; position: relative; overflow: hidden;
    transition: 0.4s; 
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    display: flex; flex-direction: column; justify-content: space-between;
}

.holo-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyan);
    border-bottom: 4px solid var(--cyan); /* Al pasar mouse se pone azul */
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    background: rgba(0, 243, 255, 0.05);
}

.scan-line {
    position: absolute; top: -100%; left: 0; width: 100%; height: 20px;
    background: linear-gradient(to bottom, transparent, var(--cyan), transparent);
    opacity: 0.5; transition: 0.5s; pointer-events: none;
}
.holo-card:hover .scan-line { animation: scan 1.5s linear infinite; }
@keyframes scan { 0% { top: -20%; } 100% { top: 120%; } }

.card-icon {
    font-size: 3rem; color: var(--purple); margin-bottom: 20px;
    text-shadow: 0 0 15px var(--purple);
    animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.holo-card h3 { font-family: 'Orbitron'; font-size: 1.4rem; margin-bottom: 15px; color: white; }
.holo-card p { color: #aaa; line-height: 1.6; font-size: 0.95rem; }

.tech-list { margin-top: 20px; list-style: none; padding-left: 0; }
.tech-list li {
    color: var(--cyan); font-size: 0.9rem; margin-bottom: 8px;
    display: flex; align-items: center;
}
.tech-list li::before { content: '>'; margin-right: 10px; font-weight: bold; color: white; }

.card-btn {
    display: inline-block; margin-top: 25px; padding: 10px 0; width: 100%;
    border: 1px solid var(--purple); color: var(--purple); text-transform: uppercase;
    text-decoration: none; font-weight: bold; letter-spacing: 1px; text-align: center;
    transition: 0.3s; position: relative; overflow: hidden;
}
.card-btn:hover { background: var(--purple); color: white; box-shadow: 0 0 20px var(--purple); }

/* =========================================
   FOOTER
   ========================================= */
footer {
    padding: 50px 10%; text-align: center; 
    border-top: 1px solid #595959 !important; /* Línea gris arriba */
    font-size: 0.9rem; color: var(--text-gray); margin-top: 50px;
    background: #000;
}
.socials { margin-top: 20px; }
.socials i { margin: 0 10px; font-size: 1.5rem; cursor: pointer; transition: 0.3s; color: white; }
.socials i:hover { color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue); }

/* =========================================
   EXTRAS (SCROLLBAR & WHATSAPP)
   ========================================= */
/* Scrollbar */
html { scrollbar-width: thin; scrollbar-color: var(--cyan) var(--dark-bg); }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #0a0a0f; border-left: 1px solid rgba(255, 255, 255, 0.05); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--cyan), var(--purple)); border-radius: 6px; border: 3px solid #0a0a0f; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); box-shadow: 0 0 15px var(--cyan); }

/* Whatsapp */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background-color: #25d366; color: #fff;
    border-radius: 50%; text-align: center; font-size: 35px;
    box-shadow: 0 0 10px #25d366; z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { background-color: #128c7e; transform: scale(1.1); box-shadow: 0 0 30px #25d366; }
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .services-container { grid-template-columns: repeat(2, 1fr); }
    .hero { flex-direction: column; text-align: center; padding-top: 100px; }
    .hero-text { margin-bottom: 50px; }
}
@media (max-width: 700px) {
    .services-container { grid-template-columns: 1fr; }
    .glitch-title { font-size: 2rem; }
    .hero-text h1 { font-size: 2.5rem; }
    .reactor-container { width: 300px; height: 300px; }
    .reactor-core { width: 150px; height: 150px; }
}

/* =========================================
   SECCIÓN DE PROCESO (TIMELINE)
   ========================================= */
.process-section {
    padding: 80px 10%;
    position: relative;
    background: transparent;
}

.section-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 60px;
    text-shadow: 0 0 10px var(--purple);
}

/* La Línea Central */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--purple); /* Color de la línea */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    box-shadow: 0 0 15px var(--purple); /* Brillo neón */
}

/* Los Contenedores (Items) */
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* Círculos en la línea */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--dark-bg);
    border: 3px solid var(--cyan);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 10px var(--cyan);
}

/* Lado Izquierdo */
.left { left: 0; }

/* Lado Derecho */
.right { left: 50%; }
.right::after { left: -10px; } /* Mueve el círculo a la izquierda */

/* El contenido de la tarjeta */
.timeline-content {
    padding: 20px 30px;
    background: rgba(10, 10, 16, 0.8); /* Fondo semitransparente */
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 6px;
    position: relative;
    transition: 0.3s;
}
.timeline-content:hover {
    transform: scale(1.05);
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

/* Número Gigante de Fondo */
.step-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05); /* Casi invisible */
    font-family: 'Orbitron';
}

.timeline-content h3 {
    font-family: 'Orbitron';
    color: var(--cyan);
    margin-bottom: 10px;
}
.timeline-content p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- RESPONSIVE (Para Celulares) --- */
@media (max-width: 768px) {
    /* La línea se mueve a la izquierda */
    .timeline::after { left: 31px; }
    
    /* Las cajas ocupan todo el ancho */
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    
    /* Aseguramos que todas sean "derecha" visualmente */
    .left, .right { left: 0; }
    
    /* Mover los círculos */
    .timeline-item::after { left: 21px; } /* Ajuste del círculo */
    .right::after { left: 21px; }
}

/* =========================================
   PROTOCOLO WEB FUTURISTA (DIAGRAMA DE RED)
   ========================================= */
.web-protocol-section {
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
    /* Fondo sutil de circuito */
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 243, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(188, 19, 254, 0.05) 0%, transparent 20%);
}

.protocol-header {
    text-align: center; margin-bottom: 80px; position: relative; z-index: 2;
}
.protocol-subtitle {
    font-family: 'Courier New', monospace; color: var(--text-gray); letter-spacing: 2px;
    font-size: 0.9rem; margin-top: 10px; opacity: 0.7;
}
/* Efecto de parpadeo en el subtítulo */
.protocol-subtitle { animation: blink-text 2s infinite; }
@keyframes blink-text { 0%, 100% { opacity: 0.7; } 50% { opacity: 0.3; } }


/* --- RED DE NODOS (GRID) --- */
.network-grid {
    display: flex; flex-direction: column; gap: 60px;
    max-width: 900px; margin: 0 auto; position: relative;
}
/* Línea central vertical invisible para guiar */
.network-grid::before {
    content: ''; position: absolute; left: 50%; top: 0; height: 100%; width: 2px;
    background: linear-gradient(to bottom, transparent, var(--cyan), var(--purple), transparent);
    opacity: 0.2; transform: translateX(-50%); z-index: 0;
}


/* --- CONTENEDOR DEL NODO (La estructura) --- */
.node-container {
    display: flex; align-items: center; position: relative; z-index: 2;
    width: 100%;
}
/* Clase para invertir el orden (Fase 2 y 4) */
.node-reverse { flex-direction: row-reverse; }


/* --- TARJETA DEL NODO (El diseño) --- */
.node-card {
    width: 45%; /* Ocupa casi la mitad */
    background: rgba(10, 10, 16, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 25px; position: relative;
    backdrop-filter: blur(10px);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    transition: 0.4s;
}
.node-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
    transform: translateY(-5px);
}

/* Cabecera de la tarjeta */
.node-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px;
}
.node-id { font-family: 'Orbitron'; color: var(--cyan); font-size: 0.9rem; letter-spacing: 1px; }

/* Estados (Online, Processing, etc.) */
.node-status {
    font-size: 0.7rem; font-weight: bold; padding: 3px 8px; border-radius: 4px;
    text-transform: uppercase; letter-spacing: 1px;
}
.status-green { background: rgba(0, 243, 255, 0.2); color: var(--cyan); box-shadow: 0 0 10px rgba(0,243,255,0.2); }
.status-yellow { background: rgba(255, 200, 0, 0.2); color: #ffc800; }
.status-red { background: rgba(255, 0, 85, 0.2); color: #ff0055; }
.status-blue { background: rgba(0, 100, 255, 0.2); color: #0064ff; }

/* Contenido */
.node-icon { font-size: 2.5rem; color: var(--cyan); margin-bottom: 15px; text-shadow: 0 0 15px currentColor; }
.node-card h3 { font-family: 'Orbitron'; font-size: 1.2rem; margin-bottom: 10px; }
.node-card p { font-size: 0.9rem; color: #aaa; line-height: 1.6; }

/* Flujo de Datos (Barra de progreso falsa) */
.data-stream { margin-top: 20px; }
.data-stream span { font-family: 'Courier New'; font-size: 0.7rem; color: var(--text-gray); display: block; margin-bottom: 5px; }
.progress-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.progress { height: 100%; background: var(--cyan); box-shadow: 0 0 10px currentColor; animation: progress-glow 2s infinite alternate; }
@keyframes progress-glow { 0% { opacity: 0.5; } 100% { opacity: 1; } }

/* Anchos de las barras */
.w-100 { width: 100%; } .w-50 { width: 50%; } .w-25 { width: 25%; } .w-0 { width: 5%; }


/* --- LÍNEAS CONECTORAS HOLOGRÁFICAS --- */
.connector-line {
    position: absolute; top: 50%; height: 2px; width: 55%; /* Conecta hasta el centro */
    background: linear-gradient(90deg, var(--cyan), transparent);
    z-index: 0; opacity: 0.5;
}
.line-right { left: 45%; } /* Sale de la tarjeta izquierda hacia la derecha */
.line-left { right: 45%; transform: rotate(180deg); } /* Sale de la derecha hacia la izquierda */

/* Punto de conexión en el centro */
.connector-line::after {
    content: ''; position: absolute; right: 0; top: -4px; width: 10px; height: 10px;
    background: var(--dark-bg); border: 2px solid var(--cyan); border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(0,243,255,0.7); } 100% { box-shadow: 0 0 0 10px rgba(0,243,255,0); } }


/* --- RESPONSIVE (CELULARES) --- */
@media (max-width: 768px) {
    .network-grid { gap: 40px; }
    /* En celular, todo en una sola columna */
    .node-container { flex-direction: column; width: 100%; }
    .node-card { width: 100%; clip-path: none; border-radius: 8px; }
    
    /* Ocultamos las líneas conectoras complejas y la central */
    .connector-line, .network-grid::before { display: none; }
    
    /* Agregamos una flecha simple hacia abajo entre tarjetas */
    .node-container:not(:last-child)::after {
        content: '▼'; display: block; text-align: center; color: var(--cyan);
        font-size: 1.5rem; margin-top: 20px; opacity: 0.5; animation: bounce-arrow 2s infinite;
    }
    @keyframes bounce-arrow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
}
