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

body{
    min-height:100vh;

    font-family:Arial, Helvetica, sans-serif;

    background:
    radial-gradient(
        circle at top,
        rgba(217,191,105,.08),
        transparent 45%
    ),
    linear-gradient(
        rgba(11,18,32,.82),
        rgba(11,18,32,.82)
    ),
    url("/recursos/imagenes/fondo.webp");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.linea-terminal{
    color:#7ef29a;
    font-size:14px;
    font-family:
        Consolas,
        Monaco,
        monospace;
    margin-bottom:8px;
}

.espacio-terminal{
    margin-top:18px;
}

.barra-monitor{
    width:100%;
    height:14px;
    background:
        rgba(
            255,
            255,
            255,
            .06
        );
    border-radius:999px;
    overflow:hidden;
    margin-top:8px;
}

.barra-monitor-progreso{
    width:0%;
    height:100%;
    border-radius:999px;
    background:#33cc66;
    transition:
        width .6s ease,
        background-color .3s ease;
}

.texto-barra{
    color:#7ef29a;
    font-size:13px;
    margin-top:6px;
    font-family:
        Consolas,
        Monaco,
        monospace;
}

.pill-visitas{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    margin-bottom:30px;
    border-radius:999px;
    background:rgba(
        255,
        255,
        255,
        .05
    );
    border:1px solid rgba(
        255,
        255,
        255,
        .08
    );
    color:white;
    font-size:14px;
    font-weight:600;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
}

.pill-icono{
    width:18px;
    height:18px;
    display:block;
}

.logo-principal{
    width:100%;
    max-width:700px;
    display:block;
    margin:0 auto 30px auto;

    filter:
        drop-shadow(
            0 0 25px
            rgba(217,191,105,.15)
        );
}

.cabecera{
    width:calc(100% - 60px);
    max-width:1200px;

    height:72px;

    position:fixed;

    top:20px;
    left:30px;
    right:30px;

    margin:auto;

    z-index:99999;

    border-radius:999px;

    background:rgba(11,18,32,.55);

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

    border:1px solid rgba(217,191,105,.20);

    box-shadow:
        0 10px 40px rgba(0,0,0,.25),
        0 0 30px rgba(217,191,105,.04);

    display:flex;
    align-items:flex-end;

    padding:0 20px 14px 20px;
}

.boton-menu{
    background:none;
    border:none;
    color:white;
    font-size:24px;
    cursor:pointer;

    margin-left:6px;
}

.marca{
    position:absolute;

    left:50%;

    transform:translateX(-50%);

    font-size:16px;

    font-weight:700;

    background:linear-gradient(
        180deg,
        #f2df9b 0%,
        #d9bf69 35%,
        #b8943e 65%,
        #8c6c2d 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    background-clip:text;

    pointer-events:none;
}

.menu-desplegable{
    position:fixed;
    top:95px;
    left:20px;
    right:20px;
    z-index:999;
    width:auto;

    background:rgba(18,24,39,.95);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

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

    box-shadow:
    0 25px 60px rgba(
        0,
        0,
        0,
        .45
    );

    border-radius:32px;

    overflow:hidden;

    opacity:0;

    transform:translateY(-10px);

    pointer-events:none;

    transition:
        opacity .18s ease,
        transform .18s ease;
}

.menu-desplegable.abierto{
    opacity:1;

    transform:translateY(0);

    pointer-events:auto;
}

.item-menu{
    display:flex;
    align-items:center;
    gap:14px;

    padding:16px 18px;

    color:rgba(255,255,255,.88);

    text-decoration:none;

    transition:.2s;
}

.item-menu:hover{
    background:rgba(
        255,
        255,
        255,
        .05
    );
    padding-left:26px;
}

.icono-menu{
    width:22px;

    height:22px;

    flex-shrink:0;

    display:block;
}

/* PRESENTACIÓN */

.presentacion{
    width:calc(100% - 40px);
    max-width:900px;
    margin:140px auto 0 auto;
    text-align:center;
    position:relative;
}

.presentacion::before{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    left:50%;
    top:-120px;

    transform:translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(217,191,105,.10),
            transparent 70%
        );

    pointer-events:none;
    z-index:-1;
}

.titulo-principal{
    font-size:64px;
    font-weight:700;
    margin-bottom:25px;
    background:linear-gradient(
        180deg,
        #f2df9b 0%,
        #d9bf69 35%,
        #b8943e 65%,
        #8c6c2d 100%
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    text-shadow:
        0 0 30px rgba(
            217,
            191,
            105,
            .18
        );
}

.descripcion-principal{
    color:rgba(255,255,255,.82);

    font-size:18px;

    line-height:1.9;

    margin-bottom:18px;
}

.frase-principal{
    margin-top:35px;

    color:#d9bf69;

    font-size:22px;

    font-weight:600;

    line-height:1.6;
}

/* CONTENIDO PRINCIPAL */

.contenido-principal{
    margin-top:30px;

    min-height:1000px;

    background:#141c2d;

    border-top-left-radius:40px;
    border-top-right-radius:40px;

    border-top:1px solid rgba(217,191,105,.10);

    position:relative;

    z-index:2;
}

/* INFRAESTRUCTURA */

.infraestructura{
    width:calc(100% - 40px);

    max-width:1100px;

    margin:0 auto;

    padding:80px 0;
}

.titulo-seccion{
    color:white;

    text-align:center;

    font-size:38px;

    letter-spacing:-1px;

    margin-bottom:15px;
}

.subtitulo-seccion{
    text-align:center;

    color:rgba(255,255,255,.50);

    font-size:16px;

    margin-bottom:50px;
}

.grid-infraestructura{
    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:20px;
}

.tarjeta-infraestructura{
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.02)
        );

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

    border-radius:24px;

    padding:24px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.12);

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.tarjeta-infraestructura:hover{
    transform:
        translateY(-10px)
        scale(1.02);

    border-color:
        rgba(217,191,105,.35);

    background:
        rgba(217,191,105,.03);

    box-shadow:
        0 0 35px rgba(217,191,105,.12);
}

.icono-infraestructura{
    width:58px;

    height:58px;

    margin-bottom:18px;

    display:block;
}

.tarjeta-infraestructura h3{
    color:#d9bf69;

    margin-bottom:12px;

    font-size:20px;

    font-weight:600;
}

.tarjeta-infraestructura p{
    color:rgba(255,255,255,.55);

    line-height:1.7;

    font-size:15px;
}

.terminal-seccion{
    width:calc(100% - 40px);

    max-width:1100px;

    margin:0 auto;

    padding:20px 0 80px 0;
}

.terminal{
    position:relative;
    overflow:hidden;

    border-radius:24px;

    border:1px solid rgba(126,242,154,.12);

    background:#0b0f18;

    box-shadow:
        0 0 40px rgba(126,242,154,.05),
        0 10px 35px rgba(0,0,0,.30);
}

.terminal::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            transparent,
            rgba(
                126,
                242,
                154,
                .03
            )
        );
    pointer-events:none;
}

.terminal-barra{
    height:42px;

    display:flex;

    align-items:center;

    gap:8px;

    padding:0 16px;

    background:#141c2d;

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

.circulo{
    width:12px;

    height:12px;

    border-radius:50%;
}

.rojo{
    background:#ff5f57;
}

.amarillo{
    background:#febc2e;
}

.verde{
    background:#28c840;
}

.terminal-contenido{
    padding:25px;
}

.terminal-contenido pre{
    color:#7ef29a;

    font-size:14px;

    line-height:1.3;

    white-space:pre-wrap;

    font-family:
        Consolas,
        Monaco,
        monospace;
}

.cursor{
    display:inline-block;

    width:10px;

    height:18px;

    background:#7ef29a;

    animation:pulsar 1s infinite;
}

@keyframes pulsar{

    0%{
        opacity:1;
    }

    50%{
        opacity:0;
    }

    100%{
        opacity:1;
    }

}


.porque-elegir{
    width:calc(100% - 40px);

    max-width:1100px;

    margin:0 auto;

    padding:30px 0 80px;
}

.grid-beneficios{
    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:20px;
}

.tarjeta-beneficio{
    background:rgba(255,255,255,.025);

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

    border-radius:24px;

    padding:28px;

    transition:
        transform .2s ease,
        border-color .2s ease;
}

.tarjeta-beneficio:hover{
    transform:translateY(-10px);
    border-color:rgba(
        217,
        191,
        105,
        .35
    );
    box-shadow:
        0 0 35px rgba(
            217,
            191,
            105,
            .12
        );
}

.icono-beneficio{
    font-size:34px;

    margin-bottom:16px;
}

.tarjeta-beneficio h3{
    color:#d9bf69;

    margin-bottom:12px;

    font-size:22px;
}

.tarjeta-beneficio p{
    color:rgba(255,255,255,.55);

    line-height:1.7;
}

.pie-pagina{
    margin-top:40px;

    padding:60px 20px;

    text-align:center;

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

    background:#101724;
}

.footer-logo{
    font-size:22px;

    font-weight:700;

    margin-bottom:20px;

    color:#d9bf69;
}

.footer-enlaces{
    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:25px;

    margin-bottom:20px;
}

.footer-enlaces a{
    color:rgba(255,255,255,.70);

    text-decoration:none;

    transition:.2s;
}

.footer-enlaces a:hover{
    color:#d9bf69;
}

.footer-copy{
    color:rgba(255,255,255,.40);

    font-size:14px;
}
