*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

width:100%;

background:#050505;

font-family:'Outfit',sans-serif;

position:relative;
}

/* Glow */

.ambient{

position:absolute;

border-radius:50%;

filter:blur(180px);

pointer-events:none;
}

.ambient-left{

width:850px;
height:850px;

background:
radial-gradient(circle,
rgba(163,255,18,.09),
transparent 70%);

top:-350px;
left:-350px;

animation:floatLeft 8s ease-in-out infinite;
}

.ambient-right{

width:700px;
height:700px;

background:
radial-gradient(circle,
rgba(0,255,170,.055),
transparent 70%);

bottom:-280px;
right:-280px;

animation:floatRight 10s ease-in-out infinite;
}

/* Loader */

.loader{

position:relative;

width:100%;
height:100vh;

display:flex;
align-items:center;
justify-content:center;

overflow:hidden;

background:
radial-gradient(
ellipse at center,
rgba(163,255,18,.06),
transparent 65%
),
#050505;
}

/* Centro */

.center-content{

position:relative;

width:100%;
max-width:800px;

display:flex;
flex-direction:column;
align-items:center;

z-index:5;
}

/* Title */

.loader-title{

font-size:100px;
font-weight:700;

line-height:.88;

letter-spacing:-5px;

text-align:center;

color:white;

animation:
titleReveal 1.6s cubic-bezier(.77,0,.18,1);
}

/* Sub */

.loader-sub{

margin-top:28px;

font-size:16px;

letter-spacing:.5px;

color:#7e7e7e;

text-align:center;

animation:
subReveal 1.8s cubic-bezier(.77,0,.18,1);
}

/* Loading */

.loading-wrapper{

margin-top:65px;

width:260px;
}

/* Line */

.loading-line{

width:100%;
height:1px;

background:
rgba(255,255,255,.08);

overflow:hidden;

position:relative;
}

.loading-fill{

position:absolute;

top:0;
left:0;

height:100%;
width:0%;

background:#A3FF12;

box-shadow:
0 0 15px rgba(163,255,18,.35);

animation:
loadingBar 3s cubic-bezier(.77,0,.18,1) forwards;
}

/* Bottom */

.loading-bottom{

margin-top:16px;

display:flex;
justify-content:space-between;
align-items:center;
}

/* Text */

.loading-text{

font-size:10px;

letter-spacing:4px;

color:#666666;
}

/* Percent */

.percent{

font-size:11px;
font-weight:600;

color:white;
}

/* Transition */

.screen-transition{

position:absolute;
inset:0;

background:#050505;

transform:translateY(100%);

z-index:999;

transition:
transform 1s cubic-bezier(.77,0,.18,1);
}

.screen-transition.active{

transform:translateY(0%);
}

/* Animations */

@keyframes loadingBar{

0%{
width:0%;
}

100%{
width:100%;
}
}

@keyframes titleReveal{

0%{

opacity:0;

transform:
translateY(60px)
scale(.96);

filter:blur(10px);
}

100%{

opacity:1;

transform:
translateY(0px)
scale(1);

filter:blur(0px);
}
}

@keyframes subReveal{

0%{
opacity:0;
transform:translateY(25px);
}

100%{
opacity:1;
transform:translateY(0px);
}
}

@keyframes lineReveal{

0%{
width:0px;
opacity:0;
}

100%{
width:80px;
opacity:1;
}
}

@keyframes floatLeft{

0%{
transform:translate(0px,0px);
}

50%{
transform:translate(30px,20px);
}

100%{
transform:translate(0px,0px);
}
}

@keyframes floatRight{

0%{
transform:translate(0px,0px);
}

50%{
transform:translate(-30px,-20px);
}

100%{
transform:translate(0px,0px);
}
}

/* Responsive */

@media(max-width:768px){

.loader-title{

font-size:56px;

letter-spacing:-2px;
}

.loader-sub{

font-size:14px;

padding:0 20px;
}

.loading-wrapper{

width:200px;
}

}

/* ESTILO GLOBAL */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
overflow-x:hidden;
overflow-x:clip;
max-width:100%;
}

body{

background:#050505;

font-family:'Outfit',sans-serif;

overflow-x:hidden;
overflow-x:clip;

color:white;
}

/* Glow fondo */

.bg-noise{

position:fixed;
inset:0;

pointer-events:none;

z-index:0;

background:

radial-gradient(
circle at 15% 20%,
rgba(163,255,18,.12),
transparent 30%
),

radial-gradient(
circle at 85% 70%,
rgba(0,255,170,.08),
transparent 30%
);
}

/* Cursor glow */

.cursor-glow{

position:fixed;

top:0;
left:0;

width:700px;
height:700px;

border-radius:50%;

pointer-events:none;

background:
radial-gradient(
circle,
rgba(163,255,18,.2) 0%,
rgba(163,255,18,.09) 30%,
rgba(163,255,18,0) 70%
);

filter:blur(45px);

transform:translate(-50%,-50%);

z-index:1;

mix-blend-mode:screen;
}

/* HEADER */

.header{

position:fixed;

top:0;
left:0;

width:100%;

height:88px;

padding:0 3.5%;

display:flex;
align-items:center;
justify-content:flex-end;

gap:70px;

z-index:1000;

background:
rgba(5,5,5,.32);

backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);

border-bottom:
1px solid rgba(255,255,255,.04);

box-shadow:
0 10px 40px rgba(0,0,0,.18);
}

/* LOGO */

.logo{

margin-right:auto;

display:flex;
align-items:center;

text-decoration:none;
}

.logo img{

width: 100px;

object-fit:contain;
}

/* NAV */

.nav{

display:flex;
align-items:center;

gap:10px;

height:100%;
}

/* LINKS */

.nav a{

position:relative;

display:flex;
align-items:center;
justify-content:center;

height:46px;

padding:0 18px;

text-decoration:none;

color:#d8d8d8;

font-size:14px;
font-weight:500;

border-radius:999px;

transition:
all .45s cubic-bezier(.19,1,.22,1);

overflow:hidden;
}

/* FONDO ANIMADO */

.nav a::before{

content:'';

position:absolute;

inset:0;

border-radius:999px;

background:
rgba(163,255,18,.12);

backdrop-filter:blur(10px);

-webkit-backdrop-filter:blur(10px);

opacity:0;

transform:
scale(.85);

transition:
all .45s cubic-bezier(.19,1,.22,1);

z-index:-1;
}

/* HOVER */

.nav a:hover{

color:#fff;

transform:
translateY(-2px)
scale(1.03);
}

/* BURBUJA */

.nav a:hover::before{

opacity:1;

transform:
scale(1);
}

/* ACTIVE */

.nav a.active{

color:#A3FF12;
}

/* ACTIVE HOVER */

.nav a.active:hover{

color:#A3FF12;
}

/* BUTTON */

.header-btn{

height:50px;

padding:0 28px;

display:flex;
align-items:center;
justify-content:center;

background:#A3FF12;

border-radius:999px;

text-decoration:none;

color:#000;

font-size:14px;
font-weight:600;

white-space:nowrap;

transition:
all .35s cubic-bezier(.19,1,.22,1);
}

/* BUTTON HOVER */

.header-btn:hover{

transform:translateY(-3px);

background:white;

box-shadow:
0 15px 35px rgba(163,255,18,.18);
}

/* ACCIONES DEL HEADER (idioma + CTA + hamburguesa) */

.header-actions{

display:flex;

align-items:center;

gap:14px;
}

/* BOTON DE IDIOMA */

.lang-toggle{

height:42px;

padding:0 18px;

display:flex;
align-items:center;
justify-content:center;

border-radius:999px;

background:
rgba(255,255,255,.04);

border:
1px solid rgba(255,255,255,.1);

color:#d8d8d8;

font-family:'Outfit',sans-serif;

font-size:13px;
font-weight:600;

letter-spacing:.5px;

cursor:pointer;

transition:
all .35s cubic-bezier(.19,1,.22,1);
}

.lang-toggle:hover{

border-color:rgba(163,255,18,.4);

color:#A3FF12;

transform:translateY(-2px);
}

/* MENU MOVIL - HAMBURGUESA */

.menu-toggle{

display:none;

width:42px;
height:42px;

flex-direction:column;
align-items:center;
justify-content:center;

gap:5px;

background:
rgba(255,255,255,.04);

border:
1px solid rgba(255,255,255,.1);

border-radius:14px;

cursor:pointer;

flex-shrink:0;
}

.menu-toggle span{

width:20px;
height:2px;

border-radius:2px;

background:#fff;

transition:
all .35s cubic-bezier(.19,1,.22,1);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1){

transform:translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2){

opacity:0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3){

transform:translateY(-7px) rotate(-45deg);
}

/* BLOQUEA EL SCROLL DE FONDO CON EL MENU ABIERTO */

body.nav-locked{

overflow:hidden;
}

/* RESPONSIVE */

@media(max-width:1024px){

.nav{

position:fixed;

top:88px;

left:0;
right:0;

height:auto;

max-height:calc(100vh - 88px);

overflow-y:auto;

display:flex;
flex-direction:column;

gap:4px;

padding:22px 7% 32px;

background:rgba(5,5,5,.97);

backdrop-filter:blur(20px);
-webkit-backdrop-filter:blur(20px);

border-bottom:
1px solid rgba(255,255,255,.06);

opacity:0;

transform:translateY(-14px);

pointer-events:none;

transition:
all .4s cubic-bezier(.19,1,.22,1);

z-index:999;
}

.nav.is-open{

opacity:1;

transform:translateY(0);

pointer-events:auto;
}

.nav a{

height:54px;

justify-content:flex-start;

padding:0 16px;

font-size:16px;
}

.nav a::before{

border-radius:16px;
}


.header-btn{
display:none;
}

.menu-toggle{
display:flex;
}

.logo img{
width:105px;
}

}

/* NAV CENTRADO EN ESCRITORIO */

@media(min-width:1025px){

.nav{

position:absolute;

left:50%;

top:0;

transform:translateX(-50%);

}

}

/* ICONOS DE REDES SOCIALES FOOTER */

.footer-social{

display:flex;

gap:18px;

margin-top:35px;

}

.footer-social a{

width:42px;

height:42px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:rgba(255,255,255,.03);

border:1px solid rgba(255,255,255,.08);

color:#9b9b9b;

text-decoration:none;

transition:.35s;

}

.footer-social a:hover{

transform:translateY(-4px);

border-color:#a4ff00;

color:#a4ff00;

box-shadow:0 0 20px rgba(164,255,0,.15);

}

.footer-social svg{

width:18px;

height:18px;

}

/* FINAL ICONOS REDES SOCIALES */

/* ===================================================== */
/* REVEAL ON SCROLL - compartido en todas las páginas     */
/* ver reveal.js. Solo transform/opacity (GPU-friendly)   */
/* ===================================================== */

.reveal{

opacity:0;

transform:translateY(36px);

transition:
opacity .7s cubic-bezier(.19,1,.22,1),
transform .7s cubic-bezier(.19,1,.22,1);

will-change:transform,opacity;
}

.reveal.is-visible{

opacity:1;

transform:translateY(0);
}

/* Variante para elementos que entran desde la izquierda/derecha */

.reveal-left{

transform:translateX(-44px);
}

.reveal-left.is-visible{

transform:translateX(0);
}

.reveal-right{

transform:translateX(44px);
}

.reveal-right.is-visible{

transform:translateX(0);
}

/* Variante sutil de escala, para tarjetas e imágenes */

.reveal-scale{

transform:
translateY(24px)
scale(.96);
}

.reveal-scale.is-visible{

transform:
translateY(0)
scale(1);
}

@media(prefers-reduced-motion: reduce){

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale{

transition:opacity .4s ease;

transform:none !important;
}

}