/*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: #5b5b5b;
    color: #fff;
    text-decoration: none;
}

.paginator li a:hover {
    background: #5b5b5b
}

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

.absoluta {
    position: absolute !important;
    left: 0;
    top: 0px;
}

.relativa {
    position: relative !important;
}

/*HEADER*/
.header_bar {
    float: left;
    width: 100%;
    position: relative;
    background: #5b0d2e;
    padding: 50px 0;
}

.header_bar .header_bar_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_bar .header_information .header_information_box {
    display: inline-block;
    text-align: center;
    font-size: 1em;
    color: #5b0d2e;
    background: #FFF;
    font-weight: 700;
    position: relative;
    padding: 5px 50px 5px 30px;
    margin-right: 35px;
    border-radius: 10px;
}

.header_bar .header_information .header_information_box:last-of-type {
    margin-right: 0px;
}

.header_bar .header_information .header_information_box i {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 10;
    font-size: 22px;
}

.header_bar .header_information .header_information_box:before {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translate(0, -50%);
    width: 50px;
    height: 50px;
    background: #FFF;
    border-radius: 50%;
}

.header_bar .footer_social li a {
    background: #FFF;
    color: #5b0d2e;
}

.header_bar .header_information form {
    background: #FFF;
    display: block;
    width: 250px;
    border-radius: 15px;
    padding: 5px 10px;
}

.header_bar .header_information form .form-group {
    margin: 0px;
}

.header_bar .header_information form .form-control {
    display: inline-block;
    width: 88%;
    border: none;
    color: #5b0d2e;
    height: auto;
    padding: 0px 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    outline: none;
    font-size: 1.1em;
}

.header_bar .header_information form .btn_default_search {
    background: transparent;
    color: #5b0d2e;
    font-size: 1em;
    padding: 0px;
    -webkit-transition: color 200ms linear;
    -moz-transition: color 200ms linear;
    -ms-transition: color 200ms linear;
    -o-transition: color 200ms linear;
    transition: color 200ms linear;
}

.header_bar .header_information form .btn_default_search:hover {
    color: #5b0d2e;
}

.main_header {
    float: left;
    width: 100%;
    position: relative;
    z-index: 10000;
}

.main_header .logotipo {
    display: inline-block;
    width: 350px;
    margin-top: 30px;
}

.main_header .logotipo img {
    width: 100%;
}

.menu_mobile {
    display: none;
}

.header_content {
    float: left;
    width: 100%;
    position: relative;
    padding: 15px 0;
}

.header_content.fixed {
    position: fixed;
    top: 0px;
    bottom: auto;
    left: 0px;
    z-index: 100000;
    background: #5b0d2e;
    padding: 10px 0;
    -webkit-transition: background 200ms ease-in-out;
    -moz-transition: background 200ms ease-in-out;
    -ms-transition: background 200ms ease-in-out;
    -o-transition: background 200ms ease-in-out;
    transition: background 200ms ease-in-out;
}

.header_content.fixed .logotipo {
    -webkit-transition: width 200ms ease-in-out;
    -moz-transition: width 200ms ease-in-out;
    -ms-transition: width 200ms ease-in-out;
    -o-transition: width 200ms ease-in-out;
    transition: width 200ms ease-in-out;
    width: 200px;
    margin-top: 15px;
}

.header_content.fixed nav a {
    color: #FFF;
}

.header_content.fixed nav a:hover {
    color: #b4c62d;
}

.main_header header h1 {
    margin: 0px;
    padding: 0px;
}

.main_header header .tagline {
    margin: 0px;
    padding: 0px;
}

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

.main_header nav {
    float: right;
    margin: 34px 0;
}

.main_header nav ul {
    margin: 0px;
    display: block;
    width: 100%;
}

.main_header nav li {
    display: inline-block;
    position: relative;
}

.main_header nav li a {
    display: inline-block;
    padding: 10px 15px;
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.2em;
}

.main_header nav li:hover,
.main_header nav li a:hover {
    color: #b4c62d;
}

.main_header nav li a.active {
    color: #b4c62d;
}

.netflix-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform .3s ease-in-out .4s;
}

.netflix-nav.visible {
    transform: translateX(0);
}

.j_menu_mobile.invisible {
    transform: translateX(-100%);
    transition: transform .8s ease-in-out .4s;
    transition-delay: .2s;
}

.netflix-nav-black {
    background-color: #5b0d2e;
    width: 60%;
    max-width: 480px;
    min-width: 320px;
}

.netflix-nav-black.visible {
    transition-delay: 0s;
}

.netflix-nav-red {
    background-color: #b4c62d;
    transition-delay: .2s;
    width: 95%;
}

.netflix-nav-red.visible {
    transition-delay: .2s;
}

.netflix-nav-white {
    background-color: #fff;
    padding: 40px;
    transition-delay: 0s;
    width: 95%;
}

.netflix-nav-white.visible {
    transition-delay: .4s;
}

.netflix-nav-container {
    position: relative;
}

.netflix-close-btn {
    opacity: 0.3;
    position: absolute;
    top: -40px;
    right: -15px;
    border: 1px solid #555b4d;
    color: #555b4d;
    padding: 4px 10px;
}

.netflix-close-btn i {
    font-size: 1.1em;
}

.netflix-list {
    list-style-type: none;
    padding: 0;
}

.netflix-list li {
    margin: 20px 0;
}

.netflix-list li a {
    color: #5b5b5b;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
}

.netflix-list li a:active {
    color: #95060f;
}

.netflix-list ul {
    list-style-type: none;
    padding-left: 20px;
}

/*SITE*/

.bx {
    float: left;
    width: 100%;
    position: relative;
}

.bx_over {
    overflow: hidden;
}

.main_start {
    position: relative;
    float: left;
    width: 100%;
}

.tp-bullet {
    border-radius: 50%;
}

#slider .btn_custom_whatsapp {
    font-size: 20px !important;
    width: 100%;
    padding: 17px 50px 17px 17px !important;
    line-height: 30px !important;
}

#slider .btn_custom_whatsapp i {
    font-size: 46px !important;
    line-height: 44px !important;
    text-align: center;
    right: -42px;
    top: -15px;
    padding: 16px 18px !important;
    width: 90px;
    height: 90px;
}

.main_featured {
    text-align: left;
    padding: 60px 0;
    position: relative;
    background: #FFF url("images/img_about.png") no-repeat 80% 80%;
    background-size: 30%;
    border-top: 10px solid #dc9725;
}

.featured_box {
    float: left;
    width: 55%;
    padding-bottom: 80px;
}

.featured_box .btn_custom_whatsapp {
    width: 60%;
    margin-top: 30px;
}

.main_featured h1 {
    display: block;
    color: #b4c62d;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 3em;
    margin-bottom: 0px;
}

.main_featured h2 {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.6em;
    color: #5b0d2e;
    padding: 0 100px 0 0;
    margin-bottom: 20px;
}

.main_featured p {
    display: block;
    font-size: .875em;
    text-align: justify;
    color: #5b0d2e;
    text-transform: uppercase;
    padding: 0 30px 0 0;
}

.featured_information {
    background: #fff9fc;
    padding: 80px 0;
}

.featured_info {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.featured_info img {
    width: 300px;
}

.featured_info ul {
    padding: 0px;
    margin: 0;
    list-style: none;
}

.featured_info li {
    display: block;
    text-transform: uppercase;
    position: relative;
    font-size: 2em;
    color: #5b0d2e;
    padding-left: 45px;
    font-family: 'dk_cinnabar_brushregular';
    margin-bottom: 15px;
}

.featured_info li:after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    background: #b4c62d;
    border-radius: 50%;
}

.main_sorvetes{
	background:#5b0d2e;
}

.main_type_sale.main_sorvetes{
	border-top:5px solid #ececec;
}

.main_type_sale.main_sorvetes h1, .main_type_sale.main_sorvetes p{
	color:#FFF;
}

.main_type_sale.main_sorvetes .btn_custom_whatsapp{
	background:#FFF;
	color:#5b0d2e;
}

.main_type_sale.main_sorvetes .btn_custom_whatsapp i{
	border-color:#FFF;
}

.main_atacado {
    background: #b4c62d;
}

.main_varejo {
    background: #dc9725;
}

.main_type_sale {
    padding: 80px 0;
}

.main_type_sale .img_icon {
    float: left;
    margin-right: 0px;
    height: 300px;
}

.main_type_content {
    float: right;
    width: 70%;
}

.main_type_sale h1 {
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 2.5em;
    color: #5b0d2e;
}

.main_type_sale p {
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 1.1em;
    color: #5b0d2e;
}

.main_type_sale .btn_custom_whatsapp, .main_type_sale .btn_custom_ecommerce {
    background: #5b0d2e;
    margin-top: 50px;
    width: 50%;
    color: #FFF;
}

.main_type_sale .btn_custom_ifood {
    margin-top: 50px;
    background: #ea1a29;
    width: 60%;
    padding: 12px 0px 12px 12px;
    color: #FFF;
}

.main_type_sale .btn_custom_waze:after {
    top: -10px;
}

.main_type_sale .btn_custom_waze {
    margin-top: 50px;
    background: #5b0d2e;
    width: 60%;
    padding: 12px 0px 12px 12px;
    color: #FFF;
}

.main_type_sale .btn_custom_waze:after {
    top: -8px;
}

.main_type_sale .btn_custom_ecommerce {
    padding: 12px 0px 12px 12px;
    font-size: .875em;
}

.main_type_sale .btn_custom_whatsapp i {
    background: #5b0d2e;
    border-color: #5b0d2e;
}

.main_about {
    padding: 100px 0;
    background: #FFF;
}

.about_content {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.about_content h1{
    font-family: 'dk_cinnabar_brushregular';
    color: #b4c62d;
    font-size: 2.5em;
    margin-bottom: 25px;
    line-height: 1.5em;
}

.about_content p {
    display: block;
    text-transform: uppercase;
    color: #5b0d2e;
    font-size: 1.2em;
}

.about_content img{
    width: 40%;
}

.about_box{
    padding: 0 50px;
}

.main_about_history  {
    padding: 50px 0;
    background: #fff9fc;
}

.main_differentials{
    position: relative;
    padding: 80px 0 50px 0;
    background: #fff9fc;
    z-index: -2;
}

.main_differentials:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    top: 0;
    background: #5b0d2e;
    z-index: -1;
}

.main_differentials header{
    display: block;
    padding-bottom: 100px;
}

.main_differentials h1, .main_differentials h2{
    font-family: 'dk_cinnabar_brushregular';
    color: #FFF;
    display: block;
    text-align: center;
    text-transform: uppercase;
}

.main_differentials h1{
    font-size: 4em;
}

.main_differentials h2{
    font-size: 1.4em;
}

.main_differentials img{
    width: 40%;
    display: block;
    margin: 0 auto;
}

.main_differentials .img_iceream_fruits{
    margin-bottom: 30px;
    height: 300px;
    width: auto;
}

.main_differentials .img_acai{
    width: auto;
    height: 350px;
}

.diferenciais_title{
    color: #5b0d2e;
    font-size: 4.2em;
    text-align: center;
    display: block;
    font-family: 'dk_cinnabar_brushregular';
    margin-bottom: 30px;
}

.diferenciais_content ul{
    padding: 0 25px;
    margin: 50px 0 0 0;
}

.diferenciais_content li{
    font-family: 'dk_cinnabar_brushregular';
    color: #5b0d2e;
    font-size: 1.2em;
    display: block;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 20px;

}

.btn_custom_waze, .btn_custom_maps, .btn_custom_ecommerce, .btn_custom_ifood {
    background: #FFF;
    color: #5b5b5b;
    padding: 6px 22px;
    text-transform: uppercase;
    border-radius: 0;
    font-size: .875em;
    position: relative;
    -webkit-transition: background 200ms linear;
    -moz-transition: background 200ms linear;
    -ms-transition: background 200ms linear;
    -o-transition: background 200ms linear;
    transition: background 200ms linear;
}

.btn_custom_ifood:after {
    content: "";
    position: absolute;
    right: -50px;
    top: -10px;
    background: url("images/icon_ifood.png") no-repeat center center;
    background-size: contain;
    width: 60px;
    height: 60px;
}

.btn_custom_ifood:hover {
    background: rgba(0, 0, 0, .3);
    color: #FFF;
}

.btn_custom_waze:after {
    content: "";
    position: absolute;
    right: -50px;
    top: -14px;
    background: url("images/icon_waze.png") no-repeat center center;
    background-size: contain;
    width: 60px;
    height: 60px;
}

.btn_custom_waze:hover {
    background: rgba(0, 0, 0, .3);
    color: #FFF;
}

.btn_custom_maps:after {
    content: "";
    position: absolute;
    right: -50px;
    top: -18px;
    background: url("images/icon_googlemaps.png") no-repeat center center;
    background-size: contain;
    width: 60px;
    height: 60px;
}

.btn_custom_maps:hover {
    background: rgba(0, 0, 0, .3);
    color: #FFF;
}

.btn_custom_ecommerce:after {
    content: "";
    position: absolute;
    right: -73px;
    top: -23px;
    background: url(images/icon_notebook.png) no-repeat center center;
    background-size: contain;
    width: 80px;
    height: 80px;
}

.btn_custom_ecommerce:hover {
    background: #dc9725;
    color: #FFF;
}


.main_blog {
    background-color: #FFF;
    padding: 100px 0;
}

.main_blog .btn {
    color: #363636;
    font-weight: 800;
    text-transform: uppercase;
}

.blog_box {
    margin: 45px 0 0 0;
    float: left;
    width: 100%;
    position: relative;
    background: #f0f0f0;
    border-radius: 10px;
}

.blog_box:hover h1 {
    color: #0d334e;
}

.blog_img {
    position: relative;
    margin-bottom: 0px;
}

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

.blog_img .blog_cat {
    position: absolute;
    top: 5%;
    right: 5%;
    background-color: #f0f0f0;
    padding: 5px 12px;
    text-align: center;
    color: #5b5b5b;
    font-size: .875em;
}

.blog_img .blog_author {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid #FFF;
    bottom: -60px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.blog_img .blog_author img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.blog_body {
    float: left;
    width: 100%;
    padding: 20px;
}

.blog_body h1 {
    font-size: 1.4em;
    color: #5b5b5b;
    margin-bottom: 20px;
}

.blog_body p {
    font-size: 1em;
    margin-bottom: 0px;
    color: #5b5b5b;
}

.main_blog .owl-carousel .owl-nav {
    display: block !important;
    position: absolute;
    top: -50px;
    right: 0px;
    margin: 0;
}

.main_blog .owl-carousel .owl-nav button.owl-prev, .main_blog .owl-carousel .owl-nav button.owl-next {
    padding: 10px 20px !important;
    background: #f0f0f0 !important;
}

.main_blog .owl-carousel .owl-nav button.owl-prev span, .main_blog .owl-carousel .owl-nav button.owl-next span {
    font-size: 1.5em !important;
}

.btn_box {
    margin-top: 50px;
}

.main_call{
    background: #F19904;
    padding: 100px 0;
}

.main_call .call_content{
    display: flex;
    align-items: center;
    justify-content: center;
}

.call_content .call_infor{
    padding-right: 70px;
}

.call_infor span, .call_infor h1{
    font-family: 'dk_cinnabar_brushregular';
    color: #7D1945;
    text-transform: uppercase;
}

.call_infor span{
    font-size: 1.5em;
}

.call_infor h1{
    font-size: 3em;
}

.call_infor p{
    display: block;
    color: #7D1945;
    margin-top: 10px;
    font-size: 1.2em;
    text-align: justify;
}

.main_contact {
    background: #7D1945;
    padding: 35px 0 50px 0;
}

.main_contact .logotipo_contact {
    width: 200px;
    display: block;
    margin-bottom: 80px;
}

.main_contact .logotipo_contact img {
    width: 100%;
}

.main_contact .contact_dados, .main_contact .contact_social {
    display: block;
    margin-bottom: 25px;
}

.main_contact .contact_dados {
    display: flex;
    align-items: center;
}

.main_contact .contact_dados p, .main_contact .contact_dados a {
    color: #FFF;
    font-size: 1.1em;
    margin: 0px;
}

.main_contact .contact_dados a:hover {
    color: #e8e8e8;
}

.main_contact .contact_dados i {
    width: 46px;
    height: 46px;
    background: #FFF;
    color: #5b5b5b;
    border-radius: 50%;
    vertical-align: middle;
    padding-top: 11px;
    text-align: center;
    margin-right: 10px;
    font-size: 1.5em;
}

.main_contact .contact_social {
    margin-top: 50px;
}

.main_contact .contact_social .social_title {
    color: #FFF;
    display: block;
    text-align: left;
    margin-bottom: 15px;
}

.main_contact .contact_social li a {
    background: #FFF;
    color: #5b5b5b;
}

.main_contact .contact_social li a:hover {
    color: #FFF;
}

.contact_form h3 {
    text-transform: uppercase;
    color: #FFF;
    margin-bottom: 80px;
    letter-spacing: 2px;
    font-size: 1.6em;
    margin-top: 30px;
}

.contact_form form {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.contact_form .form-control {
    height: 46px;
    font-size: 16px;
    border-radius: 0px;
    outline: 0;
    box-shadow: none;
}

.contact_form textarea.form-control {
    height: auto;
}

.btn_custom_contact {
    border-radius: 0;
    background: #FFF;
    text-transform: uppercase;
    float: right;
    color: #5b5b5b;
    font-size: 1.2em;
    position: relative;
    padding: 10px 40px;
}

.btn_custom_contact:hover {
    background: #5b5b5b;
    color: #FFF;
}

.btn_custom_contact .load {
    width: 25px;
    position: absolute;
    right: 5px;
    top: 11px;
    display: none;
}

.copyright {
    float: left;
    width: 100%;
    position: relative;
    padding: 40px 0 20px;
    text-align: center;
    color: #5b5b5b;
}

.copyright h1 {
    margin-top: 0px;
    padding-top: 0px;
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: 700;
}

.copyright .logotipo_footer {
    width: 100%;
    display: inline-block;
    margin-top: 0px;
}

.copyright .logotipo_footer img {
    width: 100%;
}

.copyright .copy {
    padding-top: 15px;
    padding-bottom: 15px;
}

.btn_custom_whatsapp {
    display: inline-block;
    background: #b4c62d;
    color: #FFF;
    text-transform: uppercase;
    font-size: 1em;
    position: relative;
    padding: 12px 20px 12px 12px;
    width: 100%;
    text-align: left;
}

.copyright .btn_custom_whatsapp:last-of-type {
    margin-top: 50px;
}

.btn_custom_whatsapp:hover {
    background: #4BEC68;
    color: #FFF;
}

.btn_custom_whatsapp i {
    display: inline-block;
    position: absolute;
    right: -12px;
    top: -14px;
    background: #b4c62d;
    font-size: 2em;
    color: #FFF;
    width: 70px;
    height: 70px;
    border: 5px solid #b4c62d;
    text-align: center;
    padding: 12px;
    border-radius: 50%;
    -webkit-transition: background 150ms linear;
    -moz-transition: background 150ms linear;
    -ms-transition: background 150ms linear;
    -o-transition: background 150ms linear;
    transition: background 150ms linear;
}

.btn_custom_whatsapp:hover i {
    border-color: #4BEC68;
}

.btn_custom_whatsapp_white {
    background: #FFF;
    color: #5b5b5b;
}

.btn_custom_whatsapp_white i {
    background: #FFF;
    color: #5b5b5b;
    border-color: #FFF;
}

.social_title {
    text-align: center;
    display: block;
    color: #5b5b5b;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: 1px;
}

.footer_social {
    padding: 0;
    margin: 0px;
    display: block;
}

.footer_social li {
    display: inline-block;
    margin-right: 15px;
}

.footer_social li:last-child {
    margin-right: 0px;
}

.footer_social li a {
    background: #5b5b5b;
    color: #FFF;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    padding: 6px;
    display: inline-block;
}

.footer_social li a.facebook:hover {
    background: #4267B2;
    color: #FFF;
}

.footer_social li a.linkedin:hover {
    background: #0077B5;
    color: #FFF;
}

.footer_social li a.pinterest:hover {
    background: #E60023;
    color: #FFF;
}

.footer_social li a.instagram:hover {
    background: #000;
    color: #FFF;
}

.footer_social li a.youtube:hover {
    background: #FF0000;
    color: #FFF;
}

.footer_social li a.email:hover {
    background-color: #069;
    color: #FFF;
}

/*INTERNAS*/


/*404*/
.not_found {
    padding: 50px 0;
    float: left;
    width: 100%;
}

.not_found .blog_main_list {
    margin-top: 0px;
}

.not_found .btn_custom_search {
    font-size: .6875em;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .5);
    background-color: #FBD538;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    padding: 8px 12px;
}

.not_found .btn_custom_search:hover {
    background: #BA8900;
}

.not_found .form-control {
    border-radius: 0px;
}

.not_found .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #CCC;
}

.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_found .search_form {
    display: block;
    padding: 0 20px;
    margin-bottom: 50px;
    float: none;
    background: none;
    text-align: center;
}

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

/*BLOG INTERNAS*/

.blog_page_header {
    float: left;
    width: 100%;
    text-align: center;
    padding: 40px;
    color: #FFF;
    background: linear-gradient(to bottom, #5b5b5b 0%, rgba(18, 78, 120, .9) 100%);
    background-size: 200%;
}

.blog_page_header h1 {
    font-size: 3em;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(54, 54, 54, .1);
}

.blog_page_header p {
    width: 700px;
    max-width: 100%;
    margin: 20px auto 30px auto;
}

.blog_page_header form {
    display: inline-block;
    width: 400px;
    max-width: 100%;
}

.blog_page_header form .form-group {
    display: flex;
    align-items: center;
    background: #fff;
    justify-content: center;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.blog_page_header form .form-control {
    flex-basis: 100%;
    padding: 12px 12px 12px 20px;
    font-size: 1em;
    border: none;
    background: #fff;
    outline: none;
    color: #555;
    height: 60px;
}

.blog_page_header form .btn_default_search {
    font-size: 1.2em;
    border: none;
    cursor: pointer;
    outline: none;
    color: #555;
    box-shadow: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 3%;
    top: 17%;
    text-align: center;
    padding: 1% 0 0 0;
    /*background: linear-gradient(to bottom, #363636 0%, rgba(0, 0, 0, .8) 100%);*/
    background: #5b5b5b;
    color: #FFF;
    transition: 150ms linear;
}

.blog_page_header form .btn_default_search:hover {
    outline: none;
    box-shadow: none;
    background: linear-gradient(to bottom, #5b5b5b 0%, rgba(13, 51, 78, .5) 100%);
    color: #FFF;
}

.blog_page_header form .btn_default_search:active, .blog_page_header form .btn_default_search:focus {
    outline: none;
    box-shadow: none;
    outline-offset: 0px;
}

.blog_content {
    float: left;
    width: 100%;
    padding: 60px 0;
}

.blog_articles {
    display: flex;
    flex-wrap: wrap;
}

.blog_article {
    flex-basis: calc(33.33% - 40px);
    margin: 20px;
    color: #555;
}

.blog_article a {
    text-decoration: none;
    color: #363636;
}

.blog_article img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border-bottom: 3px solid #E9E9E9;
    -webkit-transition: linear 200ms;
    -moz-transition: linear 200ms;
    -ms-transition: linear 200ms;
    -o-transition: linear 200ms;
    transition: linear 200ms;
}

.blog_article:hover img {
    border-color: #5b5b5b;
}

.blog_article p {
    color: #363636;
    font-size: .875em;
    text-align: justify;
}

.blog_article .meta {
    color: #555;
    font-weight: 300;
    margin: 20px 0;
}

.blog_article h2 a {
    font-size: .875em;
    font-weight: 700;
}

.blog_article:hover h2 a, .blog_article:hover a h2 {
    color: #5b5b5b;
    -webkit-transition: linear 200ms;
    -moz-transition: linear 200ms;
    -ms-transition: linear 200ms;
    -o-transition: linear 200ms;
    transition: linear 200ms;
}

.blog_article a h2 {
    font-weight: 700;
    font-size: 1.3em;
}

.blog_article img.author_avatar {
    width: 10%;
    height: 10%;
    border-radius: 50%;
    border: none;
    margin-right: 2%;
}

.post_page_header {
    float: left;
    width: 100%;
    position: relative;
    text-align: center;
}

.post_page_hero {
    margin: 0 auto;
    padding: 40px 0;
}

.post_page_header:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to bottom, #5b5b5b 0%, rgba(13, 51, 78, .5) 100%);
    background-size: 200%;
    z-index: -1;
}

.post_page_header h1 {
    font-size: 2.4em;
    font-weight: normal;
    margin: 30px 0;
    color: #FBFBFB;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .3);
}

.post_page_cover {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border-bottom: 3px solid #5b5b5b;
    max-width: 100%;
}

.post_page_meta {
    display: flex;
    align-items: center;
    margin-top: 20px;
    justify-content: space-between;
    color: #555;
}

.post_page_meta .author {
    display: flex;
    align-items: center;
}

.post_page_meta .author img {
    width: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.post_page_meta .author .name {
    padding-left: 10px;
}

.post_page_content {
    float: left;
    width: 100%;
    margin: 0 auto;
}

.htmlchars {
    color: #363636;
    padding: 0 0 40px 0;
}

.htmlchars p {
    margin-bottom: 25px !important;
    color: #555;
    font-size: 1.2em !important;
}

.htmlchars h2, .htmlchars h3, .htmlchars h4, .htmlchars h5 {
    margin: 40px 0 20px 0;
    font-weight: 700;
    color: #555;
}

.htmlchars h2 {
    font-size: 1.8em;
}

.htmlchars h3 {
    font-size: 1.6em;
}

.htmlchars h4 {
    font-size: 1.4em;
}

.htmlchars :first-child {
    margin-top: 0;
}

.htmlchars a {
    color: #5b5b5b;
    font-weight: 700;
    text-decoration: none;
    font-size: 1em;
}

.htmlchars a:hover {
    text-decoration: underline !important;
}

.workcontrol_socialshare {
    margin-bottom: 50px;
    padding: 30px !important;
    background: #FBFBFB;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border-bottom: 3px solid #5b5b5b !important;
}

.post_page_related_header {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

.post_page_related header h4 {
    font-size: 3em;
    font-weight: 300;
}

.post_page_related header p {
    margin-top: 10px;
    font-size: .875em;
}

.comments .form-group {

}

@media (max-width: 80em) {

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

@media (max-width: 64em) {

    .main_header {
        position: relative !important;
    }

    .header_bar .header_bar_box {
        justify-content: center;
        flex-direction: column;
        padding: 0 15px;
    }

    .header_information {
        display: block;
        margin: 10px 0;
    }

    .header_bar .header_information .header_information_box {
        margin-bottom: 35px;
        display: block;
        font-size: 1.5em;
        padding-right: 70px;
        margin-right: 0px;
    }

    .header_bar .header_information .header_information_box:before {
        width: 64px;
        height: 64px;
        right: -18px;
    }

    .header_bar .header_information .header_information_box i {
        font-size: 30px;
    }

    .main_header header {
        float: left;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 15px;
        position: relative;
    }

    .main_header nav {
        display: none;
    }

    .header_content {
        background: #5b0d2e;
        border-top: 8px solid #dc9725;
    }

    .menu_mobile {
        color: rgba(255, 255, 255, .5);
        background: #5b0d2e;
        border: 2px solid #b4c62d;
        font-size: 1.8em;
        position: absolute;
        right: 5%;
        top: 50%;
        display: inline-block;
        transform: translate(0%, -50%);
    }

    .main_header.fixed .menu_mobile {
        margin-top: 4px;
    }

    .menu_mobile:hover {
        border-color: #FFF;
        color: #FFF;
    }

    .menu_mobile.active {
        background-color: #95060f;
    }

    .menu_mobile:hover {
        color: #FFF;
    }

    .menu_mobile:active {
        color: #FFF;
    }

    .menu_mobile:focus {
        color: #FFF;
    }

    .main_header.fixed header .logotipo {
        width: 70%;
    }

    .main_header header .logotipo {
        width: 70%;
        float: left;
    }

    .main_header header .logotipo img {
        max-width: 100%;
    }

    .btn_custom_whatsapp {
        width: 90%;
        font-size: .875em;
        padding: 12px 17px;
    }

    .btn_custom_whatsapp i {
        width: 75px;
        height: 75px;
        right: -11px;
        top: -18px;
        font-size: 2.5em;
        padding: 14px;
    }

    .main_contact .logotipo {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .main_contact .contact_dados {
        justify-content: center;
    }

    .main_contact .contact_social {
        text-align: center;
    }

    .main_contact .contact_social .social_title {
        text-align: center;
    }

    .contact_form h3 {
        text-align: center;
    }

    .main_map .address_box img {
        float: none;
        display: inline-block;
        margin-right: 0;
        margin-bottom: 25px;
    }

    .main_map .address_box h3 {
        letter-spacing: 0px;
        margin-bottom: 20px;
    }

    .main_map .address_box p {
        margin-bottom: 20px;
    }

    .main_map .btn_custom_waze, .btn_custom_maps {
        width: 100%;
        text-align: left;
    }

    .main_map .btn_custom_waze:after {
        right: -5px;
    }

    .main_map .btn_custom_maps {
        margin-left: 0;
    }

    .btn_custom_maps:after {
        right: -10px;
    }

    .copyright {
        padding: 0px 0 20px;
    }

    #slider .btn_custom_whatsapp {
        font-size: 16px !important;
        width: 100%;
        padding: 12px 60px 12px 17px !important;
        line-height: 20px !important;
        text-align: left;
    }

    .main_call .call_content{
        display: block;
        text-align: center;
        padding: 0 20px;
    }

    .main_call .call_content img{
        width: 100%;
        margin-top: 30px;
    }

    .call_content .call_infor{
        padding: 0;
    }

    .main_featured{
        background: #FFF;
    }

    .main_featured h1{
        margin-bottom: 15px;
        text-align: center;
        text-shadow: 3px 3px 0 #FFF;
    }

    .main_featured h2{
        padding: 0 15px;
        text-align: center;
    }

    .main_featured p{
        padding: 0 15px;
    }

    .featured_box .btn_custom_whatsapp{
        width: 80%;
        margin: 30px;
    }

    .featured_box{
        width: 100%;
        padding-bottom: 0px;
    }

    .featured_info{
        display: block;
        text-align: center;
    }
    .featured_info img{
        margin-bottom: 20px;
    }
    .featured_info ul{
        padding: 0px 40px;
    }
    .featured_info li{
        text-align: left;
        font-size: 1.6em;
        padding-left: 30px;
    }

    .main_type_sale{
        text-align: center;
    }

    .main_type_sale .img_icon{
        float: none;
        margin-bottom: 20px;
    }

    .main_type_content{
        width: 100%;
        padding: 0 15px;
    }

    .main_type_sale .btn_custom_whatsapp, .main_type_sale .btn_custom_ecommerce{
        width: 95%;
    }

    .main_type_sale .btn_custom_ecommerce{
        text-align: left;
        width: 80%;
        float: left;
        margin-left: 10px;
    }

    .main_type_sale .btn_custom_waze{
        width: 62%;

    }

    .main_type_sale .btn_custom_waze:after{
        top: 2px;
    }

    .about_content{
        display: block;
        text-align: center;
    }

    .about_content img{
        width: 60%;
        margin: 20px 0;
    }

    .main_differentials:after{
        height: 25%;
    }

    .main_differentials .img_iceream_fruits{
        height: 238px;
    }

    .diferenciais_title{
        font-size: 3.2em;
    }

    .main_differentials img{
        width: 60%;
    }

}

@media (max-width: 50em) {

    .about_content h1{
        font-size: 2em;
    }

    .main_differentials h1{
        font-size: 2.8em;
    }

    .diferenciais_title{
        font-size: 2.8em;
    }

    .btn_custom_ecommerce:after{
        width: 70px;
        height: 70px;
        right: -60px;
        top: -2px;
    }

    .main_differentials .img_iceream_fruits {
        height: 178px;
    }

    .main_contact .logotipo_contact {
        margin: 0 auto 80px auto;
    }

    .btn_custom_whatsapp {
        width: 100%;
        font-size: .875em;
        padding: 12px 8px;
        text-align: left;
    }

    .btn_custom_whatsapp i {
        width: 70px;
        height: 70px;
        right: -13px;
        top: -14px;
        font-size: 2.5em;
        padding: 14px;
    }

    #slider .btn_custom_whatsapp {
        padding: 12px 30px 12px 17px !important;
        text-align: left !important;

    }

    #slider .btn_custom_whatsapp i {
        font-size: 36px !important;
        line-height: 36px !important;
        right: -42px;
        top: -7px;
        width: 75px;
        height: 75px;

    }

    .comments_single {
        padding: 30px 20px !important;
    }

    .comments > header h1 span {
        margin-top: 10px;
    }

}

