header {
    background: rgb(var(--crB));
    box-shadow: var(--saN);
}

.❤{ 
    width: auto;
}
.❤ picture{
    height: 100%; /*adaptar porcentaje para ajustar logo*/
}

.nv0,
.nv1 {
    padding: 0 var(--eo1);
    gap: var(--eo1);
}
.nv1 > *:last-child{
    margin-bottom: var(--eo5);
}
.nv0>*,
.nv1>* {
    gap: var(--eo0);
}

.nv0 *,
.nv1 * {
    font-size: var(--fs4);
}

:root {
    --wdIco: 32px;
}

.nv0 i,
.nv1 i {
    font-size: var(--fs4);
    margin-top: -3px;
    /* Correccion óptica vertical*/
}
.nv1 i {
    font-size: var(--fs3);
}

/* Nav superior */
.nv0 {
    background: rgb(var(--crB));
}

.nv0 *:not([class*="bt"]) {
    color: rgb(var(--crT0));
}

/* Nav Plegable */
.nv1 {
    right: -100%;
    /**/
    background: rgb(var(--crB));
    padding: var(--eo1);
    width: 90%;
    max-width: 320px;
}

.nv1 *:not([class*="bt"]) {
    color: rgb(var(--crT0));
}

/* Hamburguesa */
.📌:after {
    content: "";
    font-size: 2em;
    color: rgb(var(--crP0));
}

.📖 .📌:after {
    content: "";
}

.📖 .nv1 {
    right: 0;
}

/* Nav */
header nav ul {
    gap: var(--eo1);
}

/* .nv0 nav *,
.nv1 nav * {
    text-transform: uppercase;
} */

nav li{
    order: 0;
}

header li::after {
    border-bottom: solid var(--beN) rgb(var(--crG3));
}

/* Leyendas */
header span {
    width: 90%;
    text-align: center;
    height: var(--eo3);
    border-bottom: solid var(--beN) rgb(var(--crG3));
}

/* Submenú  - Mea menú*/
.nvSm+*,
[class*="nvMm"]>div>div {
    background: rgb(var(--crB));
}

[class*="nvMm"] {
    background: transparent;
}


/* Botones hover*/
.nav button:not([class*="bt"]):hover,
.nav a:not([class*="bt"]):hover,
.nav button:not([class*="bt"]):hover i,
.nav a:not([class*="bt"]):hover i,
.nav .actual,
.nav .actual i {
    color: rgb(var(--crS0));
}

/* Botón destacado */
.nvDo,
.nvDo i {
    border-radius: var(--brB);
    color: rgb(var(--crT0));
    animation: navCiclo1 3s ease-in-out infinite;
}

.nvDo i {
    animation: navCiclo2 3s ease-in-out infinite;
}

@keyframes navCiclo1 {

    0%,
    100% {
        background: rgba(var(--crS0), 0);
    }

    40%,
    60% {
        background: rgba(var(--crS0), 1);
    }

}

@keyframes navCiclo2 {

    0%,
    100% {
        scale: 1.0;
    }

    50% {
        scale: 1.2;
    }
}

/*--------------------------*/

.📧 {
    gap: 0;
}

/* Arriba */
.debajo {
    transition: var(--AnM0);
    gap: var(--gap);
    bottom: -100%;
}
.nvArr {
    bottom: var(--eo4);
}
.debajo i {
    font-size: 1.4em;
    width: var(--eo4);
    height: var(--eo4);
    background: rgb(var(--crS0));
    color: rgb(var(--crT3));
    border:solid var(--beB) rgba(var(--crB),var(--od3));    
    box-shadow: var(--saN);
}
.nav .debajo:hover i{
    color: rgb(var(--crT3)) !important;
}
.nav .debajo *:hover {
    transform: scale(1.1);
}

/* mover grupos ordenados desde nv0 a otro lugar */
.nvGr{
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

/**/
header form *{
    flex-wrap: nowrap;
}
header form *:focus {
    border: none;
    outline: none;
}