:root {
            --fondo-principal: #050914;
            --fondo-secundario: #091323;
            --fondo-tarjeta: rgba(13, 26, 45, 0.78);
            --borde: rgba(97, 230, 255, 0.18);
            --cian: #50efff;
            --cian-claro: #a9f8ff;
            --dorado: #ffd66b;
            --blanco: #ffffff;
            --texto: #d8e6f4;
            --texto-suave: #8ea6bc;
            --verde: #36e49a;
            --rojo: #ff6b7a;
            --sombra: 0 25px 70px rgba(0, 0, 0, 0.45);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            min-height: 100vh;
            font-family:
                Inter,
                ui-sans-serif,
                system-ui,
                -apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                sans-serif;
            color: var(--texto);
            background:
                radial-gradient(
                    circle at 20% 10%,
                    rgba(21, 116, 157, 0.22),
                    transparent 34%
                ),
                radial-gradient(
                    circle at 82% 30%,
                    rgba(32, 207, 214, 0.10),
                    transparent 28%
                ),
                linear-gradient(
                    145deg,
                    var(--fondo-secundario),
                    var(--fondo-principal) 55%,
                    #02040a
                );
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -2;
            opacity: 0.18;
            pointer-events: none;
            background-image:
                radial-gradient(circle, #ffffff 1px, transparent 1px);
            background-size: 54px 54px;
        }

        body::after {
            content: "";
            position: fixed;
            width: 430px;
            height: 430px;
            right: -180px;
            top: 28%;
            z-index: -1;
            border-radius: 50%;
            background: rgba(36, 215, 240, 0.08);
            filter: blur(95px);
            pointer-events: none;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .contenedor {
            width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
        }

        /* CABECERA */

        .cabecera {
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(5, 9, 20, 0.75);
            backdrop-filter: blur(18px);
        }

        .cabecera-contenido {
            min-height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .marca {
            display: flex;
            align-items: center;
            gap: 13px;
        }

        .marca-icono {
            width: 43px;
            height: 43px;
            display: grid;
            place-items: center;
            position: relative;
            border: 1px solid rgba(80, 239, 255, 0.45);
            border-radius: 13px;
            color: var(--cian);
            font-size: 22px;
            font-weight: 800;
            background:
                linear-gradient(
                    145deg,
                    rgba(80, 239, 255, 0.16),
                    rgba(255, 255, 255, 0.03)
                );
            box-shadow: 0 0 28px rgba(80, 239, 255, 0.16);
        }

        .marca-icono::after {
            content: "";
            position: absolute;
            width: 7px;
            height: 7px;
            right: 5px;
            top: 5px;
            border-radius: 50%;
            background: var(--dorado);
            box-shadow: 0 0 12px var(--dorado);
        }

        .marca-texto strong {
            display: block;
            color: var(--blanco);
            font-size: 18px;
            letter-spacing: 0.08em;
        }

        .marca-texto span {
            display: block;
            margin-top: 2px;
            color: var(--texto-suave);
            font-size: 11px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .navegacion {
            display: flex;
            align-items: center;
            gap: 28px;
            font-size: 14px;
            color: var(--texto-suave);
        }

        .navegacion a {
            transition:
                color 0.25s ease,
                transform 0.25s ease;
        }

        .navegacion a:hover {
            color: var(--cian-claro);
            transform: translateY(-1px);
        }

        /* HERO */

        .hero {
            min-height: calc(100vh - 78px);
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            align-items: center;
            gap: 70px;
            padding: 75px 0 90px;
        }

        .estado {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
            padding: 9px 15px;
            border: 1px solid rgba(54, 228, 154, 0.25);
            border-radius: 999px;
            color: #a6f8d4;
            background: rgba(54, 228, 154, 0.08);
            font-size: 13px;
            font-weight: 650;
        }

        .estado-punto {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--verde);
            box-shadow: 0 0 0 0 rgba(54, 228, 154, 0.55);
            animation: pulso 2s infinite;
        }

        @keyframes pulso {
            0% {
                box-shadow: 0 0 0 0 rgba(54, 228, 154, 0.52);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(54, 228, 154, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(54, 228, 154, 0);
            }
        }

        .hero h1 {
            max-width: 760px;
            color: var(--blanco);
            font-size: clamp(48px, 7vw, 88px);
            line-height: 0.97;
            letter-spacing: -0.055em;
        }

        .hero h1 span {
            display: block;
            margin-top: 12px;
            background:
                linear-gradient(
                    90deg,
                    var(--dorado),
                    #ffffff 47%,
                    var(--cian)
                );
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-subtitulo {
            margin-top: 28px;
            color: var(--cian-claro);
            font-size: clamp(18px, 2vw, 24px);
            font-weight: 650;
        }

        .hero-descripcion {
            max-width: 690px;
            margin-top: 18px;
            color: var(--texto-suave);
            font-size: 17px;
            line-height: 1.75;
        }

        .botones {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 34px;
        }

        .boton {
            min-height: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 23px;
            border-radius: 13px;
            font-size: 14px;
            font-weight: 750;
            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;
        }

        .boton:hover {
            transform: translateY(-3px);
        }

        .boton-principal {
            color: #031014;
            background:
                linear-gradient(
                    90deg,
                    var(--dorado),
                    var(--cian)
                );
            box-shadow: 0 12px 38px rgba(80, 239, 255, 0.18);
        }

        .boton-secundario {
            border: 1px solid rgba(255, 255, 255, 0.14);
            color: var(--blanco);
            background: rgba(255, 255, 255, 0.04);
        }

        .boton-secundario:hover {
            border-color: rgba(80, 239, 255, 0.42);
        }

        /* IMAGEN PRINCIPAL */

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .logo-marco {
			width: min(100%, 360px);
			position: relative;
			padding: 8px;
			border: 1px solid rgba(80, 239, 255, 0.18);
			border-radius: 24px;
			background:
				linear-gradient(
					145deg,
					rgba(255, 255, 255, 0.06),
					rgba(255, 255, 255, 0.015)
				);
			box-shadow: var(--sombra);
			animation: flotando 6s ease-in-out infinite;
		}

        .logo-marco::before {
            content: "";
            position: absolute;
            inset: -1px;
            z-index: -1;
            border-radius: inherit;
            background:
                linear-gradient(
                    135deg,
                    rgba(255, 214, 107, 0.25),
                    transparent 35%,
                    rgba(80, 239, 255, 0.20)
                );
            filter: blur(20px);
        }

        .logo-marco img {
			width: 100%;
			height: auto;
			max-height: 560px;
			display: block;
			object-fit: contain;
			border-radius: 18px;
		}

        @keyframes flotando {
            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        .etiqueta-version {
            position: absolute;
            right: -12px;
            bottom: 35px;
            padding: 14px 18px;
            border: 1px solid rgba(80, 239, 255, 0.23);
            border-radius: 15px;
            background: rgba(5, 13, 25, 0.92);
            box-shadow: 0 16px 45px rgba(0, 0, 0, 0.38);
        }

        .etiqueta-version span {
            display: block;
            color: var(--texto-suave);
            font-size: 11px;
            letter-spacing: 0.13em;
            text-transform: uppercase;
        }

        .etiqueta-version strong {
            display: block;
            margin-top: 4px;
            color: var(--cian);
            font-size: 19px;
        }

        /* SECCIONES */

        .seccion {
            padding: 100px 0;
        }

        .seccion-oscura {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(255, 255, 255, 0.018);
        }

        .titulo-seccion {
            max-width: 740px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .titulo-seccion span {
            color: var(--cian);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .titulo-seccion h2 {
            margin-top: 12px;
            color: var(--blanco);
            font-size: clamp(31px, 4vw, 48px);
            letter-spacing: -0.035em;
        }

        .titulo-seccion p {
            margin-top: 17px;
            color: var(--texto-suave);
            font-size: 16px;
            line-height: 1.7;
        }

        .tarjetas {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .tarjeta {
            position: relative;
            min-height: 220px;
            padding: 27px;
            overflow: hidden;
            border: 1px solid var(--borde);
            border-radius: 20px;
            background: var(--fondo-tarjeta);
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.17);
            transition:
                transform 0.3s ease,
                border-color 0.3s ease,
                background 0.3s ease;
        }

        .tarjeta:hover {
            transform: translateY(-7px);
            border-color: rgba(80, 239, 255, 0.42);
            background: rgba(15, 31, 53, 0.93);
        }

        .tarjeta-numero {
            color: rgba(80, 239, 255, 0.20);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.12em;
        }

        .tarjeta-icono {
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            margin-top: 24px;
            border-radius: 14px;
            color: var(--cian);
            font-size: 22px;
            background: rgba(80, 239, 255, 0.09);
        }

        .tarjeta h3 {
            margin-top: 20px;
            color: var(--blanco);
            font-size: 18px;
        }

        .tarjeta p {
            margin-top: 12px;
            color: var(--texto-suave);
            font-size: 14px;
            line-height: 1.65;
        }


        /* RESULTADOS */

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

        .resultado-tarjeta {
            min-height: 100%;
            display: flex;
            flex-direction: column;
            padding: 29px;
            border: 1px solid var(--borde);
            border-radius: 22px;
            background:
                linear-gradient(
                    145deg,
                    rgba(15, 31, 53, 0.92),
                    rgba(7, 15, 28, 0.94)
                );
            box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
            transition:
                transform 0.3s ease,
                border-color 0.3s ease;
        }

        .resultado-tarjeta:hover {
            transform: translateY(-7px);
            border-color: rgba(80, 239, 255, 0.42);
        }

        .resultado-icono {
            width: 54px;
            height: 54px;
            display: grid;
            place-items: center;
            border-radius: 16px;
            color: var(--cian);
            background: rgba(80, 239, 255, 0.09);
            font-size: 24px;
        }

        .resultado-tarjeta h3 {
            margin-top: 21px;
            color: var(--blanco);
            font-size: 21px;
        }

        .resultado-tarjeta > p {
            margin-top: 13px;
            color: var(--texto-suave);
            font-size: 14px;
            line-height: 1.7;
        }

        .resultado-datos {
            display: grid;
            gap: 11px;
            margin-top: 23px;
        }

        .resultado-dato {
            display: flex;
            justify-content: space-between;
            gap: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.065);
            color: var(--texto-suave);
            font-size: 13px;
        }

        .resultado-dato strong {
            color: var(--blanco);
            text-align: right;
        }

        .resultado-metricas {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 23px;
        }

        .resultado-metrica {
            padding: 14px;
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.025);
        }

        .resultado-metrica span {
            display: block;
            color: var(--texto-suave);
            font-size: 11px;
            line-height: 1.4;
        }

        .resultado-metrica strong {
            display: block;
            margin-top: 6px;
            color: var(--cian-claro);
            font-size: 16px;
        }

        .resultado-acciones {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: auto;
            padding-top: 25px;
        }

        .resultado-acciones .boton {
            min-height: 45px;
            padding: 0 18px;
            font-size: 13px;
        }

        /* ESTADO DEL DESARROLLO */

        .panel-desarrollo {
            display: grid;
            grid-template-columns: 1fr 0.75fr;
            gap: 28px;
            padding: 38px;
            border: 1px solid var(--borde);
            border-radius: 26px;
            background:
                linear-gradient(
                    135deg,
                    rgba(14, 29, 50, 0.90),
                    rgba(7, 14, 27, 0.90)
                );
            box-shadow: var(--sombra);
        }

        .panel-desarrollo h3 {
            color: var(--blanco);
            font-size: 30px;
        }

        .panel-desarrollo p {
            margin-top: 12px;
            color: var(--texto-suave);
            line-height: 1.7;
        }

        .progreso-cabecera {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 31px;
            margin-bottom: 12px;
            font-size: 13px;
        }

        .progreso-cabecera strong {
            color: var(--cian);
        }

        .barra {
            height: 12px;
            overflow: hidden;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.07);
        }

        .barra-interior {
            width: 0;
            height: 100%;
            border-radius: inherit;
            background:
                linear-gradient(
                    90deg,
                    var(--dorado),
                    var(--cian)
                );
            box-shadow: 0 0 20px rgba(80, 239, 255, 0.40);
            animation: cargarBarra 1.8s ease forwards;
        }

        @keyframes cargarBarra {
            to {
                width: 45%;
            }
        }

        .lista-desarrollo {
            display: grid;
            gap: 13px;
        }

        .lista-elemento {
            display: flex;
            align-items: center;
            gap: 12px;
            min-height: 49px;
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 13px;
            background: rgba(255, 255, 255, 0.025);
            color: #bfd0df;
            font-size: 14px;
        }

        .lista-elemento span {
            width: 24px;
            height: 24px;
            display: grid;
            place-items: center;
            flex: 0 0 24px;
            border-radius: 50%;
            color: var(--cian);
            background: rgba(80, 239, 255, 0.10);
            font-size: 12px;
            font-weight: 800;
        }
		
		.lista-elemento.completado span {
			color: #36e49a;
			background: rgba(54,228,154,.12);
		}

		.lista-elemento.en-proceso span {
			color: #ffd66b;
			background: rgba(255,214,107,.12);
		}

		.lista-elemento.pendiente {
			opacity: .70;
		}

		.lista-elemento.pendiente span {
			color: #8ea6bc;
			background: rgba(142,166,188,.12);
		}

        /* AVISO */

        .aviso {
            padding: 26px;
            border: 1px solid rgba(255, 214, 107, 0.18);
            border-radius: 18px;
            color: #c4cfdb;
            background: rgba(255, 214, 107, 0.045);
            font-size: 13px;
            line-height: 1.75;
        }

        .aviso strong {
            color: var(--dorado);
        }

        /* PIE */

        .pie {
            padding: 32px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--texto-suave);
            font-size: 13px;
        }

        .pie-contenido {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .pie strong {
            color: var(--blanco);
        }


        /* FRANJA DE CONFIANZA */

        .franja-confianza {
            position: relative;
            z-index: 3;
            margin-top: -38px;
            padding-bottom: 38px;
        }

        .confianza-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            overflow: hidden;
            border: 1px solid rgba(80, 239, 255, 0.16);
            border-radius: 22px;
            background: rgba(7, 16, 30, 0.90);
            box-shadow: 0 22px 60px rgba(0, 0, 0, 0.30);
            backdrop-filter: blur(14px);
        }

        .confianza-item {
            padding: 22px 18px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.065);
        }

        .confianza-item:last-child {
            border-right: 0;
        }

        .confianza-item strong {
            display: block;
            color: var(--blanco);
            font-size: 18px;
        }

        .confianza-item span {
            display: block;
            margin-top: 6px;
            color: var(--texto-suave);
            font-size: 12px;
        }

        /* CÓMO FUNCIONA */

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

        .paso {
            position: relative;
            padding: 30px;
            border: 1px solid var(--borde);
            border-radius: 22px;
            background: var(--fondo-tarjeta);
        }

        .paso-numero {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border-radius: 13px;
            color: #031014;
            background: linear-gradient(90deg, var(--dorado), var(--cian));
            font-size: 14px;
            font-weight: 900;
        }

        .paso h3 {
            margin-top: 22px;
            color: var(--blanco);
            font-size: 20px;
        }

        .paso p {
            margin-top: 12px;
            color: var(--texto-suave);
            font-size: 14px;
            line-height: 1.7;
        }

        /* LICENCIA */

        .licencia-panel {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 34px;
            align-items: center;
            padding: 45px;
            border: 1px solid rgba(255, 214, 107, 0.22);
            border-radius: 28px;
            background:
                radial-gradient(
                    circle at 85% 20%,
                    rgba(255, 214, 107, 0.10),
                    transparent 28%
                ),
                linear-gradient(
                    135deg,
                    rgba(15, 31, 53, 0.95),
                    rgba(6, 13, 25, 0.96)
                );
            box-shadow: var(--sombra);
        }

        .licencia-panel h2 {
            color: var(--blanco);
            font-size: clamp(32px, 4vw, 48px);
            letter-spacing: -0.035em;
        }

        .licencia-panel > div > p {
            max-width: 670px;
            margin-top: 17px;
            color: var(--texto-suave);
            line-height: 1.75;
        }

        .licencia-lista {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px 18px;
            margin-top: 27px;
        }

        .licencia-lista div {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #c8d7e5;
            font-size: 14px;
        }

        .licencia-lista span {
            width: 23px;
            height: 23px;
            display: grid;
            place-items: center;
            flex: 0 0 23px;
            border-radius: 50%;
            color: var(--verde);
            background: rgba(54, 228, 154, 0.11);
            font-size: 12px;
            font-weight: 900;
        }

        .licencia-accion {
            padding: 28px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.035);
            text-align: center;
        }

        .licencia-accion small {
            color: var(--texto-suave);
            font-size: 12px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .licencia-accion strong {
            display: block;
            margin-top: 9px;
            color: var(--dorado);
            font-size: 26px;
        }

        .licencia-accion p {
            margin-top: 11px;
            color: var(--texto-suave);
            font-size: 13px;
            line-height: 1.6;
        }

        .licencia-accion .boton {
            width: 100%;
            margin-top: 21px;
        }

        /* PREGUNTAS FRECUENTES */

        .faq {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            gap: 14px;
        }

        .faq details {
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 17px;
            background: rgba(255, 255, 255, 0.025);
            overflow: hidden;
        }

        .faq summary {
            cursor: pointer;
            padding: 20px 22px;
            color: var(--blanco);
            font-size: 15px;
            font-weight: 700;
            list-style: none;
        }

        .faq summary::-webkit-details-marker {
            display: none;
        }

        .faq summary::after {
            content: "+";
            float: right;
            color: var(--cian);
            font-size: 20px;
            line-height: 1;
        }

        .faq details[open] summary::after {
            content: "−";
        }

        .faq p {
            padding: 0 22px 22px;
            color: var(--texto-suave);
            font-size: 14px;
            line-height: 1.75;
        }

        /* CTA FINAL */

        .cta-final {
            padding: 48px;
            border: 1px solid rgba(80, 239, 255, 0.20);
            border-radius: 28px;
            text-align: center;
            background:
                radial-gradient(
                    circle at 50% 0%,
                    rgba(80, 239, 255, 0.13),
                    transparent 48%
                ),
                rgba(10, 23, 41, 0.88);
            box-shadow: var(--sombra);
        }

        .cta-final h2 {
            color: var(--blanco);
            font-size: clamp(31px, 4vw, 47px);
            letter-spacing: -0.035em;
        }

        .cta-final p {
            max-width: 700px;
            margin: 16px auto 0;
            color: var(--texto-suave);
            line-height: 1.75;
        }

        .cta-final .botones {
            justify-content: center;
        }

        /* RESPONSIVE */

        @media (max-width: 1000px) {
            .hero {
                grid-template-columns: 1fr;
                gap: 55px;
                padding-top: 65px;
                text-align: center;
            }

            .hero-descripcion {
                margin-left: auto;
                margin-right: auto;
            }

            .botones {
                justify-content: center;
            }

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

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

            .confianza-item:nth-child(2) {
                border-right: 0;
            }

            .confianza-item:nth-child(-n+2) {
                border-bottom: 1px solid rgba(255, 255, 255, 0.065);
            }

            .licencia-panel {
                grid-template-columns: 1fr;
            }

            .panel-desarrollo {
                grid-template-columns: 1fr;
            }

            .logo-marco {
                max-width: 420px;
            }
        }

        @media (max-width: 720px) {
            .contenedor {
                width: min(100% - 28px, 1180px);
            }

            .cabecera-contenido {
                min-height: 70px;
            }

            .navegacion {
                display: none;
            }

            .hero {
                min-height: auto;
                padding: 60px 0 70px;
            }

            .hero h1 {
                font-size: clamp(48px, 17vw, 68px);
            }

            .hero-subtitulo {
                font-size: 19px;
            }

            .hero-descripcion {
                font-size: 15px;
            }

            .botones {
                flex-direction: column;
            }

            .boton {
                width: 100%;
            }

            .tarjetas,
            .resultados-grid,
            .pasos,
            .confianza-grid,
            .licencia-lista {
                grid-template-columns: 1fr;
            }

            .confianza-item {
                border-right: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.065);
            }

            .confianza-item:last-child {
                border-bottom: 0;
            }

            .licencia-panel,
            .cta-final {
                padding: 28px 22px;
            }

            .seccion {
                padding: 75px 0;
            }

            .panel-desarrollo {
                padding: 25px;
            }

            .etiqueta-version {
                right: 7px;
                bottom: 20px;
            }

            .pie-contenido {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                scroll-behavior: auto !important;
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
            }
        }
		
		.etiqueta-version small {
			display: block;
			margin-top: 2px;
			color: rgba(216,230,244,.60);
			font-size: 11px;
			font-weight: 400;
		}
