/*header*/
#bg-nav {
    background-image: url("/images/bg-nav4.jpg");
    background-repeat: no-repeat;
    background-size: cover
}

.top-nav {
    background-color: #326e4b;
    display: flex;
    justify-content: flex-end;
    padding: 5px;
}

.top-nav a {
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    margin: 10px;
}

/* .center-nav {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 2em 0;
} */

.center-nav .button-assinante {
    align-self: center;
    margin: 2em 0;
}

/* menu tentativa 4854513 */
.bottom-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #326a4b;
    height: 8vh;
}

.bottom-nav a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.bottom-nav a:hover {
    opacity: 0.7;
}

.bottom-nav a img {
    width: 20px;
    margin: 5px;
}

ul.nav-list {
    padding: 0;
    margin: 0;
}

.nav-list {
    z-index: 1;
    position: inherit;
    list-style: none;
    display: flex;
}

.nav-list li {
    /* letter-spacing: 3px; */
    margin: 0 12px;
    font-size: 0.9rem;
}



.mobile-menu {
    cursor: pointer;
    display: none;
}

.mobile-menu div {
    width: 32px;
    height: 2px;
    background: #fff;
    margin: 8px;
    transition: 0.3s;
}

.link-top {
    display: none;
}

@media (min-width: 1101px) {
    ion-icon.hide {
        display: none;
    }

    ul.submenu-1 {
        display: none;
    }

    ul.align-mobile {
        display: none;
    }

    .nav-subscriber {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 1100px) and (min-width: 501px) {
    body {
        overflow-x: hidden;
    }

    li.hide-mobile,
    .container .info-nav,
    .hide-mobile {
        display: none;
    }

    ion-icon.hide {
        margin: 0 10px;
    }

    .top-nav {
        justify-content: flex-start
    }

    .bottom-nav {
        background: transparent;
        margin: 0;
        padding: 0;
    }

    .bottom-nav a img {
        margin: 5px 15px 5px 5px;
    }

    .nav-list {
        z-index: 1;
        position: absolute;
        width: 100vw;
        /*tamanho do menu responsivo */
        background: #326a4b;
        flex-direction: column;
        transition: transform 0.3s ease-in;
        left: 0;
        align-items: flex-start;
        transform: translateX(-150%);
        border-bottom-right-radius: 5px;

    }

    .nav-subscriber {
        top: 0;
        /* altura do menu*/
        height: 100vh;
        position: fixed;
        z-index: 1000;
        overflow-y: auto;
        bottom: 0;
        width: 100vw;
    }

    .nav-general {
        top: 0;
        /* altura do menu*/
        height: 100vh;
        position: fixed;
        z-index: 1000;
        overflow-y: auto;
        bottom: 0;
        width: 100vw;
    }

    .nav-list li {
        margin-left: 1em;
        opacity: 0;

    }

    ul.submenu-1 {
        padding: 0;
        list-style: none;
        margin: 0;
    }

    ul.submenu-1 li.submenu-item {
        padding: 0 2.1em;
    }

    ul.align-mobile {
        display: flex;
        flex-direction: column;
        align-items: baseline;
    }

    ul.align-mobile li.submenu-item {
        padding-left: 35px;
    }

    .mobile-menu {
        display: block;
    }

    .links-top {
        display: none;
    }

    .link-top {
        display: block;
    }
}

@media (max-width: 500px) {
    body {
        overflow-x: hidden;
    }

    li.hide-mobile,
    .container .info-nav,
    .hide-mobile {
        display: none;
    }

    ion-icon.hide {
        margin: 0 10px;
    }

    .top-nav {
        justify-content: flex-start
    }

    .bottom-nav {
        background: transparent;
        z-index: 1;
        position: inherit;
        margin: 0;
        padding: 0;
    }

    .bottom-nav a img {
        margin: 5px 15px 5px 5px;
    }

    .nav-list {
        position: absolute;
        background: #326a4b;
        flex-direction: column;
        transition: transform 0.3s ease-in;
        left: 0;
        align-items: flex-start;
        transform: translateX(-150%);
        border-bottom-right-radius: 5px;

    }

    .nav-subscriber {
        top: 0;
        /* altura do menu*/
        height: 100vh;
        position: fixed;
        z-index: 1000;
        overflow-y: auto;
        bottom: 0;
        width: 100vw;
    }

    .nav-general {
        top: 4.5vh;
        /* altura do menu*/
        height: 95.5vh;
        width: 100vw;
        /*tamanho do menu responsivo */
    }

    .nav-list li {
        margin-left: 1em;
        opacity: 0;

    }

    ul.submenu-1 {
        padding: 0;
        list-style: none;
        margin: 0;
    }

    ul.submenu-1 li.submenu-item {
        padding: 0 2.1em;
    }

    ul.align-mobile {
        display: flex;
        flex-direction: column;
        align-items: baseline;
    }

    ul.align-mobile li.submenu-item {
        padding-left: 35px;
    }

    .mobile-menu {
        display: block;
    }

    .links-top {
        display: none;
    }

    .link-top {
        display: block;
    }
}

@media(max-width: 991px) {
    .nav-general {
        top: 0;
        /* altura do menu*/
        height: 100vh;
        position: fixed;
        z-index: 1000;
        overflow-y: auto;
        bottom: 0;
        width: 100vw;
        /*tamanho do menu responsivo */
    }

    .nav-list {
        padding-top: 10px;
    }
}

.nav-list.active {
    transform: translateX(0);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
    opacity: 0;
}

.mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
}

.mobi-menu-sub {
    background-color: #326a4b;
    padding: 10px 0;
}

.dropdown-menu button a {
    color: rgb(46, 46, 46);
}

/* displays */
.dsp-fx {
    display: flex;
}

.jc-sa {
    justify-content: space-around;
}

.jc-sb {
    justify-content: space-between;
}

.jc-l {
    justify-content: left;
}

.jc-c {
    justify-content: center;
}

.jc-se {
    justify-content: space-evenly;
}

.jc-end {
    justify-content: flex-end;
}

.fx-wr {
    flex-wrap: wrap;
}

/* area anunciante */
.cabecalho {
    background-color: #356a4b;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 2em 10em;
    align-items: center;
    color: #fff;
    display: flex;
}

.cabecalho img {
    width: 150px;
}

.ad-titulos {
    margin: 0 2em
}

@media screen and (min-width: 801px) {
    .cabecalho {
        justify-content: space-between;
    }

    .ad-input-image {
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (max-width: 600px) {
    .cabecalho {
        flex-wrap: wrap;
        flex-direction: column;
        padding: 2em 1em;
    }
}

@media screen and (max-width: 800px) {
    .cabecalho {
        justify-content: center;
    }

    .cabecalho img,
    .cabecalho .ad-titulos,
    .cabecalho a {
        margin: 1.5em;
    }

    .ad-input-image {
        display: block;
    }

    .showAlternateImageInput {
        margin-top: 1.5em;
    }

}


.advertiser-blade label {
    font-size: 1.1em;
    margin-top: 15px;
    font-weight: bold;
}

.advertiser-blade .no-label label {
    margin: 0;
    font-weight: normal;
}

.advertiser-blade .takeoverViewInputDiv {
    margin-left: 25px;
    margin-bottom: 15px;
}

.size-column {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

/* pop up completar cadastro */
.pop-up-cadastro {
    position: fixed;
    top: 16vh;
    right: 10px;
    z-index: 99;
    background-color: #c4e6d3;
    color: #29583d;
    padding: 10px 15px;
    border-radius: 10px;
    max-width: 175px;
}

#close-pop-up {
    font-size: 1.2rem;
}

.pop-up-content {
    padding: 15px;
    padding-top: 0;
}

.pop-up-content a {
    color: #29583d;
}

/* email unsubscriber */
.mail-section {
    max-width: 50%;
    margin: 5em auto;
    padding: 40px;
    border-radius: 10px;
    border: solid 1px rgb(0 0 0 / 0.2);
    box-shadow: 0 0 5px 1px #ddd;
}

.mail-section img {
    margin-bottom: 2em;
    width: 200px;
}

.mail-section h4 {
    margin: 10px;
    padding: 25px;
    text-align: justify;
}

@media (max-width: 700px) {
    .mail-section {
        max-width: 80%;
        padding: 20px;
    }

    .mail-section h4 {
        text-align: center;
        padding: 10px;
    }
}

/* outros */
.card-shadow {
    margin: 1em 0;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    /*font-size: 1rem;*/
}

.card-idx {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    margin-bottom: 2rem;

}

.resp-img {
    width: 100%;
}

.suggested-tag a {
    color: #326a4b;
}

/* containers */
@media screen and (max-width: 600px) {
    .container-section {
        width: 90%;
        margin: auto;
    }
}

@media screen and (min-width: 601px) and (max-width: 999px) {
    .container-section {
        width: 85%;
        margin: auto;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1500px) {
    .container-section {
        width: 80%;
        margin: auto;
    }
}

@media screen and (min-width: 1501px) {
    .container-section {
        width: 75%;
        margin: auto;
    }
}

.resp-img {
    max-width: 100%;
}


/* footer */
#bg-footer {
    background: #326a4b url("https://storage.plantiodireto.com.br/images/footer.JPG");
    background-repeat: no-repeat;
    background-size: cover;
}

.container-footer {
    width: 90%;
    margin: auto;
}

.disp-footer {
    color: white;
}

.disp-footer a {
    text-decoration: none;
    color: white;
}

.disp-footer a:hover {
    color: rgb(175, 171, 171);
}

.footer1,
.footer2,
.footer3 {
    margin: 5%;
}

.footer2 ul,
.footer3 ul {
    list-style: none;
    padding: 0;
}

.footer2 li {
    font-size: 1.2em;
    padding: 2.5px;
}

.footer3 li {
    font-size: 3em;
    display: inline;
    margin: 10px 15px 0 0;
}

@media screen and (max-width: 870px) {
    .disp-footer {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        color: white;
    }

    .footer1 {
        padding-top: 5%;
        padding-bottom: 5%;
    }
}

@media screen and (min-width: 871px) and (max-width: 1250px) {
    .container-footer {
        padding: 5% 0;
    }

    .media-jc-sa {
        justify-content: space-around;
    }

    .footer2,
    .footer3 {
        margin: 0 5%;
    }

    .footer1 {
        text-align: center;
        margin-top: 0;
    }
}

@media screen and (min-width: 1251px) and (max-width: 1500px) {
    .disp-footer {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        color: white;
    }

    .footer1 {
        align-self: center;
    }

    .footer2,
    .footer3 {
        margin-right: 0;
        margin-left: 0;
        padding-right: 50px;
    }
}

@media screen and (min-width: 1501px) {
    .disp-footer {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        color: white;
    }

    .footer1 {
        align-self: center;
        margin-right: 10%;
        margin-left: 0;
    }

    .footer2,
    .footer3 {
        margin-right: 0;
        margin-left: 0;
        padding-right: 50px;
    }
}

/*subscriber - header*/


/*banners*/
@media (max-width: 1024px) {

    .title-table-idx,
    .table-sign {
        display: none;
    }

    .title-card-idx,
    .card-sign {
        display: block;
    }

}

@media (min-width: 1025px) {

    .title-table-idx,
    .table-sign {
        display: block;
    }

    .title-card-idx,
    .card-sign {
        display: none;
    }

    #close-mobile {
        display: none;
    }

    .mt-100 {
        margin-top: 0 !important;
    }
}

.container-banner-top img {
    margin-top: 2.5em;
    width: 100%;
}

.container-banner-idx {
    width: 85%;
    margin: auto
}

.container-banner-idx img,
.banner img {
    width: 100%;
}

.banner-anuncios {
    text-align: center;
}

.banner-anuncios img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}



.pdd-top {
    padding-top: 2em;
}

.pdd-btm {
    padding-bottom: 2em;
}

/* index */
.verMais {
    padding-bottom: 2em;
}

.comu-idx table

/*.books-idx table*/
    {
    margin: 15px 0;
}

.text-comu {
    margin: 2rem;
}

.card-size {
    max-width: 19rem;
}

.green-text-idx {
    background-color: #326e4b;
    text-transform: uppercase;
    color: #fff;
}

.green-text-idx div {
    align-self: center;
}

.green-text-idx button {
    margin: 20px 0;
    border-radius: 50px 50px;
}

.comu-idx {
    margin: 5% auto;
    align-self: center;
}

.abs-banner img {
    width: 100%;
    margin: -27px;
}

@media (min-width: 1025px) {
    .container-comu-idx {
        display: flex;
        justify-content: space-between;
        position: relative;
    }

    .abs-banner {
        position: absolute;
        left: 7.5%;
        right: 7.5%;
        top: 2.5%;

    }

    .comu-idx {
        margin-top: 25%;
        width: 80%;
    }

    .green-text-idx {
        display: flex;
        padding: 15% 11% 15% 2%;
        width: 30%;
        align-self: stretch;
    }
}

@media (max-width: 1024px) and (min-width: 501px) {

    .abs-banner {
        position: block;
        margin: 5% 7.5%;
    }

    .comu-idx {
        width: 85%;
        margin-top: 5%;
    }

    .green-text-idx {
        padding: 5em;
        display: block;
    }

    .green-text-idx h1 {
        text-align: center;
    }

    .mt-100 {
        margin-top: 100px !important;
    }
}

@media (max-width: 500px) {
    .comu-idx {
        width: 85%;
        margin-top: 10%;
    }

    .abs-banner {
        position: block;
        margin: 5% 7.5%;
    }

    .green-text-idx {
        padding: 2.5em;
        display: block;
    }

    .green-text-idx h1 {
        text-align: start;
    }
}

.table-sign th {
    padding: 20px;
}

.table-sign {
    border-radius: 0.25rem;
}

.table-sign span {
    margin-left: 2rem;
}

.table-comu img {
    width: 20px;
    margin-right: 10px;
    text-align: center;
}

.table-comu {
    /*box-shadow: 5px 5px 5px rgb(167, 167, 167);*/
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    font-size: 1rem;
    background-color: #fff;
}

.table-comu tr th {
    background-color: #326e4b;
    color: #fff;
}

.table-comu h4,
.table-comu p {
    padding: 0;
    margin: 0;
}

.card-header-sign {
    background-color: rgba(50, 110, 75, 0.8);
    padding: 20px;
    color: white;
}

.sign-part {
    margin-left: 50px;
}

.btn-comu {
    margin-bottom: 5px;
}

.container-produtos-idx,
.container-noticias-idx {
    background-color: #fff;
}

.produtos-idx,
.noticias-idx {
    width: 85%;
    margin: auto;
}

.posts-idx,
.videos-idx {
    width: 85%;
    margin: auto;
    padding: 3em 0;
}

.title-section-idx {
    padding-top: 2rem;
    margin-bottom: 2em;
    color: grey;
    border-bottom: rgba(128, 128, 128, 0.7) solid 1px;
}

.card-content-idx {
    text-align: justify;
}

.card-content-idx h5 {
    font-weight: bold;
    text-align: left;
    text-transform: uppercase;
}

.card-produto .card-body a {
    color: #326a4b;
}

.card-produto a:hover {
    opacity: 0.7;
}


.footer-prod {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-prod h6,
.card-produto h5 {
    margin: 0;
}



.card-item-content {
    margin: 2em;
}

/* quem somos */
.container-qs {
    margin: 5% auto;
}

.content-qs p {
    text-align: justify;
    line-height: 26px;
    font-size: 1.2em;
}

@media screen and (max-width: 600px) {
    .container-qs {
        width: 85%;
        text-align: center;
    }

    .img-qs {
        margin-bottom: 15px;
        width: 100%;
    }
}

@media screen and (min-width: 601px) and (max-width: 999px) {
    .container-qs {
        width: 80%;
        text-align: center;
    }

    .img-qs {
        float: right;
        margin: 0 0 0 15px;
        max-width: 50%;
        max-height: 500px;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1500px) {
    .container-qs {
        width: 75%;
    }

    .img-qs {
        float: right;
        margin: 0 0 0 15px;
        max-width: 40%;
        max-height: 500px;
    }
}

@media screen and (min-width: 1501px) {
    .container-qs {
        width: 75%;
    }

    .img-qs {
        float: right;
        margin: 0 0 0 15px;
        max-width: 35%;
        max-height: 500px;
    }
}


/*noticias e blog */
.align-news,
.align-blog {
    margin: 25px 0;
}

.card-news,
.card-blog {
    margin: 0 5px 25px 5px;
}

.news,
.blog {
    text-align: justify;
}

.news h5,
.blog h5 {
    font-weight: bold;
    text-align: left;
    text-transform: uppercase;
}

.vermais-btn {
    text-align: center;
}

/* noticia-show e blog-show */
.noticia-date,
.post-date {
    margin: 5% 0;
}

.n-date-icon img,
.p-date-icon img {
    background-color: #326e4b;
    display: inline-block;
    width: 50px;
    padding: 10px;
}

.n-date,
.n-date-icon,
.p-date,
.p-date-icon {
    display: inline-block;
}

.n-date,
.p-date {
    margin: 0 10px;
}

.noticia h3,
.post h3 {
    font-weight: bold;
    text-transform: uppercase;
}

.noticia p,
.post p {
    text-align: justify;
    font-size: 1.2em;
    margin: 4% 0;
}

.btn-share {
    text-align: center;
    margin-bottom: 25px;
}

/*carrinho */
.botoes-carrinho a {
    margin-bottom: 2em;
    margin-top: 1em;
    margin-left: 1em;
}

.preco-produto-selecionado {
    margin: 0;
    padding: 0;
    align-self: center;
}

@media (max-width: 500px) {
    .lyt-itens {
        display: none;
    }

    .lyt-itens2 {
        display: block;
    }

    .lyt-itens2 img {
        width: 100%;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .lyt-itens2 .card {
        margin: 2em 0;
    }

    .content-lyt2 {
        margin: 1em;
    }

    .subtotal,
    .botoes-carrinho {
        display: flex;
        justify-content: center;
    }

    .mt-100 {
        margin-top: 100px !important;
    }
}

@media (min-width: 501px) {
    .lyt-itens {
        display: flex
    }

    .lyt-itens2 {
        display: none;
    }

    .subtotal,
    .botoes-carrinho {
        display: flex;
        justify-content: flex-end;
    }
}

.card-item-left img {
    max-width: 200px;
    min-height: 275px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.mg {
    margin: 0 1em;
}

/* subscriber - faq */
.container-faq h1 {
    color: #29583d;
    text-transform: uppercase;
    font-weight: bold;
    margin: 2% 0;
}

.item-faq {
    list-style: none;
    padding: 0;
}

.title-question {
    font-weight: bold;
    color: #326e4b;
}

.answer p {
    font-size: 1.2em;
    text-align: justify;
    margin: 0 5%;
    cursor: default;
}

.q-title {
    width: 95%;
    display: inline-block;
    cursor: pointer;
}

.q-icon {
    display: inline-block;
    color: #326e4b;
}

/*subscriber - edições*/
.list-edicao,
.list-artigos {
    margin: 20px;
    cursor: pointer;
}

.list-edicao h3,
.list-artigos h5 {
    margin-top: 15px;
}

.list-artigos h5:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.list-artigos img:hover {
    opacity: 0.8;
}

.list-edicao img,
.list-artigos img {
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
    border-radius: 10px;
    max-width: 200px;
}

.list-artigos {
    max-width: 15em;
    text-align: center;
}

.list-artigos a {
    text-decoration: none;
    color: black;
}

.paginate-edicoes {
    margin: 30px 0;
}

/*subscriber - artigos*/
.publi-artigo button {
    margin: 15px 0;
}



.margin {
    margin-top: 20px;
}

.categorias-btn {
    display: flex;
    justify-content: space-between;
}

.btn-buscar {
    margin: 25px 0;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 1024px) {
    .categorias-btn {
        display: block;
    }

    .btn-buscar {
        margin: 25px 0;
    }

    .form-resp {
        display: block;
    }

    .input-resp {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .input-resp label {
        margin-top: 1em;
    }
}

@media (mix-width: 1025px) {
    .btn-buscar {
        align-self: flex-start;
        margin: 40px 0;
    }
}

.artigo {
    margin: 20px;
    max-width: 15em;
}

.artigo img {
    max-width: 200px;
}

.artigo a {
    text-decoration: none;
    color: black;
}

.artigo h5 {
    margin-top: 15px;
    text-align: center;
}

.artigo h5:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.artigo a:hover {
    opacity: 0.8;
}

/*.form-env-artigo button {
    margin-top: 50px;
}*/

/*artigos - show */
.top-show-artigo {
    margin-top: 2em;
}

.top-show-artigo h5 {
    line-height: 1.5;
}

/*subscriber - question*/
.table-perguntas {
    width: 100%;
    margin: auto;
}

.user-img img {
    max-width: 80px;
    margin-right: 15px;
    border-radius: 100%;
}

.user-img-resp img {
    max-width: 50px;
    margin-right: 15px;
    border-radius: 100%;
}

.inicial,
.inicial-resp {
    margin-right: 15px;
}

.inicial p,
.inicial-resp p {
    font-size: 0;
}

.inicial>p:first-of-type:first-letter {
    color: #326a4b;
    background-color: #a8d7bb;
    font-size: 50px;
    padding: 5px 22.5px;
    border: 2px solid #326a4b;
    border-radius: 100%;

}

.inicial-resp>p:first-of-type:first-letter {
    color: #326a4b;
    background-color: #a8d7bb;
    font-size: 30px;
    padding: 3px 15px;
    border: 2px solid #326a4b;
    border-radius: 100%;
}

.title-infos-pergunta,
.title-infos-resp,
.title-infos-topico,
.title-infos-post,
.title-infos-comments {
    flex-grow: 2;
}

.respostas {
    margin: 0 80%;
}

.form-editar-pergunta button,
.form-excluir-pergunta button,
.form-editar-topico button,
.form-excluir-topico button {
    margin-right: 10px;
}

.assuntos {
    display: inline;
}

.assunto {
    display: inline-block;
    background-color: rgba(92, 168, 92, 0.5);
    margin: 5px 0;
    margin-right: 5px;
    padding: 10px;
    border-radius: 10px;
}

.assunto a {
    color: #29583d;
    text-decoration: none;
}

.assunto:hover {
    background-color: rgba(69, 128, 69, 0.5);
}

.resposta {
    margin-left: 3em;
}

/* forum */
.topico {
    display: flex;
    justify-content: space-between;
}

.form-env-topico button {
    margin-top: 50px;
}

/* oportunidades de emprego */
.content-vaga {
    border: 0.5px rgba(173, 172, 172, 0.7) solid;
    border-radius: 10px;
    margin-bottom: 25px;
}

.header-vaga {
    background-color: rgba(20, 20, 20, 0.08);
}

.header-vaga h5 {
    padding-bottom: 20px;
    margin: 20px 0 0 20px;
}

.content-vaga hr {
    padding: 0;
    margin: 0;
}

/* subscriber - audio */
.audio {
    margin-top: 3rem;
}

.audio img {
    max-width: 200px;
}

.audio a {
    text-decoration: none;
    color: black;
}

.audio a:hover {
    color: rgb(78, 78, 78);
    text-decoration: underline;
}

.button-return {
    margin: 15px 0;
}

/*subscriber - vender */
.content-classif {
    border: 0.5px rgba(173, 172, 172, 0.7) solid;
    border-radius: 10px;
    margin-bottom: 25px;
}

.header-classif {
    background-color: rgba(20, 20, 20, 0.08);
}

.header-classif img {
    width: 100%;
}

.content-classif hr {
    padding: 0;
    margin: 0;
}

.card-classif img {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

/* show -vender */
.header-show-classif {
    margin-top: 100px;
}

.text-classif h5 {
    color: grey;
}

.text-classif p {
    text-align: justify;
    font-size: 1.2em;
}

.margin-top {
    margin-top: 100px;
}

/* sorteio */
.container-sorteio img {
    /* max-height: 200px; */
    border-radius: 5px;
}

.sorteio-items {
    flex-flow: row;
    align-items: flex-start;
}

.premio {
    margin: 2em;
    margin-bottom: 0;
    max-width: 20em;
}

.premio img {
    width: 250px;
    height: 200px;
}

.premio h2 {
    margin-top: 25px;
}

.mg-3 {
    margin-top: 3em;
    font-size: 1rem;
}


td.desc-pontos {
    padding: 15px 35px;
    padding-right: 50px;
    text-align: justify;
}

/* escolher plano */
@media (max-width: 1024px) {
    .card-body-plan {
        padding: 0 10%;
    }

    .chosse-plan-table {
        display: none;
    }

    .cards-choose-containter {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .card-choose {
        max-width: 18rem;
        box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
        padding: 1.5em;
        margin: 1em;
    }

    .card-choose hr {
        margin-top: 5px;
    }

    .card-width {
        max-width: 23rem;

    }

    .card-choose span {
        margin: 0;
    }

    .card-choose img {
        width: 20px;
        margin-right: 5px;
    }

    .card-top .p-c {
        width: 60%;
        margin: auto;
        line-height: 1.1;
    }

    .card-price {
        display: flex;
        justify-content: center;
        padding-top: 1em;
        color: #d2520d;
        font-weight: 700;
    }

    .card-price .rs {
        align-self: flex-start;
        margin-top: 15px;
    }

    .price {
        font-size: 3rem;
        padding: 0 5px;
    }

    .card-price .price-time {
        align-self: flex-end;
        margin-bottom: 15px;
    }

    .element-plan {
        padding: 0.25em 0;
        letter-spacing: 1px;
    }

    .alredy-sing div {
        justify-content: center;
        margin: 1em 0;
    }

}

@media (min-width: 1025px) {
    .cards-choose-containter {
        display: none;
    }

    .chosse-plan-table {
        display: block;
    }

    .alredy-sing div {
        justify-content: flex-end;
        margin: 1em 0;
    }
}

html {
    scroll-behavior: smooth;
}

#btn-top {
    display: none;
    position: fixed;
    bottom: 85px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #d2520d;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
}

#btn-top:hover {
    background-color: #b1460c;
    /* Add a dark-grey background on hover */
}

/* ─── Layout utilities (extracted from site.blade.php) ─────────────── */
body {
    background-color: #e1e1e1;
}

.center-nav {
    width: 55%;
}

.dsp-fx  { display: flex; }
.jc-sa   { justify-content: space-around; }
.jc-sb   { justify-content: space-between; }
.jc-l    { justify-content: left; }
.jc-c    { justify-content: center; }
.jc-se   { justify-content: space-evenly; }
.jc-end  { justify-content: flex-end; }
.fx-wr   { flex-wrap: wrap; }

/* ─── Component utilities ───────────────────────────────────────────── */
.nav-link-white {
    color: white;
}

.video-card-img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* ─── Artigo show ───────────────────────────────────────────────────── */
.article-outer-wrapper {
    width: 80%;
    margin: 2em auto;
}

.article-actions {
    gap: 8px;
    margin-bottom: 1rem;
}

/* ─── Pedidos — row status indicators ───────────────────────────────── */
.border-pending   { border: 3px solid yellow; }
.border-unshipped { border: 3px solid red; }
.border-delivered { border: 3px solid green; }

/* ─── Restrito (admin) — shared ─────────────────────────────────────── */
.tabela-restrito {
    color: #FFFFFF;
    background-color: #326E4B;
}

.restrito-cta {
    text-align: center;
    padding: 20px;
}

#button-icons {
    font-size: 20px;
    vertical-align: sub;
}

/* Form-groups in admin create/edit pages */
.fg-30 {
    margin: 30px;
}

/* Ad notice box (Sobre: …) in anuncios/create */
.ad-notice {
    margin: 15px;
    border: 1px solid;
}

/* Ad place list items */
.w-30em {
    width: 30em;
}

/* Payment method radio list */
.fs-md {
    font-size: 1.2rem;
}

/* Width 40% for evento edit panels */
.w-40 {
    width: 40%;
}

/* ─── Anuncios create — responsive sizing helpers ────────────────────── */
@media screen and (min-width: 800px) {
    .sizing, .sizing-2, .sizing-3, .sizing-4 {
        display: flex;
        justify-content: space-between;
    }
    .sizing .form-group {
        width: 49.5%;
    }
    .sizing-2 .address {
        width: 74.5%;
    }
    .sizing-2 .zone_bairro {
        width: 24.5%;
    }
    .sizing-3 .number {
        width: 19.5%;
    }
    .sizing-3 .complement, .sizing-3 .postal_code {
        width: 39.5%;
    }
    .sizing-4 .form-group {
        width: 32.8%;
    }
}

/* ─── Manuscritos — bank info panel ─────────────────────────────────── */
.bank-title span {
    margin-left: 15px;
    font-size: 0.6em;
}

.bank-title ion-icon {
    margin-right: 3px;
}

.bank-infos p {
    margin: 0;
}

.bank-infos {
    background-color: rgba(50, 110, 75, 0.3);
    border-radius: 5px;
    padding: 2em;
    text-align: justify;
    margin-bottom: 2em;
}

.title-section-sub {
    color: #FFFFFF;
    background-color: #326E4B;
    margin-bottom: 30px;
    padding: 10px 0;
    border-radius: 5px;
}

.title-section-sub ion-icon {
    margin-right: 5px;
    align-self: center;
}

.title-section-sub h3 {
    margin: 0;
}

.image-wrapper {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
    display: block;
}

.image-wrapper img {
    object-fit: scale-down;
    width: 100%;
    height: 100%;
}

.show-artigo {
    margin: 20px;
}

.show-artigo img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-inline: auto;
}

.show-artigo div img,
.show-artigo p img,
.show-artigo figure img,
.show-artigo table img {
    max-width: 100%;
    height: auto;
}

.show-artigo table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

.right-artigo {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

@media (max-width: 767px) {
    .article-outer-wrapper {
        width: 95%;
    }

    .top-show-artigo h2 {
        font-size: 1.25rem;
    }

    .top-show-artigo h5 {
        font-size: 0.95rem;
    }
}

/* ─── Checkout ──────────────────────────────────────────────────────── */
.campos-carrinho {
    color: #525252;
    width: 80%;
    margin: 30px auto 50px auto;
}

.campos-carrinho label {
    margin-top: 20px;
}

.campos-carrinho select {
    border: none;
    border-radius: 5px;
}

.checkout-container {
    margin: 20px auto;
    width: 100%;
    padding: 10px;
}

.tabela-checkout th {
    color: white;
    background-color: #326E4B;
    padding: 10px;
    text-align: center;
}

.tabela-checkout td {
    padding: 10px;
}

.tabela-checkout img {
    height: auto;
    width: 15%;
    padding: 5px;
}

.accordion-container {
    margin: auto;
    width: 60%;
    padding: 10px;
}

.item-header {
    cursor: pointer;
}

.checkout-title {
    font-size: 20px;
    padding-top: 10px;
}

.checkout-icon {
    font-size: 20px;
    text-align: right;
    padding: 10px;
}

.accordion-item {
    padding: 10px;
    background-color: lightgrey;
}

.item-1 {
    border: 4px solid #D2520D;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.item-2 {
    border-right: 4px solid #D2520D;
    border-left: 4px solid #D2520D;
}

.item-2 input,
.item-2 select {
    border: none;
    border-radius: 5px;
}

.item-3 {
    border: 4px solid #D2520D;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.accordion-text {
    max-height: 0;
    overflow: hidden;
}

.accordion-item.active .accordion-text {
    max-height: 600px;
    transition: .4s linear;
}

#opcoes-pagamento {
    vertical-align: sub;
    font-size: 22px;
}

.btn-checkout {
    margin: 20px auto;
    font-size: 1.5em;
}

.tr-subtotal {
    background-color: lightgrey;
}

#rowValorDesconto {
    display: none;
    background-color: #dba8a4;
    text-align: right;
}

.tr-total {
    background-color: #D2520D;
    display: none;
}

.pagamento-section {
    width: 58%;
    margin: auto;
}

.shipping-select-label {
    font-size: 1.2em;
}

.cartao-instrucao {
    font-size: 1.2em;
    font-weight: 600;
}

.field-error {
    font-weight: 700;
    color: red;
}

/* ===== Eventos ===== */

.event-card {
    border-radius: 10px;
    background-color: #EDEDED;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.event-card-name {
    font-size: 1.2em;
    font-weight: 800;
    width: 60%;
    margin: auto;
}

.events-empty-state {
    padding: 5em;
}

.event-header {
    border: 1px solid #326e4b;
    background-color: rgba(49, 109, 74, 0.3);
}

.event-section-header {
    background-color: rgba(49, 109, 74, 0.3);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.event-section-body {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.event-part-container {
    margin-top: 5%;
    text-align: center;
}

.event-part-header {
    padding: 0.5em;
    background-color: rgba(49, 109, 74, 0.3);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.event-part-video {
    margin: 1%;
}

/* Responsive video embed */
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== Book Index ===== */

.book-text {
    font-size: 16px;
}

.btn-icon-lg {
    font-size: 1.5em;
    margin-top: 5%;
}

.book-chapter-title {
    font-weight: bold;
}

/* ===== Page Wrappers ===== */

.page-section-wide {
    width: 80%;
    margin: 2em auto;
}

.link-plain {
    text-decoration: none;
    color: black;
}

.article-thumb {
    max-width: 200px;
}

/* ===== Artigos Index — autocomplete ===== */

.autocomplete {
    position: relative;
    display: inline-block;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
    background-color: #e9e9e9;
}

.autocomplete-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
}

/* ===== Videos Index ===== */

#videos-container {
    padding-bottom: 50px;
}

#videos-container h2 {
    margin-bottom: 10px;
}

#videos-container .subtitle {
    color: #757575;
    margin-bottom: 30px;
}

#videos-container iframe {
    max-width: 556px;
    max-height: 315px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#videos-container img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.video-card {
    width: 20rem;
}

.icon-close {
    vertical-align: sub;
    font-size: 18px;
}

/* ===== Carrinho ===== */

.cart-card {
    max-width: 33em;
}

/* ===== Loja — listing ===== */

.produtos-busca {
    margin: 20px auto;
    padding: 10px;
    background-color: #dc8454;
    border-radius: 5px;
}

.produtos-busca form {
    margin: 10px auto;
}

.acoes {
    margin-top: 20px;
    color: white;
    font-size: 16px;
}

#produtos-container {
    margin: auto;
    width: 80%;
    overflow: hidden;
}

#produtos-container h5 {
    margin: 10px 0;
    color: #326E4B;
}

#produtos-container .subtitle {
    color: #757575;
    margin: 30px 0;
}

.produto {
    align-items: center;
    margin: 2em;
}

.produto-img {
    text-align: center;
}

.produto-img img {
    width: 250px;
    height: 318px;
    margin-top: 2em;
}

#produtos-container .row {
    justify-content: space-around;
    align-items: center;
}

.produto .card-body {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    height: auto;
    max-width: 250px;
}

.produto-col {
    display: grid;
    width: 300px;
}

@media screen and (max-width: 767px) {
    .margin-ajustar {
        margin-top: 10px;
    }
}

/* ===== Produto — detail ===== */

.produto-content {
    display: flex;
    justify-content: center;
    margin-top: 5em;
}

.img-produto img {
    max-width: 200px;
    transition: transform 0.25s ease;
    cursor: zoom-in;
}

.img-produto input[type=checkbox] {
    display: none;
}

.img-produto input[type=checkbox]:checked ~ label > img {
    transform: scale(2);
    cursor: zoom-out;
}

.meio-produto1 {
    width: 50%;
    margin: 0 25px;
    text-align: justify;
}

.direita-produto1 h2 {
    color: #F65656;
}

.produro-qnt,
.btn-voltar {
    display: flex;
    justify-content: space-between;
}

.btn-voltar,
.btn-add {
    margin-top: 15px;
}

.btn-add button,
.btn-voltar button {
    width: 100%;
}

.buttonAddToCart {
    background-color: #326E4B;
    display: block !important;
}

.btn-voltar a {
    color: white;
    text-decoration: none;
}

@media (max-width: 1024px) and (min-width: 851px) {
    .produto-content {
        flex-wrap: wrap;
        justify-content: unset;
    }

    .meio-produto1 {
        width: 65%;
    }

    .direita-produto1 {
        margin: 3em 0;
        width: 100%;
    }
}

@media (max-width: 850px) {
    .produto-content {
        margin-top: 3em;
        flex-wrap: wrap;
        justify-content: center;
    }

    .img-produto {
        margin-bottom: 2em;
    }

    .meio-produto1 {
        width: 100%;
        margin-bottom: 2em;
    }

    .direita-produto1 {
        width: 100%;
        margin: 0 5%;
    }
}

.mais-produtos-esp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.card-product {
    max-width: 18rem;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    margin: 1em 0;
}

.card-product img {
    max-height: 350px;
}

.mais-produtos tr {
    border-bottom: solid 1px #326E4B;
    width: 100%;
}

.mais-produtos {
    margin-top: 2em;
    width: 100%;
}

.card-product .card-footer {
    display: flex;
    justify-content: space-between;
}

.card-product .card-footer a,
.card-product .card-footer p {
    align-self: center;
    margin: 0;
}

.toast-container {
    margin: auto;
    width: 20%;
    padding: 5px;
    border-radius: 10px;
}

.toast-container .toast-body {
    color: #FFFFFF;
    background-color: #D2520D;
    border-radius: 5px;
}

/* ===== Pedido Confirmado ===== */

.pc-title {
    margin: 20px;
    text-align: center;
}

.btn-boleto {
    font-size: 1.3em;
}

.tr-total-visible {
    background-color: #D2520D;
}

.tabela-checkout th {
    text-align: center;
}

/* ===== Notícias ===== */

.news-card {
    width: 20rem;
}

/* ===== Glossário ===== */

.item-rq {
    padding-bottom: 30px;
    padding-right: 40px;
}

.glossario h3 {
    text-align: center;
    color: #FFFFFF;
    background-color: #326E4B;
    margin: 0 30px 30px 30px;
    padding: 10px;
    border-radius: 5px;
}

.question {
    list-style: none;
}

.q-icon {
    vertical-align: sub;
    float: right;
    font-size: 20px;
}

#glossario-icon {
    vertical-align: text-bottom;
    font-size: 35px;
}

/* ===== Banners / Anúncios ===== */

.banner-anuncios {
    text-align: center;
}

.banner-anuncios img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* ===== Update User / Forms ===== */

.input-warning {
    border: 3px solid red;
}

.form-error-list {
    display: none;
    color: red;
    padding: 10px;
    border: 1px solid red;
    margin: 5px;
}

.form-error-warning {
    display: none;
    color: red;
    padding: 10px;
    border: 1px solid red;
    margin-top: 5px;
    margin-bottom: 20px;
}

.btn-form-submit {
    font-size: 1.2em;
}

/* ===== User Orders ===== */

.orders-thead {
    background-color: #326e4b;
    color: white;
}

.td-empty-state {
    font-size: 1.3em;
}

.card-img-limited {
    max-height: 300px;
}

/* ===== Eventos — registrar/schedule ===== */

.login-card {
    border-radius: 16px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.login-panel-header {
    margin-top: 5em;
}

.divider-or {
    font-size: 2.5em;
}

.btn-cta {
    font-size: 1.3em;
}

.success-spacer {
    margin-bottom: 25%;
}

/* ===== Blog ===== */

.blog-card {
    width: 18rem;
}

/* ===== Authentication / Logo ===== */

.logo-brand {
    max-width: 240px;
    height: auto;
}

/* ===== Utilities ===== */

.text-small {
    font-size: 0.8em;
}

.botoes {
    display: flex;
    justify-content: space-around;
}

/* ===== Restrito layout (side nav / horizontal menu) ===== */

.sidenav {
    height: auto;
    width: 15%;
    background-color: rgba(50, 110, 75, 0.9);
    position: absolute;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 1;
}

.sidenav a {
    padding: 4px;
    text-decoration: none;
    font-size: 16px;
    color: #FFFFFF;
    display: block;
}

.sidenav a:hover {
    background-color: #D2520D;
    border-radius: 5px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 14px;
    }
}

#esconderMenu {
    color: #FFFFFF;
    background-color: #D2520D;
}

.menu-container {
    overflow: hidden;
    background-color: #f8f9fa;
}

.horizontal-menu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
    padding: 0;
    margin: 0;
    list-style: none;
}

.horizontal-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #000;
    border-right: 1px solid #ddd;
}

.horizontal-menu a:last-child {
    border-right: none;
}

.horizontal-menu a:hover {
    background-color: #e9ecef;
}

/* ===== Restrito / Admin ===== */

.row-pointer {
    cursor: pointer;
}

#voltar-icon {
    font-size: 18px;
    vertical-align: sub;
}

/* ===== General / Contact, Work With Us, Advertise pages ===== */

.anuncie-container,
.contato-container,
.trabalhe-container {
    margin: auto;
    width: 80%;
    padding: 10px;
}

.tabelas-container {
    display: flex;
}

.anuncie {
    color: grey;
    border-bottom: 2px solid grey;
    margin: 30px 0 50px 0;
    width: 100%;
}

.trabalhe {
    color: grey;
    border-bottom: 2px solid grey;
    margin: 30px 0 50px 0;
    width: 100%;
}

@media screen and (min-width: 1101px) {
    .contato {
        padding-left: 15px;
        margin-right: 50px;
        float: left;
        width: 40%;
        color: grey;
    }
}

@media screen and (max-width: 1100px) {
    .contato {
        display: none;
    }
}

.contato td {
    width: 70%;
}

@media screen and (min-width: 1101px) {
    .campos {
        background-color: lightgrey;
        padding: 15px;
        margin-left: 50px;
        margin-right: 15px;
        width: 55%;
        float: right;
        color: grey;
    }
}

@media screen and (max-width: 1100px) {
    .campos {
        background-color: lightgrey;
        padding: 15px;
        margin: 0 15px;
        width: 100%;
        color: grey;
        float: none;
        display: block;
    }
}

#icones-trab-cont-caps {
    font-size: 18px;
}

#icones-trab-cont {
    font-size: 18px;
    vertical-align: sub;
}

.redes-sociais a {
    font-size: 50px;
    color: grey;
    padding: 0 10px;
}

.redes-sociais a:hover {
    transition: all 1s;
    color: lightgrey;
}

.whats a {
    color: grey;
    text-decoration: none;
}

.whats a:hover {
    transition: all 1s;
    color: lightgrey;
}

.gmail a {
    color: grey;
    text-decoration: none;
}

.gmail a:hover {
    transition: all 1s;
    color: lightgrey;
}

.contato table tr td h5 a {
    color: grey;
}

#curriculo::-webkit-file-upload-button {
    visibility: hidden;
}

#curriculo::before {
    color: grey;
    content: "Selecione seu currículo: ";
    cursor: pointer;
    font-size: 14px;
}

/* ===== General / Loja (checkout / error pages) ===== */

.checkout-container {
    margin: 20px auto;
    width: 60%;
    padding: 10px;
}

.tabela-checkout {
    margin-bottom: 10px;
}

.tabela-checkout th {
    color: white;
    background-color: #326E4B;
    padding: 10px;
}

.tabela-checkout td {
    padding: 10px;
}

.tabela-checkout img {
    height: auto;
    width: 15%;
    padding: 5px 5px;
}

.accordion-container {
    margin: auto;
    width: 80%;
    padding: 10px;
}

.item-header {
    cursor: pointer;
}

.loja-title {
    font-size: 20px;
    padding-top: 10px;
}

.loja-icon {
    font-size: 20px;
    text-align: right;
    padding: 10px;
}

.accordion-item {
    padding: 10px;
    background-color: lightgrey;
}

.item-1 {
    border: 4px solid #D2520D;
}

.item-2 {
    border-right: 4px solid #D2520D;
    border-left: 4px solid #D2520D;
}

.item-3 {
    border: 4px solid #D2520D;
}

.accordion-item.active .text {
    max-height: 600px;
    transition: .4s linear;
}

#opcoes-pagamento {
    vertical-align: sub;
    font-size: 22px;
}

.pc-title {
    margin: 20px;
    text-align: center;
}

/* ===== General / Home page ===== */

.dsp-fx {
    display: flex;
}

.jc-sa {
    justify-content: space-around;
}

.jc-sb {
    justify-content: space-between;
}

.jc-l {
    justify-content: left;
}

.jc-c {
    justify-content: center;
}

.jc-se {
    justify-content: space-evenly;
}

.jc-end {
    justify-content: flex-end;
}

.fx-wr {
    flex-wrap: wrap;
}

.image img {
    max-width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.item-rq {
    padding-bottom: 30px;
    padding-right: 40px;
}

.perguntas-recentes-ass h3 {
    text-align: center;
    color: #FFFFFF;
    background-color: #326E4B;
    margin: 0 30px 20px 30px;
    padding: 10px;
    border-radius: 5px;
}

.perguntas-recentes-ass a {
    text-decoration: none;
    color: #525252;
}

.perguntas-recentes-ass a:hover {
    color: #326E4B;
}

.postagens-recentes-ass {
    margin: 0 auto 50px auto;
    padding: 30px;
    background-image: url("../images/fundoTeste.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}

.postagens-recentes-ass h3 {
    text-align: center;
    color: #FFFFFF;
    background-color: #326E4B;
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 5px;
}

.artigos-ass {
    padding-left: 30px;
    padding-right: 30px;
}

.artigos-ass h3 {
    text-align: center;
    color: #FFFFFF;
    background-color: #326E4B;
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 5px;
}

.latest-issue {
    padding-left: 30px;
    padding-right: 30px;
}

.latest-issue h3 {
    text-align: center;
    color: #FFFFFF;
    background-color: #326E4B;
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 5px;
}

.question {
    list-style: none;
}

.q-icon {
    vertical-align: sub;
    float: right;
}

#cards-container {
    display: flex;
}

#pr-container .card {
    flex: 24%;
    max-width: 24%;
    padding: 0;
    margin: .5%;
}

.card-title {
    text-align: center;
    color: #326E4B;
}

.card-description {
    text-align: justify;
    padding: 15px;
}

.setinha-inicio-ass {
    vertical-align: sub;
    font-size: 18px;
}

#inicio-ass-icon {
    vertical-align: text-top;
    font-size: 30px;
}

#seta-faq {
    cursor: pointer;
}

.l-cards-artigos {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-content: center;
    justify-items: center;
    padding: 30px;
}

.c-card-artigos {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 250px;
    background-color: #FFFFFF;
}

.content-artigos {
    display: flex;
    font-size: 12px;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
    padding: 15px;
}

.content-artigos h4 {
    cursor: default;
}

.card-footer {
    background-color: #FFFFFF;
}

.card-footer a {
    width: 100%;
}

.l-cards-postagens {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-content: center;
    justify-items: center;
    padding: 30px;
}

.c-card-postagens {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 250px;
    background-color: #FFFFFF;
}

.content-postagens {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-around;
    padding: 15px;
}

@media (min-width: 1440px) {
    .abs-banner img {
        max-width: 850px;
    }
}