@import url('comunes.min.css');

body {
    font-family: 'Didonesque Stencil';
    /* font-weight: 500; */
    /* font-style: normal; */
    color: var(--primary-color);

    line-height: 1.6;
    font-size: 1.1rem;
    
    position: relative;
    z-index: -2;
}

/* N A V B A R */
nav {
    position: relative;
    z-index: 0;
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    position: fixed;
}

nav.menuIzquierda {
    left: 0;
}

nav.menuIzquierda img {
    width: 90%;
}

nav.menuIzquierda a, nav.menuDerecha a {
    display: block;
    width: 100%;
    height: 100%;
}

nav.menuDerecha {
    right: 0;
}

nav ul {
    /* position: fixed; */
    width: 60px;
    height: 100%;
}

nav ul li {
    height: 100%;
    width: 100%;
    text-align: center;
    padding-top: 1rem;
}

nav ul a span {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: normal;
    display: block;
    transform-origin: center;
    transform: translateY(110%) translateX(0%) rotate(90deg);
}

/* N O T I C I A  */
#tienda {
    position: relative;
    padding:0 60px;
    background-color: var(--secondary-color);
    z-index: -1;
    /* padding-bottom: 2rem; */
}

#tienda .cabecera {
    position: relative;
    padding:9rem 0 1rem 0rem;;
    background-image: url('../images/directorioFondoIzq.svg'); 
    background-repeat: no-repeat;
    background-position: 5rem 1rem;
}

#tienda .cabecera a {
    position: absolute;
    top:0;
    left:0;
    width: 330px; 
    height: 140px;

}

.nota {
    max-width: 1100px;
    width: 95%;
    border:1px solid balck;
    margin:auto;
}

.nota article {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.nota article div {
    margin-left: 1rem;
}

.nota article main h1 {
    font-family: 'Catamaran';
    font-size: 3rem;
    font-weight: normal;
    margin-bottom: 1rem;
    text-align: right;
    padding-right: 2rem;
}

.nota article main h2 {
    font-family: 'Catamaran';
    font-size: 1rem;
    font-style: italic;
    font-weight: normal;
    margin-bottom: 1rem;
    text-align: right;
    padding-right: 2rem;
}

.nota article main p {
    font-family: 'Catamaran';
    font-weight: 200;
    padding-right: 2rem;
    text-align: justify;
}


/* I N F O */
#tienda .info {
    font-family: 'Catamaran';
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
}

#tienda .info div, #tienda .info .red {
    margin: 0;
}

#tienda .info>div:nth-child(2){
    text-align: right;
    margin-right: 2rem;
}

#tienda .info a {
    font-family: 'Catamaran';
    color: var(--primary-color);
    display: flex;
    align-items: center;
    margin-bottom: 0.6rem;
}

#tienda .info img {
    width: 25px;
    margin-right: 6px
}
    
.nota article main .fila {
    width: 100%;
    font-family: Catamaran;
    color: #FAFAFA;
    margin: 0;
}

.nota article main .fila .btn {
    border: 2px solid #fafafa;
    color: #fafafa;
    padding: .2rem 1rem;
    font-weight: 600;
}

.nota article main .fila .btn:hover{
    color: var(--secondary-color);
    background-color: var(--primary-color);
}

@media screen and (max-width:1150px) {

}

@media screen and (max-width:780px) {
    #tienda .cabecera {
        background-position: 2rem 1rem;
    }

    .nota article {
        grid-template-columns: 1fr;
    }

    .nota article main p {
        margin-bottom: 1rem;
    }

    .nota article div img {
        width: 95%;
    }

}

@media screen and (max-width:589px) {
    nav.menuIzquierda, nav.menuDerecha {
        display: none;
    }

    #tienda {
        padding: 0;
        margin: auto;
    }

    #tienda .cabecera {
        background-position: 1.5rem 1rem;
    }

    .nota {
        padding-left: 1rem;
    }

    .nota article main h1 {
        font-size: 2rem;
        text-align: justify;
    }

    .nota article main h2 {
        text-align: left;
    }

    .nota article main p {
        padding-right: 1.5rem;
    }
    
    .nota article main img {
        margin-top: -1rem;
    }

    #tienda .info {
        grid-template-columns: 1fr;
    }

    #tienda .info .red {
        margin-bottom: 1.2rem;
    }

    #tienda .info img {
        width: 30px;
        margin-right: 10px
    }
}



