/* -------------------------------------------------------------------
 * BENEFICIOS
 * -----------------------------------------------------------------*/
#beneficio {
    padding: 2rem 0 5rem;
}

#beneficio h2 {
    font-weight: 800;
    margin-bottom: 2rem !important;
    font-size: 3rem;
    line-height: 47px;
}

#beneficio p {
    font-size: 1.15rem;
    font-weight: 500;
}

#beneficio article {
    margin-top: 2rem;
}

#beneficio article div {
    border: 10px double white;
    padding-top: 5rem;
    border-radius: 0rem;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#beneficio article div img {
    max-height: 70px;
    margin-right: 15px;
}

#beneficio article div h2 {
    margin-bottom: 0 !important;
    color: var(--color-font-light);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 25px;
}

#beneficio article p {
    font-size: 0.95rem;
    margin: 0 auto;
    font-weight: 600;
    padding: 0.5rem 0;
    line-height: 20px;
    text-align: center;
}

#beneficio article.beneficio_article_blue div {
    background-color: var(--color-primary);
}

#beneficio article.beneficio_article_red div {
    background-color: var(--color-secondary);
}


@media(max-width: 767px) {
    #beneficio h2 br {
        display: none;
    }
}

@media(max-width: 575px) {
    #beneficio h2 {
        font-size: 27px;
        line-height: 32px;
        text-align: center;
        font-weight: 700;
    }
    #beneficio p {
        font-size: 1rem;
        font-weight: 500;
        text-align: center;
    }
}



/* -------------------------------------------------------------------
  * ATIVIDADES
  * -----------------------------------------------------------------*/
#atividade {
    padding: 1rem 0 0 0;
}

#atividade h2 {
    font-weight: bold;
    margin-bottom: 2rem !important;
    font-size: 2.6rem;
}

#atividade ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#atividade ul li {
    font-weight: 500;
    font-size: 1.2rem;
    display: flex;
}

#atividade ul li i {
    color: var(--color-primary);
    margin-right: 12px;
}

@media (max-width: 575px) {
    #atividade h2 {
        font-size: 27px;
        line-height: 32px;
    }

}

/* -------------------------------------------------------------------
 * SERVIÇOS
 * -----------------------------------------------------------------*/
#servicos {
    background: var(--color-primary);
    padding: 0;
    position: relative;
    background-image: url(../img/bg.webp);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#servicos .container {
    padding: 10rem 10px 13rem 10px;
}

#servicos h2 {
    font-weight: bold;
    margin-bottom: 2rem !important;
    font-size: 2.6rem;
    color: var(--color-font-light);
}

#servicos h3 {
    font-weight: 400;
    margin-bottom: 0rem !important;
    font-size: 1.4rem;
    color: var(--color-font-light);
}

#servicos .servicos_box img {
    max-width: 90px;
}

#servicos article {
    text-align: center;
    padding-inline: 60px;
    padding-top: 30px;
}

#servicos article h3 {
    font-size: 1.05rem;
    margin-bottom: .8rem !important;
    font-weight: 700;
    padding-top: 24px;
    color: var(--color-font-dark);
}

#servicos article p {
    color: var(--color-font-light);
    font-size: 0.85rem;
    line-height: 16px;
}

/* AMARELO */

#servicos .article-bg {
    position: relative;
    border-radius: 8px;
    padding: 10px;
    color: white;
    width: 100%;
}

#servicos .article-bg::before {
    min-height: 15rem;
    min-width: 15rem;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/pentagono.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    z-index: 0;
    transition: .6s ease;
    transform: rotate(0deg);
    /* Adicione essa linha para definir a rotação inicial */
}

#servicos .article-bg:hover::before {
    transform: rotate(-360deg)
}

#servicos .article-bg article {
    position: relative;
    z-index: 1;
}

/*  VERDE  */

#servicos .article-bg-green {
    position: relative;
    border-radius: 8px;
    padding: 20px;
    color: white;
    width: 100%;
}

#servicos .article-bg-green::before {
    content: "";
    position: absolute;
    min-height: 15rem;
    min-width: 15rem;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/pentagono-green.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    z-index: 0;
    transition: .6s ease;
    transform: rotate(0deg);
    /* Adicione essa linha para definir a rotação inicial */
}

#servicos .article-bg-green:hover::before {
    transform: rotate(360deg)
}

#servicos .article-bg-green article {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
}

#servicos .article-bg img.article-icon {
    position: relative;
    z-index: 1;
    margin-right: 20px;
}

@media(min-width:1999px) {
    #servicos .container {
        padding: 20rem 10px 20rem 10px;
    }
}

@media(max-width:1199px) {
    #servicos h2 br {
        display: none;
    }
}

@media(max-width:575px) {
    #servicos h2 {
        font-size: 2rem;
    }

    #servicos .container {
        padding: 5rem 1rem;
    }
    #servicos h3 {
        font-weight: 400;
        margin-bottom: 3rem !important;
        font-size: 1.2rem;
        color: var(--color-font-light);
        text-align: center;
    }
    #servicos article {
        text-align: center;
        padding-inline: 60px;
        padding-top: 70px;
        height: 260px;
    }
}

@media(max-width:575px) {
    #servicos .svg_footer {
        bottom: -2px;
    }
}


/* -------------------------------------------------------------------
  * ABRIR EMPRESA
  * -----------------------------------------------------------------*/
#abrirempresa {
    padding: 2rem 0 5rem 0;
}

#abrirempresa h2 {
    font-weight: bold;
    margin-bottom: 2rem !important;
    font-size: 2.6rem;
}

#abrirempresa ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#abrirempresa ul li {
    font-weight: 500;
    font-size: 1.3rem;
    display: flex;
}

#abrirempresa ul li i {
    color: var(--color-primary);
    margin-right: 12px;
}

#abrirempresa .btn-21 {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

#abrirempresa .btn-21:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary) !important;
}


@media(max-width:767px) {
    #abrirempresa h2 br {
        display: none;
    }
}

@media(max-width:575px) {
    #abrirempresa {
        padding: 4rem 0 3rem;
    }

    #abrirempresa h2 {
        font-size: 2rem;
    }

    #abrirempresa .btn-21 {
        display: block;
        width: max-content;
        margin: 0 auto;
    }
}



/* -------------------------------------------------------------------
 * PLANOS
 * -----------------------------------------------------------------*/
#planos {
    padding: 3rem 0;
}

#planos h2 {
    font-weight: bold;
    margin-bottom: 2.5rem !important;
    font-size: 3rem;
    line-height: 3.2rem;
}



#planos .plano-mt-1 {
    margin-top: 3rem;
}

#planos .plano-mt-2 {
    margin-top: 6rem;
}

#planos .plano div {
    padding: 1.5rem 0 2.5rem;
    border-radius: 1rem;
    border: 8px double var(--color-font-dark);
}

#planos .plano div:hover {
    border: 8px double var(--color-primary);
}

#planos .plano div h3 {
    font-weight: 600;
    color: var(--color-font-light);
    font-size: 1.5rem;
    padding-top: 20px;
    line-height: 23px;
}

#planos .plano div .bg-selo {
    padding: 20px;
    background-image: url('../img/faixa.png');
    background-size: contain;
    /* Cobrir o espaço disponível */
    background-repeat: no-repeat;
    background-position: center;
    /* Centralizar a imagem no fundo */
    border: none;
    margin-bottom: 1rem;
}

#planos .plano div .valor {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-font-light);
    margin-bottom: 1.5rem !important;
    line-height: 20px;
}

#planos .plano div .valor .small {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-font-light);
}

#planos .plano div ul {
    padding: 0;
    display: inline-block;
    margin: 0 auto;
}

#planos .plano div ul li {
    list-style-type: none;
    text-align: center;
    line-height: 23px;
    color: var(--color-font-dark);
    display: flex;
    font-weight: 500;
}

#planos .plano div ul li i {
    color: var(--color-font-dark);
    font-size: .4rem;
    margin-right: 0.5rem;
    display: flex;
    margin-right: 10px;
    align-items: center;
}

@media (max-width:768px) {
    #planos h2 br {
        display: none;
    }

    #planos .plano-mt-1,
    #planos .plano-mt-2 {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    #planos h2 {
        font-size: 2rem;
    }
}


/* -------------------------------------------------------------------
 * SIMULADOR
 * -----------------------------------------------------------------*/
#simulador {
    padding: 1rem 0 3rem;
}

#simulador h2 {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

@media (max-width:991px) {
    #simulador h2 {
        font-size: 1.3rem;
    }
}

@media (max-width:767px) {
    #simulador h2 br {
        display: none;
    }
}



/* -------------------------------------------------------------------
  * MIGRAR EMPRESA
  * -----------------------------------------------------------------*/
#migrarempresa {
    padding: 4rem 0 5rem;
}

#migrarempresa h2 {
    font-weight: bold;
    margin-bottom: 2rem !important;
    font-size: 2.6rem;
}

#migrarempresa ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#migrarempresa ul li {
    font-weight: 500;
    font-size: 1.3rem;
    display: flex;
    justify-content: flex-start;
    /* Novo estilo adicionado */
}

#migrarempresa ul li i {
    color: var(--color-secondary);
    margin-right: 12px;
}

#migrarempresa .col-12.col-md-7 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Novo estilo adicionado */
}

@media(max-width:767px) {
    #migrarempresa h2 br {
        display: none;
    }
}

@media(max-width:575px) {
    #migrarempresa {
        padding: 4rem 0 3rem;
    }

    #migrarempresa h2 {
        font-size: 2rem;
    }

    #migrarempresa .btn-21 {
        display: block;
        width: max-content;
        margin: 0 auto;
    }

}


/* -------------------------------------------------------------------
 * OUTRAS SOLUÇÔES (MEI, ME)
 * -----------------------------------------------------------------*/
#solucao {
    padding: 3rem 0 4rem 0;
}

#solucao h2 {
    font-weight: 700;
    font-size: 2.5rem;
}

#solucao article {
    background-color: var(--color-primary);
    padding: 0.6rem;
    border-radius: 0px;
    border: 10px double white;
}

#solucao article.bg-secondary {
    background-color: var(--color-secondary) !important;
}

#solucao article img {
    max-height: 70px;
    margin-right: 1rem;
}

#solucao article h2 {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
    color: var(--color-font-light);
    display: contents;
}

#solucao article:hover {
    transition: .5s;

}

#solucao p {
    font-weight: 500;
    font-size: 1.2rem;
    display: flex;
    line-height: 23px;
    color: var(--color-primary);
    padding: 1rem 0;
}

#solucao ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#solucao ul li {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
}

#solucao ul li i {
    color: var(--color-primary);
    margin-right: 12px;
    display: flex;
    align-items: center;
}


@media (max-width: 991px) {
    #solucao ul {
        display: grid;
        justify-content: center;
    }
}

@media(max-width:599px) {
    #solucao {
        padding: 1rem 0 3rem 0;
    }

    #solucao article h2 br {
        display: none;
    }
}

@media(max-width:575px) {
    #solucao h2 { font-size: 2rem; margin-top: 1rem; }
}

@media(max-width:399px) {
    #solucao h2 { font-size: 1.8rem; }
}



/* -------------------------------------------------------------------
 * SESSAO CLIENTE
 * PERGUNTAS FREQUENTES E DEPOIMENTOS
 * -----------------------------------------------------------------*/
#cliente {
    background: var(--color-primary);
    padding: 5rem 0;
    background-image: url(../img/bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#cliente h2 {
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: var(--color-font-light);
}

#cliente #perguntas .accordion {
    background: transparent;
    border: 0;
    padding: .5rem 0;
    text-align: left;
    display: flex;
    align-items: center;
}

#cliente #perguntas .accordion p {
    margin-bottom: 0;
    color: var(--color-font-light);
}

#cliente #perguntas .accordion i {
    font-size: 10px;
    color: var(--color-primary);
    margin-right: 12px;
}

#cliente #perguntas button:focus {
    outline: 0px !important;
}

#cliente #perguntas .panel {
    display: none;
    margin-top: -0.1rem;
    margin-bottom: 1rem;
    padding: 0 1.3rem;
}

#cliente #perguntas .panel p {
    margin-bottom: 0 !important;
    color: var(--color-font-light);
    background-color: var(--color-font-dark);
    padding: 10px;
    font-size: 0.9rem;
}

#cliente #depoimentos .item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: 4px double var(--color-font-light);
    margin: 0 auto;
    padding: 20px 25px;
    border-radius: 1rem;
    min-height: 240px;
}

#cliente #depoimentos .item .text-box {
    color: var(--color-font-light);
}

#cliente #depoimentos .item p {
    font-weight: bold;
    margin: 0.5rem 0;
    color: var(--color-font-light);
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent !important;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    outline: 0 !important;
}
.owl-carousel .owl-nav button.owl-next i, 
.owl-carousel .owl-nav button.owl-prev i { color: #FFF; font-size: 1.35rem !important; } 


@media(max-width:767px) {
    #cliente h2 {
        font-size: 2rem;
    }
}



/* -------------------------------------------------------------------
 * NOTICIAS - ARTIGOS - BLOG
 * -----------------------------------------------------------------*/
#noticias {
    padding: 4rem 0;
}

#noticias h2 {
    font-weight: 600;
    font-size: 2.2rem;
}

#noticias .artigos article,
#noticias .blog article {
    min-height: 260px;
}

#noticias .noticias article span,
#noticias .artigos article span,
#noticias .blog article span {
    color: var(--color-font-light);
    font-size: .8rem;
    line-height: 1rem;
    border-radius: 5px;
    padding: 6px 16px;
    display: inline-block;
    margin-bottom: 10px;
}

#noticias .noticias article h3,
#noticias .artigos h3,
#noticias .blog h3 {
    font-size: 1.1rem;
    font-weight: 500;
    font-weight: 600;
    margin: 6px 0 2px 0;
}

#noticias .noticias article span {
    background-color: var(--color-primary);
}

#noticias .noticias article p {
    font-weight: 600;
    font-size: .8rem;
    color: var(--color-secondary);
}

#noticias .artigos article span {
    background-color: var(--color-secondary);
}

#noticias .artigos article p {
    font-weight: 600;
    font-size: .8rem;
}

#noticias .blog article span {
    background-color: var(--color-primary);
}

#noticias .blog article p {
    font-weight: 600;
    font-size: .8rem;
}

#noticias article .image-cover {
    position: relative;
    padding: 0 !important;
    height: auto;
}

#noticias article .image-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 1s;
}

@media (max-width:575px) {
    #noticias h2 {
        font-size: 1.8rem;
    }
}



/* -------------------------------------------------------------------
 * NEWSLETTER
 * -----------------------------------------------------------------*/
#newsletter {
    padding: 2rem 0 4rem 0;
}

#newsletter h2 {
    font-weight: 600;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 1rem;
}

#newsletter input {
    border: 2px solid var(--color-primary);
    min-width: 420px;
    padding: 25px 20px;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1rem;
    border-radius: 8px;
    s
}

#newsletter input::placeholder {
    font-weight: 600;
    color: var(--color-font-black);
}

@media (max-width:991px) {
    #newsletter h2 {
        font-size: 1.1rem;
    }

    #newsletter h2 br {
        display: none;
    }

    #newsletter input {
        min-width: 200px;
    }
}

@media (max-width:767px) {
    #newsletter h2 {
        text-align: center;
        font-size: 2rem;
    }
}


/* -------------------------------------------------------------------
 * PARCEIROS
 * -----------------------------------------------------------------*/
#parceiros {
    padding: 2rem 0 3rem;
}

#parceiros h2 {
    font-weight: 600;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--color-font-light)
}


#parceiros .btn-21 {
    background-color: var(--color-font-dark)!important;
    color: var(--color-font-light)!important;
}

#parceiros .btn-21:hover {
    background-color: var(--color-secondary)!important;
}


#parceiros .bg {
    background: #fff;
    border-radius: 10px;
    margin: 3px;
    padding: 1rem;
}

@media(max-width:767px) {
    #parceiros h2 {
        font-size: 2rem; margin-top: 2rem;
    }
}

@media(max-width:499px) {
    #parceiros {
        padding: 0 0 3rem;
    }
}


/* -------------------------------------------------------------------
 * SOCIAL
 * -----------------------------------------------------------------*/
#social {
    padding: 2rem 0;
}

#social h2 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.6rem;
}

#social img {
    max-width: 65px;
    margin: 0 5px 1rem;
}



/* -------------------------------------------------------------------
 * FOOTER
 * -----------------------------------------------------------------*/
#footer {
    position: relative;
}

#footer-container {
    background-image: url(../img/bg.webp);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 15rem;
}

#footer-container h2 {
    font-weight: bold;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--color-font-light);
}

#footer-container .contatos-group-button article {
    background: rgba(255, 255, 255, 0.803);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    margin: 5px 0px;
}

#footer-container .contatos-group-button article h3 {
    color: var(--color-primary);
    font-size: 1.9rem;
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 2rem;
}

#footer-container .contatos-group-button article img {
    max-height: 90px;
}


#footer-container .contatos-group-button .btn_theme_tertiary {
    font-size: 1.4rem;
    color: var(--color-font-light);
    font-weight: 500;
    display: block;
    width: 80%;
    margin: 5px 10%;
    background-color: var(--color-primary-hover);
    padding: 0.5rem;
}

#footer-container .contatos-group-button .btn_theme_tertiary:hover {
    background: var(--color-primary);
    color: var(--color-font-light);
}


#footer-container .contatos-group-info {
    margin: 4rem 0 3rem;
}

#footer-container .contatos-group-info strong {
    color: var(--color-font-light);
    font-size: 1.1rem;
    font-weight: bold;
}

#footer-container .contatos-group-info p {
    display: block;
    color: var(--color-font-light);
    margin-bottom: .2rem;
    font-size: 1rem;
}



#footer #mapa {
    width: 90%;
    height: 360px;
    border: 0;
    margin: 0 5%;
    display: block;
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
}

/* Copy */
#footer #copyright {
    background: var(--color-primary);
}

#footer #copyright .container {
    padding: 1.2rem 0 1.5rem 0;
}

#footer #copyright p {
    font-size: .9rem;
    letter-spacing: 1px;
    margin: 0;
    color: var(--color-font-light) !important;
}

#footer #copyright .selos {
    padding-left: 3rem;
    padding-right: 3rem;
}

#footer #copyright .selos a {
    color: var(--color-font-light);
}

#footer #copyright .selos .d-flex p {
    font-size: 0.6rem;
    text-transform: uppercase;
    margin: 0 0 9px 0;
}

#footer #copyright .selos img {
    max-height: 35px;
}


@media (min-width:1999px) {
    #footer #footer-container {
        padding-top: 20rem;
    }
}

@media (max-width:1100px) {

    #footer #footer-container {
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
    }
}

@media (max-width:799px) {
    #footer #footer-container {
        clip-path: none;
        padding-top: 8rem;
        background-attachment: scroll;
    }

    #footer #footer-container .contatos p {
        max-width: 100%;
    }

    #footer #copyright p {
        text-align: center;
        font-size: 0.7rem;
        letter-spacing: 0px;
    }
}

@media (max-width:575px) {
    #footer-container .contatos-group-button article {
        margin-bottom: 1rem;
    }

    #footer-container h2 {
        font-size: 2rem;
    }

    #social img {
        max-width: 50px;
    }
}

@media(max-width:449px) {
    #footer-container h2 {
        font-size: 1.8rem;
    }
    #footer #copyright {
        padding-bottom: 2.5rem;
    }
}