/*
* **********************************
* ################################## ESTILOS DO INDEX
* **********************************
*/

/*
========================
======================== ESTILOS GERAIS DO ÍNDICE
========================
*/


/*
========================
======================== BANNER
========================
*/

.banner {
    display: block;
    position: relative;
    z-index: 7;
    border-bottom: 2px solid #FFF;



}

.banner-mobile {
    display: none;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .banner {
        display: none;
    }

    .banner-mobile {
        display: block;
    }
}

.banner-item {
    width: 100%;
}

/*dots*/
.banner .slick-dots {
    text-align: center;
    position: relative;
    margin-top: -50px;
}

.banner-mobile .slick-dots {
    margin-top: 20px;
    text-align: center;
    position: relative;
}

.banner .slick-dots li,
.banner-mobile .slick-dots li {
    display: inline-block;
}

.banner .slick-dots li button,
.banner-mobile .slick-dots li button {
    background: transparent;
    display: block;
    width: 13px;
    height: 13px;
    margin: 2px;
    cursor: pointer;
    border: 2px solid #FFF;

    font-size: 0;
    outline: 0;
    padding: 0;

    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.banner .slick-dots li:hover button,
.banner .slick-dots li.slick-active button,
.banner-mobile .slick-dots li:hover button,
.banner-mobile .slick-dots li.slick-active button {
    background: #FFF;
}


/*
========================
======================== PLANS
========================
*/

.plans .content {
    display: flex;
    flex-wrap: wrap;
}

.plans-header {
    flex-basis: 100%;
    margin-bottom: 50px;
}

@media(max-width: 1024px){
    .plans-header {
        text-align: center;
    }
}

.plans-header h1 {
    font-size: 2.875em;
    line-height: 0.957;
    font-weight: 400;
}

@media(max-width: 1024px){
    .plans-header h1 {
        font-size: 2em;
        line-height: 0.957;
    }
}

.plans-header h1 strong {
    font-weight: 600;
    display: block;
}

.plans-header p {
    font-size: 1.375em;
    line-height: 1.273;
    font-weight: 300;
    margin-top: 10px;
}

.plans-list {
    flex-basis: 100%;
    overflow: hidden;
    padding: 30px;
    margin: 0 -30px;
}

.plans-list .slick-list{
    overflow: visible !important;
}

.plans-item {
    background-color: #FFF;
    height: 220px;

    box-shadow: 0px 1px 13px 0px rgba(32, 31, 31, 0.1);
    -webkit-box-shadow: 0px 1px 13px 0px rgba(32, 31, 31, 0.1);
    -moz-box-shadow: 0px 1px 13px 0px rgba(32, 31, 31, 0.1);

    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.plans-item-cover {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}


/* the slides */
.plans-list .slick-slide {
    margin: 0 20px;
}

/* the parent */
.plans-list .slick-list {
    margin: 0 -20px;
}

/*dots*/
.plans-list .slick-dots {
    margin-top: 20px;
    text-align: center;
    position: relative;
}

.plans-list .slick-dots li {
    display: inline-block;
}

.plans-list .slick-dots li button {
    background: #ee4b3f;
    display: block;
    width: 12px;
    height: 12px;
    margin: 2px;
    cursor: pointer;

    font-size: 0;
    outline: 0;
    padding: 0;
    border: 0;

    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.plans-list .slick-dots li:hover button,
.plans-list .slick-dots li.slick-active button {
    width: 34px;
    background: #fdca05;
}

/*
========================
======================== SERVICES
========================
*/

.services {
    padding: 40px 0;
}

.services .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.services-about {
    flex-basis: 48%;
}

@media(max-width: 1024px){
    .services-about {
        flex-basis: 100%;
        text-align: center;
    }
}

.services-about-header h1 {
    font-size: 2.875em;
    line-height: 0.957;
    font-weight: 300;
}

@media(max-width: 1024px){
    .services-about-header h1 {
        font-size: 2em;
    }
}

.services-about-header h1 strong {
    font-weight: 600;
    /*display: block;*/
}

.services-about .htmlchars {
    font-size: 1.25em;
    line-height: 1.3;
    color: #201f1f;
    font-weight: 300;
    margin-top: 10px;
}

.services-about .btn {
    background-color: transparent;
    border: 2px solid #f15423;
    font-size: 1.25em;
    color: #201f1f;
    padding: 13px 30px 10px 30px;
    margin-top: 15px;

    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
}

.services-about .btn:hover {
    background-color: #f15423;
    color: #FFF;
}

.services-access {
    flex-basis: 48%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

@media(max-width: 1024px){
    .services-access {
        flex-basis: 100%;
        text-align: center;
        margin-top: 40px;
    }
}

.services-access-item {
    background-color: #fff;
    flex-basis: 48%;
    padding: 20px;

    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;

    box-shadow: 0px 12px 32px 0px rgba(32, 31, 31, 0.1);
    -webkit-box-shadow: 0px 12px 32px 0px rgba(32, 31, 31, 0.1);
    -moz-box-shadow: 0px 12px 32px 0px rgba(32, 31, 31, 0.1);

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;

}

@media(max-width: 1024px){
    .services-access-item {
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .services-access-item:last-child{
        margin-bottom: 0;
    }
}

.services-access-item:hover {
    background-color: #ffdf4f;

}

.services-access-item-icon {
    background-color: #FFF;
    width: 112px;
    height: 112px;
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
}

@media(max-width: 1024px){
    .services-access-item-icon {
        margin: 0 auto;
    }
}

.services-access-item h1 {
    font-size: 1.625em;
    font-weight: 600;
    line-height: 1.1em;
    color: #201f1f;
    margin-top: 13px;
}

.services-access-item p {
    font-size: 1em;
    line-height: 1.2em;
    font-weight: 400;
    color: #201f1f;
    margin-top: 13px;
}

.services-access-item .btn{
    width: 100%;
    font-size: 1em;
    font-weight: 600;
    padding: 13px 10px 8px 10px;
    border: none;
    background: #f15423;
    color: #FFF;
    margin-top: 20px;

    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.services-access-item .btn:hover{
    background-color: #a62003;
}

/*
========================
======================== DOUBTS
========================
*/

.doubts {
    margin-top: 50px;
    background: url("../../img/global/custom/bg-doubts.png") center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
}

.doubts .content {
    display: flex;
    flex-wrap: wrap;
    padding: 70px 0 40px 0;
    justify-content: flex-end;
}

.doubts-box {
    flex-basis: 50%;
}

@media(max-width: 1024px){
    .doubts-box {
        flex-basis: 100%;
    }
}

.doubts-box-header {
    padding-left: 30px;
    margin-bottom: 30px;
}

@media(max-width: 1024px){
    .doubts-box-header {
        flex-basis: 100%;
        padding-left: 0;
        text-align: center;
    }
}

.doubts-box-header h1 {
    font-size: 3em;
    color: #FFF;
    font-weight: 500;
}

.doubts-box-header p {
    font-size: 1.6em;
    line-height: 1.1;
    color: #FFF;
    font-weight: 300;
    margin-top: -10px;
}

.doubts .j-accordion {
    background-color: #f4f4fc;
    padding: 25px;
    margin-bottom: 5px;

    border-left: 10px solid #00aac1;

    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.doubts .j-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.doubts .j-accordion-header > h1 {
    flex-basis: 80%;
    font-size: 1.25em;
    color: #2e3034;
    font-weight: 400;
}

@media (max-width: 1366px) {
    .doubts .j-accordion-header > h1 {
        font-size: 1em;
    }
}

.doubts .j-accordion-header span {

    width: 30px;
    height: 30px;
    position: relative;
}

.doubts .j-accordion-header span:after {
    font-size: 1.2em;
    color: #00aac1;
    font-weight: 400;

    font-family: "top-vida" !important;
    content: "\66";
    position: absolute;
    left: 0;
    top: 0;
}

.doubts .j-accordion.active .j-accordion-header span:after {
    content: "\67";
}

.doubts .j-accordion-content {
    margin-top: 20px;
    display: none;
}

.doubts .j-accordion-content .htmlchars p {
    font-size: 1em;
    font-weight: 300;
    line-height: 1.1;
}

.doubts .j-accordion-content .htmlchars a {
    display: inline-block;
    cursor: pointer;
    padding: 13px;
    background: #8826d0;
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    line-height: 1.1;
    text-align: center;
    border: none;
    text-transform: uppercase;
    -webkit-appearance: none;

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.doubts .j-accordion-content .htmlchars a:hover {
    background: #46116d;
}


/*
========================
======================== ACCREDITED NETWORK
========================
*/

.accredited-network .content {
    display: flex;
    flex-wrap: wrap;
    padding: 90px 0;
}

.accredited-network-header {
    flex-basis: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.accredited-network-header h1 {
    font-size: 2.875em;
    line-height: 0.957;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .accredited-network-header h1{
        font-size: 2em;
    }
}

.accredited-network-header h1 strong {
    font-weight: 600;
}

.accredited-network-header p {
    font-size: 1.375em;
    line-height: 1.273;
    font-weight: 300;
    margin-top: 10px;
}


@media (max-width: 1024px) {
    .accredited-network-header p{
        font-size: 1.2em;
    }
}


.accredited-network .btn {
    width: 350px;
    margin: 10px auto 0 auto;

    font-size: 1.375em;
    font-weight: 600;
    border: none;
    background: #ffdf4f;
    padding: 20px 0 15px 0;
    color: #201f1f;

    box-shadow: 0px 12px 32px 0px rgba(32, 31, 31, 0.1);
    -webkit-box-shadow: 0px 12px 32px 0px rgba(32, 31, 31, 0.1);
    -moz-box-shadow: 0px 12px 32px 0px rgba(32, 31, 31, 0.1);


    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.accredited-network .btn:hover{
    background-color: #d2ae0e;
}



/*
========================
======================== WORK
========================
*/

.work {
    background: url("../../img/global/custom/bg-work.png") no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
}

.work .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 0;
}

.work-left {
    flex-basis: 48%;
    display: flex;
    align-items: center;
}

@media(max-width: 1024px){
    .work-left {
        flex-basis: 100%;
        text-align: center;
    }
}

.work-header h1 {
    font-size: 2.875em;
    line-height: 0.957;
    color: #FFF;
    font-weight: 300;
}

@media(max-width: 1024px){
    .work-header h1{
        font-size: 2em;
    }
}

.work-header h1 strong {
    font-weight: 600;
}

.work-header p {
    font-size: 1.375em;
    line-height: 1.364;
    color: #FFF;
    margin-top: 20px;
}

@media(max-width: 1024px){
    .work-header p{
        font-size: 1.2em;
    }
}

.work-right {
    flex-basis: 48%;
}

@media(max-width: 1024px){
    .work-right {
        flex-basis: 100%;
        margin-top: 40px;
    }
}

.work form {
    display: flex;
    flex-wrap: wrap;
}

.work form label {
    flex-basis: 100%;
}

.work form .label_group {
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.work form .label_group label {
    flex-basis: 49%;
}

.work form input,
.work form select,
.work form textarea {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    width: 100%;
    background-color: #FFF;
    border: 0 !important;
    outline: 0 !important;
    font-size: 1em !important;
    font-weight: 300 !important;
    color: #313335 !important;
    padding: 18px !important;

    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.work form textarea {
    height: 160px;
}

.work .attachment {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

.work .attachment label {
    width: 100%;
    background: #FFF url("../../img/global/custom/icon-anexo.png") center right 15px no-repeat;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1em;
    border: 0;
    color: #313335;
    padding: 18px;
    text-align: left;

    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.contact-form .attachment .attachment-file {

    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    border: 0;
    cursor: pointer;
}

.work form input:focus {
    background-color: #e8ebed;
}

.work form ::-webkit-input-placeholder {
    opacity: 1;
    color: #313335;
}

.work form ::-moz-placeholder {
    opacity: 1;
    color: #313335;
}

.work form :-ms-input-placeholder {
    opacity: 1;
    color: #313335;
}

.work form :-moz-placeholder {
    opacity: 1;
    color: #313335;
}

.work form .btn {
    color: #FFF;
    padding: 18px 40px;
    font-size: 1.2em;
    font-weight: 400;
    text-transform: inherit;

    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

@media (max-width: 640px) {
    .work form .btn {
        width: 100%;
    }
}