/* 
    Created on : 09/02/2016, 14:13:33
    Author     : robsonvleite
*/


.header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    margin-top: 40px;
    z-index: 10001;
}

.header_inner {
    height: 100%;
}

.logo_container {
    display: block;
    position: relative;
    box-sizing: border-box;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    float: left;
}

.logo_container a {
    font-family: 'Molle', sans-serif;
    font-size: 32px;
    color: #F7F7F7;
}

.main_nav {
    display: inline-block;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    float: right;
}

.main_nav ul {
    display: block;
    position: relative;
    margin-bottom: 0px;
}

.main_nav ul li {
    display: inline-block;
}

.main_nav ul li a {
    font-family: 'Plus Jakarta Sans';
    color: #F7F7F7;
    margin-right: 30px;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
}

.main_nav ul li a:hover {
    color: #ff6700;
}

.main_nav ul li:last-child a {
    margin-right: 0px;
}

.nav_active {
    color: #ff6700 !important;
}

/***********
3.2 Menu
***********/

.menu_container {
    display: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0px;
    cursor: pointer;
    padding: 15px;
    z-index: 2;
}

.menu_toggle {
    display: block;
}

.hamburger_container {
    float: left;
}

.menu_hamburger {
    display: block;
    position: relative;
    float: left;
}

.menu_hamburger i {
    font-size: 1.5em;
}

.hamburger_lines {
    display: block;
    position: absolute;
    left: 0px;
    width: 100%;
    height: 2px;
    background: #F7F7F7;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    transform-origin: center center;
}

.line_1 {
    top: 0px;
}

.line_2 {
    top: 5px;
}

.line_3 {
    top: 10px;
}

.menu_toggle span {
    display: block;
    position: relative;
    float: left;
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #F7F7F7;
    padding-left: 1px;
}

/**********************
3.3 Full Screen Menu
**********************/

.fs_menu_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #252839;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.fs_menu_inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.fs_menu {
    list-style: none;
}

.fs_menu li {
    display: block;
    position: relative;
    margin-bottom: 3px;
}

.fs_menu li a {
    display: block;
    position: relative;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 1px;
    color: #F7F7F7;
    text-transform: uppercase;
    padding-left: 15px;
    padding-right: 15px;
    transition: transform 1.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transform: scale(1);
    transform: scale(1);
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
}

.fs_menu li:last-child {
    margin-bottom: 0px;
}

.fs_menu:hover li a {
    transform: scale(0.7);
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
}

.fs_menu li a:hover {
    transform: scale(1.1);
    -webkit-filter: brightness(1.2);
    filter: brightness(1.2);
    letter-spacing: 2px;
}

.love-heart {
    color: #ea4335;
    font-size: 0.875em;
}


.main_footer p:first-child {
    margin-bottom: 0.5em;
}

.main_footer .awlogo {
    color: #a5a5a5 !important;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    line-height: 1em;
    margin-top: 3.5em;
    letter-spacing: 0.5em;
    font-size: 0.7em;
    text-decoration: none;
}

.main_footer img {
    filter: grayscale(1);
    background-color: #FFFFFF;
    height: 4em;
    width: 10em;
    padding: 0.75em;
    margin: 0.75em 0;
    text-align: center;

    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    border-radius: 1em;

    display: block;
    opacity: .5;
    -webkit-transition: opacity 0.75s;
    -moz-transition: opacity 0.75s;
    -ms-transition: opacity 0.75s;
    -o-transition: opacity 0.75s;
    transition: opacity 0.75s;
    vertical-align: middle;
}

.main_footer img:hover {
    opacity: 1;
    filter: grayscale(0);
}

.content {
    width: 80%;
}

/*HEADER*/
.main_header {
    background: #fafafa;
    padding: 1em;
    color: #696969;
    font-size: 0.875em;
}


.main_header ul li ul.dropdown::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 20%;
    width: 0;
    height: 0;
    border-bottom: 8px solid #ededed;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}

.main_header ul li ul.dropdown.educacional::after {
    left: 70%;
}


.main_header ul li ul.dropdown {
    min-width: 100%; /* Set width of the dropdown */
}

.main_header ul li a img.flag-icon-menu {
    margin: 0 0.75em 0.1em 0;
    width: 25px;
    border-radius: 0.3em;
    object-fit: contain;
    padding: 0.15em;
    border: 1px solid #cfcfcf;
}

.main_header ul li a i {
    margin: 0 0.5em 0.1em 0;
    width: 25px;
    border-radius: 0.3em;
    object-fit: contain;
    padding: 0.15em;
    font-size: 1.5em
}

.main_header ul li ul.dropdown {
    border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -webkit-border-radius: 0.5em;
    background-color: white;
    border: 1px solid #ededed;
    -webkit-box-shadow: inset 0 10px 0 rgba(255, 255, 255, 0.2), 0 10px 20px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 10px 0 rgba(255, 255, 255, 0.2), 0 10px 20px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 10px 0 rgba(255, 255, 255, 0.2), 0 10px 20px rgba(0, 0, 0, 0.05);
    display: none;
    position: absolute;
    z-index: 999;
    left: 0;
    padding: 0.5em;
}

.main_header ul li:hover ul.dropdown {
    display: inline-table;
}

.main_header ul li ul.dropdown li {
    padding: 0.5em 0.25em;
    display: inline-flex;
    margin-bottom: 0.5em;
    text-align: left;
    min-width: 150px;
}

.main_header ul li ul.dropdown li:hover a {
    color: purple !important;
}

.main_header ul li ul.dropdown li a {
    display: inline-flex;
    color: #646a6f;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875em;
    line-height: 1.3em;
    font-weight: 500;
    vertical-align: middle;
    white-space: nowrap;
    padding: 0 !important;
}

.main_header header {
    float: left;
    text-align: center;
}

.main_header header span {
    float: right;
    font-size: 2em;
}

.main_header header h1 {
    font-size: 1.8em;
}

.main_header nav {
    float: right;
}

.main_header nav ul {
    margin-top: 0.5em;
    display: block;
    width: 100%;
}

.main_header nav ul.dropdown {
    margin: 0 !important;
}

.main_header nav li {
    display: inline-block;
    position: relative;
    border-radius: 0.4em;
}

.main_header nav li a {
    font-weight: 600;
    font-size: 1.15em;
    display: inline-block;
    padding: 0.35em 0.85em;
    color: #000000;
    text-decoration: none;
}

.main_header nav li:hover,
.main_header nav li a:hover,
.main_header nav li a.active {
    color: purple;
}

.main_header nav .login {
    padding: 0.35em 0.75em;
    font-size: 0.75em;

    letter-spacing: 1px;
    word-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;

    border: 1px solid #fafafa;

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

    -webkit-transition: all 225ms ease;
    -moz-transition: all 225ms ease;
    -ms-transition: all 225ms ease;
    -o-transition: all 225ms ease;
    transition: all 225ms ease;

    text-align: center;
}

.main_header nav .login:hover {
    color: #4978EE !important;
    font-weight: 600;
    border: 1px solid #4978EE;
}

.main_header nav a.signup {
    background: #2649ab;
    color: #FFFFFF !important;
    padding: 0.35em 0.7em;
    font-size: 0.8em;

    letter-spacing: 1px;
    word-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;

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

    -webkit-transition: all 225ms ease;
    -moz-transition: all 225ms ease;
    -ms-transition: all 225ms ease;
    -o-transition: all 225ms ease;
    transition: all 225ms ease;

    border: none;
    text-align: center;
}

.main_header nav a.signup:hover {
    color: #FFFFFF !important;
    font-weight: 600;
}

.main_header nav li:hover .sub,
.main_header nav li a:hover .sub {
    display: block;
}

.main_header nav .sub {
    display: none;
    z-index: 99;
    position: absolute;
    width: 200px;
    background: #fff;
    margin: 0;
}

.main_header nav .sub li,
.main_header nav .sub li a {
    color: #00B494;
    display: block;
    width: 100%;
}

.main_header nav .sub li a:hover {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.main_header nav .signup:hover {
    color: #373737 !important;
    -webkit-transition: all 225ms ease;
    -moz-transition: all 225ms ease;
    -ms-transition: all 225ms ease;
    -o-transition: all 225ms ease;
    transition: all 225ms ease;
}


.pulse {
    overflow: visible;
    position: relative;
}

.pulse::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, transform .3s;
    transition: opacity .3s, transform .3s, -webkit-transform .3s;
    -webkit-animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: -1;
}

@-webkit-keyframes pulse-animation {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 0;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes pulse-animation {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 0;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

/*CONTENT*/
.main_content {
    padding: 50px 0;
    background: #eaeaea;
}

section {
    width: 100%;
    height: 100%;
    padding: 1em;
    background-color: #f2f2f2;
}

/*HOME*/
.main_blog {
    float: right;
    width: 67%;
}

.main_blog_post {
    background: #fff;
    margin-bottom: 30px;
}

.main_blog_post img {
    width: 100%;
}

.main_blog_post header {
    padding: 30px;
}

.main_blog_post h1 {
    font-weight: 400;
    font-size: 2em;
    margin-bottom: 15px;
}

.main_blog_post a {
    color: #00B594;
    text-decoration: none;
}

.main_blog_post a:hover {
    text-decoration: underline;
}

.main_blog_post .tagline {
    font-size: 0.9em;
    color: #555;
}

.main_sidebar {
    float: left;
    width: 30%;
    padding: 30px;
    background: #fff;
}

.main_sidebar_widget {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

.main_sidebar_widget > h1 {
    font-size: 1.7em;
    font-weight: 300;
    margin-bottom: 25px;
    border-bottom: 1px solid #ccc;
}

.main_sidebar_widget > h1 span {
    border-bottom: 5px solid #ccc;
}

.main_sidebar_widget a {
    color: #00B494;
    text-decoration: none;
}

.main_sidebar_widget a:hover {
    text-decoration: underline;
}

.main_sidebar_widget ul {
    display: block;
    width: 100%;
}

.main_sidebar_widget ul li {
    display: block;
    width: 100%;
    background: #fbfbfb;
    padding: 5px 10px;
    border-bottom: 2px solid #fff;
    text-transform: uppercase;
    font-size: 0.875em;
    font-weight: 300;
}

.main_sidebar_widget_post {
    display: block;
    width: 100%;
    margin-bottom: 25px;
}

.main_sidebar_widget_post h1 {
    font-size: 1em;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

.main_sidebar_widget_post .tagline {
    font-size: 0.8em;
    color: #ccc;
}

.search_form {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    background: #fbfbfb;
    text-align: center;
}

.search_form input {
    margin-bottom: 10px;
}

.search_form button {
    text-transform: uppercase;
    font-size: 0.8em;
}

/*PAGINATOR*/
.paginator {
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.paginator li {
    display: inline-block;
    font-size: 0.9em;
}

.paginator li a,
.paginator li span {
    padding: 5px 10px;
    margin: 0 5px;
    background: #00B494;
    color: #fff;
    text-decoration: none;
}

.paginator li a:hover {
    background: #00CCA7
}

.paginator li span {
    background: #008068;
    font-weight: bold;
}

html {
    height: 100%;
    box-sizing: border-box;
}


body {
    position: relative;
    margin: 0;
    min-height: 100%;
}

/*FOOTER*/
.main_footer {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #333;
    padding: 2em 1.5em 0.25em 1.5em;
    color: #fff;
    font-size: 0.875em;
    text-align: center;
}

/*SINGLE*/
.post_single {
    padding: 50px 0;
    margin-bottom: 2em;
}

.post_single .cover {
    width: 100%;
}

.post_single .fb-comments {
    display: block;
    width: 100%;
    margin-top: 40px;
}

.post_single .main_sidebar {
    float: right;
}

.post_single .left_content {
    float: left;
    width: 67%;
}

.post_content {
    background: #fff;
}

.post_content > h1 {
    padding: 30px;
    font-size: 2em;
    font-weight: 300;
}

.post_content .tagline {
    padding: 30px 30px 0 30px;
    font-size: 1.3em;
    font-weight: 300;
}

.single_post_more {
    float: left;
    width: 100%;
    padding: 25px;
    background: #00B494;
}

.single_post_more header {
    margin-bottom: 20px;
    color: #fff;
}

.single_post_more_post {
    float: left;
    width: 50%;
}

.single_post_more_post:hover {
    border-color: #fff;
}


/*404*/
.not_found {
    padding: 50px 0;
}

.not_found header {
    width: 800px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto 40px auto;
}

.not_found header h1 {
    font-size: 2em;
    font-weight: 400;
}

.not_found header p {
    font-size: 1.1em;
    font-weight: 300;
    margin: 10px 0 0 0;
}

.not_fount_post {
    display: inline-block;
    width: 50%;
    padding: 20px;
    margin-left: -4px;
    vertical-align: top;
}

.not_fount_post h1 {
    margin-top: 20px;
    font-weight: 400;
}

.not_fount_post a {
    font-weight: 600;
    color: #00B494;
    text-decoration: none;
}

.not_fount_post a:hover {
    text-decoration: underline;
}

.not_found .search_form {
    display: block;
    padding: 0 20px;
    float: none;
    background: none;
    text-align: center;
}

.not_found .search_form input {
    width: 400px;
    max-width: 100%;
    padding: 6px;
}

.btn-agiwork-whatsapp:before {
    color: #00B494 !important;
    font-weight: 700;
}

.btn-agiwork-whatsapp {
    background-color: #CCCCCC;
    color: #555555;
    text-decoration: none;
    float: right;
    font-size: 0.65em;
    font-weight: 600;
    padding: 0.25em 0.75em 0.35em 0.75em;
    border-radius: 0.4em;
    -moz-border-radius: 0.4em;
    -webkit-border-radius: 0.4em;
    margin-top: 0.5em;
    text-transform: uppercase;
}

.page_single {
    padding: 0.5em;
    background: #eaeaea;
}

.page_single .content {
    background: #fff;
}

.page_single header {
    padding: 0.2em;
    text-align: right;
    background: #008068;
    color: #fff;
}

.wc_slides {
    margin: 30px auto;
}

@media (max-width: 80em) {
    .content {
        width: 90%;
        margin: 0 5%;
    }

    .main_blog {
        float: none;
        display: block;
        width: 100%;
    }

    .main_sidebar {
        float: none;
        display: block;
        width: 100%;
    }

    .main_sidebar_widget {
        display: inline-block;
        width: 50%;
        margin-left: -4px;
        vertical-align: top;
        padding: 30px;
    }

    .main_sidebar_widget_most {
        width: 100%;
    }

    .main_sidebar_widget_most .main_sidebar_widget_post {
        display: inline-block;
        width: 50%;
        margin-left: -4px;
        padding: 20px;
        vertical-align: top;
    }

    .left_content {
        float: none;
        display: block;
        width: 100% !important;
        margin-bottom: 30px;
    }
}

@media (max-width: 64em) {
    .idx_steps .step-item .mdp-steps__sub-title-decor,
    .idx_steps .step-item .mdp-steps__sub-title-decor2 {
        display: none !important;
    }

    .content {
        width: 94%;
        margin: 0 3%;
    }

    .main_header header {
        float: none;
        width: 100%;
    }

    .main_header nav {
        float: none;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 50em) {
    .idx_steps .step-item .mdp-steps__sub-title-decor,
    .idx_steps .step-item .mdp-steps__sub-title-decor2 {
        display: none !important;
    }

    .main_sidebar_widget,
    .main_sidebar_widget_most .main_sidebar_widget_post {
        padding: 0;
        width: 100%;
        margin-left: 0;
    }

    .not_fount_post {
        width: 100%;
        padding: 20px;
    }
}

.adsense {
    margin-top: 2.5em;
    height: 100px;
    width: 100%;
}

.check_user {
    text-align: center;
    padding-top: 2em;
}

.hotsite_user {
    border-top: 3px solid #4978EE;
    background-color: #FFFFFF;
}

.hotsite_user header, .hotsite_user_inactive header {
    text-align: center;
    padding: 1em;
    background-color: #f5f5f5;
}

.hotsite_user header h2, .hotsite_user_inactive header h2 {
    padding: 1em 0.5em 0.25em 0.5em;
    font-size: 1.25em;
    color: #696969;
}

.hotsite_user header h3 {
    font-size: 0.95em;
    color: #6f6f6f;
}

.hotsite_user header img, .hotsite_user_inactive header img {
    border: 3px solid #4978EE;
    padding: 0.15em 0.05em 0.1em 0.1em;
    width: 10em;
    height: 10em;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.hotsite_user header i:before {
    margin: 0 !important;
}

.hotsite_user header i {
    color: white;
    font-size: 0.5em;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #3897f0;
    padding: 0.3em 0.45em 0.2em 0.4em;
}

.hotsite_user header figure figcaption, .hotsite_user_inactive header figure figcaption {
    font-size: 0 !important;
}

.hotsite_user_inactive {
    min-height: 100vh;
}

.hotsite_user_inactive h3 {
    color: #505050;
    text-align: center;
    margin-top: 20vh;
}

.hotsite_user .user_social {
    text-align: center;
    padding: 2em 1em 0em 1em;
}

.hotsite_user .user_social a {
    text-decoration: none !important;
}

.hotsite_user .user_social h3 {
    font-size: 0.95em;
    color: #6f6f6f;
    margin: 0 !important;
    padding: 0 !important;
}

.hotsite_user .user_social h4 {
    text-align: justify;
    padding: 1em 0.5em 3em 0.5em;
    font-size: 0.875em;
    font-weight: 400;
    color: #505050;
    line-height: 1.5em;
}

.hotsite_user .user_social i, .hotsite_user .user_address i {
    padding: 0.45em 0.5em 0.35em 0.5em;
    background-color: #696969;
    margin: 0 0.35em;
    font-size: 1.4em;
    color: #FFFFFF;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.hotsite_user .user_address i {
    font-size: 1em !important;
}

.hotsite_user .user_social i.icon-facebook {
    background-color: #3a5897;
}

.hotsite_user .user_social i.icon-twitter {
    background-color: #1ea1f2;
}

.hotsite_user .user_social i.icon-youtube {
    background-color: #ff0000;
}

.hotsite_user .user_social i.icon-linkedin2 {
    background-color: #0b66c3;
}

.hotsite_user .user_address i.icon-whatsapp {
    background-color: #1ebea5;
}

.hotsite_user .user_social i.icon-instagram {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

.hotsite_user .user_social i:before, .hotsite_user .user_address i:before {
    margin: 0 !important;
}

.hotsite_user .user_links {
    padding: 1.5em;
    text-align: center;
}

.hotsite_user .user_links iframe {
    min-height: 30vh;
    padding: 5px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    background: rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 51px 26px -50px rgba(0, 0, 0, 0.72);
    -moz-box-shadow: 0px 51px 26px -50px rgba(0, 0, 0, 0.72);
    box-shadow: 0px 51px 26px -50px rgba(0, 0, 0, 0.72);
}

.hotsite_user .user_links div {
    padding: 0.25em;
    margin: 0.5em;
}

.hotsite_user .user_links a {
    display: block !important;
    background-color: #696969;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;
    font-size: 1.2em;
    font-weight: 400;
    padding: 0.8em 0em;
    text-decoration: none;
    -webkit-border-radius: 1.5em;
    -moz-border-radius: 1.5em;
    border-radius: 1.5em;
}

.hotsite_user .user_address {
    padding: 1.5em;
}

.hotsite_user .user_address a {
    font-size: 0.875em;
    color: #505050;
    text-decoration: none !important;
}

.hotsite_user .user_address p {
    color: #505050;
    margin: 1.5em;
    display: inline-block;
}

/****  INDEX */
.idx_section {
    padding: 0 1em;
}

#idx_first {
    text-align: center;
    background-color: #fafafa;
}

#idx_first header h2 {
    font-size: 2.5em;
    font-weight: 500;
    padding: 1.25em 0.75em;
}

#idx_first header h3 {
    font-size: 1.25em;
    font-weight: 400;
    padding: 0.25em;
    margin-bottom: 1em;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

#idx_first img {
    padding-top: 10%;
    max-width: 55% !important;
    transform: translatey(0px);
    animation: float 6s ease-in-out infinite;
}

#idx_recursos img {
    padding-top: 20%;
    max-width: 100% !important;
    transform: translatey(0px);
    animation: float 6s ease-in-out infinite;
}


#idx_vantagens header h2,
#idx_recursos header h2,
#idx_planos header h2,
#idx_gatilho2 header h2,
#idx_estatisticas header h2,
#idx_contato header h2,
.idx_faq header h2 {
    text-align: center;
    font-size: 1.65em;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-weight: 500;
    margin-bottom: 1.5em;
}

.idx_faq header h2 {
    margin-top: 2em;
}

#idx_planos header h2 {
    margin-bottom: 0.5em;
}

#idx_planos header h3 {
    text-align: center;
    font-size: 0.875em;
    letter-spacing: 0.01em;
    font-weight: 500;
    margin-bottom: 1.5em;
}

#idx_planos .plan_item {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border-radius: 0.4em;
    -moz-border-radius: 0.4em;
    -webkit-border-radius: 0.4em;
    padding: 0.75em 1.5em 1.5em 1.5em;
    margin: 0.5em 0;
    color: #505050;
}

#idx_planos .plan_item h4 {
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    margin: 0.25em 0 0.75em 0;
}

#idx_planos .plan_item h5 {
    font-size: 1.35em;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
}

#idx_planos .plan_item h6 {
    text-align: center;
    font-size: 0.875em;
    font-weight: 400;
    padding-bottom: 2em;
    margin: 0.5em 0 1em 0;
    border-bottom: 1px solid #e6e6e6;
}

#idx_planos .plan_item p.plan_label {
    font-size: 0.875em;
    padding: 0.5em;
    text-align: center;
    color: #000000;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    border-radius: 0.4em;
    -moz-border-radius: 0.4em;
    -webkit-border-radius: 0.4em;
}


#idx_planos .plan_item.plan_premium p.plan_label {
    background-color: rgba(52, 168, 83, 0.25);
}

#idx_planos .plan_item i.icon-alarm {
    color: #4978EE;
}

#idx_planos .plan_item .comingsoon {
    background-color: #4978EE;
    color: #FFFFFF;
    padding: 0.35em 0.55em 0.5em 0.55em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.5em;
    border-radius: 0.4em;
    -moz-border-radius: 0.4em;
    -webkit-border-radius: 0.4em;
}

#idx_planos .plan_item.plan_premium {
    border-top: 3px solid #34a853;
}

#idx_planos .plan_item.plan_free p.price {
    color: #ea4335;
    font-size: 2em;
    text-align: center;
    font-weight: 700;
}

#idx_planos .plan_item.plan_premium p.price {
    color: #34a853;
    font-size: 2em;
    text-align: center;
    font-weight: 700;
}

#idx_planos .plan_item p {
    line-height: 1.75em;
    padding: 0.35em 1.15em;
}

#idx_planos .plan_item p i {
    font-size: 0.7em;
}

#idx_planos .plan_item p i.icon-checkmark {
    color: #34a853;
}

#idx_planos .plan_item p i.icon-cross {
    color: #ea4335;
}

#idx_planos .plan_item p:last-child {
    margin: 1.5em 0 0.75em 0;
}

#idx_planos .plan_obs {
    text-align: center;
    font-size: 0.875em;
    padding: 1.5em 0;
    color: #505050;
}

#idx_vantagens .vant_item {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border-radius: 0.4em;
    -moz-border-radius: 0.4em;
    -webkit-border-radius: 0.4em;
    padding: 1em;
    margin-bottom: 2em;

    -webkit-transition: all 225ms ease;
    -moz-transition: all 225ms ease;
    -ms-transition: all 225ms ease;
    -o-transition: all 225ms ease;
    transition: all 225ms ease;
}

#idx_vantagens .vant_item p:first-child {
    text-align: center;
    padding: 1em;
}

#idx_vantagens .vant_item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

#idx_vantagens .vant_item i:before,
#idx_recursos .rec_item i:before {
    margin: 0 !important;
}

#idx_vantagens .vant_item i {
    padding: 0.4em 0.5em 0.3em 0.5em;
    border: 1px solid #4978EE;
    font-size: 1.5em;
    color: #4978EE;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;

    -webkit-transition: all 225ms ease;
    -moz-transition: all 225ms ease;
    -ms-transition: all 225ms ease;
    -o-transition: all 225ms ease;
    transition: all 225ms ease;
}

#idx_vantagens .vant_item:hover i {
    background-color: #4978EE;
    color: #FFFFFF;

    -webkit-transition: all 225ms ease;
    -moz-transition: all 225ms ease;
    -ms-transition: all 225ms ease;
    -o-transition: all 225ms ease;
    transition: all 225ms ease;
}

#idx_vantagens .vant_item h3 {
    margin: 1em 0;
    text-transform: uppercase;
    font-size: 0.95em;
    letter-spacing: 0.05em;
    text-align: center;
}

#idx_vantagens .vant_item p {
    text-align: justify;
    padding: 1em;
    line-height: 1.5em;
}

#idx_recursos {
    background-color: rgba(73, 120, 238, 0.075);
    margin-top: -4px;
}

#idx_recursos .rec_item {
    margin: 2em 0;
}

#idx_recursos .rec_item div:first-child {
    padding: 0.8em;
    text-align: center;
    margin-top: 1em;
}

#idx_recursos .rec_item i {
    padding: 0.7em 0.8em 0.6em 0.8em;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    background-color: #FFFFFF;
    font-size: 1.5em;
    color: #4978EE;
    border-radius: 0.4em;
    -moz-border-radius: 0.4em;
    -webkit-border-radius: 0.4em;

    -webkit-transition: all 225ms ease;
    -moz-transition: all 225ms ease;
    -ms-transition: all 225ms ease;
    -o-transition: all 225ms ease;
    transition: all 225ms ease;
}

#idx_recursos .rec_item h3 {
    color: #505050;
    text-align: justify;
    font-weight: 500;
    font-size: 1.1em;
    line-height: 1.5em;
    padding: 1em 0;

}


#idx_estatisticas {
    background-color: rgba(66, 133, 244, 0.075);
    margin-top: -4px;
    text-align: center;
    color: #505050;
}

#idx_estatisticas .row div {
    margin-bottom: 5em;
}

#idx_estatisticas p.stat_value {
    font-size: 2em;
    font-weight: 700;
    margin: 1.25em 0 0.5em 0;
}

#idx_estatisticas h3, #idx_estatisticas h3p {
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 0.0875em;
    font-weight: 600;
}

#idx_estatisticas i:before {
    margin: 0 !important;
}

#idx_estatisticas i.icon-earth {
    color: #34a853;
}

#idx_estatisticas i.icon-compass {
    color: #fbbc05;
}

#idx_estatisticas i.icon-heart {
    color: #ea4335;
}

#idx_estatisticas i {
    padding: 0.7em 0.8em 0.6em 0.8em;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    background-color: #FFFFFF;
    font-size: 1.75em;
    color: #4978EE;
    border-radius: 0.4em;
    -moz-border-radius: 0.4em;
    -webkit-border-radius: 0.4em;

    -webkit-transition: all 225ms ease;
    -moz-transition: all 225ms ease;
    -ms-transition: all 225ms ease;
    -o-transition: all 225ms ease;
    transition: all 225ms ease;
}

#idx_gatilho2 {
    text-align: center;
}

#idx_gatilho2 h2 {
    margin-top: 1.5em
}

#idx_gatilho2 .btn-yes {
    border: 2px solid #34a853;
    color: #34a853;
}

#idx_gatilho2 .btn-yes:hover {
    border: 2px solid #34a853;
    background-color: #34a853;
    color: #000000 !important;
}

#idx_gatilho2 .btn-no {
    border: 2px solid #ea4335;
    color: #ea4335;
}

#idx_gatilho2 .btn-no:hover {
    border: 2px solid #ea4335;
    background-color: #ea4335;
    color: #000000 !important;
}

#idx_gatilho2 .joke_col_no, #idx_gatilho2 .joke_col_yes {
    padding: 1em 0;
    margin: 1em 0;
}

/* Estilos para o menu móvel */
.nav_mobile {
    display: none; /* Inicialmente oculto */
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #ccc;
    padding: 1em;
    z-index: 9999999999;
}

.nav_mobile ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.nav_mobile li.active i {
    color: purple;
}

.nav_mobile li.active {
    color: purple;
    border-bottom: 1px solid purple;
}

.nav_mobile li {
    color: #646a6f;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5em;
}

.nav_mobile h5 {
    display: contents;
    font-size: 0.875em;
    margin-top: 2em;
    text-align: center;
    align-items: center;
}

.nav_mobile a {
    display: contents;
}

.nav_mobile i {
    display: block;
    align-items: center;
    text-align: center;
    font-size: 1.5em;
    line-height: 0.1em;
    margin-bottom: 0.25em;
    color: #333;
}


/* Media query para exibir o menu móvel em telas pequenas */
@media only screen and (max-width: 768px) {
    .nav_header {
        display: none; /* Oculta o menu principal em telas pequenas */
    }

    .nav_mobile {
        display: block; /* Exibe o menu móvel em telas pequenas */
    }
}


.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.main_header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    border-bottom: 1px solid #f2f2f2;
    z-index: 999999999;
}

.active_lead {
    line-height: 1.5em;
    background-color: rgba(234, 67, 53, 0.1);
    border-left: 2px solid #ea4335;
    color: #505050;
    border-radius: 0.4em;
    -moz-border-radius: 0.4em;
    -webkit-border-radius: 0.4em;
    padding: 0.5em;
    margin-bottom: 1em;
    font-size: 0.8em;
    font-weight: 400;
}

.active_lead a {
    font-weight: 600;
    margin-left: 0.75em;
}

#button {
    display: inline-block;
    background-color: #FF9800;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #333;
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

#return-to-top {
    position: fixed;
    bottom: 5em;
    right: 1.5em;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    z-index: 9999999999 !important;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 15px;
    top: 12.5px;
    font-size: 1.25em;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top:hover i:before {
    color: #4978EE;
}

#return-to-top:hover i {
    color: #fff;
    top: 5px;
}


/*
  ##Device = Dessktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
    .index_first_content header h1 {
        margin: 3em 0 1em 0;
    }

    .nav_ham {
        display: none;
    }

    .nav_header {
        display: block;
    }
}

/*
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
@media (min-width: 1025px) and (max-width: 1280px) {
    .nav_ham {
        display: none;
    }

    .nav_header {
        display: block;
    }
}

/*
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {
    .opencnpj_first .opencnpj_first_video iframe,
    .jornada_first .jornada_first_video iframe {
        width: 95vw !important;
        min-height: 50vh;
    }

    .nav_ham {
        display: none;
    }

    .nav_header {
        display: block;
    }
}

/*
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .opencnpj_first .opencnpj_first_video iframe,
    .jornada_first .jornada_first_video iframe {
        width: 65vw !important;
        min-height: 55vh;
    }

    .nav_ham {
        display: none;
    }

    .nav_header {
        display: block;
    }

    .j_cookie {
        margin-top: 2em !important;
    }
}

/*
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {

    .hotsite_user .user_address p {
        color: #505050;
        margin: 1.5em 0;
        display: inline-block;
    }


    .nav_ham {
        display: block;
    }

    .nav_header {
        display: none;
    }
}

/*
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {

    #cookiePolicy span {
        text-align: justify !important;
    }

    #cookiePolicy .row div:first-child {
        margin-bottom: 2em !important;
    }

    .hotsite_user .user_address p {
        color: #505050;
        margin: 1.5em 0;
        display: inline-block;
    }

    .main_header nav.nav_header {
        display: none;
    }

    .main_header nav li {
        display: block;
        margin: 1em 0;
    }

    .hotsite_user .user_links div {
        padding: 0.15em;
        margin: 0.5em;
        font-size: 0.875em;
    }

    .nav_ham {
        display: block;
    }

    .nav_header {
        display: none;
    }

}

.notfound {
    margin: 0 !important;
}

.notfound img {
    padding: 2em 1em;
}

.notfound header {
    color: #444444;
}

.notfound header h2 {
    font-size: 2.25em;
    margin: 1em 0;
}

.notfound header p {
    font-size: 1.25em;
    text-align: justify;
    line-height: 1.5em;
    margin-bottom: 2em;
}

/*************************************
** INDEX - index_faq
*************************************/
.collapsible {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    margin: 0.5rem 0 1rem 0;
    border-bottom: 3px solid #fd2d00;
}

.collapsible-header:before {
    font-family: 'icomoon' !important;
    content: "\ea54";
    transform: rotate(90deg);
    margin-right: 3em;
    font-size: 0.5em;
    color: #fd2d00;
}

.collapsible-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    background-color: #FFFFFF;
    -webkit-tap-highlight-color: #606060;
    padding: 1rem;
    border-bottom: 1px solid #ddd;

    color: #606060;
    text-transform: uppercase;
}

.collapsible-header:focus {
    outline: 0;
}

.collapsible-header i {
    width: 2rem;
    font-size: 1.3rem;
    display: inline-block;
    text-align: center;
    margin-right: 1rem;
}

.keyboard-focused .collapsible-header:focus {
    background-color: #eee;
}

.idx_faq {
    margin-bottom: 5em;
    text-align: center;
    border-radius: 0.4em;
}

.idx_faq .collapsible {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    margin: 0.5rem 0 1rem 0;
    border-bottom: 3px solid #4978EE;
    font-size: 0.75em;
    line-height: 1.5em;
}

.idx_faq .collapsible-header h4 {
    max-width: 100%;

}

.idx_faq .collapsible-header:before {
    font-family: 'icomoon' !important;
    content: "\ea54";
    transform: rotate(90deg);
    text-align: left !important;
    margin-right: 3em;
    font-size: 0.5em;
    color: #4978EE;
}

.collapsible-body {
    display: none;
    background-color: #FFFFFF;
    border-bottom: 1px solid #ddd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 2rem;

    font-size: 1.15em;
    color: #606060;
    text-align: justify;
    text-transform: none;
    line-height: 1.5em;
}

.collapsible-body h5 {
    font-weight: 400 !important;
    font-size: 0.9em;
}

.font_zero {
    font-size: 0 !important;
}

.politica_privacidade {
    margin-bottom: 1em;
}

.politica_privacidade h2 {
    padding: 1em;
}

.politica_privacidade div.row {
    padding: 1em;
}

.politica_privacidade h3 {
    font-size: 1.5em;
    margin: 1.5em 0 0.7em 0;
}

.politica_privacidade p {
    font-size: 0.875em;
    line-height: 1.5em;
    text-align: justify;
}

.politica_privacidade ul li {
    font-size: 0.8em;
    text-align: left;
}


#cookiePolicy {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #333333;
}

#cookiePolicy .container {
    padding: 0.875em 1.25em;
    text-align: center;
    color: #FFF;
}

#cookiePolicy h5 {
    color: #9c9c9c;
    margin-bottom: 1em;
}

#cookiePolicy span {
    margin: 0 0 5em 0;
    font-size: 0.8em;
    font-weight: 300;
}

#cookiePolicy .btn {
    background-color: #222222;
    border-radius: 0.875em;
    padding: 0.5em 1em;
    color: #FFFFFF;
    text-decoration: none;
}

#cookiePolicy span a {
    margin-top: 2em !important;
    color: #FFF;
    font-weight: 400;
    text-decoration: none;
    transition-duration: 2ms;
}

#cookiePolicy .footer_optout_btn {
    padding: 12px 24px;
    font-size: 1.3em;
    font-weight: 600;
}

#cookiePolicy a:hover {
    color: #4978EE !important;
}

.mdp-heading-title {
    margin-top: 3em;
    text-align: center;
    font-size: 1.25em;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mdp-heading-title i {
    font-size: 1.25em;
    position: relative;
    bottom: -5px;
    color: #5d5f83;
    margin-right: 8px;
}

.mdp-heading-subtitle {
    text-align: center;
    font-size: 1em;
    letter-spacing: 1px;
    margin: 1.5em 0 5em 0;
}


.mdp-heading-subtitle.inverse {
    margin: 5em 0 1.5em 0;
}

.idx_stats .stats_section {
    text-align: center;
    display: contents;
}

.idx_stats .stats_section .stats_item {
    border: 1px solid rgba(128, 0, 128, 0.12);
    background-color: white;
    padding: 3em 1em;
    border-radius: 1em;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
}

.idx_stats .stats_section h5 {
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 0.5em;
}

.idx_stats .stats_section p {
    font-size: 0.875em;
}

.idx_stats .stats_section p b {
    font-size: 2.35em;
    font-weight: 700;
    color: purple;
}

.idx_mago p.mago-desc {
    font-size: 1em;
    color: #282828;
    line-height: 1.75em;
    text-align: justify;
    padding: 1em 2.5em 1em 1em;
    display: inline-block;
    margin-bottom: 1em;
}

.idx_mago img {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    transition: all .3s;
    text-align: center;
    padding: 2em;
}

.idx_mago figcaption {
    font-size: 0.875em;
    font-weight: 400;
    text-align: center;
}

.idx_mago p.mago-desc span {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    transition: all .3s;
    text-align: center;
    margin-right: 0.5em;
    display: inline-block;
    align-items: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-weight: 700;
    color: purple;
    font-size: 1.5em;
}

.idx_mago p.mago-desc:hover span {
    color: #fff;
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    background: purple;
}

.idx_steps .step-item, .community-page .step-item {
    text-align: center;
    padding: 1em;
}

.idx_coupons .coupon-item {
    margin-bottom: 1em;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    transition: all .3s;
    text-align: center;
    padding: 2em;
}

.stickytop {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    z-index: 3;
}

.idx_offers .offer-item,
#loja_offers .offer-item {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    transition: all .3s;
    text-align: center;
    padding: 0.5em;
    margin-bottom: 2em;
}

.idx_offers .offer-item .offer-header,
#loja_offers .offer-item .offer-header {
    margin-bottom: 0.25em;
}

.idx_offers .offer-item .offer-header p,
#loja_offers .offer-item .offer-header p {
    font-size: 0.7em;
    line-height: 1.65em;
    display: inline-flex;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
}

.idx_offers .offer-item .offer-content p.offer-badges,
#loja_offers .offer-item .offer-content p.offer-badges {
    display: inline-flex;
    min-height: 40px;
}

.discount-badge {
    background-color: rgba(207, 207, 207, 0.75);
    font-size: 0.65em;
    padding: 0.4em 0.75em 0.5em 0.875em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    border-radius: 8px;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    transition: width 300ms ease-in-out 0s, background-color 300ms linear 200ms;
    font-weight: 600;
}

.discount-badge i {
    margin: 0 0 0 0.1em !important;
    width: 10px !important;
}

.discount-badge.superoffer {
    background-color: rgba(245, 73, 0, 0.33);
}

.discount-badge.badge-cupom {
    margin-left: 0.75em;
    background-color: rgba(56, 151, 240, 0.33);
}

.ribbon-container {
    position: relative;
    display: block;
    height: fit-content;
}

.ribbon {
    position: absolute;
    bottom: calc((100% / 5) * 0.25);
    right: 10px;
    background-color: rgb(251, 188, 4);
    color: #282828;

    font-size: 0.7em;
    padding: 0.3em 0.5em 0.35em 0.4em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    border-radius: 8px;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    transition: width 300ms ease-in-out 0s, background-color 300ms linear 200ms;
    font-weight: 600;
    display: flex;
}

.ribbon i {
    width: 12px !important;
}

.ribbon i:before {
    margin: 0 !important;
}

.idx_offers .offer-item .offer-content p.offer-badges i.iconoir-share-android-solid,
#loja_offers .offer-item .offer-content p.offer-badges i.iconoir-share-android-solid,
.coupon_item_today p.offer-badges i.iconoir-share-android-solid {
    font-size: 2.1em;
    width: 35px;
    padding: 0.35em 0.2em 0.2em 0.25em;
    margin: 0 !important;
    text-align: -webkit-center;
    color: #00a884;
}

.coupon_item_today p.offer-badges i.iconoir-share-android-solid {
    font-size: 1.65em;
}

.idx_offers .offer-item .offer-content p.offer-badges span.ec,
#loja_offers .offer-item .offer-content p.offer-badges span.ec {
    font-size: 2.5em;
    padding: 0.25em 0.25em;
}

.idx_offers .offer-item .offer-content p.offer-badges span.ec,
#loja_offers .offer-item .offer-content p.offer-badges span.ec {
    min-width: 33px !important;
    font-size: 2.45em;
    padding: 0.55em 0.1em
}

span.ec-truck, span.ec-chart-with-downwards-trend {
    padding-left: 0.25em;
    width: 37px !important;
}

.idx_offers .offer-item .offer-content p.offer-badges span.ec-beginner,
#loja_offers .offer-item .offer-content p.offer-badges span.ec-beginner {

    padding: 0.65em 0.2em 0.5em 0.35em;
}

.idx_offers .offer-item .offer-content p.offer-badges span.superoffer,
.idx_offers .offer-item .offer-content p.offer-badges span.superrating,
.idx_offers .offer-item .offer-content p.offer-badges span.superdiscount,
.idx_offers .offer-item .offer-content p.offer-badges span.superprice,
#loja_offers .offer-item .offer-content p.offer-badges span.superrating,
#loja_offers .offer-item .offer-content p.offer-badges span.superoffer,
#loja_offers .offer-item .offer-content p.offer-badges span.superdiscount,
#loja_offers .offer-item .offer-content p.offer-badges span.superprice {
    font-size: 0.6em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    display: inline-flex;

    border-radius: 8px;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    transition: width 300ms ease-in-out 0s, background-color 300ms linear 200ms;
    font-weight: 600;
    background-color: #f2f2f2;
}

.idx_offers .offer-item .offer-content p.offer-badges span.superprice.offer-share-badge,
#loja_offers .offer-item .offer-content p.offer-badges span.superprice.offer-share-badge {
    background-color: rgba(0, 168, 132, 0.25);
}


.idx_offers .offer-item .offer-content p.offer-badges span.superoffer,
#loja_offers .offer-item .offer-content p.offer-badges span.superoffer {
    margin: 0.1em 0.25em;
    padding: 0.25em 0.5em 0.35em 0.1em;
}

.idx_offers .offer-item .offer-content p.offer-badges span.superrating,
#loja_offers .offer-item .offer-content p.offer-badges span.superrating {
    margin: 0.1em 0.25em;
    padding: 0.25em 0.4em;
}

.idx_offers .offer-item .offer-content p.offer-badges span.superdiscount,
#loja_offers .offer-item .offer-content p.offer-badges span.superdiscount {
    margin: 0.1em 0.25em;
    padding: 0.25em 0.4em;
}

.idx_offers .offer-item .offer-content p.offer-badges span.superprice,
#loja_offers .offer-item .offer-content p.offer-badges span.superprice {
    margin: 0.1em 0.25em;
    padding: 0.15em 0.35em 0.35em 0.1em;
}

.offer-item .offer-content p.offer-badges i.free {
    color: purple !important;
}

.offer-item .offer-content p.offer-badges i.prime {
    color: #1a98ff !important;
}

.offer-item .offer-content p.offer-badges i.full {
    color: #00a650 !important;
}


.idx_offers .offer-item .offer-store span.verified i,
#loja_offers .offer-item .offer-store span.verified i {
    color: #3897F0;
}

.idx_offers .offer-item .offer-header i,
#loja_offers .offer-item .offer-header i {
    padding: 0.3em 0.25em;
    font-size: 1.1em;
    margin-right: 0.2em;
}

.idx_offers .offer-item .offer-header i.verified,
#loja_offers .offer-item .offer-header i.verified {
    color: #3897F0;
    margin-left: 0.2em;
}

.idx_offers .offer-item .offer-header i.shopee,
#loja_offers .offer-item .offer-header i.shopee {
    color: #ff5200;
}

.idx_offers .offer-item .offer-header i.mercado-livre,
#loja_offers .offer-item .offer-header i.mercado-livre {
    color: #ffe700;
}

.idx_offers .offer-item .offer-header i.amazon,
.idx_offers .offer-item .offer-header i.shein,
#loja_offers .offer-item .offer-header i.amazon,
#loja_offers .offer-item .offer-header i.shein {
    color: #221f1f;
}

.idx_offers .offer-item .offer-header i.aliexpress,
#loja_offers .offer-item .offer-header i.aliexpress {
    color: #e62e04;
}

.idx_offers .offer-item .offer-header i.magazine-luiza,
#loja_offers .offer-item .offer-header i.magazine-luiza {
    color: #0086ff;
}

.idx_offers .offer-item .offer-content img.offer-image,
#loja_offers .offer-item .offer-content img.offer-image {
    aspect-ratio: 1 / 1;
    width: 80%;
    object-fit: contain;
    border-radius: 0.5em;
    padding: 0.45em;
    border: 1px solid #cfcfcf;
    min-width: 215px;
    height: 215px;
}


.offer-item .offer-content video, .offer-item .offer-content img.image-viral {
    width: 250px;
    height: 250px;
    margin: 0.5em;
}


.offer-video-viral {
    width: 100%; /* Garante que a div pai preencha a largura da tela ou do elemento pai */
    max-width: 1000px; /* Define uma largura máxima para o vídeo para evitar que ele fique muito grande */
    margin: 0 auto; /* Centraliza a div na tela, se desejado */

}

.offer-video-viral img {
    width: 300px;
    height: 300px;
    object-fit: contain;

    padding: 0.45em;
    border: 1px solid #cfcfcf;
}

.plataforma-logo {
    display: flex;
    margin-bottom: 1em;
    align-items: center;
}

.plataforma-logo b {
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.0875em;
    margin-left: 0.5em;
}

.item-logo-plataforma {
    width: 70px;
    height: 70px;
    object-fit: scale-down;
    -webkit-border-radius: 1em !important;
    -moz-border-radius: 1em !important;
    border-radius: 1em !important;
}

.offer-video {
    width: 100%; /* Faz com que o vídeo preencha completamente a largura da div pai */
}

.idx_offers .offer-item .offer-content span.superoffer img,
.idx_offers .offer-item .offer-content span.superrating img,
.idx_offers .offer-item .offer-content span.superdiscount img,
.idx_offers .offer-item .offer-content span.superprice img,
#loja_offers .offer-item .offer-content span.superoffer img,
#loja_offers .offer-item .offer-content span.superrating img,
#loja_offers .offer-item .offer-content span.superdiscount img,
#loja_offers .offer-item .offer-content span.superprice img {
    width: 25px;
    height: 25px;
    margin: 0.5em;
}

.offer-item .offer-content h3 {
    margin: 1.25em 0;
    font-size: 1.5em;
    font-weight: 600;
}

.offer-item .offer-content p.checklist i {
    color: #00a650;
}

.offer-item .offer-content p.checklist {
    font-size: 0.875em;
    margin-bottom: 0.7em;
    text-align: left;
}

.idx_offers .offer-item .offer-content h4,
.idx_offers .offer-item .offer-content h4 a,
#loja_offers .offer-item .offer-content h4 {
    font-size: 0.9em;
    line-height: 1.75em;
    text-align: justify;
    font-weight: 600;
    text-decoration: none;
    grid-area: title;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #282828;
    transition: color 0.5s ease 0s;
    pointer-events: all;
    margin: 1em 0;
}


.bar-container {
    width: 100%;
    padding: 0 3em;
    margin-top: 3em;
}

.loading-bar-container {
    width: 100%;
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background-color: purple;
    animation: fill 4s linear forwards, hide 0.5s 4s forwards; /* Duração da animação de 7 segundos e delay de 7s antes de ocultar */
}

.loading-bar.load-cupom {
    animation: fill 5s linear forwards, hide 0.5s 5s forwards; /* Duração da animação de 7 segundos e delay de 7s antes de ocultar */
}

@keyframes fill {
    0% {
        width: 0%;
    }
    50% {
        width: 50%;
    }
    75% {
        width: 75%;
    }
    100% {
        width: 100%;
    }
}

@keyframes hide {
    from {
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}


.idx_offers .offer-item .offer-content p,
#loja_offers .offer-item .offer-content p {
    line-height: 2em;
}

.idx_offers .offer-item .offer-content span.offer-price-old,
#loja_offers .offer-item .offer-content span.offer-price-old {
    font-size: 0.875em;
    margin-right: 0.5em;
}

.idx_offers .offer-item .offer-content span.offer-price-new b,
#loja_offers .offer-item .offer-content span.offer-price-new b {
    font-size: 1.1em;
}

.idx_offers .offer-item .offer-content span.offer-price-new,
#loja_offers .offer-item .offer-content span.offer-price-new {
    margin-bottom: 2em;
}

.idx_offers .offer-item .offer-content .offer-discount,
.idx_offers .offer-item .offer-content .offer-shipping,
.idx_offers .offer-item .offer-content .offer-coupon,
.idx_offers .offer-item .offer-content .offer-store,
.idx_offers .offer-item .offer-content .offer-rating,
#loja_offers .offer-item .offer-content .offer-discount,
#loja_offers .offer-item .offer-content .offer-shipping,
#loja_offers .offer-item .offer-content .offer-coupon,
#loja_offers .offer-item .offer-content .offer-store,
#loja_offers .offer-item .offer-content .offer-rating {
    text-align: left;
    line-height: 2.5em;
}

.idx_offers .offer-item .offer-content .offer-discount i,
.idx_offers .offer-item .offer-content .offer-shipping i,
.idx_offers .offer-item .offer-content .offer-coupon i,
.idx_offers .offer-item .offer-content .offer-store i,
.idx_offers .offer-item .offer-content .offer-rating i,
#loja_offers .offer-item .offer-content .offer-discount i,
#loja_offers .offer-item .offer-content .offer-shipping i,
#loja_offers .offer-item .offer-content .offer-coupon i,
#loja_offers .offer-item .offer-content .offer-store i,
#loja_offers .offer-item .offer-content .offer-rating i {
    font-size: 1em;
    color: #282828;
}

.idx_offers .offer-item .offer-content .offer-cta,
#loja_offers .offer-item .offer-content .offer-cta {
    margin: 2em 0 1em 0;
}

.idx_offers .offer-item .offer-content .offer-cta a.cta-button,
#loja_offers .offer-item .offer-content .offer-cta a.cta-button {
    padding: 0.425em 1em 0.5em 1em;
    border: 2px solid purple;
    color: purple;
    font-size: 0.9em;
    line-height: 1rem;
    border-radius: 1rem;
    letter-spacing: 0.1em;
    -webkit-font-smoothing: antialiased;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease 0s, border-color 0.2s ease 0s, box-shadow 0.2s ease 0s, color 0.2s ease 0s;
    user-select: none;
    box-sizing: border-box;
    font-weight: 600;
    text-transform: uppercase;
}

.offer_list {
    text-align: center;
    margin-top: 2em;
}

.cta-button-whatsapp {
    border: 2px solid transparent;
    background-color: #00a884;
    color: white;

    font-size: 0.875em;
    line-height: 1rem;
    border-radius: 2rem;
    letter-spacing: 0.1em;
    padding: 0.7em 1.25em;
    -webkit-font-smoothing: antialiased;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease 0s, border-color 0.2s ease 0s, box-shadow 0.2s ease 0s, color 0.2s ease 0s;
    user-select: none;
    box-sizing: border-box;
    font-weight: 600;
    text-transform: uppercase;
}

.cta-button-whatsapp i {
    font-size: 1.2em;
}

.offer_list a.cta-button {
    border: 2px solid transparent;
    background-color: purple;
    color: white;

    font-size: 0.9em;
    line-height: 1rem;
    border-radius: 1rem;
    letter-spacing: 0.1em;
    padding: 1em;
    -webkit-font-smoothing: antialiased;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease 0s, border-color 0.2s ease 0s, box-shadow 0.2s ease 0s, color 0.2s ease 0s;
    user-select: none;
    box-sizing: border-box;
    font-weight: 600;
    text-transform: uppercase;
}

.idx_offers .offer-item .offer-content .offer-cta a.cta-button:hover,
#loja_offers .offer-item .offer-content .offer-cta a.cta-button:hover {
    border: 2px solid transparent;
    background-color: purple;
    color: white;
}

.idx_offers .offer-item .offer-content .offer-cta a.offer-share,
#loja_offers .offer-item .offer-content .offer-cta a.offer-share {
    padding: 0.4em 0 0.4em 0.35em;
    border-radius: 1rem;
    border: 2px solid #00a884;
    color: #00a884;
    font-size: 0.9em;
    align-items: center;
    text-align: center;
    margin-left: 2em;
}

.idx_offers .offer-item .offer-content .offer-cta a.offer-share:before,
#loja_offers .offer-item .offer-content .offer-cta a.offer-share:before {
    margin: 0 0 0 1em !important;
}

.idx_offers .offer-item .offer-content .offer-cta a.offer-share:hover,
#loja_offers .offer-item .offer-content .offer-cta a.offer-share:hover {
    background-color: #00a884;
    color: white;
}

.idx_offers .offer-item .offer-content .offer-cta a.offer-share i,
#loja_offers .offer-item .offer-content .offer-cta a.offer-share i {
    text-align: center;
    margin-left: 0.5em;
}

.idx_offers .offer-item .offer-content .offer-store span.store-shopee:hover,
#loja_offers .offer-item .offer-content .offer-store span.store-shopee:hover {
    color: #ff5200;
}

.idx_offers .offer-item .offer-content .offer-store span.store-mercado-livre:hover,
#loja_offers .offer-item .offer-content .offer-store span.store-mercado-livre:hover {
    color: #ffe700;
}

.idx_offers .offer-item .offer-content .offer-store span.store-amazon:hover,
#loja_offers .offer-item .offer-content .offer-store span.store-amazon:hover,
.idx_offers .offer-item .offer-content .offer-store span.store-shein:hover,
#loja_offers .offer-item .offer-content .offer-sf.idx_offers .offer-item .offer-header i, #loja_offers .offer-item .offer-header itore span.store-shein:hover {
    color: #221f1f;
}

.idx_offers .offer-item .offer-content .offer-store span.store-aliexpress:hover,
#loja_offers .offer-item .offer-content .offer-store span.store-aliexpress:hover {
    color: #e62e04;
}

.idx_offers .offer-item .offer-content .offer-store span.store-magazine-luiza:hover,
#loja_offers .offer-item .offer-content .offer-store span.store-magazine-luiza:hover {
    color: #0086ff;
}

.idx_offers .offer-item .offer-content .offer-store span b,
#loja_offers .offer-item .offer-content .offer-store span b {
    margin-right: 1em;
}

.idx_offers .offer-item .offer-content .offer-discount img,
#loja_offers .offer-item .offer-content .offer-discount img {
    width: 25px;
    height: 25px;
}

.idx_offers .offer-item .offer-content .offer-discount img,
.idx_offers .offer-item .offer-content i,
#loja_offers .offer-item .offer-content .offer-discount img,
#loja_offers .offer-item .offer-content i {
    margin-right: 0.35em;
    width: 25px;
    text-align: center;
}

.idx_offers .offer-item .offer-content .offer-store b,
#loja_offers .offer-item .offer-content .offer-store b {
    color: purple !important;
}

.idx_coupons .coupon-item img {
    height: 4.5rem;
    width: 4.5rem;
    border-radius: 1em;
}

.idx_coupons .coupon-item h3 {
    font-size: 1.15em;
    font-weight: 500;
    margin: 0.5em 0 2em 0;
}

.idx_coupons .coupon-item p.coupon-today,
.idx_coupons .coupon-item p.coupon-total {
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: hero-new, sans-serif;
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    line-height: 1rem;
    border-radius: 1rem;
    -webkit-font-smoothing: antialiased;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease 0s, border-color 0.2s ease 0s, box-shadow 0.2s ease 0s, color 0.2s ease 0s;
    user-select: none;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.idx_coupons .coupon-item p.coupon-cta {
    text-align: center;
    margin-top: 3em;
}

.idx_coupons .coupon-item p.coupon-cta a {
    font-size: 0.9em;
    letter-spacing: 0.1em;
    color: #282828;
    border-bottom: 1.5px solid transparent;
}

.idx_coupons .coupon-item p.coupon-cta a:hover {
    color: purple;
    border-bottom: 1.5px solid purple;
}

.idx_coupons .coupon-item p.coupon-today span,
.idx_coupons .coupon-item p.coupon-total span {

    border: 2px solid transparent;
    padding: 0.275rem 1rem 0.375rem 1rem;
    font-size: 0.7rem;
    line-height: 1rem;
    border-radius: 1rem;
    -webkit-font-smoothing: antialiased;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease 0s, border-color 0.2s ease 0s, box-shadow 0.2s ease 0s, color 0.2s ease 0s;
    user-select: none;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    font-weight: 600;
    text-transform: uppercase;
}

.idx_coupons .coupon-item p.coupon-total span,
.idx_coupons .coupon-item p.coupon-today span {
    background-color: #e3e3e3;
    color: #282828;
}

.idx_coupons .coupon-item p.coupon-today.hascoupon span {
    background-color: rgba(65, 196, 131, 0.5);
    color: #282828;
}

.community-page .step-item a {
    text-decoration: none !important;
    color: #282828;
    cursor: pointer !important;
}

.idx_steps .step-item p span, .community-page .step-item p span {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    display: inline-block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    color: purple;
    text-align: center;
}

.idx_steps .step-item:hover p span, .community-page .step-item:hover p span {
    color: #fff;
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    background: purple;
}

.community-page .step-item:hover a {
    color: purple;
}

.idx_steps .step-item .mdp-steps__sub-title-decor {
    position: absolute;
    left: calc(100% + 30px);
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.idx_steps .step-item .mdp-steps__sub-title-decor2 {
    position: absolute;
    top: 30px;
    -webkit-transform: translateX(-50%) rotate(180deg);
    transform: translateX(-50%) rotate(180deg);
}

.idx_steps .step-item h3, .community-page .step-item h3 {
    font-size: 1.25em;
    font-weight: bold;
    line-height: 1.5em;
    margin: 1em 0;
}

.idx_steps .step-item p.step-desc, .community-page .step-item p.step-desc {
    color: #515151;
    text-align: justify;
    font-size: 1em;
    padding: 0 1em;
    line-height: 1.875em;
}

.idx_faqs .accordion-item {
    border-bottom: 1px solid #ddd;
    border-radius: 10px;
}

.idx_faqs .accordion {
    border-radius: 1em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    background-color: white;
    margin-bottom: 1em;
}

.idx_faqs .accordion-header {
    background-color: white;
    cursor: pointer;
    display: flex;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
    line-height: 1rem;
    font-weight: 700;
    color: rgb(49, 43, 69);
    text-align: left;
    padding: 1em 0;
    border-radius: 10px;
}

.idx_faqs .accordion-header i {
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle;
    transform: rotate(0deg);

    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;

    margin-right: 1.5em;
    font-size: 1.5em;
}

.idx_faqs .accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    margin-right: 1.5em;
    font-size: 1.5em;
}

.idx_faqs .accordion-item.active .accordion-body {
    display: block;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.idx_faqs .accordion-button {
    width: 100%;
    padding: 0.5em 1em;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    border: none;
    font-size: 1em;
    background-color: white;
    color: #444;
}

.idx_faqs .accordion-button:hover {
    color: purple;
}

.idx_faqs .accordion-body {
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    padding: 1em;
    display: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
    font-size: 0.875em;
    text-align: justify;
    line-height: 1.75em;
    color: #282828;
}

.idx_faqs .accordion-item.active .accordion-body {
    display: block;
}

.idx_faqs .accordion-body i.iconoir-nav-arrow-up {
    display: none;
}

.idx_testimonials .mdp-testimonial__itemcard {
    padding: 1.1em 0.9em;
}

.idx_testimonials .mdp-testimonial__item {
    padding: 1em;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    transition: all .3s;
}

.idx_testimonials .mdp-testimonial__top {
    display: flex;
}

.idx_testimonials .mdp-testimonial__content {
    display: inline-block;
    margin-left: 1em;
}

.idx_testimonials .mdp-testimonial__description {
    color: #282828;
    font-size: 1em;
    line-height: 1.75em;
    margin-top: 1em;
    text-align: justify;
}

.idx_loja_aside {
    padding: 1em;
}


.idx_testimonials .mdp-testimonial__rating,
.idx_loja_vitrine .idx_loja_aside .loja_rating {
    display: flex;
}

.idx_loja_vitrine .idx_loja_aside .loja_rating p {
    color: #282828;
    margin-left: 0.5em;
}

.idx_testimonials .mdp-testimonial__star,
.idx_loja_vitrine .idx_loja_aside .loja_star {
    display: inline-block;
}

.idx_testimonials .mdp-testimonial__star i,
.idx_loja_vitrine .idx_loja_aside .loja_star i {
    color: #f3bb2e;
    margin-right: 0.25em;
}

/* Estilo básico para a lista de breadcrumb */
ol.breadcrumb {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-left: 1em;
}

/* Estilo para cada item da lista */
ol.breadcrumb li {
    display: inline;
}

/* Estilo para o link */
ol.breadcrumb a {
    text-decoration: none;
    color: purple; /* Cor do link */
}

/* Estilo para o separador entre os itens */
ol.breadcrumb li:not(:last-child)::after {
    content: "›"; /* Usar um símbolo ou texto como separador */
    margin: 0 0.5em; /* Espaçamento entre os itens */
    color: #999; /* Cor do separador */
}

/* Estilo para o link do último item (sem separador) */
ol.breadcrumb li:last-child a {
    font-weight: bold; /* Destacar o último item */
}

ol.breadcrumb li i {
    font-size: 0.975em;
    padding: 0.75em 0.5em 0 0;
}


.idx_loja_first {
    display: block;
}

.idx_loja_first .loja_header {
    vertical-align: middle;
    line-height: 10em;
}

.idx_loja_first .loja_header_promotion p {
    margin: 1em 0 1.5em 1.25em;
    font-size: 1em;
    line-height: 1.75em;
    color: darkslategray;
}

.idx_loja_first .breadcrumb ol {
    margin: 1em 0 1.5em 1em;
}

.idx_loja_first .loja_header i,
.idx_loja_first .loja_header_promotion i {
    color: purple;
    margin-right: 0.5em;
    font-size: 0.7em;
}

.idx_loja_first h5 {
    font-size: 2.0736rem;
    line-height: 2.5rem;
    font-weight: bold;
    margin-left: 0.5em;
    vertical-align: center;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.idx_loja_content .content_tab {
    margin-bottom: 2em;
    padding: 1em;
}

.idx_loja_content .content_tab span {
    font-size: .8333rem;
    line-height: 1rem;
    background: #ddd;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    margin-right: 1em;
}

.idx_loja_content .content_tab span:hover {
    font-size: .8333rem;
    line-height: 1rem;
    background: #ddd;
    color: purple;
    border: 1px solid purple;
    border-radius: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    margin-right: 1em;
}

.idx_loja_content .content_tab span.active {
}

.idx_loja_content .content_tab span.active {
    font-size: .8333rem;
    line-height: 1rem;
    background: purple;
    border: 1px solid purple;
    color: white;
    border-radius: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    margin-right: 1em;
}

.idx_loja_content .loja_coupon_item,
.idx_loja_content .loja_offer_item {
    background-color: #E5E5E5;
    border-radius: 16px;
}

.coupon_item {
    border: 0.0625rem solid #cfcfcf;
    padding: 1em;
    margin-bottom: 1em;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    transition: all .3s;
    text-align: center;
}

.coupon_item_nottoday {
    margin-top: 2.75em;
}

.content_tab_content p.subtitle i,
.content_tab_content p.subtitle i,
#loja_offers p.subtitle i {
    position: absolute;
    left: 0;
    top: 0;
    width: auto; /* Definir a largura para automática */
    height: auto; /* Definir a altura para automática */
    font-size: 1.25em;
    margin-right: 2em;
}

.coupon_item_today p.subtitle i.iconoir-check-circle-solid {
    color: #41c483;
}

.coupon_item_today p.subtitle i.iconoir-xmark-circle-solid,
#loja_offers p.subtitle i.iconoir-xmark-circle-solid {
    color: #da2828;
}

.coupon_item_nottoday p.subtitle i {
    color: #a1a1a1;
}

.content_tab_content p.subtitle,
.content_tab_content p.subtitle {
    font-size: 0.875em;
    color: #282828;
    position: relative;
    padding-left: 1.75em;
    margin: 3em 0 1.5em 0;
    letter-spacing: 0.025em;
}

.coupon_item .coupon_item_off {
    font-size: 1.25em;
    display: inline-grid;
    justify-content: center; /* Alinha horizontalmente à direita */
    align-items: center; /* Alinha verticalmente ao centro */
    border-right: 1px dashed #9f9f9f;
}

.coupon_item .coupon_item_image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coupon_item .coupon_item_image a {
    text-align: center;
    margin-top: 0.5em;
}


.coupon_item .coupon_item_image img {
    padding: 0.1em 0.15em;
    border-radius: 0.5em;
    border: 1px solid gray;
}

.coupon-item.today {
    background-color: white;
}

.coupon_item.nottoday .coupon_item_image img {
    filter: grayscale(50%);
}

.coupon_item .coupon_item_off b {
    display: block;
    text-align: center;
}

.coupon_item.today .coupon_item_off {
    border-right: 1px dashed #41c483;
}

.coupon_item.nottoday {
    color: #767676;
    background-color: #f2f2f2;
}

.coupon_item_today p.tag-destaque {
    font-weight: 500;
    font-size: 0.75em;
    display: flex;
    color: #8d8d8d;
    padding: 0 !important;
    margin-bottom: 1.5em;
    width: fit-content;
    height: fit-content;
}

.coupon_item_today p.tag-destaque b {
    text-transform: uppercase;
}

.coupon_item_today p.tag-destaque i {
    font-size: 0.875em;
    color: purple;
    margin-right: 0.5em;
}

.coupon_item .coupon_item_desc p {
    text-align: left;
    vertical-align: middle;
    line-height: 1.5em;
    min-width: 0;
    padding: 0.75rem 0.15rem;
    display: inline-flex;
    justify-content: flex-end;
    position: relative;
}

.coupon_item .coupon_item_cta {
    display: flex;
    justify-content: flex-end; /* Alinha horizontalmente à direita */
    align-items: center; /* Alinha verticalmente ao centro */
}

.share-menu {
    position: relative;
    display: inline-block;
}

.share-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.share-options li {
    display: block;
}

.share-btn {
    display: block;
    width: 150px;
    padding: 10px;
    text-align: left;
}

.share-btn:hover {
    background-color: #f2f2f2;
}


#loja_coupons, #loja_offers {
    display: none;
    transition: opacity 0.5s ease; /* Adiciona uma transição suave de 0.5 segundos para a propriedade opacity */
    opacity: 0; /* Define a opacidade inicial para 0 */
}

#loja_coupons.active, #loja_offers.active {
    display: block;
    transition: opacity 0.5s ease; /* Adiciona uma transição suave de 0.5 segundos para a propriedade opacity */
    opacity: 1; /* Define a opacidade inicial para 0 */
}

.coupon_item .coupon_item_cta a {
    background-color: #ececec;
    border: 1px solid purple;
    color: purple;
    border-radius: 5em;
    display: inline-flex;
    font-size: 0.75em;
    justify-content: flex-end;
    min-width: 0;
    text-transform: uppercase;
    padding: 0.4rem 1rem 0.45rem 1rem;
    position: relative;
    text-align: right;
}

.coupon_item .coupon_item_cta a:hover {
    color: #ececec;
    background-color: purple;
}

.idx_loja_first img {
    align-items: center;
    border: 0.0625rem solid #cfcfcf;
    border-radius: 1em;
    cursor: pointer;
    display: inline-block;
    height: 10em;
    padding: 0.5em;
    justify-content: center;
}

.idx_loja_first h5 {
}

a.store_visit {
    background-color: purple;
    border-radius: 9999px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    line-height: 1rem;
    padding: 0.5em 1.5em 0.6em 1.5em;
    text-decoration: none;
    transition: background-color .2s;
    white-space: nowrap;
}

.idx_loja_aside .aside_item p.item_resume {
    line-height: 1.5em;
    font-size: 0.9em;
    margin-bottom: 0.5em;
}

.idx_loja_aside .aside_item p.item_resume b {
    margin-left: 0.25em;
    font-size: 1em;
}

.idx_loja_aside .aside_item {
    border-bottom: solid 0.0625rem #cfcfcf;
    margin-bottom: 1rem;
    padding: 0.5rem 0 1.5rem
}

.idx_loja_aside .aside_item p.item_recommended,
.idx_loja_aside .aside_item p.item_reputation {
    font-size: 1em;
    line-height: 2em;
    margin-bottom: 1em;
    display: flex;
}

.idx_loja_aside .aside_item p.item_recommended a,
.idx_loja_aside .aside_item p.item_oficial a,
.idx_loja_aside .aside_item p.item_reputation a {
    font-size: 0.95em;
    color: #282828;
    line-height: 2.7em;
    display: flex;
    align-items: center; /* Alinha verticalmente ao centro */
    text-decoration: none; /* Remova o sublinhado */
}

.idx_loja_aside .aside_item p.item_recommended a:hover,
.idx_loja_aside .aside_item p.item_oficial a:hover,
.idx_loja_aside .aside_item p.item_reputation a:hover {
    color: purple;
}

.banner-store{
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    transition: all .3s;
    text-align: center;
    padding: 0.5em;
}

.idx_loja_aside .aside_item p.item_banner_ads img {
    display: inline-flex;
    padding: 0.5em;

    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    transition: all .3s;
}

.idx_loja_aside .aside_item p.item_reputation img {
    width: 40px;
    height: 40px;
    padding: 0.1em;
    border-radius: 50%;
    margin-right: 1em;
}

.idx_loja_aside .aside_item p.item_recommended img {
    width: 40px;
    height: 40px;
    padding: 0.1em 0.15em;
    border-radius: 0.5em;
    border: 1px solid gray;
    margin-right: 1em;
    object-fit: contain;
}

.idx_testimonials .mdp-testimonial__title {
    font-size: 1em;
    color: black;
    font-weight: 600;
    margin-bottom: 0.35em;
}

.idx_testimonials .mdp-testimonial__image {
    height: 50px;
    width: 50px;
}

.idx_testimonials .mdp-testimonial__image img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    padding: 0.1em;
    border: 1px solid purple;
    margin: 0 auto;
    box-shadow: none;
    object-fit: cover;
}

.slick-slide img {
    display: block;
}


.idx_stores {
    background-color: white;
}

.idx_stores .store_section {
    padding: 0.25em;
    margin-top: 1em;
}

.idx_stores .store_section .store__item {
    text-align: center;
    margin-bottom: 3em;
    vertical-align: middle;
    padding: 0.5em 0.25em;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.idx_stores .store_section .store__item b {
    display: block;
}

.idx_stores .store_section .store__item:hover {
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: all .3s;
}

.idx_stores .store_section .store__item img {
    width: 25%;
    height: 90%;
    scale: 0.75;
    text-align: center;
    vertical-align: middle;
    border-radius: 1em;
}

.idx_stores .store_section .store__item img.comingsoon {
    filter: grayscale(100%) !important;
    transition: filter 1s ease; /* Adiciona uma transição de 3 segundos */
}

.idx_stores .store_section .store__item:hover img.comingsoon {
    filter: grayscale(0%) !important;
}

section.idx_social {
    padding-top: 7em;
}

section.idx_social .mdp-social i {
}

section.idx_social .mdp-social .social_item i {
    font-size: 1.15em;
}

section.idx_social .mdp-social .social_item {
    text-transform: uppercase;
    letter-spacing: 0.0875em;
    font-size: 0.95em;
    text-align: center;
    font-weight: bold;
    opacity: 1;
    vertical-align: middle;
    height: 77px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

section.idx_social .mdp-social .social_item span {
    display: block;
    text-align: center;
    color: #515151;
    font-weight: 700;
}

section.idx_social .mdp-social .social_item span i {
    text-align: center;
    vertical-align: middle;
    font-size: 1.25em;
    margin: 0 0.5em 0.25em 0;
}


section.idx_social .mdp-social .social_item.telegram:hover span,
section.idx_social .mdp-social .social_item.telegram:hover span i,
section.idx_social .mdp-social .social_item.twitter:hover span,
section.idx_social .mdp-social .social_item.twitter:hover span i,
section.idx_social .mdp-social .social_item.instagram:hover span,
section.idx_social .mdp-social .social_item.instagram:hover span i {
    color: white;
}

section.idx_social .mdp-social .social_item.telegram:hover {
    background-color: #3390ec;
}

section.idx_social .mdp-social .social_item.twitter:hover {
    background-color: #3998F2;
}

section.idx_social .mdp-social .social_item.instagram:hover {
    background-color: #3f729b;
}

.mdp-footer {
    padding: 3em 1.5em;
}

.mdp-footer .mdp-footer-about {
    text-align: center;
}

.mdp-footer .mdp-footer-about img {
    width: 33%;
}

.mdp-footer .mdp-footer-about p.first {
    margin: 1em 0;
    color: #282828;
    font-size: 0.925em;
    line-height: 1.33rem;
    font-weight: 700;
    padding: 0.5em 1em;
}

.mdp-footer .mdp-footer-about p.second {
    font-size: 0.875em;
    line-height: 1.33em;
    color: #515151;
}

.mdp-footer .mdp-footer-topics h6,
.idx_loja_vitrine .idx_loja_aside h6 {
    list-style: none;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 700;
    margin-bottom: 1em;
    align-items: center;
    display: block;
}

.mdp-footer .mdp-footer-topics h6 i {
    font-size: 1.25rem;
    vertical-align: text-top;
    margin-right: 0.33em;
}

.mdp-footer .mdp-footer-topics a {
    font-size: 0.875em;
    line-height: 2.5em;
    color: #282828;
    text-decoration: none;
}

.mdp-footer .mdp-footer-topics a:hover {
    color: purple;
}


.line, .carousel li img, .carousel li, .carousel {
    width: 100%;
}

.flex, .carousel-wrapper, .center, .carousel ul {
    display: flex;
}

.center, .carousel ul {
    align-items: center;
    justify-content: center;
}

.carousel-wrapper {
    position: relative;
    width: 700px;
    margin: 2em;
}

.carousel-wrapper input {
    display: none;
}

.carousel {
    overflow: hidden;
    border-radius: 15px;
}

.carousel ul {
    position: relative;
    list-style: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 500%;
    transition: left 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.carousel li img {
    border-radius: 1em;
    width: 700px !important;
    height: 500px;
}

.nav-dot {
    position: absolute;
    cursor: pointer;
    margin-left: -7.5px;
    bottom: -22.5px;
    width: 15px;
    height: 15px;
    opacity: 0.5;
    background-color: rgba(128, 0, 128, 0.5);
    border-radius: 50%;
    transition: 0.4s;
}

.nav-dot:hover {
    opacity: 0.8;
    transform: scale(1.2);
}

.nav-dot:active {
    transform: scale(0.9);
}

.nav-dot[for=slide1] {
    left: 40%;
}

#slide1:checked ~ .carousel ul {
    left: 0%;
}

#slide1:checked ~ .nav-dot[for=slide1] {
    opacity: 1;
}

.nav-dot[for=slide2] {
    left: 45%;
}

#slide2:checked ~ .carousel ul {
    left: -167%;
}

#slide2:checked ~ .nav-dot[for=slide2] {
    opacity: 1;
}

.nav-dot[for=slide3] {
    left: 50%;
}

#slide3:checked ~ .carousel ul {
    left: -334%;
}

#slide3:checked ~ .nav-dot[for=slide3] {
    opacity: 1;
}

.nav-dot[for=slide4] {
    left: 55%;
}

#slide4:checked ~ .carousel ul {
    left: -375%;
}

#slide4:checked ~ .nav-dot[for=slide4] {
    opacity: 1;
}

.nav-dot[for=slide5] {
    left: 60%;
}

#slide5:checked ~ .carousel ul {
    left: -400%;
}

#slide5:checked ~ .nav-dot[for=slide5] {
    opacity: 1;
}

.right-arrow, .left-arrow {
    display: none;
    position: absolute;
    cursor: pointer;
    font-weight: bolder;
    top: 50%;
    z-index: 1;
    opacity: 0.7;
    margin-top: -25px;
    height: 50px;
    font-size: 50px;
    transition: 0.2s;
}

.right-arrow, .left-arrow i {
    color: purple;
}

.right-arrow:hover, .left-arrow:hover {
    opacity: 1;
    transform: scale(1.2);
}

.right-arrow:active, .left-arrow:active {
    transform: scale(0.9);
}

.left-arrow {
    left: -55px;
}

.right-arrow {
    right: -55px;
}

#slide1:checked ~ .left-arrow[for=slide5], #slide1:checked ~ .right-arrow[for=slide2] {
    display: block;
}

#slide2:checked ~ .left-arrow[for=slide1], #slide2:checked ~ .right-arrow[for=slide3] {
    display: block;
}

#slide3:checked ~ .left-arrow[for=slide2], #slide3:checked ~ .right-arrow[for=slide4] {
    display: block;
}

#slide4:checked ~ .left-arrow[for=slide3], #slide4:checked ~ .right-arrow[for=slide5] {
    display: block;
}

#slide5:checked ~ .left-arrow[for=slide4], #slide5:checked ~ .right-arrow[for=slide1] {
    display: block;
}

.loading-container {
    display: none;
    overflow: hidden !important;
    position: fixed; /* Fixa o container na tela */
    top: 0; /* Alinha o topo do container com o topo da janela */
    left: 0; /* Alinha a esquerda do container com a esquerda da janela */
    width: 100%; /* Largura total da janela */
    height: 100%; /* Altura total da janela */
    z-index: 99999999999999999; /* Garante que o container esteja na frente de outros elementos */
}

.loadingpage, .loadingpage-falktools {
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    top: 0;
    z-index: 999999999999999;
    position: fixed;
    width: 100vw;
    height: 100vh;
}

.loader {
    --size-loader: 50px;
    --size-orbe: 10px;
    top: 50vh;
    left: 45vw;
    width: var(--size-loader);
    height: var(--size-loader);
    position: relative;
    transform: rotate(45deg);
}


.loadingpage p, .loadingpage-falktools p {
    position: fixed;
    top: 60%;
    padding: 0 3em;
    width: 100%;
    text-align: center;
    z-index: 9999999999999999;
    font-size: 1em;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 2em;
}

.orbe {
    position: absolute;
    width: 100%;
    height: 100%;
    --delay: calc(var(--index) * 0.1s);
    animation: orbit7456 ease-in-out 1.5s var(--delay) infinite;
    opacity: calc(1 - calc(0.2 * var(--index)));
}

.orbe::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: var(--size-orbe);
    height: var(--size-orbe);
    background-color: #4bebc2;
    box-shadow: 0px 0px 20px 2px #4bebc2;
    border-radius: 50%;
}

@keyframes orbit7456 {
    0% {
    }

    80% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.redirect_item {
    border-top: 10px solid rgba(65, 196, 131, 1);;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    transition: all .3s;
    text-align: center;
    padding: 2em 0.5em;
    margin: 4em 0;
}

.redirect_item p.redirect_store {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 2em;
    letter-spacing: 0.1em;
}

.redirect_item img {
    width: 40px;
    height: 40px;
    padding: 0.1em 0.15em;
    border-radius: 0.5em;
    border: 1px solid gray;
    margin-right: 1em;
    object-fit: contain;
}

.redirect_item h5 {
    font-size: 1.5em;
    font-weight: 600;
}

.redirect_item p.redirect_desc {
    padding: 1em;
    margin: 0.5em 2em 3em 2em;
    line-height: 1.5em;
    font-size: 1.1em;
    text-align: justify;
    border-radius: 1em;
    background-color: #efeeee;
    color: #282828;
}

.redirect_item p.redirect_footer {
    font-size: 0.875em;
}

p.redirect_cupom_legend {
    margin-top: 2em;
}

p.redirect_cupom {
    margin-top: 4em;
}

p.redirect_cupom b {
    text-transform: uppercase;
    border: 1px dashed grey;
    border-radius: 0.5em;
    letter-spacing: 0.1em;
    padding: 0.5em 1em;
    margin-right: 1em;
}

p.redirect_cupom span {
    font-size: 0.8em;
    text-transform: uppercase;
    vertical-align: text-bottom;
    letter-spacing: 0.1em;
    background-color: #e3e3e3;
    padding: 0.5em 0.75em 0.5em 0.75em;
    border-radius: 0.5em;
    color: #282828;
    cursor: pointer;
}

p.redirect_cupom span.copied {
    background-color: rgba(65, 196, 131, 0.5);
    color: #282828;
}

p.footer-time i {
    margin-right: 0.25em;
    text-align: center;
    width: 15px !important;
    padding-top: 0.5em;
}

p.footer-time {
    text-align: end;
    font-size: 0.7em;
}

.politica-de-privacidade, .termos-de-uso {
    padding: 1em 3em;
}

.politica-de-privacidade h2, .termos-de-uso h2 {
    margin: 2em 0;
    font-size: 1.5em;
    font-weight: 600;
}

.politica-de-privacidade h3, .termos-de-uso h3 {
    margin: 2em 0 0 1em;
    font-size: 1.25em;
    font-weight: 500;
}

.politica-de-privacidade h4, .termos-de-uso h4 {
    margin: 2.75em 0 0 2em;
    font-size: 1em;
    font-weight: 500;
}

.politica-de-privacidade ol li, .termos-de-uso ol li {
    font-size: 0.875em;
    margin: 1em 0 0.5em 3em;
    font-weight: 400;
    list-style-type: disc;
}

.politica-de-privacidade p, .termos-de-uso p {
    font-size: 1em;
    line-height: 1.65em;
    text-align: justify;
    margin-bottom: 0.5em;
    padding: 1em 2.5em;
}

.foo_copy p {
    display: block;
    color: #545454;
    font-size: .75em;
    letter-spacing: .05em;
}

.foo_copy {
    background: #fbfbfb;
    text-align: center;
}

.copy-logo .footer_terms span {
    padding: 0px 15px;
}

.copy-logo p:first-child {
    margin-top: 20px;
}

.copy-logo p {
    padding: 5px;
}

.copy-logo img {
    display: inline-block;
    width: 1.6em;
    filter: grayscale(1);
    opacity: .5;
    -webkit-transition: opacity 0.75s;
    -moz-transition: opacity 0.75s;
    -ms-transition: opacity 0.75s;
    -o-transition: opacity 0.75s;
    transition: opacity 0.75s;
    vertical-align: middle;
}

.copy-logo .footlogo {
    color: #545454 !important;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    line-height: 1em;
    letter-spacing: 0.5em;
    font-size: 0.7em;
}

.copy-logo .awlogo {
    margin-top: 30px;
}

.copy-logo img:hover {
    opacity: 1;
    filter: grayscale(0);
}


/****************************************
** 404 - ERROR PAGE
*****************************************/
.page_error_section {
    background-color: white;
    padding: 2.5em !important;
    margin-top: 5em !important;
}

.page_error_section .page_error_image {
    text-align: center;
}

.page_error_section .page_error_image img {
    margin: 0 auto;
    width: 40%;
    height: 40%;
}

.page_error_section .page_error_content {
    text-align: center;
}

.page_error_section .page_error_content img {
    width: 60%;
    height: 60%;
}

.page_error_content h2 {
    font-size: 1.875em;
    font-weight: 700;
    margin-bottom: 1em;
    color: purple;
    text-transform: uppercase;
}

.page_error_content h2 span {
    font-size: 2em;
}

.page_error_content h3,
.page_error_content p,
.page_error_content em {
    font-size: 0.875em;
    font-weight: 400;
    margin-bottom: 3em;
    line-height: 1.35em;
    text-align: center;
}

.page_error_section p {
    font-size: 1em;
    text-align: center;
    line-height: 1.75em;
}

.error_item {
    margin-top: 2em;
    text-align: center;
}

.error_item h4 {
    text-transform: uppercase;
    font-size: 1.15em;
    text-align: center;
    font-weight: 600;
    margin: 1em 0;
}

.error_item p {
    font-weight: 400;
    text-align: justify;
    padding: 0.5em;
    line-height: 2em;
    font-size: 0.9em;
}

.error_item a {
    border: 2px solid white;
    padding: 0.25em 1em 0.45em 1em;
    border-radius: 2em;
    font-size: 0.875em;
    color: purple;
    font-weight: 500;
    text-transform: uppercase;
}

.error_item a:hover {
    border: 2px solid purple;
}


.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999999999999999999;
}

.popup-content {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px #999;
    text-align: center;
    width: 50%;
}

/* Estilos padrão para .popup-content */
.popup-content {
    width: 100%; /* Definir largura inicial para 100% */
    max-width: 600px; /* Definir a largura máxima para evitar que o conteúdo se torne muito largo */
    margin: 0 auto; /* Centralizar o elemento na tela */
}

/* Media query para smartphones em orientação retrato */
@media only screen and (max-width: 480px) {
    .popup-content {
        width: 90%; /* Alterar a largura para 90% quando a largura da tela for igual ou inferior a 480px (smartphones em orientação retrato) */
    }

    .coupon_item .coupon_item_image img {
        width: 25%;
    }

    .idx_loja_first .loja_header img {
        width: 30%;
        height: 75%;
    }

    .idx_loja_first .loja_header {
        line-height: 5em;
    }

    .coupon_item .coupon_item_cta {
        justify-content: center !important;
    }

    .carousel-wrapper {
        position: relative;
        width: 500px;
        margin: 2em;
    }

    .carousel li img {
        border-radius: 1em;
        width: 350px !important;
        height: 400px;
    }

    .nav-dot[for=slide1] {
        left: 35%;
    }

    .nav-dot[for=slide2] {
        left: 45%;
    }

    .nav-dot[for=slide3] {
        left: 55%;
    }

    .nav-dot[for=slide4] {
        left: 65%;
    }

    .nav-dot[for=slide5] {
        left: 75%;
    }

    .left-arrow {
        left: -14%;
    }

    .right-arrow {
        right: -14%;
    }

    .idx_loja_content .content_tab span.comunidade-cultura{
        display: inline-block;
    }
}

/* Media query para smartphones em orientação paisagem e tablets em orientação retrato */
@media only screen and (min-width: 481px) and (max-width: 767px) {
    .popup-content {
        width: 80%; /* Alterar a largura para 80% quando a largura da tela estiver entre 481px e 767px (smartphones em orientação paisagem e tablets em orientação retrato) */
    }

    .coupon_item .coupon_item_image img {
        width: 30%;
    }

    .idx_loja_first .loja_header img {
        width: 60%;
        height: 60%;
    }

    .coupon_item .coupon_item_cta {
        justify-content: center !important;
    }

    .carousel-wrapper {
        position: relative;
        width: 500px;
        margin: 2em;
    }

    .carousel li img {
        border-radius: 1em;
        width: 500px !important;
        height: 500px;
    }

    .idx_loja_content .content_tab span.comunidade-cultura{
        display: inline-block;
    }
}

/* Media query para tablets em orientação paisagem e desktops pequenos */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .popup-content {
        width: 70%; /* Alterar a largura para 70% quando a largura da tela estiver entre 768px e 991px (tablets em orientação paisagem e desktops pequenos) */
    }

    .coupon_item .coupon_item_image img {
        width: 40%;
    }

    .idx_loja_first .loja_header img {
        width: 70%;
        height: 65%;
    }
}

/* Media query para desktops médios */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .popup-content {
        width: 60%; /* Alterar a largura para 60% quando a largura da tela estiver entre 992px e 1199px (desktops médios) */
    }

    .coupon_item .coupon_item_image img {
        width: 60%;
    }

    .idx_loja_first .loja_header img {
        width: 80%;
        height: 60%;
    }
}

/* Media query para desktops grandes e monitores widescreen */
@media only screen and (min-width: 1200px) {
    .popup-content {
        width: 50%; /* Alterar a largura para 50% quando a largura da tela for igual ou superior a 1200px (desktops grandes e monitores widescreen) */
    }

    .coupon_item .coupon_item_image img {
        width: 100%;
    }

    .idx_loja_first .loja_header img {
        width: 90%;
        height: 70%;
    }
}


.popup-content h3 {
    text-transform: uppercase;
    text-align: center;
    margin: 0.5em 0 2em;
    font-weight: 500;
}

.popup-content h3 i {
    color: purple;
    font-size: 1em;
    margin-right: 0.5em;
}

.popup-content h3 i.iconoir-xmark-circle-solid {
    color: #7e7e7e;
    float: right;
    cursor: pointer;
    font-size: 0.85em;
}

.popup-content p {
    font-weight: 400;
    font-size: 0.975em;
    line-height: 1.75em;
    padding: 0.1em 1em;
    margin-bottom: 2em;
}

.popup-content button.button-accept, .popup-content a.button-accept {
    padding: 0.425em 1em 0.5em 1em;
    background-color: purple;
    font-size: 0.9em;
    border: 1px solid purple;
    color: white;
    line-height: 1rem;
    border-radius: 1rem;
    letter-spacing: 0.1em;
    -webkit-font-smoothing: antialiased;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease 0s, border-color 0.2s ease 0s, box-shadow 0.2s ease 0s, color 0.2s ease 0s;
    user-select: none;
    box-sizing: border-box;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

#idx_app {
    background: linear-gradient(180deg, #f2f2f2 0%, rgba(245, 202, 33, 1) 50%, #f2f2f2 100%);
}

#idx_app figure {
    text-align: center;
}

#idx_app figure img, .idx_community video {
    width: 60%;
}

#idx_app figure figcaption {
    font-size: 0.75em;
    margin-top: 2em;
    font-style: italic;
}

#idx_app .app-content, .idx_community .community-content {
    margin-top: 2em;
}

#idx_app h4, .idx_community h4 {
    font-size: 1.25em;
    font-weight: 600;
    margin: 2em 0 1em 0;
}

#idx_app p.app-desc, .idx_community p.app-desc {
    font-size: 0.95em;
    color: #282828;
    line-height: 1.875em;
    text-align: justify;
    padding: 1em 0;
    display: inline-block;
    margin-bottom: 1em;
}

#idx_app p.button-download, .idx_community p.button-download {
    text-align: center;
}

#idx_app p.button-download button i, .idx_community p.button-download a i {
    margin-right: 1em;
}

#idx_app p.button-download button, .idx_community p.button-download a {
    padding: 0.425em 1em 0.5em 1em;
    border: 2px solid purple;
    color: white;
    background-color: purple;
    font-size: 0.9em;
    cursor: pointer;
    line-height: 1rem;
    border-radius: 1rem;
    letter-spacing: 0.1em;
    -webkit-font-smoothing: antialiased;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease 0s, border-color 0.2s ease 0s, box-shadow 0.2s ease 0s, color 0.2s ease 0s;
    user-select: none;
    box-sizing: border-box;
    font-weight: 600;
    text-transform: uppercase;
}


.widget-panel {
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.07);
    background-color: #fff;
    margin-bottom: 1em;
    border-radius: 1em;
    padding: 1em;
}

.widget-panel p {
    color: rgb(128 0 128 / 33%);
    text-transform: uppercase;
    font-size: 0.75em;
    letter-spacing: 0.15em;
    text-align: center;
    padding-top: 1em;
}

.widget.widget-banner:hover img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.widget.widget-banner img {
    object-fit: fill;
    aspect-ratio: 1 / 1;
    border-radius: 1em;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.item-obs p.desc {
    background-color: white;
    font-size: 1.05em;
    padding: 1em;
    line-height: 1.7em;
    text-align: justify;
    border-radius: 1em;
}

.item-obs p.partner {
    border-radius: 1em;
    padding: 1em;
    background-color: white;
    font-size: 1em;
    margin: 1em 0 2em 0;
    line-height: 1.7em;
    text-align: justify;
}

.item-obs p.desc .ec-nerd-face, .item-obs p.partner .ec-handshake {
    font-size: 1.35em;
    margin-right: 0.5em;
}

.item-obs p img {
    text-align: -webkit-center;
    vertical-align: middle;
    display: inline-flex;
    margin: 0 0 0.25em 0.5em;
    width: 25px;
    border-radius: 0.3em;
    object-fit: contain;
    padding: 0.15em;
    border: 1px solid #cfcfcf;
}