@import url('https://fonts.googleapis.com/css2?family=Anek+Latin:wdth,wght@75..125,100..800&display=swap');
@font-face {
    font-family: 'Tillburg DEMO';
    src: url('../fonts/TillburgDEMO.woff2') format('woff2'),
        url('../fonts/TillburgDEMO.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/*********************
 * PALETA DE COLORES *
 ********************/
:root{
    --tillburg: 'Tillburg DEMO';
    --anek: "Anek Latin", sans-serif;
    --texto: var(--anek);
    --rojo: #f40019;
    --naranja: #ff3820;
    --amarillo: #ffdd35;
    --rosa: #db2b60;
    --lila: #ffd7fd;

    --color-marca: #000;
    --fondo-boton: var(--color-marca);
    --nombre-producto: var(--color-marca);
    --descripcion-producto: var(--color-marca);
    --precio-producto: var(--color-marca);
    --fondo-modal: rgba(255,255,255,.8);
    --fondo-confirmacion: #fff;
    --borde-confirmacion: var(--color-marca);
    --fondo-boton-cerrar: var(--color-marca);
    --borde-boton-cerrar: var(--color-marca);
    --color-boton-cerrar: #FFF;
    --color-boton-eliminar: var(--color-marca);
    --division-articulo: var(--color-marca);
    --fondo-header: #F0a;

    --amarillo-paypal: #ffbe37;
}

/*********************
 * ESTILOS GENERALES *
 ********************/
.top{
    width: 100%;
    height: 80px;
    background-color: var(--fondo);
}
*{
    box-sizing: border-box;
    position: relative;
    margin: 0px;
}
body{
    margin: 0 auto;
    font-family: var(--texto);
    -webkit-font-smoothing:antialiased;
    background-color: #FFF;
    font-variation-settings: "wdth" 75;
}
section{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 5vw;
    padding-bottom: 5vw;
    padding-right: 5%;
    padding-left: 5%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
section > aside{
    display: flex;
    justify-content: center;
    align-items: center;
}
section > h1{
    margin-bottom: 1vw;
}
h1{
    font-size: 2vw;
    font-weight: 400;
    text-align: center;
    width: 100%;
}
h2{
    font-size: 2.2vw;
    font-variation-settings: "wdth" 75;
    font-weight: 500;
    width: 100%;
}
h3{
    font-size: 1.3vw;
}
p{
    font-size: 1.3vw;
    font-weight: 400;
    line-height: 1.2;
}
a{
    text-decoration: none;
    color: inherit;
}


/*********************
 *      HEADER       *
 ********************/
header{
    position: fixed;
    width: 100%;
    height: 80px;
    top: 0px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    z-index: 3;
    /*background-color: rgba(255,255,255,1);*/
     box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    background-color: #000;
}
header > a{
    width: 200px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
header > a > img{
    height: 80%;
}
header > aside{
    width: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}
header > aside > button, header > aside > a{
    font-size: 18px;
    background-color: transparent;
    border: 0px;
    margin: 5px;
    cursor: pointer;
    color: #FFF
}
header > aside > button:hover, header > aside > a:hover{
    color: var(--rojo);
}
header > nav{
    width:calc(100% - 400px);
    height: 50%;
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    justify-content: space-evenly;
    align-items: center;
    /*background-color: var(--amarillo);*/
    z-index: 10;

}
header > nav > a{
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 900;
    font-size: 12px;
    font-variation-settings: "wdth" 125;
    color: #FFF;

    border:solid 1px;
    padding-bottom: 5px;
    padding-top: 5px;
    border-radius: 5px;
    border-color: transparent;
}
header > nav > a:hover{
    color: var(--rojo);
}
header svg{
    width: 60px;
}
header svg path{
    fill: #FFF;
}
header > a:hover svg path{
    fill: var(--rojo);
}


/*********************
 *    BOTON MENU     *
 ********************/
input[type="checkbox"], .logo-movil{
    display:none;
}
label{
    display: flex;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
    right: 5%;
    position:fixed;
    top: 26px;
    z-index: 20;
    box-sizing: content-box;
    padding: 10px;
    display: none;
}
label span{
    background: #fff;
    height:2px;
    margin: 3px 0;
    transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
label span:nth-of-type(1){
    width:50%;
}
label span:nth-of-type(2){
    width:100%;
}
label span:nth-of-type(3){
    width:75%;
}    
input[type="checkbox"]:checked ~ span:nth-of-type(1){
    transform-origin:bottom;
    transform:rotatez(45deg) translate(2px,0px)
}
input[type="checkbox"]:checked ~ span:nth-of-type(2){
    transform-origin:top;
    transform:rotatez(-45deg)
}
input[type="checkbox"]:checked ~ span:nth-of-type(3){ 
    transform-origin:bottom;
    width:50%;
    transform: translate(30px,-11px) rotatez(45deg);
    transform: translate(12px, -4px) rotatez(45deg);
}
.solo-movil{
    display: none;
}

body > a{
    position: fixed;
    bottom: 60px;
    right: 50px;
    width: 60px;
    height: 60px;
    z-index: 5;
    border:solid 2px #FFF;
    border-radius: 50px;
    background-image: url(images/E3AFA6EBF74AB28B.png);
    background-position: center center;
    background-size: 145%;
}
body > a > img{
    width: 100%;
}

/*********************
 *     PRODUCTOS     *
 ********************/
.productos{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0px;
    padding-right: 0px;
}

/*************************
 *  PRODUCTO RESPONSIVO  *
 *************************/
.producto-responsivo{
    width: 300px;
    height: 470px;
}
.producto-responsivo > a{
    width: 100%;
    height: 275px;
}
.producto-responsivo > article{
    padding: 10px;
}
.producto-responsivo > article > h3{
    font-size: 14px;
}
.producto-responsivo > article > p{
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.producto-responsivo > article > h2{
    font-size: 14px;
    height: 30px;
    line-height: 30px;
}
.producto-responsivo > article > aside{
    height: 30px;
}
.producto-responsivo > article > aside > button{
    width: 20px;
    height: 25px;
}
.producto-responsivo > article > aside > input{
    width: 45px;
    height: 25px;
}
.producto-responsivo > article > aside > button{
    width: 70px;
    height: 25px;
}

/*************************
 *    PRODUCTO LIQUIDO   *
 *************************/
.producto-liquido{
    width: 21%;
    height: 34vw
}
.producto-liquido > a{
    width: 100%;
    height: 20vw;
}
.producto-liquido > article{
    padding: 1vw;
}
.producto-liquido > article > h3{
    font-size: 1.1vw;
}
.producto-liquido > article > p{
    font-size: 1.1vw;
    margin-top: .8vw;
    margin-bottom: 1vw;
}
.producto-liquido > article > h2{
    font-size: 1.1vw;
    height: 2vw;
    line-height: 2vw;
}
.producto-liquido > article > aside{
    height: 2vw;
}
.producto-liquido > article > aside > button{
    width: 5vw;
    height: 1.8vw;
    font-size: 1vw;
}
.producto-liquido > article > aside > input{
    width: 3.5vw;
    height: 1.8vw;
    font-size: 1vw;
}

/*************************
 *    PRODUCTO GENERAL   *
 *************************/
.producto{
    margin: 1%;
    /*background-color: #FA0;*/
    /*box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);*/
}
.producto > a{
    display: block;
    background-size: auto 90%;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../portadas/foto-producto_mr-wonderful-edited.png);
}
.producto > a > div{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../portadas/fotografia-still-life.jpg);

    animation-name: fadeOut;
    animation-duration: .3s;
    animation-fill-mode: forwards;
}
.producto > a:hover > div{
    animation-name: fadeIn;
}
@keyframes fadeIn{
    from{opacity: 0}
    to{opacity: 1}
}
@keyframes fadeOut{
    from{opacity: 1}
    to{opacity: 0}
}
.producto > article{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.producto > article > h3{
    font-weight: 400;
    width: 100%;
    /*text-transform: uppercase;*/
    color: var(--nombre-producto);
}
.producto > article > p{
    font-weight: 300;
    width: 100%;
    color: var(--descripcion-producto);
}
.producto > article > h2{
    font-weight: 400;
    width: 40%;
    color:var(--precio-producto);
}
.producto > article > aside{
    width: 60%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.producto > article > aside > button{
    padding: 0px;
}
.producto > article > aside > input{
    text-align: center;
    font-family: var(--texto);
    border-radius: 0px;
    border:solid 1px var(--fondo-boton);
}
.producto > article > aside > button{
    text-align: center;
    font-family: var(--texto);
    border-radius: 0px;
    border:solid 1px var(--fondo-boton);
    background-color: #FFF;
    color: #333;
    cursor: pointer;

    animation-name: apaga-boton;
    animation-duration: .3s;
    animation-fill-mode: forwards;
}
.producto > article > aside > button:hover{
    /*background-color: #777;
    color: #FFF;*/
    animation-name: enciende-boton;
}

@keyframes enciende-boton{
    from{background: #FFF; color: var(--fondo-boton);}
    to{background-color: var(--fondo-boton); color: #FFF}
}
@keyframes apaga-boton{
    from{background: var(--fondo-boton); color: #FFF}
    to{background-color: #FFF; color: var(--fondo-boton);}
}

/*************************
 *      MODAL LOGIN      *
 *************************/
#modalLogin{
    width: 100%;
    background-color: var(--fondo-modal);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}
#modalLogin > .login-contenido > input{
    background-color: #FFF;
    border-radius: 0px;
    height: 30px;
    width: 100%;
    padding-left: 2%;
    padding-right: 2%;
    margin-bottom: 10px;
    font-family: var(--texto);
    border: solid 1px var(--color-marca);
}
.login-contenido{
    width: 300px;
    height: 200px;
    padding-left: 35px;
    padding-right: 35px;
    background-color: var(--fondo-confirmacion);
    border:solid 1px var(--borde-confirmacion);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}
#modalLogin > .login-contenido > h2{
    padding-bottom: 15px;
    width: 100%;
    text-align: center;
    font-weight: 400;
    color: var(--color-marca);
    font-size: 18px;
}

#modalLogin > .login-contenido > button{
    border-radius: 0px;
    border: solid 1px var(--fondo-boton);
    width: 100px;
    height: 25px;
    /*margin: 5px;*/

    animation-name: apaga-boton;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    cursor: pointer;
}
#modalLogin > .login-contenido > button:hover{
    animation-name: enciende-boton;
}

/*************************
 *   MODAL CONFIRMACION  *
 *************************/
#modalConfirmacion{
    width: 100%;
    background-color: var(--fondo-modal);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
.modal-contenido{
    width: 350px;
    height: 175px;
    background-color: var(--fondo-confirmacion);
    border:solid 1px var(--borde-confirmacion);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.modal-contenido > #modalMensaje{
    font-size: 20px;
    width: 100%;
    text-align: center;
    padding-bottom: 15px;
}
.modal-contenido > button{
    border-radius: 0px;
    border: solid 1px var(--fondo-boton);
    width: 80px;
    height: 25px;
    margin: 5px;
    font-style: var(--anek);
    font-weight: 700;

    animation-name: apaga-boton;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    cursor: pointer;
}
.modal-contenido > button:hover{
    animation-name: enciende-boton;
}

/*************************
 *     CARRITO MODAL     *
 *************************/
#carrito-modal{
    display: flex;
    right: -450px;
    flex-wrap: wrap;
    position: fixed;
    top: 0px;
    width: 400px;
    height: 100vh;
    padding: 20px;
    background-color: #FFF;
    z-index: 4;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
#carrito-modal > button{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40px;
    height: 40px;
    font-size: 16px;
    background-color: var(--fondo-boton-cerrar);
    border:solid 1px var(--borde-boton-cerrar);
    color: var(--color-boton-cerrar);

    animation-name: apaga-boton;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    cursor: pointer;
}
#carrito-modal > button:hover{
    animation-name: enciende-boton;
}
#carrito-contenido{
    width: 100%;
}
#carrito-contenido > h3{
    font-weight: 300;
    font-size: 28px;
}
#carrito-contenido > article{
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 100%;
    padding-top: 20px;
}
#carrito-contenido > article > h3{
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}
#carrito-contenido > article > .btn-checkout{
    animation-name: apaga-boton;
    display: flex;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    cursor: pointer;
    border-radius: 0px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    width: 100%;
    align-items: center;
    justify-content: center;
    border: solid 1px var(--fondo-boton);
    font-size: 20px;
}
#carrito-contenido > article > .btn-checkout:hover{
    animation-name: enciende-boton;
}
.mini-item{
    padding: 20px;
    padding-left: 0px;
    padding-right: 0px;
    border-bottom: solid 1px var(--division-articulo);
}
.mini-item > h2{
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 10px;
}
.mini-item > p{
    font-size: 20px;
    font-weight: 400;
}
.mini-item > p > span{
    font-size: 20px;
    font-weight: 600;
}
.mini-controles{
    width: 130px;
    margin-top: 10px;
}
.mini-controles > button{
    animation-name: apaga-boton;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    cursor: pointer;
    border-radius: 0px;
    border: solid 1px var(--fondo-boton);
    width: 30px;
    height: 25px;
    margin: 1px;
}
.mini-controles > button:hover{
    animation-name: enciende-boton;
}
.mini-controles > button.eliminar{
    animation-name: unset;
    background-color: transparent;
    border:0px;
    color: var(--color-boton-eliminar);
}
.mini-controles > button.eliminar:hover{
    color: #F00;
}

/*************************
 *        REGISTRO       *
 *************************/
.registro{
    flex-wrap: wrap;
    flex-direction: row;
}
.registro > aside:nth-child(1){    
    border-right: solid 1px var(--color-marca);
}
.registro > aside{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    /*background-color: #FA0;*/
    width: 50%;
}
.registro > aside > h2{
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
}
.registro > aside > p{
    font-size: 18px;
    margin-bottom: 15px;
}
.registro > aside > form{
    width: 300px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.registro > aside > form > input, .registro > aside > form > select{
    background-color: #FFF;
    border-radius: 0px;
    height: 30px;
    width: 100%;
    padding-left: 2%;
    padding-right: 2%;
    margin-bottom: 10px;
    font-family: var(--texto);
    border: solid 1px var(--color-marca);
}
.registro > aside:nth-child(2) > form > input{
    text-align: center;
}
.registro > aside > form > button, .registro > aside > h3{
    animation-name: enciende-boton;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    cursor: pointer;
    border-radius: 0px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border: solid 1px var(--fondo-boton);
    width: 150px;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--texto);
}
.registro > aside > form > button:hover, .registro > aside > h3:hover{
    animation-name: apaga-boton;
}
.registro > aside > h2{

}

/**********************
 *   RESUMEN COMPRA   *
 *********************/
.resumen-compra{
    min-height: calc(77vh - 80px);
    justify-content: flex-start;
}
.resumen-compra > table{
    width: 100%;
}
.resumen-compra > table th{
    background-color: var(--color-marca);
    color: #FFF;
    font-size: 20px;
    height: 30px;
    font-weight: 400;
}
.resumen-compra > table td{
    font-size: 20px;
    height: 30px;
    font-weight: 400;
    padding-right: 10px;
    padding-left: 10px;
}
.resumen-compra > table td:nth-child(1){
    width: 75%;
}
.resumen-compra > table td:nth-child(2){
    text-align: center;
    width: 10%;
}
.resumen-compra > table td:nth-child(3), .resumen-compra > table td:nth-child(4){
    text-align: right;
    width: 15%;
}
.resumen-compra > h3{
    text-align: right;
    width: 100%;
    padding-right: 10px;
    margin-top: 10px;
    color: var(--color-marca);
    /*background-color: #FA0;*/
    font-size: 26px;
}
.resumen-compra > p{
    text-align: right;
    width: 100%;
    padding-right: 10px;
    margin-top: 10px;
    color: var(--color-marca);
    /*background-color: #FA0;*/
    font-size: 22px;
}
.resumen-compra > div{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
}
.boton-paypal{
    width: 250px;
    height: 35px;
    border-radius: 3px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: var(--amarillo-paypal);
    border: 0px;
    cursor: pointer;
}
.boton-paypal:hover{
    background-color: #e2e2e2;
}

.boton-paypal > p{
    font-size: 14px;
    padding-right: 5px;
}
.boton-paypal > img{
    height: 80%
}

/**********************
 *        HOME        *
 *********************/
.home{
    padding: 0px;
    height: 100vh;
    text-transform: uppercase;
    background-color: #000;
}
canvas {
    width: 600px;
    height: 500px;
    margin-top: -120px;
}
.home > article{
    margin-top: -120px;
    text-align: center;
}
.home > article > div{
    display: flex;
    justify-content: center;
    color: #FFF;
}
.home > article > h3{
    font-weight: 400;
    font-size: 1.2vw;
    color: #FFF;
}
.home > article > a{
    display: block;
    font-weight: 600;
    font-size: 1.4vw;
    margin-top: 2vw;
    margin-bottom: 2vw;
    background-color: #fff;
    border-radius: .5vw;
    line-height: 2vw;
    width: 70%;
    margin-left: 15%;
}
.home > article > a:hover{
    /*color: #FFF !important;*/
    background-color: var(--rojo);
}
.home > article > div > a{
    font-size: 1.5vw;
    margin: .5vw;
}
.home > article > div > a:hover{
    color: var(--rojo);
}

/**********************
 *      ESTELAR       *
 *********************/
.estelar{
    padding-left: 5%;
    padding-right: 5%;
}
.estelar > article{
    width: 100%;
    display: flex;
}
.estelar > article > article{
    width: 27%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}
.estelar > article > article *{
    width: 100%;
    text-align: left;
    color: #000;
}
.estelar > article > article > h4{
    font-weight: 500;
    font-size: 1.5vw;
    margin-bottom: 1vw;
}
.estelar > article > article > h2{
    font-weight: 500;
    font-size: 2.4vw;
}
.estelar > article > article > h1{
    font-weight: 400;
    font-size: 4vw;
    margin-bottom: 1vw;
}
.estelar > article > article > h1 > span{
    font-weight: 700;
}
.estelar > article > div{
    background-size: auto 150%;
    background-repeat: no-repeat;
    background-position: center center;
    width: 50%;
    height: 40vw;
}
.estelar > article > aside{
    width: 23%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.estelar .cantidad-input{
    width: 15%;
    height: 2.8vw;
    border-radius: .5vw;
    font-size: 1.7vw;
    margin-top: 3vw;
}
.estelar .btn-agregar{
    border: solid 1px #000;
    height: 2.8vw;
    border-radius: .5vw;
    /*font-family: var(--anek);*/
    font-size: 1.7vw;
    width: 40%;
    font-variation-settings: "wdth" 75;
    margin-right: 43%;
    margin-left: 2%;
    margin-top: 3vw;
}

/**********************
 *       VISTA        *
 *********************/
.vista{
    width: 9vw;
    height: 8vw;
    border: solid 1px #999;
    border-bottom: 0px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}
.vista:hover{
    opacity: .8;
}
.vista:last-child{
    border-bottom: solid 1px #999;
}

/**********************
 *      MOSAICO       *
 *********************/
.mosaico{
    height: 100vh;
    padding: 0px;
    overflow: hidden;
}
.mosaico > aside{
    width: 120%;
    transform: rotate(5deg);
}
.mosaico > aside > div{
    width: 24%;
    font-size: 0px;
}
.mosaico > aside > div > img{
    width: 100%;
}

/**********************
 *      MARCANDO      *
 *********************/
.marcando{
    flex-direction: row;
    flex-wrap: wrap;
    padding-right: 0px;
    padding-left: 0px;
}
.marcando > div{
    background-image: url(../images/flecha.png);
    background-position: center center;
    background-size: 4vw;
    background-repeat: no-repeat;
}
.marcando > h1{
    /*font-family: var(--tillburg);*/
    font-weight: 800;
    font-size: 4vw;
    text-align: right;
    width: 25%;
    line-height: .8;
}
.marcando > div{
    width: 30%;
    z-index: 2;
}
.marcando svg{
    width: 100%;
    height: 27vw;
    animation-name: giro;
    animation-duration: 180s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    /*background-color: #FA0;*/
}
.marcando svg text{
    font-size: 1.7vw;
    font-weight: 300;
    text-transform: uppercase;
}
.marcando > article{
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.marcando > article > img{
    width: 65%;
}
.marcando > article > p{
    font-size: 7vw;
    font-weight: 500;
    font-variation-settings: "wdth" 100;
    margin-left: 5%;
}
.marcando > aside{
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.marcando > aside > div{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.marcando > aside > div > p{
    background-color: var(--rojo);
    font-size: 2.2vw;
    font-weight: 700;
    width: fit-content;
    padding-right: 2vw;
    padding-left: 2vw;
    border-radius: 1vw;
    margin: .5vw;
    line-height: 3.2vw;
    background-color: var(--amarillo);
}
.marcando > aside > div > p:nth-child(1){
    margin-left: 0px;
}
.marcando > aside > div:nth-child(1) > p:nth-child(1){
    background-color: var(--naranja);
}
.marcando > aside > div:nth-child(2) > p:nth-child(1){
    margin-left: 15%;
}
.marcando > aside > div:nth-child(2) > p:nth-child(2){
    background-color: var(--rosa);
    color: #FFF;
}
.marcando > aside > div:nth-child(3) > p:nth-child(1){
    margin-left: 3%;
    background-color: #000;
    color: #FFF;
}
.marcando > aside > div:nth-child(3) > p:nth-child(2){
    background-color: var(--lila);
}

@keyframes giro{
    from{transform: rotate(0deg);}
    to{transform: rotate(3600deg);}
}

/**********************
 *   QUIENES SOMOS    *
 *********************/
.quienes-somos{
    background-color: #000;
    color: #FFF;
    flex-wrap: wrap;
    flex-direction: row;
    padding-top: 12vw;
    padding-bottom: 12vw;
}
.quienes-somos > article{
    width: 60%;
}
.quienes-somos > aside{
    width: 40%;
    height: 10vw;
}
.quienes-somos h1{
    font-weight: 800;
    font-size: 2vw;
    border-left: solid 5px #fff;
    text-align: left;
    padding-left: .5vw;
    line-height: .8;
}
.quienes-somos h2{
    font-weight: 900;
    font-size: 7.5vw;
    line-height: .7;
    margin-top: 4vw;
}
.quienes-somos p{
    color: var(--rojo);
    font-size: 3vw;
    line-height: 1;
    padding-top: 1vw;
}
.quienes-somos p > span{
    font-weight: 700;
}

/*********************
 *      BANNER       *
 ********************/
.banner{
    padding: 0px;
    height: calc(100vh - 80px);
}
.banner > article{
    width: 100%;
    height: 50%;
    display: flex;
    align-items: flex-end;
    line-height: .7;
    font-family: var(--tillburg);
}
.banner > article > h2{
    font-size: 15vw;
    text-align: center;
}
.banner > article:nth-child(1){
    background-color: #000;
}
.banner > article:nth-child(1) > h2{
    color: #FFF;
}
.banner > article:nth-child(2){
    align-items: flex-start;
}
.banner > article:nth-child(2) > h2{
    line-height: 1.05;
}

/**********************
 *      SUCCESS       *
 *********************/
.success > article{
    height: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.success > article > h1{
    font-size: 4vw;
}
.success > article > p{
    font-size: 2vw;
}

/**********************
 *       FOOTER       *
 *********************/
footer{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 2vw;
    padding-top: 2vw;
    color: #FFF;
    height: 20vw;

    background-image: url(../images/footer.png);
    background-position: bottom center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
footer > div{
    width: 33%;
    margin: .1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    padding-left: 5%;
    padding-right: 5%;
}
footer > div *{
    width: 100%;
}
footer > div > h3{
    font-size: 2vw;
    font-weight: 500;
}
footer > div > h2{
    font-weight: 800;
    font-size: 3vw;
}
footer > div > svg{
    width: 40%;
}
footer > div > svg path{
    fill: #FFF;
}
footer > div > a{
    width: 40px;
    font-size: 18px;
    margin: 5px;
}
footer > div:nth-child(3){
    flex-direction: column;
    padding-left: 25%;
}

footer > div > a:hover{
    color: var(--rojo);
}

@media (max-width: 480px){
    h1{
        font-size: 9vw;
    }
    p{
        font-size: 6vw;
    }
    label{
        display: flex;
        top: 18px;
    }
    header > nav{
        position: fixed;
        top: 80px;
        left: 0px;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #000;
        border-radius: 0px;
        flex-direction: column;
        justify-content: center;
        padding-bottom: 24vw;
        display: none;
    }
    header > nav > a{
        font-size: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    canvas{
        width: 300px;
        height: 250px;
        /*background-color: #FA0;*/
    }
    .home > article{
        margin-top: -20px;
    }
    .home > article > h3{
        font-size: 26px;
    }
    .home > article > a {
        font-size: 24px;
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 5px;
        line-height: 35px;
    }
    .home > article > div > a {
        font-size: 27px;
        margin: 10px;
    }
    header{
        justify-content: space-between;
    }
    header > a{
        width: 100px;
        margin-left: 10px;
    }
    header > aside{
        margin-right: 80px;
    }
    .estelar{
        padding-left: 10%;
        padding-right: 10%;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .estelar > article{
        flex-direction: column;
    }
    .estelar > article > article{
        width: 100%;
        margin-bottom: 5vw;
    }
    .estelar > article > article > h4{
        font-size: 7vw;
        margin-bottom: 6vw;
    }
    .estelar > article > article > h2{
        font-size: 9vw;
    }
    .estelar > article > article > h1{
        font-size:12vw;
    }
    .estelar .cantidad-input {
        width: 15%;
        height: 12vw;
        border-radius: 5px;
        font-size: 6vw;
        margin-top: 6vw;
    }
    .estelar .btn-agregar {
        border: solid 1px #000;
        height: 12vw;
        border-radius: 5px;
        font-size: 6vw;
        width: 50%;
        margin-right: 33%;
        margin-left: 2%;
        margin-top: 6vw;
    }
    .estelar > article > div{
        width: 100%;
        height: 70vw;
        margin-top: 6vw;
    }
    .estelar > article > aside{
        width: 100%;
    }
    .estelar > article > aside {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .estelar > article > aside{
        margin-top: 3vw;
    }
    .vista{
        border: solid 1px #999;
        width: 30.33%;
        height: 21vw;
        margin: 1.5%
    }
    footer{
        flex-wrap: wrap;
        padding-top: 40px;
        padding-bottom: 40px;
        height: 80vw;
        align-content: flex-end;
    }
    footer > div{
        width: 100%;
        padding-left: 10%;
        padding-right: 10%;
    }
    footer > div > svg{
        width: 24%;
    }
    footer > div > h3{
        font-size: 7vw
    }
    footer > div > h2{
        font-size: 6vw;
    }
    footer > div:nth-child(1){
        display: none;
    }
    footer > div:nth-child(2){
        /*display: none;*/
    }
    footer > div:nth-child(3){
        padding-left: 10%;
        padding-top: 9vw;
        flex-direction: row;
        justify-content: center;
    }
    footer > div > a{
        font-size: 6vw;
    }
    .banner{
        height: calc(50vh - 80px);
    }
    .mosaico{
        height: 100vh;
    }
    .mosaico > aside > div{
        width: 34%;
    }
    .mosaico > aside > div:nth-child(4){
        display: none;
    }
    .marcando{
        height: auto;
        padding-top: 20vw;
        padding-bottom: 20vw;
    }
    .marcando > h1{
        width: 100%;
        font-size: 10vw;
        text-align: center;
        padding-top: 5vw;
        padding-bottom: 5vw;
    }
    .marcando > div{
        width: 100%;
        background-size: 10vw;
    }
    .marcando svg{
        height: 80vw;
    }
    .marcando svg text{
        font-size: 5vw;
    }
    .marcando > article{
        width: 40%;
        margin-bottom: 10vw;
    }
    .marcando > article > p{
        display: none;
    }
    .marcando > aside{
        width: 80%;
    }
    .marcando > aside > div > p{
        font-size: 8vw;
    }
    .marcando > aside > div > p {
        font-size: 8vw;
        padding-right: 5.5vw;
        padding-left: 5.5vw;
        border-radius: 3vw;
        margin: 2vw;
        line-height: 12vw;
    }
    .quienes-somos{
        padding-top: 30vw;
        padding-bottom: 30vw;
        padding-left: 10%;
        padding-right: 10%;
    }
    .quienes-somos > article{
        width: 100%;
    }
    .quienes-somos h1{
        font-size: 7vw;
    }
    .quienes-somos h2{
        margin-top: 20vw;
        font-size: 15vw;
    }
    .quienes-somos p{
        font-size: 7vw;
        margin-top: 10vw;
    }
    #carrito-modal{
        width: 100%;
        top: 80px;
        height: calc(93vh - 80px);
        padding-bottom: 10vw;
    }
    #carrito-contenido{
        padding-top: 5vw;
    }
    #carrito-contenido > h3{
        font-size: 8vw;
    }
    .mini-item > h2{
        font-size: 8vw;
    }
    .mini-item > p, .mini-item > p > span{
        font-size: 7vw;
    }
    .mini-controles{
        width: 160px;
    }
    .mini-controles > button.eliminar{
        font-size: 6vw;
        /*top: 4px;*/
    }
    .mini-controles > button{
        width: 45px;
        height: 35px;
        font-size: 5vw;
    }
    #modalConfirmacion{
        z-index: 4;
    }
    .modal-contenido > #modalMensaje, #modalLogin > .login-contenido > h2{
        font-size: 6vw;
    }
    .modal-contenido > button, #modalLogin > .login-contenido > button{
        font-size: 4vw;
        width: 45%;
        height: 9vw;
    }
    .modal-contenido > button{
        width: 36%;
    }
    #carrito-contenido > article > h3{
        font-size: 8vw;
    }
    #modalLogin > .login-contenido > input{
        height: 9vw;
        font-size: 4vw;
    }
    .login-contenido{
        width: 95%;
        padding-top: 4vw;
        padding-bottom: 4vw;
        height: 250px;
    }
    .producto-liquido{
        width: 80%;
        height: auto;
        background-color: #f2f2f2;
        margin-top: 5vw;
        margin-bottom: 5vw;
    }
    .producto-liquido > a{
        height: 70vw;
    }
    .producto-liquido > article{
        /*padding: 0px;*/
        padding-left: 5%;
        padding-top: 3vw;
        padding-bottom: 5vw;
    }
    .producto-liquido > article > h3{
        font-size: 8vw;
    }
    .producto-liquido > article > p{
        font-size: 7vw;
        margin-bottom: 3vw;
    }
    .producto-liquido > article > h2{
        font-size: 6vw;
        height: auto;
        width: 100%;
        line-height: 1.2;
    }
    .producto > article > aside{
        width: 100%;
        height: auto;
        padding-top: 4vw;
        justify-content: flex-start;
    }
    .producto-liquido > article > aside > input {
        width: 17vw;
        height: 8vw;
        font-size: 5vw;
    }
    .producto-liquido > article > aside > button {
        width: 31vw;
        height: 7vw;
        font-size: 5vw;
        margin-left: 3vw;
    }
    .registro > aside{
        width: 100%;
    }
    .registro > aside:nth-child(1){
        border: 0px;
        margin-bottom: 10vw;
    }
    .registro > aside > h2{
        font-size: 8vw;
    }
    .registro > aside > p{
        font-size: 6vw;
    }
    .registro > aside > form > input, .registro > aside > form > select{
        height: 10vw;
        font-size: 5vw;
    }
    .registro > aside > form > button, .registro > aside > h3{
        height: 11vw;
        margin-top: 4vw;
        margin-bottom: 5vw;
    }

}







