@font-face {
    font-family: 'Pague.la';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/pague-la.woff') format('woff');
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 100;
    color: #777777;
    overflow-x: hidden;
}

header {
    display: flex;
    width: 100%;
    z-index: 150;
    padding: 0 45px;
}

/* header svg {
    position: absolute;
    top: 40px;
    left: 50px;
    width: 100px;
} */

h1 {
    font-family: 'Pague.la', 'Open Sans', sans-serif;
    font-size: 42px;
    margin-top: 0;
}

.animated {
    opacity: 0;
}

header.no-animation {
    transition: none !important;
}

header {
    height: 92px;
    transition: 0.5s;
}

header.header-white {
    position: fixed;
    background-color: #fff;
    color: #000;
    transition: 0.5s;
    height: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

header.header-white .inner-header .menu ul li {
    color: #000;
}

header.header-white svg .top-logo-actuar {
    transition: 0.5s;
    fill: #512da8;
}

header.header-white svg .texto-logo-actuar {
    transition: 0.5s;
    fill: #454952;
}

header.header-white svg .logo-paguela {
    transition: 0.5s;
    fill: url(#a87a7294-f48a-4e1e-a952-989cae7cdf9d);
}

header.header-transparent svg .top-logo-actuar {
    transition: 0.5s;
}

header.header-transparent svg .texto-logo-actuar {
    transition: 0.5s;
}

header.header-transparent svg .logo-paguela {
    transition: 0.5s;
    fill: #fff;
}

header.header-expanded {
    height: 92px;
    transition: 0.5s;
}

header.header-transparent {
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    transition: 0.5s;
}

.inner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.inner-header .menu {
    display: inline-block;
}

.inner-header .menu ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.inner-header .menu ul li {
    display: inline-block;
    font-weight: 100;
    color: #fff;
    padding: 35px 20px;
    position: relative;
    cursor: pointer;
}

.inner-header .menu ul li.active {
    font-weight: 600;
}

.inner-header .menu ul li::after {
    content: " ";
    opacity: 0;
    position: absolute;
    width: calc(100% - 40px);
    height: 2px;
    background-repeat: no-repeat;
    top: 69%;
    left: 50%;
    transform: translate(-50%, 0);
    background-image: url('../imgs/linha-degrade.svg');
    background-size: 100%;
    transition: 0.5s ease;
}

.inner-header .menu ul li.active::after {
    opacity: 1;
}

.menu-normal .inner-header .menu ul li::after {
    top: 65%;
}

/*@keyframes underline-menu {
	0% {
		opacity: 0;
		width: 0;
	}

	100% {
		opacity: 1;
		width: calc(100% - 40px);
	}
}*/

.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-75 {
    margin-bottom: 75px;
}

.logo-actuar {
    display: inline-block;
    width: 100px;
    height: 21px;
    /* background-size: 100px auto; */
    /* background-repeat: no-repeat; */
    /* background-image: url('/imagens/logo-actuar-invertida.png'); */
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-resolution: 1.5dppx),
(-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 144dpi) {
    .logo-actuar {
        /* background-image: url('/imagens/logo-actuar-invertida@2x.png'); */
    }
}

.cta-button,
.cta-button:hover,
.cta-button:active,
.cta-button:focus {
    margin-left: 20px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    background: #22b5ff;
    background: -moz-linear-gradient(45deg, #22b5ff 0%, #4378ff 25%, #6a5cff 50%, #8e42ff 75%, #a42cff 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, #22b5ff), color-stop(25%, #4378ff), color-stop(50%, #6a5cff), color-stop(75%, #8e42ff), color-stop(100%, #a42cff));
    background: -webkit-linear-gradient(45deg, #22b5ff 0%, #4378ff 25%, #6a5cff 50%, #8e42ff 75%, #a42cff 100%);
    background: -o-linear-gradient(45deg, #22b5ff 0%, #4378ff 25%, #6a5cff 50%, #8e42ff 75%, #a42cff 100%);
    background: -ms-linear-gradient(45deg, #22b5ff 0%, #4378ff 25%, #6a5cff 50%, #8e42ff 75%, #a42cff 100%);
    background: linear-gradient(45deg, #22b5ff 0%, #4378ff 25%, #6a5cff 50%, #8e42ff 75%, #a42cff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#22b5ff', endColorstr='#a42cff', GradientType=1);
}

.btn.loading,
.btn.loading:hover {
    margin: 0 auto;
    display: block;
    outline: none;
    color: transparent;
    height: 35px;
    width: 35px;
    padding: 0;
    border-radius: 50%;
    position: relative;
    animation: loadBotao .25s ease, spin .75s linear infinite .25s;
}

.btn.loading:before {
    content: "";
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    display: block;
    margin: 1px;
}

@keyframes loadBotao {
    from {
        height: initial;
        width: initial;
    }
    to {
        height: 35px;
        width: 35px;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.secao-1 {
    width: 100%;
    background: #8e43ff;
    /* Old browsers */
    background: -moz-radial-gradient(bottom left, rgba(0, 247, 255, 1) 0%, rgba(76, 151, 255, 1) 22%, rgba(116, 98, 255, 1) 47%, rgba(142, 66, 255, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-radial-gradient(bottom left, rgba(0, 247, 255, 1) 0%, rgba(76, 151, 255, 1) 22%, rgba(116, 98, 255, 1) 47%, rgba(142, 66, 255, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: radial-gradient(at bottom left, rgba(0, 247, 255, 1) 0%, rgba(76, 151, 255, 1) 22%, rgba(116, 98, 255, 1) 47%, rgba(142, 66, 255, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#01f7ff', endColorstr='#8e43ff', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    overflow: hidden;
    position: relative;
    padding-bottom: 5%;
}

.secao-1::after {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.1);
    top: 0;
}

.secao-1::before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 580px;
    background-image: url('../imgs/bg-shape-pague-la.svg');
    background-repeat: no-repeat;
    background-size: 110% 100%;
    min-width: 1400px;
    left: calc(50% - 1px);
    transform: translateX(-50%);
}

.secao-1 #produto {
    padding-top: 40px;
}

.secao-1 video .nav-video {
    position: relative;
}

.secao-1 video {
    position: relative;
    top: -5px;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: 100%;
}

.secao-1 h1 {
    color: #fff;
    margin-bottom: 20px;
}

.secao-1 p {
    color: #fff;
}

.secao-2 {
    padding: 80px 0 120px;
    position: relative;
}

.secao-2::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    padding-bottom: 3%;
    background-image: url('../imgs/curva-shape.svg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 100;
    margin-top: -2.9%;
}

.secao-2 h1 {
    text-align: center;
}

.destaque {
    color: #00caff;
}

.destaque-2 {
    color: #4379ff;
}

.destaque-3 {
    color: #6a5cff;
}

.card-1 {
    width: 402px;
    margin: 0 auto;
}

.card-1 svg {
    height: 275px;
    width: auto;
}

.card-2 {
    width: 402px;
    margin: 0 auto;
}

.card-2 svg {
    height: 275px;
    width: auto;
}

.play {
    width: 100px;
    margin: 0 auto;
}

.play svg {
    height: 100px;
    width: auto;
}

.shield {
    width: 350px;
    margin: 0 auto;
}

.shield svg {
    height: 350px;
    width: auto;
}

.texto-centralizado {
    text-align: center;
    width: 100%;
}

.italic {
    font-style: italic;
    opacity: 0.3;
}

.italic:first-child {
    margin-right: 10px;
}

.italic:last-child {
    margin-left: 10px;
}

@keyframes cartao-fade {
    0% {
        opacity: 0;
        transform: translate(-15px, 15px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes borda-cartao {
    0% {
        stroke-dasharray: 0, 5000;
    }
    5% {
        opacity: 1;
    }
    100% {
        stroke-dasharray: 5000, 5000;
        opacity: 1;
    }
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control-placeholder {
    position: absolute;
    top: 0;
    padding: 7px 0 0 13px;
    transition: all 200ms;
    opacity: 0.5;
}

.form-control:focus+.form-control-placeholder,
.form-control:valid+.form-control-placeholder {
    font-size: 75%;
    transform: translate3d(0, -100%, 0);
    opacity: 1;
}

.svg-cartao-1 {
    animation: cartao-fade 0.5s ease-out 2.05s forwards;
    opacity: 0;
}

.svg-cartao-2 {
    animation: cartao-fade 0.5s ease-out 1.75s forwards;
    opacity: 0;
}

.svg-cartao-3 {
    animation: cartao-fade 0.5s ease-out 1.55s forwards;
    opacity: 0;
}

.svg-rect-degrad {
    opacity: 0;
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    animation: borda-cartao 3s ease-in-out 2s forwards;
}

.padding-initial {
    padding: 160px 20px 80px 20px;
    position: relative;
    z-index: 2;
}

.padding-lateral {
    padding: 0px 45px;
    position: relative;
    z-index: 2;
}

.shapes-pague-la {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shapes-pague-la .shape-1,
.shapes-pague-la .shape-2,
.shapes-pague-la .shape-3,
.shapes-pague-la .shape-4 {
    background-image: url('../imgs/pague-la-loading.svg');
    background-repeat: no-repeat;
    height: 215px;
}

.shapes-pague-la .shape-1 {
    width: 400px;
    position: absolute;
    top: 120px;
    left: -75px;
}

.shapes-pague-la .shape-2 {
    width: 75px;
    position: absolute;
    top: 180px;
    left: 550px;
}

.shapes-pague-la .shape-3 {
    width: 150px;
    position: absolute;
    top: 380px;
    left: 550px;
}

.shapes-pague-la .shape-4 {
    width: 225px;
    position: absolute;
    top: 450px;
    left: 1000px;
}

/* SEÇÃO 2 */

.icone-dif {
    width: 100px;
}

.cards-dif {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.card-dif h4 {
    font-family: 'Pague.la', sans-serif;
}

.card-dif p {
    font-size: 14px;
}

/* FIM DA SEÇÃO 2 */

/* SEÇÃO 3 */

.secao-3 {
    background-image: url('../imgs/bg-cinza-1.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 140px 0;
}

.secao-3 h1 {
    margin-bottom: 20px;
}

/* FIM DA SEÇÃO 3 */

/* SEÇÃO 4 */

.secao-4 {
    padding: 140px 0;
}

.secao-4 h1 {
    margin-bottom: 20px;
}

/* FIM DA SEÇÃO 4 */

/* SEÇÃO 5 */

/* 
.secao-5 {
    background-image: url('../imgs/bg-cinza-2.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 140px 0;
}

.secao-5 h1 {
    margin-top: 20px;
} */

.secao-5 {
    background: rgba(105, 93, 255, 1);
    background: -moz-linear-gradient(top, rgba(105, 93, 255, 1) 0%, rgba(0, 204, 255, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(105, 93, 255, 1)), color-stop(100%, rgba(0, 204, 255, 1)));
    background: -webkit-linear-gradient(top, rgba(105, 93, 255, 1) 0%, rgba(0, 204, 255, 1) 100%);
    background: -o-linear-gradient(top, rgba(105, 93, 255, 1) 0%, rgba(0, 204, 255, 1) 100%);
    background: -ms-linear-gradient(top, rgba(105, 93, 255, 1) 0%, rgba(0, 204, 255, 1) 100%);
    background: linear-gradient(to bottom, rgba(105, 93, 255, 1) 0%, rgba(0, 204, 255, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#695dff', endColorstr='#00ccff', GradientType=0);
	padding: 140px 0;
}

.secao-5 h1 {
	color: #fff;
	text-align: center;
}

.secao-5 .box-taxas {
	width: 100%;
	display: flex;
}

.secao-5 .box-taxas .taxas {
	width: 50%;
	background-color: #fff;
	border-top-left-radius: 10px;
}

.secao-5 .box-taxas .taxas ul {
	list-style-type: none;
	width: 100%;
	padding-left: 0;
	display: flex;
}

.secao-5 .box-taxas .taxas ul li {
	display: inline-block;
	width: 50%;
	text-align: center;
	padding: 20px 30px;
	border-bottom: 2px solid #f5f5f5;
	cursor: pointer;
}

.secao-5 .box-taxas .taxas ul li:last-child {
	font-family: 'Pague.la', 'Open Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	opacity: 0.7;
}

.secao-5 .box-taxas .taxas .disc-taxas { 
	padding: 20px;
	text-align: center;
}

.secao-5 .box-taxas .taxas .disc-taxas h1 {
	margin: 0;
	color: #009aff;
	font-size: 60px;
	line-height: 72px;
	vertical-align: middle;
}


.secao-5 .box-taxas .taxas .disc-taxas h1 small {
	color: #009aff;
	font-size: 50%;
	line-height: 72px;
	vertical-align: middle;
}

.secao-5 .box-taxas .taxas .disc-taxas h1 small span {
	color: #777777;
}


.secao-5 .box-taxas .taxas ul li.active {
	border-bottom: 2px solid #00caff;
}

.secao-5 .box-taxas .integracao {
	width: 50%;
	background-color: #f5f5f5;
	border-top-right-radius: 10px;
}


/* FIM DA SEÇÃO 5 */

/* SEÇÃO 6 */

.secao-6 {
    padding: 140px 0;
}

.secao-6 h1:last-child {
    margin-bottom: 20px;
}

/* FIM DA SEÇÃO 6 */

/* SEÇÃO 7 */

.secao-7 {
    padding: 0 0 140px 0;
}

.secao-7 .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.secao-7 .form-control-placeholder {
    position: absolute;
    top: 0;
    padding: 7px 0 0 13px;
    transition: all 200ms;
    opacity: 0.5;
}

.secao-7 .form-control:focus+.form-control-placeholder,
.secao-7 .form-control:valid+.form-control-placeholder {
    font-size: 75%;
    transform: translate3d(0, -100%, 0);
    opacity: 1;
}

.secao-7 label {
    cursor: text;
}

.secao-7 h1 {
    margin-bottom: 20px;
}

.secao-7 input,
.secao-7 input:hover,
.secao-7 button,
.secao-7 button:hover {
    width: 100%;
    margin: 0;
    margin-bottom: 30px;
    outline: none;
    height: 50px;
}

.secao-7 input[type="text"] {
    border: 0;
    border-bottom: solid 1px #777;
    color: #777;
    padding: 10px;
    height: 40px;
    line-height: 40px;
    transition: 0.3s;
    border-radius: 0px;
    box-shadow: none;
}


.secao-7 .form-control-placeholder {
    color: #777;
    opacity: 1;
}

/* FIM DA SEÇÃO 7 */

footer {
    width: 100%;
    float: left;
    background-image: url('../imgs/bottom-shape.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    padding: 100px 0px 30px 0px;
    color: #fff;
    font-size: 12px;
}

footer .logo-footer {
    width: 100px;
    float: left;
}

footer .logo-footer:first-child {
    margin-left: 15px;
    margin-right: 15px;
}

footer .logo-footer:last-child {
    margin-left: 15px;
    margin-right: 15px;
}

footer .logo-footer svg {
    height: 30px;
    width: 100%;
}

footer .plus-logo-footer {
    float: left;
    position: relative;
    top: 4px;
    opacity: 0.4;
}

footer a,
footer a:active,
footer a:hover,
footer a:visited {
    color: #fff;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: #00caff;
    transition: 0.3s;
    cursor: pointer;
}

footer .copyright {
    margin-top: 100px;
    font-weight: 400;
    opacity: 0.4;
}

footer p {
    margin: 0px;
}

footer ul {
    list-style-type: none;
    margin: 0;
    margin-top: 30px;
    padding: 0;
}

footer ul li {
    float: left;
    margin-right: 10px;
}

footer ul li:not(:last-child)::after {
    content: '|';
    margin-left: 10px;
}

footer .section-footer {
    width: 270px;
    float: left;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* RESPONSIVO */

@media (min-width: 1200px) {}

@media (min-width: 992px) and (max-width: 1199px) {}

@media (min-width: 992px) {
    .card-dif {
        position: relative;
        width: 25%;
        min-height: 377px;
        padding: 30px 40px;
        -webkit-box-shadow: -7px 0px 0 0 rgba(255, 255, 255, 1), 0 -5px 20px -3px rgba(0, 0, 0, 0.1), 0 5px 20px -3px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: -7px 0px 0 0 rgba(255, 255, 255, 1), 0 -5px 20px -3px rgba(0, 0, 0, 0.1), 0 5px 20px -3px rgba(0, 0, 0, 0.1);
        box-shadow: -7px 0px 0 0 rgba(255, 255, 255, 1), 0 -5px 20px -3px rgba(0, 0, 0, 0.1), 0 5px 20px -3px rgba(0, 0, 0, 0.1);
        margin: 0 -5px;
        background-color: #fff;
        max-height: 550px;
        transition: max-height 1s ease, border-radius 0.25s ease, transform 0.31s ease, box-shadow 0.5s ease;
    }
    .card-dif:first-child {
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
        -webkit-box-shadow: 0 -5px 20px -3px rgba(0, 0, 0, 0.1), -5px 0 20px -3px rgba(0, 0, 0, 0.1), 0 5px 20px -3px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 -5px 20px -3px rgba(0, 0, 0, 0.1), -5px 0 20px -3px rgba(0, 0, 0, 0.1), 0 5px 20px -3px rgba(0, 0, 0, 0.1);
        box-shadow: 0 -5px 20px -3px rgba(0, 0, 0, 0.1), -5px 0 20px -3px rgba(0, 0, 0, 0.1), 0 5px 20px -3px rgba(0, 0, 0, 0.1);
    }
    .card-dif:first-child:hover+.card-dif:nth-child(2) {
        margin-left: calc(25% - 8px);
    }
    .card-dif:nth-child(2):hover+.card-dif:nth-child(3) {
        margin-left: calc(25% - 8px);
    }
    .card-dif:nth-child(3):hover+.card-dif:nth-child(4) {
        margin-left: calc(25% - 8px);
    }
    .card-dif:last-child {
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
        -webkit-box-shadow: -7px 0px 0 0 rgba(255, 255, 255, 1), 0 -5px 20px -3px rgba(0, 0, 0, 0.1), 5px 0 20px -3px rgba(0, 0, 0, 0.1), 0 5px 20px -3px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: -7px 0px 0 0 rgba(255, 255, 255, 1), 0 -5px 20px -3px rgba(0, 0, 0, 0.1), 5px 0 20px -3px rgba(0, 0, 0, 0.1), 0 5px 20px -3px rgba(0, 0, 0, 0.1);
        box-shadow: -7px 0px 0 0 rgba(255, 255, 255, 1), 0 -5px 20px -3px rgba(0, 0, 0, 0.1), 5px 0 20px -3px rgba(0, 0, 0, 0.1), 0 5px 20px -3px rgba(0, 0, 0, 0.1);
    }
    .card-dif .icone-dif svg .path-svg {
        transition: stroke 0.5s ease;
    }
    .card-dif:not(:hover) .icone-dif svg .path-svg {
        stroke: #787f8f;
    }
    .card-dif:hover {
        position: absolute;
        box-shadow: -5px 0 20px -3px rgba(0, 0, 0, 0.1), 0 -5px 20px -3px rgba(0, 0, 0, 0.1), 5px 0 20px -3px rgba(0, 0, 0, 0.1), 0 5px 20px -3px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        transform: translateY(-15px);
        z-index: 10;
        max-height: 1000px;
        min-height: 400px !important;
        /*transition: max-height 1s ease;*/
    }
    .card-dif:hover p span.texto-off {
        opacity: 1;
        height: auto;
        transition: opacity 0.5s ease;
    }
    .card-dif:nth-child(2):hover {
        left: 25%;
    }
    .card-dif:nth-child(3):hover {
        left: 48%;
    }
    .card-dif:nth-child(4):hover {
        left: 72%;
    }
    .card-dif p span.texto-off {
        opacity: 0;
        height: 0;
        display: block;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 30px;
        text-align: center;
    }
    p {
        text-align: justify;
    }
    .padding-lateral {
        padding: 0 20px;
    }
    .secao-1 h1,
    .secao-1 p {
        text-align: left;
    }
    header {
        height: 92px;
    }
    header .inner-header .menu ul {
        display: none;
    }
    .secao-1 #produto {
        flex-direction: column-reverse;
        padding-top: 20px;
    }
    #send-form-success {
        text-align: center;
    }
    .padding-initial {
        padding-top: 130px;
    }
    .card-dif {
        width: 100%;
        padding: 0px;
        margin-left: 0;
    }
    .video {
        margin: 45px auto 0;
        max-width: 500px;
    }
    .card-1 {
        margin-top: 45px;
        max-width: 370px;
    }
    .card-1 svg {
        height: 248px;
        width: auto;
    }
    .card-2 {
        margin-top: 45px;
        max-width: 312px;
    }
    .card-2 svg {
        height: 275px;
        width: auto;
    }
    .shield {
        width: 150px;
    }
    .shield svg {
        height: 150px;
        width: auto;
    }
    h1 {
        /*margin-top: 45px;*/
    }
    .card-dif,
    .card-dif:first-child,
    .card-dif:last-child {
        box-shadow: none;
        -webkit-box-shadow: none;
    }
    .card-dif:not(:first-child) {
        margin-top: 45px;
    }
    .card-dif .icone-dif {
        margin: 0 auto;
    }
    .card-dif h4 {
        text-align: center;
    }
    .secao-2 {
        padding: 80px 0 80px;
    }
    .secao-2:before {
        margin-top: -1.9%;
    }
    .secao-3 {
        padding: 80px 0;
    }
    .secao-3 h1 {
        /*margin: 0px;*/
    }
    .secao-4 {
        padding: 80px 0;
    }
    .secao-4 h1 {
        margin-top: 40px;
    }
    .secao-6 {
        padding: 88px 0;
    }
    .secao-6 h1:last-child {
        margin-top: 0;
    }
    .secao-7 {
        padding: 80px 0px;
    }
    .secao-7 p {
        text-align: center;
    }
    /*.secao-7 .container-form {
			margin: 95px 0;
		}*/
    .secao-7 form {
        margin-top: 40px;
    }
    .section-footer {
        margin-bottom: 45px;
    }
    footer p {
        text-align: left;
    }
    footer .copyright {
        margin-top: 2px;
    }
    footer .plus-logo-footer {
        top: 0px;
    }
    footer .section-footer:first-child {
        flex-direction: initial;
    }
    footer .section-footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .card-dif {
        padding: 20px 30px;
    }
    .card-dif,
    .card-dif:first-child,
    .card-dif:last-child {
        width: 50%;
    }
    .card-dif:not(:first-child) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .secao-1 .mb-75 {
        margin-bottom: 50px;
    }
    .secao-2 {
        padding-top: 60px;
    }
}

@media (max-width: 450px) {
    .card-1 {
        width: 100%;
    }
}

/* GAMB DO CONTAINER - Container irá funcionar somente em LG - Restante dos tamanhos irá ficar 100% */

@media (max-width: 1200px) {
    .container {
        width: 100%;
    }
}

/* fim da gamb do container */

.cta-fixed {
    background: rgba(14, 227, 255, 1);
    background: -moz-linear-gradient(45deg, rgba(14, 227, 255, 1) 0%, rgba(102, 97, 255, 1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(14, 227, 255, 1)), color-stop(100%, rgba(102, 97, 255, 1)));
    background: -webkit-linear-gradient(45deg, rgba(14, 227, 255, 1) 0%, rgba(102, 97, 255, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(14, 227, 255, 1) 0%, rgba(102, 97, 255, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(14, 227, 255, 1) 0%, rgba(102, 97, 255, 1) 100%);
    background: linear-gradient(45deg, rgba(14, 227, 255, 1) 0%, rgba(102, 97, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0ee3ff', endColorstr='#6661ff', GradientType=1);
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    color: #fff;
}

.cta-fixed h3 {
    line-height: 1.1;
    display: inline-block;
    font-family: 'Pague.la', 'Open Sans', sans-serif;
}

.cta-fixed h5 {
    display: inline-block;
    max-width: 35%;
}

.content-cta-fixed {
    width: 100%;
    display: flex;
    margin: 30px 0;
    padding: 0 60px;
    justify-content: center;
    align-content: center;
}

.content-cta-fixed * {
    margin: 0 20px;
}

.content-cta-fixed button,
.content-cta-fixed button:hover,
.content-cta-fixed button:focus {
    color: #4379ff;
    background: #fff;
}

@media (max-width: 800px) {
    .cta-fixed {
        display: none;
    }
}

.erro {
    color: #f00;
    font-size: 14px;
    text-align: center;
}