:root{
    --amarillo: #fbe05b;
    --negro: rgb(30, 30, 28);
    --gris: #e6e6e6;
}

body{
    background: 0;
}

header{
    z-index: 99;
}

#portafolio{
    background-color: #1d1d1b;
}

#portafolio h2{
    font-size: 2.5rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

#portafolio p{
    color: white;
}

#portafolio h3{
    color: white;
    text-transform: uppercase;
    font-size: 2rem;
}

#portafolio span{
    display: block;
    margin-bottom: 1rem;
    color: white;
    font-size: .9rem;
    text-transform: uppercase;
}

#portafolio h3:nth-of-type(2){
    font-size: 1.7rem;
    margin: 2.5rem 0 2rem 0;
    text-align: center;
}

img{
    width: 100%;
}

.porfolio-text ul{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: .5rem;
}

.porfolio-text a{
    width: 100%;
    position: relative;
    display: flex;
    background-color: yellow;
}

.porfolio-text p{
    font-size: 1.3rem!important;
}

#portafolio li:hover{
    filter: saturate(1);
}

#portafolio li:hover img{
    filter: drop-shadow(0px 0px 10px 2px white);
}

.swiper{
    width: 100%;
}

.inner-grid{
    display: grid;
    gap: 1.5rem;
}

.swiper-button-next::after, .swiper-button-prev::after{
    color: #858585dc;
    font-weight: bolder;
}

/* KEYFRAMES DEL SLIDER */
@media screen and (min-width:576px) {
    #portafolio h2{
        font-size: 3rem;
    }
}

@media screen and (min-width:992px) {
    nav{
        margin-top: 0;
    }

    header .container{
        justify-content: space-between;
        align-items: center;
    }

    header{
        background-color: white;
        padding: 0;
        box-shadow: -3px -1px 8px 0px rgba(0,0,0,0.75);
        -webkit-box-shadow: -3px -1px 8px 0px rgba(0,0,0,0.75);
        -moz-box-shadow: -3px -1px 8px 0px rgba(0,0,0,0.75);
    }

    h1{
        width: 6rem;
        height: 5rem;
        background-size: 6rem;
        transition: 400ms;
        background-image: url(/img/logo-laplaza.svg);
    }
    
    .swiper-wrapper img{
        cursor: grab;
    }
}

@media screen and (min-width:1200px){
    
    #portafolio h2{
        font-size: 3.6rem;
    }

    #portafolio h3{
        font-size: 2rem;
    }

    #portafolio p{
        font-size: 1.1vw;
    }
}


