@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@800');

body {
    font-family: 'Comfortaa', cursive;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
}

p {
    font-weight: 400;
    line-height: 30px;
}

.lnr {
    display: inline-block;
    fill: currentColor;
    width: 1em;
    height: 1em;
    vertical-align: -0.05em;
}

a:focus {
    outline: none;
    outline-offset: none;
}

a:hover {
    text-decoration: none;
}


.background-fullwidth {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.background-fixed {
    background-attachment: fixed;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.height-100 {
    height: 100vh;
    min-height: 600px;
}

.btn-primary {
    border-radius: 50px;
    padding: 15px 45px;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    border: 0;
}

.btn-colord {
    color: #fff;
}

.btn-colord:hover {
    color: #fff;
}

.btn-white {
    background: #fff;
}

.shadow {
    box-shadow: 0.5px 0.866px 10px 0px rgb(0, 0, 0);
}

a,
.btn-white,
.btn-theme:before,
.menue-header .dropdown-menu .dropdown-item,
.slide .content-bottom,
.slide .content-bottom h2,
.boxes .box:hover .lnr {
    transition: all ease 0.3s;
}

.space-15 {
    height: 15px;
}

.space-20 {
    height: 20px;
}

.space-25 {
    height: 25px;
}

.space-50 {
    height: 50px;
}

.padding-100 {
    padding: 100px 0;
}
.padding-top-100 {
    padding-top: 100px;
}

.lity-close {
    text-shadow: none !important;
}

.lity-content:after {
    box-shadow: none !important;
}

.section-title h3 {
    font-size: 60px;
    font-weight: 900;
    margin: 0;
}

.section-title h3 span.white {
    color: #fff !important;

}

.section-title p {
    font-size: 18px;
    font-weight: 600;
    max-width: 750px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title h3 {
        font-size: 40px;
    }
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.loader-wrapper {
    width: 70px;
    height: 35px;
    overflow: hidden;
    position: absolute;
    top: calc(50% - 17px);
    left: calc(50% - 35px);
}

.loader {
    width: 70px;
    height: 70px;
    border-style: solid;
    border-top-color: #FFF;
    border-right-color: #FFF;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotate 3s ease-in-out infinite;
    transform: rotate(-200deg)
}

@keyframes rotate {
    0% {
        border-width: 10px;
    }

    25% {
        border-width: 3px;
    }

    50% {
        transform: rotate(115deg);
        border-width: 10px;
    }

    75% {
        border-width: 3px;
    }

    100% {
        border-width: 10px;
    }
}

.menue-header {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 999;
    border-radius: 0;
    border: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.menue-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0px 13px 35px -12px rgba(0, 0, 0, 0.15);
    animation: menu_sticky 0.7s ease-in-out;
}

@keyframes menu_sticky {
    0% {
        margin-top: -120px;
        opacity: 0;
    }

    50% {
        margin-top: -64px;
        opacity: 0;
    }

    100% {
        margin-top: 0;
        opacity: 1;
    }
}

.navbar-brand {
    background-image: url("../../web_assets/img/logo.png");
    background-repeat: no-repeat;
    height: 40px;
    width: 245px;
    display: block;
}

.sticky-logo{
    background-image: url("../../web_assets/img/logo_white.png");
    background-repeat: no-repeat;
    height: 40px;
    width: 245px;
    display: block;
}

.menue-header .navbar {
    padding: 0;
}

.menue-header .navbar-light .navbar-toggler {
    border-color: #FF5959;
    outline: none;
}

.menue-header .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='' stroke-miterlimit='0' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.menue-header .navbar .navbar-nav .nav-item>.nav-link {
    color: #313f49;
    /* margin: 20px 10px; */
    font-weight: 400;
    position: relative;
    padding: 20px;
}
.sticky .navbar .navbar-nav .nav-item>.nav-link {
    color: #FFF;
}

.menue-header .navbar .navbar-nav .nav-item>.nav-link:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: #fff;
    transform: translateX(-50%);
    -webkit-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menue-header .navbar .navbar-nav .nav-item>.nav-link:hover:before {
    width: 100%;
}

.menue-header .navbar .navbar-nav .nav-item>.nav-link.active:before {
    width: 100%;
}

.menue-header .dropdown-menu {
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: 0;
    transform: translateY(-15px);
    animation: hide_dropdown_menu 0.2s ease-in-out;
    display: block;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .04);
    height: 0;
    transition: all ease 0.1s;
}

@keyframes hide_dropdown_menu {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.menue-header .dropdown-menu.show {
    animation: show_dropdown_menu 0.2s ease-in-out forwards;
    visibility: visible;
    height: auto;
}

@keyframes show_dropdown_menu {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.menue-header .dropdown-menu .dropdown-item {
    padding: .75rem 1.5rem;
}

.menue-header .dropdown-menu .dropdown-item:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .menue-header {
        padding: 1em;
    }

    .menue-header .dropdown-menu {
        display: none;
    }

    .menue-header .dropdown-menu.show {
        display: block;
    }

    .menue-header .navbar .navbar-nav .nav-item>.nav-link {
        padding: 10px;
    }

    .menue-header .dropdown-menu .dropdown-item {
        padding: 10px;
    }
}

.slide {
    position: relative;
}

.slide:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 0;
    border-right: 100vw solid #fff;
    border-top: 200px solid transparent;
    width: 0;
    z-index: 0;
}

.slide .content-bottom {
    padding-top: 130px;
    position: relative;
    z-index: 1;
}

.slide .content-bottom h2 {
    font-size: 60px;
    font-weight: 700;
    color: #313f49;
    line-height: 80px;
    padding-left: 150px;
}

.slide .content-bottom p {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
}
.slide .content-bottom p span{
    color: #313f49;
    font-weight: 700;
}

@media (max-width: 1366px) {
    .slide .content-bottom {
        padding-top: 170px;
    }
}

@media (min-width: 992px) {
    .slide .content-bottom img {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .slide .content-bottom h2 {
        font-size: 60px;
        line-height: 60px;
    }
}

.boxes .box {
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.boxes .box:hover:after {
    width: 100%;
}

.boxes .box .icon {
    padding: 25px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    width: 110px;
    height: 110px;
}

.boxes .box .lnr {
    font-size: 55px;
    line-height: 60px;
}

.boxes .box img {
-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.55);
-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.55);
box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.55);
}

.boxes .box h4 {
    color: #ff5959;
    margin: 0;
}

.boxes .box p {
    color: #313f49;
    margin: 0 auto;
    font-size: 18px;
}

@media (max-width: 767px) {
    .boxes .box {
        margin-bottom: 30px;
    }
}

footer .copyright {
    padding: 25px 0 25px 0;
    background-color: #ff5959;
}

footer .development {
    padding: 25px 0 25px 0;
    background-color: #FFF;
    color: #313f49;
}

footer .development p {
    font-weight: 400;
    margin: 0;
    line-height: 20px;
    color: #313f49;
    text-align: center;
    font-size: 13px;
}

footer .development p a{
    color: #313f49;
    text-decoration: none;
}

footer .copyright p {
    font-weight: 400;
    margin: 0;
    line-height: 20px;
    color: #fff;
    text-align: center;
}

footer .copyright .footer-small {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    line-height: 40px;
    color: #313f49;
    text-align: center;
}

footer .copyright div div div p, footer .copyright div div div p a{
    text-decoration: none !important;
    color: #FFF !important;
}

.halfbar{
    background-color: #ff5959;
    display: block;
    width: 90%;
    min-height: 120px;
    margin-top: -170px;
    margin-left: 10%;
    -webkit-border-top-left-radius: 100px;
    -moz-border-radius-topleft: 100px;
    border-top-left-radius: 100px;    
}

.slidebar{
    background-color: #ff5959;
    display: block;
    width: 100%;
    min-height: 200px;
    -webkit-border-top-left-radius: 50px;
    -moz-border-radius-topleft: 50px;
    border-top-left-radius: 50px;
    padding: 90px 120px 40px 120px;
    text-align: center;
    color: #fff;
}

.topics{
    background-color: #ff5959;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding: 50px;
    position: relative;
    z-index: 100;
}

.fundo-topics{
    z-index: 90;
    background-color: #313f49;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-top: -150px;
    height: 250px;
}

.planos{
    background-color: #313f49;
    color: #fff;
    font-size: 14px;
}

.planos-blocks{
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.planos-blocks > div > div{
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #FFF;
    color: #313f49;
    padding: 40px;
}

.planos-blocks > div > div > p{
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

.price{
    text-align: center;
    color: #ff5959;
    font-size: 55px !important;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    padding-top: 30px;
}

.planos-blocks .notes{
    padding-top: 40px;
    padding-bottom: 40px;
}

.planos-blocks .notes p{
    font-size: 12px;
    line-height: 14px;
}

.btn-adesao, .btn-trial{
    max-width: 200px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    background-color: #ff5959;
    color: #fff;
    padding: 15px 30px 15px 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.45);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.45);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.45);    
}
.btn-trial{
    font-size: 14px;
    line-height: 18px;
    padding: 5px 15px 5px 15px !important;
    height: 50px !important;
}
.btn-adesao:hover, .btn-trial:hover{
    background-color: #fff;
    color: #ff5959;
    text-decoration: none;
}

.no-padding{
    padding: 0;
}

legend {
    border-bottom: 1px solid #CCC;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

button:focus {
    outline: 0px dotted !important;
    outline: 0px auto -webkit-focus-ring-color !important;
}

.selo{
    width: 175px;
    height: 175px;
    position: absolute;
    z-index: 999;
    right: 15%;
    cursor: pointer;
}
.selo img{
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .menue-header {
        top: 0px;
    }    
    .navbar-brand {
        background-image: url("../../web_assets/img/logo_white.png");
        background-repeat: no-repeat;
        height: 40px;
        width: 245px;
        display: block;
    }
    .slide .content-bottom {
        padding-top: 100px;
    }    
    .slide .content-bottom h2 {    
        padding: 0;
        text-align: center;
    }
    .halfbar {
        width: 100%;
        margin-left: 0;
        border: 1px solid #ff5959;
        -webkit-border-top-left-radius: 20px;
        -moz-border-radius-topleft: 20px;
        border-top-left-radius: 20px;
        -webkit-border-top-right-radius: 20px;
        -moz-border-radius-topright: 20px;
        border-top-right-radius: 20px;
    }
    .selo{
        width: 150px;
        height: 150px;
        left: 15%;
    }
    .slidebar {
        min-height: 200px;
        border: 1px solid #ff5959;
        -webkit-border-top-left-radius: 0px;
        -moz-border-radius-topleft: 0px;
        border-top-left-radius: 0px;
        padding: 40px 20px 40px 20px;
        text-align: justify;
    }
    .topics {
        border: 1px solid #ff5959;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        padding: 20px 10px 20px 10px;
        max-width: 85%;
    }
    .topics div ul {
        padding: 0;
    }
    .fundo-topics {
        border: 1px solid #313f49;
        -webkit-border-top-left-radius: 20px;
        -webkit-border-top-right-radius: 20px;
        -moz-border-radius-topleft: 20px;
        -moz-border-radius-topright: 20px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        margin-top: -180px;
        height: 270px;
    }    
    #planos, .planos {
        border: 1px solid #313f49;
    }    
    .planos {
        padding-top: 125px;
    }    
    .planos-blocks div {
        padding: 0;
        margin-bottom: 10px;
    }    
    .planos-blocks {
        max-width: 80%;
    }
    footer .copyright .footer-small {
        line-height: 25px;
    }
}

