body {
    display: block;
    margin: 0;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    line-height: 1.7;
    scroll-behavior: smooth;
}

a {
    outline: none;
    color: inherit;
    text-decoration: none;
    line-height: inherit;
    transition: all 0.3s ease;
}

a:hover,
a:focus {
    text-decoration: none;
    transition: all 0.3s ease;
}

li {
    list-style: none;
}

textarea {
    resize: none;
}

#loading-cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F4F4F4;
    z-index: 9999;
    display: none;
    transition: all 0.5s ease;
    opacity: 1;
}

#loading-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 99999;
    text-align: center;
    transition: all 0.5s ease;
    opacity: 1;
}

#loading-text {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 25%;
    text-align: center;
    color: #151515;
}

#loading-google {
    width: 180px;
    height: auto;
    margin-top: 25%;
}

.loading-wave {
    width: 300px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.loading-bar {
    width: 20px;
    height: 10px;
    margin: 0 5px;
    background-color: #fca311;
    border-radius: 5px;
    animation: loading-wave-animation 1s ease-in-out infinite;
}

.loading-bar:nth-child(2) {
    animation-delay: 0.1s;
}

.loading-bar:nth-child(3) {
    animation-delay: 0.2s;
}

.loading-bar:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes loading-wave-animation {
    0% {
        height: 10px;
    }

    50% {
        height: 50px;
    }

    100% {
        height: 10px;
    }
}


#change-language a {
    margin-right: 10px;
}

#change-language a:last-child {
    margin-right: 0;
}

#change-language a:hover>img {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

#change-language img {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

#change-language-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#change-language-container a {
    margin-right: 10px;
}

#change-language-container a:last-child {
    margin-right: 0;
}

#change-language-container a:hover>img {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

#change-language-container img {
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
}

#offcanvasMenuBtn {
    position: absolute;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #EEE;
    border-radius: 5px;
    left: 10px;
    top: 10px;
    z-index: 998;
    display: none;
}

#offcanvasMenuBtn i {
    font-size: 1.5rem;
    color: #111;
}

#offcanvasMenuLabel {
    font-size: 1.2rem;
}

#offcanvasMenu ul {
    padding-left: 0;
}

#offcanvasMenu li {
    margin-bottom: 1rem;
    border-bottom: 1px solid #e7e7e7;
}

#offcanvasMenu a {
    color: #111;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#offcanvasMenu a:hover {
    text-decoration: underline;
    color: #fca311;
}

#navbar-container {
    border-bottom: 1px solid #e7e7e7;
    margin: 0 auto;
}

#navbar a {
    color: #111;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 2rem;
}

#navbar a:last-child {
    margin-right: 0;
}

#navbar a:hover,
.activeNavbar {
    color: #fca311 !important;
    transition: all 0.3s ease;
}

#logo {
    width: 130px;
    height: auto;
    margin: 0 auto;
}

#logoMobile {
    width: 140px;
    height: auto;
    margin: 0 auto;
}

#header-container {
    margin-top: 80px;
    margin-bottom: 4rem;
}

#header-container-mobile {
    display: none;
}

#highlights-container {
    min-height: 400px;
}

#cover-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: none;
}

#select-language-popup {
    width: 310px;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    padding-bottom: 2rem;
    padding-top: 2rem;
    display: none;
}

#select-language-popup label {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 10px;
}

#select-language-popup a {
    margin-right: 10px;
}

#select-language-popup a:last-child {
    margin-right: 0;
}

#logoPopup {
    width: 80px;
    height: auto;
    float: right;
}

.title-hr {
    border-top: 3px solid #fca311;
    width: 8%;
    margin-bottom: 1rem;
    margin-top: 5px;
}

#breadcrumb-mobile {
    margin-top: 3rem;
    margin-bottom: -2rem;
    display: none;
}

#breadcrumb-mobile li {
    color: #111;
    font-size: 1rem;
    font-weight: 500;
}

.active-breadcrumb,
#breadcrumb-mobile a:hover {
    text-decoration: underline;
}

#highlightsTitle h1 {
    margin-top: 2rem;
    font-size: 1.8rem;
    margin-bottom: 0;
}

#highlight-news-big {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 100%;
}

#highlight-news-big h2 {
    font-size: 1.8rem;
    margin-top: 30%;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 0 5px #111;
}

#highlight-news-small-1 {
    margin-bottom: 3%;
    height: 48.5%;
}

#highlight-news-small-2 {
    height: 48.5%;
}

.highlight-news {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 100%;
}

.highlight-news h2 {
    color: #fff;
    text-shadow: 0 0 5px #111;
    line-height: 1.2;
    font-size: 1.2rem;
    width: 100%;
    margin-top: 10%;
    margin-bottom: 30px;
}

.postHighlightButton {
    background-color: #FFF;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #111;
    transition: all 0.3s ease;
}

.postHighlightButton:hover {
    background-color: #258E63;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.highlight-news a,
#highlight-news-big a {
    text-decoration: none;
}

.highlight-news a:hover,
#highlight-news-big a:hover {
    text-decoration: underline;
}

#list-container {
    margin-bottom: 2rem;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

#listTitle h1 {
    margin-top: 3rem;
    margin-bottom: 0;
    font-size: 1.6rem;
}

.postListContent {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.postList h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.postList p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: justify;
    line-height: 1.3;
}

.postList a {
    text-decoration: none;
}

.postList a:hover {
    text-decoration: underline;
}

.postListButton {
    background-color: #111;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.postListButton:hover {
    background-color: #EEE;
    color: #111;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.postListImage {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

#pagination {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 2;
}

#pagination a,
.page-numbers {
    background-color: #111;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    margin-right: 15px;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

/* .pagination-number{
    padding-left: 20px !important;
    padding-right: 20px !important;
    cursor: pointer;
} */

#pagination a:hover,
.active-page,
.page-numbers:hover,
.current {
    background-color: #EEE !important;
    color: #111 !important;
    transition: all 0.3s ease;
}

#footer-content {
    background-color: #141414;
    padding-top: 20px;
}

#footer-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: #FFF;
}

#footer-content p {
    text-align: justify;
    color: #b1b1b1;
}

#footer-content a {
    color: #b1b1b1;
}

#footer-content ul {
    padding-left: 0;
}

#footer-content ul li {
    margin-bottom: 1rem;
    color: #b1b1b1;
}

#footer-content a:hover {
    text-decoration: underline;
}

#footer-bottom {
    padding-top: 20px;
    background-color: #111;
    color: #f0f0f0;
}

.title-big {
    font-size: 2rem;

}

#text-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
    min-height: 500px;
}

#text-container p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.5;
}

#text-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#text-container a {
    color: #fca311;
}

#text-container a:hover {
    text-decoration: underline;
}

#text-container li {
    list-style: disc;
}

/* Responsive */

@media (max-width: 768px) {

    /* #breadcrumb-mobile{
        display: block;
    } */

    #header-container-mobile {
        display: block;
    }

    #header-container {
        display: none
    }

    #change-language {
        display: none;
    }

    #navbar {
        display: none;
    }

    #offcanvasMenuBtn {
        display: block;
    }

    #highlight-news-small-1 {
        margin-bottom: 1rem;
    }

    #highlight-news-big-container {
        margin-bottom: 1rem;
    }

    #highlightsTitle h1 {
        margin-top: 3rem;
        font-size: 1.6rem;
    }

    #listTitle h1 {
        font-size: 1.4rem;
    }

    .postListImage {
        margin-bottom: 1rem;
    }

    .postList h2 {
        font-size: 1.2rem;
    }

    .title-hr {
        margin-bottom: 2rem;
        width: 35%;
    }

    #text-container {
        min-height: 300px;
    }

}

/*******************SINGLE POST INICIO*****************/

#single-post {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e7e7e7;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    text-align: justify;
}

#single-post h1 {
    margin-top: 2rem;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
}

.subtitle {
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    text-align: left !important;
    color: #5a5a5a !important;
}

#single-post h2 {
    margin-top: 2rem;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
}

#single-post h3 {
    margin-top: 2rem;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
}

#single-post h4 {
    margin-top: 2rem;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 600;
    text-align: left;
}

#single-post h5 {
    margin-top: 2rem;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 600;
    text-align: left;
}

#single-post h6 {
    margin-top: 2rem;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 600;
    text-align: left;
}

#single-post p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1rem;
    /* text-align: justify; */
    text-align: left;
}

#single-post ul {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

#post-title {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#thumbnail {
    margin-bottom: 2rem;
    position: relative;
}

#thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

#single-post a {
    color: #fca311;
    font-weight: 600;
}

#single-post a:hover {
    text-decoration: underline;
}

#single-post table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 5px;
    border: 1px solid #e7e7e7;
}

#single-post table th {
    padding: 5px;
    background-color: #CCC;
    color: #111;
    border: 1px solid #e7e7e7;
}

#single-post table td {
    padding: 5px;
    background-color: #f0f0f0;
    color: #111;
    border: 1px solid #e7e7e7;
}

#single-post table tr:nth-child(even) {
    background-color: #f0f0f0;
}

#single-post table tr:nth-child(odd) {
    background-color: #fff;
}

#single-post ul li {
    list-style: disc;
    font-size: 1rem;
}

#single-post img {
    margin-bottom: 1rem;
    border-radius: 5px;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 300px;
}

#single-post iframe {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
}

#category-title {
    margin-top: 2rem;
    margin-bottom: -2rem;
}

#category-title h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

#related-posts {
    margin-top: 2rem;
}

.related-post{
    position: relative;
}

.water-mark-related {
    position: absolute;
    bottom: 50%;
    left: 8%;
    width: 80px !important;
    height: auto !important;
    z-index: 1000;
    opacity: 0.9;
    min-height: unset !important;
    object-fit: contain !important;
}

#related-posts h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#related-posts-container {
    margin-top: 2rem;
    margin-bottom: 4rem;
}

#related-posts-item {
    margin-bottom: 2rem;
}

.related-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.related-post h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.related-post p {
    font-size: 1rem;
    text-align: justify;
}

.related-post-link {
    background-color: #111;
    padding: 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.related-post-link:hover {
    background-color: #EEE;
    color: #111;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.related-post a {
    text-decoration: none;
}

.related-post a:hover {
    text-decoration: underline;
}   

.postListImageContainer {
    position: relative;
}

.highlight-news-big-container,
.highlight-news-small-1-container,
.highlight-news-small-2-container {
    position: relative;
}

.water-mark {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 120px !important;
    height: auto !important;
    z-index: 1000;
    opacity: 0.9;
    min-height: unset !important;
    object-fit: contain !important;
}

.water-mark-list {
    position: absolute;
    bottom: 35%;
    left: 10%;
    width: 80px !important;
    height: auto !important;
    z-index: 1000;
    opacity: 0.9;
    min-height: unset !important;
    object-fit: contain !important;
}

.water-mark-featured-big {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 100px !important;
    height: auto !important;
}

.water-mark-featured-small {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 50px !important;
    height: auto !important;
}

.water-mark-featured-small-2 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 50px !important;
    height: auto !important;
}

.comparadorCartaoContainer {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.comparadorCartao{
    text-align: center;
    background-color: #FFF;   
    -webkit-box-shadow: 0px 6px 15px 1px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 6px 15px 1px rgba(0, 0, 0, 0.17);
    border-radius: 5px;
    padding: 10px;
}

.comparadorCartao img{
    width: 95% !important;
    height: auto !important;
    border-radius: 5px !important;
    object-fit: cover !important;
    margin: 0 !important;
    margin-top: 10px !important;
    min-height: unset !important;
    max-height: 150px !important;
}

.comparadorCartao h4 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

.comparadorCartao span {
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: center;
    color: #5a5a5a;
    display: inline-block;
    width: 100%;
}

.comparadorCartao a {
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-bottom: 5px !important;
    transition: all 0.3s ease;
}

.comparadorCartao a:hover {
    text-decoration: none !important;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.stars{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.stars i{
    font-size: 1rem;
}

.stars label{
    font-size: 0.8rem;
    font-weight: 600;
    color: #5a5a5a;
    margin-top: 1px;
}

@media (max-width: 768px) {

    .comparadorCartao img{
        max-height: unset !important;
    }

    #single-post iframe {
        height: 300px;
    }

    #single-post h1,
    #single-post h2,
    #single-post h3,
    #single-post h4,
    #single-post h5,
    #single-post h6 {
        line-height: 1.3;
    }

    #single-post h1 {
        font-size: 1.8rem;
    }

    #single-post h2 {
        font-size: 1.6rem;
    }

    #single-post h3 {
        font-size: 1.4rem;
    }

    #single-post h4 {
        font-size: 1.2rem;
    }

    #single-post h5 {
        font-size: 1rem;
    }

    #single-post h6 {
        font-size: 0.8rem;
    }

    #category-title {
        /* display: none; */
        margin-top: 2rem;
        margin-bottom: -3rem;
    }

    .related-post {
        margin-bottom: 1rem;
        margin-top: 1rem;
    }

    #related-posts-container {
        margin-top: 0;
    }

    #single-post img,
    #thumbnail img {
        min-height: 200px;
    }

    .water-mark-list {
        bottom: 15%;
        left: 8%;
    }

    #category-title{
        display: none;
    }
}

/*******************SINGLE POST FIM*****************/

/*****************BOTOES FLAT INICIO*****************/

.diretoBtn {
    width: 95%;
    display: inline-block;
    font-size: 2rem;
    text-decoration: none;
    text-align: center;
    padding: 20px;
    font-weight: 600;
    border-radius: 5px;
    color: #FFF !important;
    background-color: #0693E3;
    background-image: url('../assets/img/checkBtn.png') !important;
    background-repeat: no-repeat !important;
    background-position: 20px center !important;
}

.diretoBtn:hover {
    text-decoration: none !important;
}

.defaultBtn {
    width: 95%;
    display: inline-block;
    font-size: 1.3rem;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 2px 2px 5px 0px #303030;
    color: #FFF !important;
}

.pinkBg {
    background: #F87193;
    border: 1px solid #F87193;
}

.pinkBg:hover {
    color: #F87193 !important;
    background: #FFF;
    border: 1px solid #F87193;
}

.purpleBg {
    background: #8531D3;
    border: 1px solid #8531D3;
}

.purpleBg:hover {
    color: #8531D3 !important;
    background: #FFF;
    border: 1px solid #8531D3;
}

.blueBg {
    background: #0693E3;
    border: 1px solid #0693E3;
}

.blueBg:hover {
    color: #0693E3 !important;
    background: #FFF;
    border: 1px solid #0693E3;
}

.orangeBg {
    color: #FFF;
    background: #FF6900;
    border: 1px solid #FF6900;
}

.orangeBg:hover {
    color: #FF6900 !important;
    background: #FFF;
    border: 1px solid #FF6900;
}

.blackBg {
    background: #212121;
    border: 1px solid #212121;
}

.blackBg:hover {
    color: #212121 !important;
    background: #FFF;
    border: 1px solid #212121;
}

.greenBg {
    background: #04853E;
    border: 1px solid #04853E;
}

.greenBg:hover {
    color: #04853E !important;
    background: #FFF;
    border: 1px solid #04853E;
}

.pink2Bg {
    background: #F64E78;
    border: 1px solid #F64E78;
}

.pink2Bg:hover {
    color: #F64E78 !important;
    background: #FFF;
    border: 1px solid #F64E78;
}

.blue2Bg {
    background: #042E90;
    border: 1px solid #042E90;
}

.blue2Bg:hover {
    color: #042E90 !important;
    background: #FFF;
    border: 1px solid #042E90;
}

.orange2Bg {
    background: #FF6900;
    color: #FFF;
    border: 1px solid #FF6900;
}

.orange2Bg:hover {
    color: #FF6900 !important;
    background: #FFF;
    border: 1px solid #FF6900;
}

.blue3Bg {
    background: #042E90;
    border: 1px solid #042E90;
}

.blue3Bg:hover {
    color: #042E90 !important;
    background: #FFF;
    border: 1px solid #042E90;
}

.green2Bg {
    background: #75FF00;
    border: 1px solid #75FF00;
    color: #000 !important;
}

.green2Bg:hover {
    color: #75FF00 !important;
    background: #FFF;
    border: 1px solid #75FF00;
}

.redBg {
    background: #FF2B2B;
    border: 1px solid #FF2B2B;
}

.redBg:hover {
    color: #FF2B2B !important;
    background: #FFF;
    border: 1px solid #FF2B2B;
}

.single-tag-wrap {
    display: none;
}

.yellowBg {
    background: #fae721;
    border: 1px solid #fae721;
}

.yellowBg:hover {
    color: #fae721 !important;
    background: #FFF;
    border: 1px solid #fae721;
}

.limeBg {
    background: #1ab9b5;
    border: 1px solid #1ab9b5;
}

.limeBg:hover {
    color: #1ab9b5 !important;
    background: #FFF;
    border: 1px solid #1ab9b5;
}

.grayBg {
    background: #9ea1a6;
    border: 1px solid #9ea1a6;
}

.grayBg:hover {
    color: #9ea1a6 !important;
    background: #FFF;
    border: 1px solid #9ea1a6;
}

.greenNewBg {
    background: #61ce70;
    border: 1px solid #61ce70;
}

.greenNewBg:hover {
    color: #61ce70 !important;
    background: #FFF;
    border: 1px solid #61ce70;
}


@media only screen and (max-width : 760px) {
    .diretoBtn {
        padding: 50px;
    }

}

/*****************BOTOES FLAT FIM*****************/

/*****************HOME INICIO*****************/

#home-banner {
    position: relative;
    height: auto;
    /* min-height:600px; */
    padding: 2rem;
    background-image: url('./assets/img/banner.png?v=1');
    background-size: contain;
    background-position: right 10px;
    background-repeat: no-repeat;
}

#home-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #151515;
    margin-top: 20%;
    margin-bottom: 10%;
}

#home-banner p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #151515;
    margin-bottom: 20%;
}

#home-banner a {
    background-color: #151515;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    background-color: #fca311;
    color: #fff;
    border: 1px solid #e89409;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.2rem;
}

#home-banner a:hover {
    background-color: #e89409;
}

#home-banner-overlay {
    background: rgba(235, 204, 155, 0.9);
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.default-home-title {
    margin-top: 8rem;
}

.default-home-title h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #151515;
    margin-bottom: 2rem;
}

.default-home-title p {
    font-size: 1rem;
    font-weight: 400;
    color: #5a5a5a;
}

#categories-box-content {
    margin-top: 5rem;
}

.box-categorie {
    background-color: #f0f0f0;
    border: 1px solid #e7e7e7;
    padding: 2rem;
    border-radius: 5px;
    height: 250px;
    position: relative;
}

.box-categorie img {
    width: 30px;
    height: 30px;
}

.box-categorie h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #151515;
    margin-bottom: 1.5rem;
    
}

.box-categorie p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #5a5a5a;
}

.box-categorie a {
    background-color: #151515;
    border: 1px solid #151515;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    font-size: 0.8rem;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-weight: 600;
}

.box-categorie a:hover {
    background-color: #fff;
    color: #151515;
}

.box-categorie a i {
    font-size: 1rem;
    float: right;
    margin-top: 4px;
    margin-left: 10px;
}

#numbers-box-content {
    margin-top: 5rem;
    background-color: #e89409;
    color: #fff;
    padding: 2rem;
    padding-bottom: 4rem;
    padding-top: 4rem;
}

.counter-item {
    border-right: 2px solid #c98108;
}

.counter-item:last-child {
    border-right: none;
}

.counter-item h1 {
    font-size: 3rem;
    font-weight: 700;
}

.counter-item p {
    font-size: 1rem;
    font-weight: 400;
}

#faq-box {
    margin-top: 8rem;
}

#faq-box h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #151515;
    margin-bottom: 2rem;
}

#faq-box span {
    font-size: 1rem;
    font-weight: 500;
    color: #5a5a5a;
    width: 70%;
    display: inline-block;
}

.faq-item {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #5a5a5a;
    margin-top: 1rem;
    display: none;
}

.faq-item h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #151515;
    cursor: pointer;
}

.faq-item {
    position: relative;
    transition: all 0.3s ease;
}

.faq-item i {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

#list-title {
    margin-top: 8rem;
    margin-bottom: 4rem;
}

.search-input {
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    color: #5a5a5a;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border: 1px solid #fca311;
    transition: all 0.3s ease;
}

@media only screen and (max-width : 760px) {

    .default-home-title h1 {
        font-size: 2.2rem;
    }

    #list-title,
    #categories-box-content,
    #numbers-box-content,
    #faq-box-content {
        margin-top: 2rem;
    }

    #list-title {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    #faq-box {
        margin-top: 4rem;
    }

    #faq-box h1 {
        text-align: center;
    }

    .faq-item h2 {
        font-size: 1.2rem;
    }

    #faq-box span {
        width: 100%;
        text-align: center;
    }


    #home-banner-overlay {
        display: block;
    }

    #home-banner {
        min-height: 350px;
        margin-top: 3rem;
        padding: 1rem;
        background-size: cover;
        background-color: rgb(211, 243, 220);
    }

    #home-banner h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        margin-top: 0;
        line-height: 1.5;
    }

    #home-banner p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    #home-banner a {
        font-size: 1rem;
    }

    .default-home-title {
        margin-top: 3rem;
    }

    .box-categorie {
        margin-bottom: 1rem;
    }

    #numbers-box-content {
        padding-bottom: 1rem;
        padding-top: 1rem;
    }

    .counter-item {
        border-right: none;
        border-bottom: 2px solid #c98108;
        margin-bottom: 1rem;
        margin-top: 1rem;
    }

    .counter-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    #faq-box-content {
        margin-top: 2rem;
    }

}

/*****************HOME FIM*****************/

/*****************CARD CARTAO INICIO*****************/
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css');

.cardCartao {
    width: 335px;
    /*height:335px;*/
    height: auto;
    padding-top: 10px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 6px 15px 1px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 6px 15px 1px rgba(0, 0, 0, 0.17);
    margin-top: 3rem;
    margin-bottom: 6rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background: #FFF;
    text-align: center;
    display: block;
}

.cardCartao h4 {
    font-size: 14px !important;
    color: #7a7a7a !important;
    margin-bottom: 8px !important;
    margin-top: 10px !important;
    line-height: unset !important;
    text-align: center !important;
}

.cardCartao h3 {
    font-size: 19px !important;
    color: #000 !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    line-height: unset !important;
    margin-top: unset !important;
    text-align: center !important;
}

.cardCartao ul {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.cardCartao ul>li {
    font-size: 11px !important;
    color: #000 !important;
    display: inline-block !important;
    margin: unset !important;
    margin-right: 10px !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    background: none !important;
}

.cardCartao ul>li>i {
    font-size: 18px !important;
    color: #7BDB53 !important;
    float: left !important;
    font-weight: 900 !important;
}

.cardCartaoImg {
    width: 231px !important;
    height: 140px !important;
    margin-top: 6px !important;
    margin-left: 42px !important;
    margin-bottom: 20px !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    cursor: pointer !important;
}

.cardCartao a {
    width: 241px !important;
    font-size: 15px !important;
    color: #FFF !important;
    font-weight: 700 !important;
    background: red !important;
    padding: 10px !important;
    text-transform: uppercase !important;
    border-radius: 10px !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    -webkit-box-shadow: 0px 6px 15px 1px rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0px 6px 15px 1px rgba(0, 0, 0, 0.3) !important;
}

.cardCartao a:hover {
    text-decoration: none !important;
}

.cardCartao p {
    font-size: unset !important; 
    font-weight: unset !important;
    line-height: unset !important;
    margin-bottom: unset !important;
    text-align: unset !important;
}

/*****************CARD CARTAO FIM*****************/
