@import url("variables.css");
@import url('https://fonts.googleapis.com/css2?family=Liter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

<!-- Generales

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

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

    font-family: "Liter", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 23px;
    font-size: 18px;

    color: var(--noNegro);
}

body {
    margin: 0;
    background: var(--fondoClaro);
    color: var(--textoClaro);
}

a {
    text-decoration: none;
    color: var(--colorDestacado);
}

a:hover {
    font-weight: bold;
}

nav {
    margin: 0px;
    padding: 0px;
}

.error {
    width: 50%;
    padding: 0.3rem;
    margin: 0 auto;
    margin-top: 1rem;
    background: red;
    border-radius: 0.2rem;
    border-left: 8px solid color-mix(in srgb, red, 20%);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
}

.documento {
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: 50px;
    padding-top: 120px;
    z-index: 0;
}

.ajuste {
    margin: 0px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

.celdaMedia {
    width: 100%;
    height: 100%;
}

.celdaTercio {
    width: 33%;
}

.celdaDosTercios {
    width: 66%;
}

.centrado {
    text-align: center;
    margin: auto;
}

.izquierda {
    text-align: left;
}

.derecha {
    text-align: right;
}

.negrita {
    font-weight: bold;
}

.texto {
    font-size: var(--textoNormal);
}

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

.textoDestacado {
    font-size: var(--textoDestacado);
    font-weight: bold;
}

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

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

<!-- Paginación 

.indice {
    text-align: center;
}

.indice .paginaIndice {
    padding: 2px;
}

.indice .paginaActual {
    padding: 2px;
    background: green;
    color: white;
}

.botonIndiceAnterior {
    margin-right: 10px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid darkgreen;
    background: lightgreen;
    border-radius: 7px;
    cursor: pointer;
}

.botonIndiceSiguiente {
    margin-left: 10px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid darkgreen;
    background: lightgreen;
    border-radius: 7px;
    cursor: pointer;
}

.formulario {
    width: 60%;
    padding: 20px;
    background: white;
    border: 1px solid #777;
    border-radius: var(--redondeadoBoton);
}

.formulario input, .formulario textarea, .formulario select {
    border: 1px solid var(--colorDestacado);
    border-radius: var(--redondeadoBoton);
}

.formulario input[type="submit"] .boton {
    background: var(--colorDestacado);
    padding: 0.3rem 1.5rem 0.3rem 1.5rem;
    border: 1px solid var(--colorClaro);
    border-radius: var(--redondeadoBoton);
    transition: all 0.5s;
}

.boton:hover, .formulario input[type="submit"]:hover {
    background: var(--colorClaro);
    color: black;
}

.boton {
    font-size: 15px;
    margin: 7px;
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    background: var(--colorDestacado);
    color: white;
    border-radius: 20px;
    transition: all 0.3s;
}


.menuUser {
    position: absolute;
    width: auto;
    right: 20px;
    top: 20px;
    color: white;
}

.menuUser a {
    color: white;
}

.fondoMenu {
    width: 100%;
    height: 70px;
    margin: 0px;
    background: var(--colorDestacado);
}

.menuPrincipal {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    box-shadow: 3px 3px 20px #333;
    padding: 0px;
}

.menu {
    display: flex;
    align-items: center;
    margin: 0px;
    padding: 0px;
}

.hamburguesa {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    display: block;
    cursor: pointer;
}

ul {
    padding: 0px;
}

.contenedor-menu a {
    color: white;
}

.contenedor-menu a:hover {
    font-weight: normal;
}

.contenedor-menu {
    display: flex;
    align-items: center;
    flex-direction: column;
    top: 0;
    position: absolute;
    width: 250px;
    margin-left: -450px;
    margin-top: 90px;
    border-radius: 5px;
    background: var(--colorDestacado);
    transition: all 0.5s;
}

.contenedor-menu li:hover {
    background: var(--textoMenuClaro);
    border-radius: 7px;
}

.contenedor-menu li {
    height: 50px;
    list-style: none;
    padding: 20px 5px 20px 15px;
    transition: all 0.5s;
}

@media (min-width: 768px) {
    .formulario {
        width: 90%;
    }

    .ajuste {
        justify-content: space-around;
        align-items: stretch;
    }

    .celdaMedia, .celtaTercio, .celdaDosTercios {
        width: 45%;
    }

    .contenedor-menu {
        width: 100%;
        flex-wrap: nowrap;
        flex-direction: row;
        margin-left: 0px;
        margin-top: 20px;
    }

    .contenedor-menu li {
        height: 50px;
        padding-bottom: 0;
        padding-left: 15px;
        padding-right: 15px;
    }

    .hamburguesa {
        display: none;
    }
}

@media (max-width: 768px) {
    .documento {
        width: 95%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .celdaTercio {
        width: 100%;
    }

    .menuUser {
        left: 200px;
    }
}