#paginaCases {
    float: left;
    width: 100%;
}

/* Bloco Inicial */

.blocoInicial {
    float: left;
    width: 100%;
    background: url('../images/bg-topo.jpg') center center no-repeat;
    background-size: cover;
    padding: 170px 0 80px 0;
}

.blocoInicial .container {
    display: flex;
    align-items: center;
}

.blocoInicial .col-sm-6 {
    padding: 0 15px;
}

.blocoInicial .boxTextos .preTitulo {
    color: #AAAAAA;
    float: left;
    width: 100%;
    font-size: 13px;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    font-weight: 500;
}

.blocoInicial .boxTextos h1 {
    background: linear-gradient(120deg, hsl(358deg 85% 58%) 0%, hsl(354deg 70% 46%) 34%, hsl(345deg 55% 34%) 56%, hsl(310deg 35% 28%) 65%, hsl(275deg 35% 34%) 74%, hsl(255deg 38% 42%) 88%, hsl(240deg 38% 49%) 100%);;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
    font-size: 30px;
    line-height: 42px;
    font-weight: 500;
    margin: 0;
}

/* Lista Cases */

.listaCases {
    float: left;
    width: 100%;
    padding: 70px 0;
}

.listaCases ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0 0 50px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 40px;
}

.listaCases ul li {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.listaCases ul li figure {
    float: left;
    width: 100%;
    margin: 0;
}

.listaCases ul li figure img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.listaCases ul li h2 {
    color: #474747;
    float: left;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    margin: 15px 0 15px 0;
}

.listaCases ul li p {
    float: left;
    width: 100%;
    font-size: 13px;
    line-height: 20px;
    margin: 0 0 20px 0;
	color: #474747;
}

.listaCases ul li a.linkCase {
    color: #061021;
    border-radius: 10px;
    padding: 12px 30px;
    border: solid 1px #061021;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.1s linear;
    font-weight: 600;
}

.listaCases ul li a.linkCase:hover {
    transform: scale(1.03);
}

/* Demo Rápida */

.boxLinkDemoRapida {
    float: left;
    width: 100%;
    padding: 0 0 70px 0;
}

.boxLinkDemoRapida .boxBg {
    float: left;
    width: 100%;
    background: url('../images/bg-topo.jpg') top right no-repeat;
    background-size: cover;
    border-radius: 40px;
    padding: 50px;
    text-align: center;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.boxLinkDemoRapida .boxBg .preTitulo {
    color: #717680;
    float: left;
    width: 100%;
    font-size: 13px;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    font-weight: 500;
    text-align: center;
}

.boxLinkDemoRapida .boxBg h2 {
    float: left;
	width: 100%;
	color: #474747;
    font-size: 30px;
    line-height: 42px;
    font-weight: 600;
    margin: 0 0 30px 0;
    text-align: center;
    position: relative;
}

.boxLinkDemoRapida .boxBg a {
    color: #fff;
    background-color: #EF373E;
    border-radius: 10px;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.1s linear;
    font-weight: 600;
    display: inline-block;
}

.boxLinkDemoRapida .boxBg a:hover {
    transform: scale(1.03);
}

@media screen and (max-width: 1000px) {

    #paginaCases .container {
        max-width: 100%;
        padding: 0 10px;
    }

}

@media screen and (max-width: 768px) {

    /* Bloco Inicial */

    .blocoInicial {
        padding: 100px 0 40px 0;
    }

    .blocoInicial .container {
        flex-direction: column;
    }

    .blocoInicial .col-sm-6 {
        width: 100%;
    }

    .blocoInicial .col-sm-6 + .col-sm-6 {
        margin-top: 30px;
    }

    .blocoInicial .boxTextos h1 {
        font-size: 24px;
        line-height: 34px;
    }

    /* Lista Cases */

    .listaCases {
        padding: 50px 0 30px 0;
    }

    .listaCases ul {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
    }

    /* Link Demo Rápida */

    .boxLinkDemoRapida {
        padding: 50px 0;
    }

    .boxLinkDemoRapida .container {
        padding: 0 20px!important;
        float: left;
        width: 100%;
    }

    .boxLinkDemoRapida .boxBg {
        padding: 30px 20px;
    }

    .boxLinkDemoRapida .boxBg h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .boxLinkDemoRapida .boxBg a {
        width: 100%;
    }

}

@media screen and (max-width: 450px) {

    /* Lista Cases */

    .listaCases ul {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 15px;
    }
	
	.listaCases ul li a.linkCase {
		width: 100%;
		text-align: center;
	}

}