/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

/*::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}*/

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/*
Norma:

class {
  superiores (z-index, etc)

  tamaño total (height, etc.)

  tamaño exterior (margin, etc)

  tamaño interior (padding, etc)

  modificadores de caja (grid, etc)

  posisionamiento interior

  color de caja (background, etc)

  modficadores de texto (font-size, font-family, etc)

  color texto

}
  */

/* Posible nuevo cahuich.css */

/* Fin */

:root {
    /* Fondos */
    --fondo-primario: #000;
    --fondo-secundario: #111;

    /*paleta de colores; paleta tetrádica*/
    --color-one: #B032FB;
    --color-two: #41FA98;
    --color-three: #FAB32F;
    --color-three-sub: rgba(250, 179, 47, 0.2);
    --color-four: #A58956;
    --color-four-sub: rgba(165, 137, 86, 0.721) 56;
    --color-five: #6C547A;

    --titulo-portada: 10dvh;
    --titulo: 8dvh;


    --button-animation-duration: 0.2;
}

body {
    padding: 0;
    margin: 0;

    width: 100%;
    max-width: 100%;
    animation: opacityAnimacionParaPaginas5 .5s ease;

    background-color: var(--fondo-primario) !important;
}

@keyframes opacityAnimacionParaPaginas5 {
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}

/*@supports (
   (-webkit-background-clip: text) or (-webkit-text-fill-color: transparent)
 ) {
  b {
    background: linear-gradient(to right, orange, #FF008D);

    background-size: contain;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}*/

a[href]::after {
    content: " →";
}

.button {
    transition: filter .2s ease-in-out;
}

.button:hover {
    transition: filter .2s ease-in-out;
    filter: brightness(0.4);
}

.button-color-one {
    background-color: var(--color-one);
    border-color: var(--color-one);
}

.button-color-one:hover {
    background-color: var(--color-one);
    border-color: var(--color-one);
}

.button-color-two {
    background-color: var(--color-two);
    border-color: var(--color-three);
    color: #000;
}

.button-color-two:hover {
    background-color: var(--color-two);
    border-color: var(--color-one);
    color: #000;
}

.button-color-three {
    background-color: var(--color-two);
    border-color: var(--color-one);
}

.button-color-three:hover {
    background-color: var(--color-three);
    border-color: var(--color-three);
}

.button-color-four {
    background-color: var(--color-four);
    border-color: var(--color-one);
}

.button-color-four:hover {
    background-color: var(--color-four);
    border-color: var(--color-four);
}

.button-color-five {
    background-color: var(--color-five);
    border-color: var(--color-five);
}

.button-color-five:hover {
    background-color: var(--color-five);
    border-color: var(--color-five);
}

/* ==========================================================================
   Nav
   ========================================================================== */

#nav {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    margin: 0 auto;
    padding: 0 5%;

    display: grid;
    grid-template-columns: 20% 50% 30%;
    column-gap: 20px;
    row-gap: 20px;

    /*background-color: rgba(0, 0, 0, 0.8);*/
    background-color: transparent;


    color: #fff;

}

/*.scroll-down > #nav, .scroll-up > nav {
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
}
.scroll-down > #nav {
  transform: translateY(-100px);
  border-bottom: 1px dotted #444;
  transition: 1s all ease-in-out;
}
.scroll-up > #nav {
  transform: translateY(0);
  border-bottom: 1px dotted #444;
  transition: .5s all ease-in-out;
  padding: 5px 5%;
}*/
#nav .titulo {
    font-size: 2em;
    width: auto;
    margin: auto 0;
}

#nav .titulo a {
    cursor: pointer;
}

#nav .titulo b {
    color: var(--color-one);
}

#nav ul.left {
    text-align: left;
}

#nav ul.right {
    text-align: right;
}

#nav ul li {
    display: inline-block;
    align-content: center;
    height: 100%;
}

#nav ul li a:first-child {
    margin-left: 0;
}

#nav ul li a {
    padding: 0 5px;
    cursor: pointer;
    transition: 0.2s ease-in-out all;
}

#nav ul li a:hover {
    opacity: 20%;
    transition: 0.2s ease-in-out all;
}

#nav ul li a::after {
    content: none !important;
}

#nav ul li a#external-link::after {
    content: " →" !important;
}

#nav a {
    text-decoration: none;
}

/* ==========================================================================
   Nav-pag
   ========================================================================== */

#nav-pag {
    z-index: 999;
    position: absolute;
    bottom: 10px;
    left: 22.5%;
    width: 55%;
    height: auto;

    margin: 0 auto;
    padding: 0;

    display: grid;
    grid-template-columns: auto 20%;
    column-gap: 20px;
    row-gap: 20px;

    /*background-color: rgba(0, 0, 0, 0.8);*/
    background-color: inherit;

    color: #fff;
    text-align: center;
    border-radius: 10px;
    display: none;

    transition: opacity .5s ease-in-out, display .5s ease-in-out allow-discrete;
    opacity: 1%;
}

.nav-scroll {
    display: grid !important;
}

#nav-pag ul.left {
    text-align: left;
}

#nav-pag ul.right {
    text-align: right;
}

.scroll-down .nav-scroll, .scroll-up .nav-scroll {
    position: fixed !important;
    bottom: 10px !important;
    background-color: rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(20px) !important;
    opacity: 100% !important;
}

.scroll-down .nav-scroll {
    transform: translateY(100px);
    border-bottom: 1px dotted #444;
    transition: 1s all ease-in-out !important;
}

.scroll-up .nav-scroll {
    transform: translateY(0);
    border-bottom: 1px dotted #444;
    transition: .5s all ease-in-out !important;
}

#nav-pag ul li {
    display: inline-block;
    align-content: center;
}

#nav-pag ul li a:first-child {
    margin-left: 0;
}

#nav-pag ul li a {
    padding: 15px 15px;
    cursor: pointer;
    display: inline-block;
    transition: 0.2s ease-in-out all;
}

.scroll-down .nav-scroll ul li a {
    padding: 10px 15px !important;
    transition: 0.2s ease-in-out all;
}

#nav-pag ul li a:hover {
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    transition: 0.2s ease-in-out all;
}

#nav-pag ul li a::after {
    content: none !important;
}

#nav-pag ul li a#external-link::after {
    content: " →" !important;
}

#nav-pag a {
    text-decoration: none;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header-2 {
    width: 100%;
    height: 100dvh;
    align-content: center;
    text-align: center;
    --var-duration: 1.5s;
}

.header-2 .coleccion {
    width: 60%;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 100px;
}

.header-2 .caja {
    height: 40dvh;
    border-radius: 5px;
    font-size: 4dvh;
    align-content: center;
    z-index: -1;
}

.header-2 .caja-1 {
    background: linear-gradient(to right, var(--color-one), var(--color-three));
    transform: translateY(-100px);
    transition: .5s all ease-in-out;
    animation: caja-1-2 var(--var-duration) ease-in-out;
}

.header-2 .coleccion:hover .caja-1 {
    animation: caja-1 var(--var-duration) ease-in-out;
    animation-fill-mode: forwards;
    transition: .5s all ease-in-out;
}

@keyframes caja-1 {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes caja-1-2 {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-100px);
    }
}

.header-2 .caja-2 {
    background: linear-gradient(to right, var(--color-three), var(--color-three));
    color: #000;
    transform: translateY(100px);
    transition: .5s all ease-in-out;
    animation: caja-2-2 var(--var-duration) ease-in-out;
}

.header-2 .coleccion:hover .caja-2 {
    animation: caja-2 var(--var-duration) ease-in-out;
    animation-fill-mode: forwards;
    transition: .5s all ease-in-out;
}

@keyframes caja-2 {
    0% {
        transform: translateY(100px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes caja-2-2 {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(100px);
    }
}

.header-2 .caja-3 {
    background: linear-gradient(to right, var(--color-three), var(--color-four));
    transform: translateY(50px);
    transition: .5s all ease-in-out;
    animation: caja-3-2 var(--var-duration) ease-in-out;
}

.header-2 .coleccion:hover .caja-3 {
    animation: caja-3 var(--var-duration) ease-in-out;
    animation-fill-mode: forwards;
    transition: .5s all ease-in-out;
}

@keyframes caja-3 {
    0% {
        transform: translateY(50px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes caja-3-2 {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(50px);
    }
}

.header-2 .caja-4 {
    background: linear-gradient(to right, var(--color-four), var(--color-five));
    transition: .5s all ease-in-out;
    animation: caja-4-2 var(--var-duration) ease-in-out;
}

.header-2 .coleccion:hover .caja-4 {
    animation: caja-4 var(--var-duration) ease-in-out;
    animation-fill-mode: forwards;
    transition: .5s all ease-in-out;
}

@keyframes caja-4 {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-50px);
    }
    100% {
        transform: translateX(0px);
    }
}

@keyframes caja-4-2 {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-50px);
    }
    100% {
        transform: translateX(0px);
    }
}

.header-2 .titulo {
    font-weight: 900;
    font-size: var(--titulo-portada);
    margin-top: -50px;
    z-index: 2;
}

.header-2 .botones {
    margin-top: 50px;
}


/* ==========================================================================
   Header
   ========================================================================== */

.header {
    width: 100%;
    height: 100dvh;

    background-color: var(--fondo-secundario);
    /*background: linear-gradient(to right, rgb(255, 62, 62), #000,rgb(172, 0, 172), #000, rgb(68, 68, 255));*/
    /*background: rgb(0,103,172);*/
    /*background: linear-gradient(150deg, rgba(0,103,172,1) 0%, rgba(106,9,121,1) 52%, rgba(255,211,0,1) 100%);*/
    /*background: linear-gradient(150deg, rgba(0, 103, 172, 1) 0%, rgba(106, 9, 121, 1) 52%, rgb(149 64 0) 100%);*/

    color: #fff;

    /*animation: background-animacion 10s ease infinite;*/
}

/*@keyframes background-animacion {
  0% {
    background: linear-gradient(150deg, rgba(0, 103, 172, 1) 0%, rgba(106, 9, 121, 1) 52%, rgb(149 64 0) 100%);
  }
  50% {
    background: linear-gradient(150deg, rgba(0, 103, 172, 1) 0%, rgba(106, 9, 121, 1) 20%, rgb(149 64 0) 100%);
  }
  100% {
    background: linear-gradient(150deg, rgba(0, 103, 172, 1) 0%, rgba(106, 9, 121, 1)5%, rgb(149 64 0) 100%);
  }
}*/
.header .portada {
    /*height: calc(100% - 51px);*/

    /*padding-top: 51px;*/
    height: 100dvh;
    align-content: center;
    justify-content: center;


    /*background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);*/
}

.header .portada > .titulo {
    width: 80%;

    margin: 0 auto;

    font-size: 11dvh;
    font-weight: bold;
    line-height: 1.1;
}

/*.header .portada > .titulo span {
  border: 1px dashed solid #fff;
}*/
.header .portada > .sub-titulo {
    width: 80%;

    margin: 0 auto;

    font-size: 200%;
    font-weight: 200;
}

.header .portada > .titulo span, .header .portada > .sub-titulo span {
    color: var(--color-two);
}

/*@supports (
  (-webkit-background-clip: text) or (-webkit-text-fill-color: transparent)
) {
  .header .portada > .titulo span, .header .portada > .sub-titulo span {
    /*background: linear-gradient(to right, purple, #FF008D);*/
/*background: linear-gradient(to right, #0077af, #FF008D);
background-size: contain;
background-repeat: repeat;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}*/
.header .portada .botones {
    width: 80%;

    margin: 0 auto;
    margin-top: 50px;
}

.header .portada .botones #description {
    margin-right: 10px;
    overflow: hidden;
}

/* ==========================================================================
   paleta-de-colores
   ========================================================================== */

.paleta-de-colores {
    padding: 20px 10%;
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    border-radius: 5px;

    background-color: #1a1a1a;
}

.paleta-de-colores .titulo,
.paleta-de-colores .fondo-1,
.paleta-de-colores .fondo-2,
.paleta-de-colores .primary,
.paleta-de-colores .secondary,
.paleta-de-colores .action-color-one,
.paleta-de-colores .action-color-two,
.paleta-de-colores .action-color-five {
    padding: 10px;
    border-radius: 5px;
}

.paleta-de-colores .fondo-1 {
    background-color: var(--fondo-primario);
}

.paleta-de-colores .fondo-2 {
    background-color: var(--fondo-secundario);
}

.paleta-de-colores .primary {
    background: var(--color-one);
}

.paleta-de-colores .secondary {
    background: var(--color-two);
    color: #000;
}

.paleta-de-colores .action-color-one {
    background: var(--color-three);
}

.paleta-de-colores .action-color-two {
    background: var(--color-four);
}

.paleta-de-colores .action-color-five {
    background: var(--color-five);
}

/* ==========================================================================
   Presentación
   ========================================================================== */

.presentacion {
    padding: 0px 5% 0 5%;
    text-align: center;
    background-color: #000;

    display: grid;
    grid-template-columns: 40% 60%;
    gap: 5px;

    min-height: 100dvh;
}

.presentacion b {
    color: var(--color-one);
}

.presentacion .titulo {
    color: #555;
    align-content: center;
}

.presentacion .titulo > .titulo {
    font-size: var(--titulo);
    /*font-family: 'Courier New', Courier, monospace;*/
}

.presentacion .titulo span.principal {
    color: #fff;
}

.presentacion .ilustracion {
    height: 550px;
    width: 80%;

    margin: auto auto;

    padding: 20px;

    display: grid;
    grid-template-columns: 1fr;
    column-gap: 20px;
    row-gap: 20px;

    background-color: #111;

    border-radius: 5px;
    border: 10px solid #222;

    /*transform: translateY(100px);*/
    align-content: center;

    --var-duration: .2s;
}

.presentacion .ilustracion .dibujo * {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 200 !important;
}

.presentacion .ilustracion .dibujo {
    height: auto;
    align-content: center;
}

.presentacion .ilustracion .dibujo .front {
    height: 300px;

    margin: 20px 0;

    align-content: center;

    /*background: linear-gradient(to right, rgb(255, 62, 62), rgb(68, 68, 255));*/
    background: linear-gradient(to right, var(--color-one), var(--color-two));
    border-radius: 5px;

    text-align: center;
}

.presentacion .ilustracion .dibujo .cahuich-css-sobre {
    height: 25px;

    margin: 20px 0;

    padding: 0;

    align-content: center;

    text-align: center;

    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
}

.presentacion .ilustracion .dibujo .cahuich-css-sobre .caja {
    height: 25px;

    margin: 20px 0;

    align-content: center;

    text-align: center;
}

.presentacion .ilustracion .dibujo .cahuich-css-sobre .caja.modulos {
    border: 1px dashed #999;
    border-radius: 5px;
}

.presentacion .ilustracion .dibujo .cahuich-css {
    height: 25px;

    margin: 20px 0;

    align-content: center;

    border: 1px dashed #999;
    border-radius: 5px;

    text-align: center;
}

.presentacion .ilustracion .dibujo .base {
    height: 50px;

    margin: 20px 0;

    align-content: center;

    background-color: #555;
    border-radius: 5px;

    text-align: center;
}

.presentacion .ilustracion .dibujo .front:hover,
.presentacion .ilustracion .dibujo .cahuich-css-sobre .caja:hover,
.presentacion .ilustracion .dibujo .cahuich-css-sobre .caja.modulos:hover,
.presentacion .ilustracion .dibujo .cahuich-css:hover,
.presentacion .ilustracion .dibujo .base:hover {
    transform: scale(1.04);
    transition: transform var(--var-duration) ease-in-out;
}

.presentacion .ilustracion .dibujo .front,
.presentacion .ilustracion .dibujo .cahuich-css-sobre .caja,
.presentacion .ilustracion .dibujo .cahuich-css-sobre .caja.modulos,
.presentacion .ilustracion .dibujo .cahuich-css,
.presentacion .ilustracion .dibujo .base {
    transition: transform var(--var-duration) ease-in-out;
}

/* ==========================================================================
   colores-seccion
   ========================================================================== */
.colores-seccion {
    background: radial-gradient(circle,
    var(--color-three-sub) 0%,
    rgba(255, 255, 255, 0.04) 40%,
    var(--color-one) 45%,
    var(--color-two) 50%,
    var(--color-three) 55%,
    var(--color-four) 60%,
    var(--color-five) 65%,
    #111 80%);
    background-size: 100%;
    background-position: center center;
    animation: animacion-colores 20s ease-in-out infinite;
}

@keyframes animacion-colores {
    0% {
        background-size: 100%;
    }
    50% {
        background-size: 150%;
    }
    100% {
        background-size: 100%;
    }
}

.colores-seccion .titulo > b {
    color: var(--color-two);
}

.colores-seccion .fondo {
    padding: 100px 5%;
    min-height: 100dvh;

    align-content: center;

    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(60px);
}

.colores-seccion .titulo {
    text-align: center;


    .titulo {
        font-size: var(--titulo);
    }

    p {
        margin: 0 20%;
    }
}

.colores-seccion .contenido {
    width: 60%;
    margin: 0 auto;
    margin-top: 20px;

    .escalon-2 {
        margin-inline-start: 80px;
    }

    .escalon-3 {
        margin-inline-start: 160px;
    }

    .escalon-4 {
        margin-inline-start: 240px;
    }
}

/* ==========================================================================
   Caracteristicas
   ========================================================================== */

.caracteristicas {
    /*background-color: rgb(10 0 10);*/
    background-color: var(--fondo-secundario);

    padding: 100px 0%;
}

.caracteristicas b {
    color: var(--color-one);
}

.caracteristicas > .titulo {
    height: 100dvh;
    margin: 0 auto;
    padding: 0 auto;

    margin-bottom: 50px;

    font-size: var(--titulo);

    text-align: center;
    align-content: center;
    /*background: radial-gradient(circle, rgba(0,103,172,0.4) 0%, rgba(255, 255, 255, 0.04) 20%, #111 40%);*/
    background: radial-gradient(circle, var(--color-three-sub) 0%, rgba(255, 255, 255, 0.04) 20%, #111 40%);

}

.caracteristicas > .contenido-especial {
    padding: 0 10%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: radial-gradient(circle, rgb(222, 184, 135, 0.2) 0%, rgba(255, 255, 255, 0.04) 20%, #111 60%);
}

.caracteristicas > .contenido-especial .car {
    height: 400px;
    padding: 20px;


    /*background: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.02), transparent),
    radial-gradient(ellipse at top, #111, transparent);
    backdrop-filter: blur(20px);*/

    border: 1px solid transparent;
    border-radius: 5px;
    /*box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transition: .2s all ease-in-out;*/
    border: 1px dotted #444;

    align-content: center;

    cursor: pointer;
}

.caracteristicas .contenido-especial > .car > .ilustracion {
    font-size: 6dvh;
    font-weight: 100;
}

.caracteristicas > .contenido-especial .car > .titulo {
    font-size: 8dvh;
}

.caracteristicas > .contenido {
    padding: 0 10%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;

    margin: 50px 0;
    margin-bottom: 0;
}

.caracteristicas > .contenido .car {
    height: 210px;
    padding: 20px;

    /*background: radial-gradient(rgb(39, 0, 39), #000);*/
    /*background: radial-gradient(ellipse at top, rgb(20, 0, 20), transparent),
    radial-gradient(ellipse at bottom, #111, transparent);*/

    border: 1px dotted #444;
    border-radius: 5px;

    color: #888;

    transition: .2s all ease-in-out;
}

.caracteristicas > .contenido .car:hover {
    background: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.01), transparent),
    radial-gradient(ellipse at top, #111, transparent);

    transform: scale(102%);

    border: 1px solid transparent;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transition: .2s all ease-in-out;
}

.caracteristicas > .contenido .car > .titulo h3 {
    margin-top: 0;

    color: #f3f3f3;
}

/* ==========================================================================
   News
   ========================================================================== */

.new-css {
    /*background-color: rgb(10 0 10);*/
    background-color: #111;

    padding: 100px 0%;
    background: radial-gradient(circle, var(--color-three-sub) 0%, #111 90%);
    min-height: 100dvh;
    align-content: center;

    margin: 0 5%;
    margin-top: 50px;

    padding: 0 5%;

    border-radius: 5px;
}

.new-css b {
    color: var(--color-one);
}

.new-css .titulo {
    font-size: 8dvh;
    width: 60%;
    margin: 0 auto;
}

.new-css .contenido {
    width: 60%;
    margin: 0 auto;
}

.new-css .contenido h2 {
    font-weight: normal;
}

/* ==========================================================================
   Caracteristicas
   ========================================================================== */

.poweredBy {
    /*background-color: rgb(10 0 10);*/

    padding: 100px 10%;
}

.poweredBy > .titulo {
    margin: 0 auto;
    padding: 0 auto;

    margin-bottom: 50px;

    font-size: var(--titulo);

    text-align: center;
}

.poweredBy > .contenido {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
}

.poweredBy > .contenido .caja {
    height: 290px;
    padding: 20px;

    /*background: radial-gradient(rgb(39, 0, 39), #000);*/
    /*background: radial-gradient(ellipse at top, rgb(20, 0, 20), transparent),
    radial-gradient(ellipse at bottom, #111, transparent);*/

    border: 1px dotted #444;
    border-radius: 5px;

    color: #888;

    transition: .2s all ease-in-out;

    cursor: pointer;
}

.poweredBy > .contenido .caja:hover {
    background: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.01), transparent),
    radial-gradient(ellipse at top, #111, transparent);

    transform: scale(102%);

    border: 1px solid transparent;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transition: .2s all ease-in-out;
}

/* ==========================================================================
   Uso
   ========================================================================== */

.uso {
    background-color: #000;

    padding: 50px 10%;
}

.uso .contenedor {
    background-color: #111;

    padding: 20px 10%;

    border-radius: 5px;
    border: 1px dashed #888;
}

/*.uso .contenido {
  display: grid;
  grid-template-columns: 10% 90%;
  column-gap: 20px;
  row-gap: 20px;
}*/

/* ==========================================================================
   Demo
   ========================================================================== */

.demo {
    /*background-color: rgb(10 0 10);*/
    /*background-color: rgb(14, 9, 0);*/
    background-color: #000;

    padding: 100px 10%;
}

.demo .contenedor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* ==========================================================================
   Demo new
   ========================================================================== */

.demo-new {
    /*background-color: rgb(10 0 10);*/
    /*background-color: rgb(14, 9, 0);*/
    background-color: #000;

    padding: 100px 10%;
}

.demo-new > .titulo {
    margin: 0 auto;
    padding: 0 auto;

    margin-bottom: 50px;
}

.demo-new > .titulo h1 {
    margin: 0 auto;
    padding: 0 auto;
}

.demo-new > .contenido {
    display: flex;
    /*flex-flow: row wrap;*/
    flex-wrap: wrap;

    align-items: center;
    justify-content: center;
}

.demo-new > .contenido > .car {
    height: 200px;
    width: 25%;
    padding: 20px;

    margin: 10px;

    /*background: radial-gradient(rgb(39, 0, 39), #000);*/
    /*background: radial-gradient(ellipse at top, rgb(20, 0, 20), transparent),
    radial-gradient(ellipse at bottom, #111, transparent);*/

    border: 1px dotted #444;
    border-radius: 5px;

    color: #888;

    transition: .2s all ease-in-out;

    cursor: pointer;

}

.demo-new > .contenido .car:hover {
    background: radial-gradient(ellipse at bottom, rgb(35, 0, 35), transparent),
    radial-gradient(ellipse at top, #111, transparent);

    transform: scale(102%);

    border: 1px solid transparent;
    box-shadow: 0 0 5px purple;
    transition: .2s all ease-in-out;
}

.demo-new > .contenido .car > .titulo h3 {
    margin-top: 0;

    color: #f3f3f3;
}

.demo-new .contenido .car .contenedor .titulo {
    opacity: 80%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.demo-new .contenido .car .contenedor {
    position: absolute;
    top: 10px;
    left: 10px;

    min-width: 100%;
    background-color: #0000006a;
    backdrop-filter: blur(20px);
    padding: 20px;

    border: 1px dotted #444;
    border-radius: 5px;
    display: none;
    animation: opacityAnimacionParaPaginas2 .5s ease;
}

@keyframes opacityAnimacionParaPaginas2 {
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}

/* ==========================================================================
   Footer Dos
   ========================================================================== */


.footerDos {
    padding: 50px 0;
    color: #555;
}

.footerDos .contenedor {
    width: 60%;

    margin: 0 auto;

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

.footerDos .contenedor .caja {
    text-align: center;
    transition: 0.2s all ease-in-out;
}

.footerDos .contenedor .caja:hover {
    transition: 0.2s all ease-in-out;
    color: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer { /*Se normaliza reset*/
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    text-decoration: none;
}

.footer {
    margin: 0 0;

    padding: 50px 0;

    background-color: #000;

    border: none;

    text-align: center;
}

.footer .contenedor {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

/* ==========================================================================
   Paginas
   ========================================================================== */

.pagina {
    animation: opacityAnimacionParaPaginas 1s ease;
}

/* ==========================================================================
  Pagina generar
========================================================================== */

.pagina-generar {
    display: none;
    padding: 100px 10% 50px 10%;
}

.pagina-generar .titulo {
    font-size: var(--titulo);
}

/* ==========================================================================
  Pagina uno
========================================================================== */

.paginaUno {

}

.paginaDos {
    display: none;
}

.modulos-pag {
    display: none;
}

.element {
    animation: opacityAnimacionParaPaginas .5s ease;
}

@keyframes opacityAnimacionParaPaginas {
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}

/*.element {
  animation: pulse 5s infinite;
}

@keyframes pulse {
  0% {
    background-color: #001F3F;
  }
  100% {
    background-color: #FF4136;
  }
}*/

.acercaDe {
    display: none;
    padding: 100px 10%;
    background-color: #000;
    /*align-content: center;*/
    min-height: 100vh;
}

/* Extra */

#product-hunt {
    margin-top: 1rem;
}

#link-snippet-headline {
    margin: 1rem 2.5rem 1rem 0;
}

/* Make the feedback Emoji appear next to the button */
#copy-button {
    position: relative;
    margin-right: 2px;
    overflow: visible;
}

#copy-button-feedback {
    position: absolute;
    left: -2rem;
    display: inline-block;
    transform: scale(1.3);
}

#link-snippet-container {
    overflow: hidden;
    display: grid;
    display: -ms-grid;
    -ms-grid-columns: 1fr;
}

#link-snippet-container > pre {
    overflow: auto;
    grid-column: 1;
    grid-row: 1;
    transition: transform 220ms cubic-bezier(0.175, 0.885, 0.32, 1) 220ms;
}

#link-snippet-container > pre[hidden] {
    display: block;
    visibility: hidden;
    transform: scale(0);
    transition: transform 220ms cubic-bezier(0.175, 0.885, 0.32, 1), visibility 0ms 220ms;
}

#theme-form > label:not(:last-of-type) {
    margin-right: 1rem;
}

#version-info th {
    width: 35%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

