/*
Theme Name: Custom
Theme URI: http://www.seo.emp.br/
Author: Leonardo Pederzoli
Author URI: https://www.seo.emp.br/author/leonardo-pederzoli
Description: Template desenvolvido com exclusividade para os amantes de blog e news.
Version: 1.0.184
Text Domain: custom
*/

.menu-user a{
    background: transparent;
    color: var(--color-menu, #000) !important;
    padding: 0;
    border-radius: 0;
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:600;
    transition:0.3s;
}

.menu-user a:hover{
    background: transparent;
    color: var(--color-menu, #000) !important;
}

.menu-user img{
    border-radius:50%;
}

.menu-user svg {
    display: block;
}

.pg-nav-list .menu-user {
    display: none !important;
}

/* OTIMIZACOES CSS MOVIDAS DO HEADER */
::placeholder {
    font-size: 0.8rem;
}

body {
    background-color: #fff;
    color: var(--color-body);
    font-family: var(--font-family);
    margin: 0;
    overflow-x: hidden;
    padding-top: 0;
}

html {
    margin-top: 0 !important;
    overflow-x: hidden;
    padding-top: 0 !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body::before {
    content: none !important;
    display: none !important;
}

body > title {
    display: none !important;
}

body > meta,
body > link,
body > style,
body > script {
    display: none !important;
}

p {
    color: var(--font-color);
    font-family: var(--font-family);
    font-size: var(--font-size-content);
}

a {
    color: var(--color-links-content);
    font-family: var(--font-family);
    font-weight: var(--font-weight-content-link);
    text-decoration: var(--links-decoration);
}

a:hover {
    color: var(--color-links-content-hover);
    text-decoration: var(--links-decoration);
}

h1 {
    color: var(--h1-color);
    font-family: var(--font-family);
    font-size: var(--h1-size);
    font-weight: var(--h1-weight);
    text-shadow: var(--h1-shadow);
}

h2 {
    color: var(--h2-color);
    font-family: var(--font-family);
    font-size: var(--h2-size);
    font-weight: var(--h2-weight);
    line-height: 1.4;
    text-shadow: var(--h2-shadow);
}

h3 {
    color: var(--h3-color);
    font-family: var(--font-family);
    font-size: var(--h3-size);
    font-weight: var(--h3-weight);
    text-shadow: var(--h3-shadow);
}

h4 {
    color: var(--h4-color);
    font-family: var(--font-family);
    font-size: var(--h4-size);
    font-weight: var(--h4-weight);
    text-shadow: var(--h4-shadow);
}

h5 {
    color: var(--h5-color);
    font-family: var(--font-family);
    font-size: var(--h5-size);
    font-weight: var(--h5-weight);
    text-shadow: var(--h5-shadow);
}

h6 {
    color: var(--h6-color);
    font-family: var(--font-family);
    font-size: var(--h6-size);
    font-weight: var(--h6-weight);
    text-shadow: var(--h6-shadow);
}

header {
    background: var(--bg-header);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 80px;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
}

body > header.position-sticky {
    position: fixed !important;
    top: 0 !important;
    z-index: 1000 !important;
}

#MenuHomeOver {
    align-items: center;
    display: none;
    justify-content: center;
    margin: 5px auto;
    max-width: 1250px;
    overflow: auto;
    padding: 10px 0;
}

#menu-menu-home {
    display: flex;
    list-style: none;
    margin: 0 auto;
    max-width: 1250px;
    overflow: auto;
}

#menu-menu-home > li {
    margin: 10px 3px;
}

#menu-menu-home > li:not(:last-child)::after {
    color: #ccc;
    content: " |";
    white-space: nowrap;
}

#menu-menu-home > li:last-child {
    margin-right: 30px;
}

#menu-menu-home > li > a {
    font-size: 18px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    #MenuHomeOver {
        display: block;
    }
}

#sidebar-menu {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    left: 0;
    overflow-y: auto;
    padding: 0;
    position: fixed;
    top: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    width: 320px;
    z-index: 99997;
}

#sidebar-menu.show {
    transform: translateX(0);
}

#sidebar-search {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 120px;
    padding: 20px;
    position: fixed;
    right: 0;
    top: 100px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    width: 400px;
    z-index: 99997;
}

#sidebar-search.show {
    transform: translateX(0);
}

.btn-pesquisar,
.btn-pesquisar:hover {
    background: var(--color-tema);
    color: #fff;
}

#sidebar-search > div.table-responsive.contorno > table > tbody:nth-child(2) > tr:nth-child(2) > td > p > span > bdi {
    font-size: 20px;
}

.social-sidebar {
    align-items: center;
    display: flex;
    justify-content: center;
}

@media (max-width: 576px) {
    #sidebar-search {
        background-color: #fff;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        height: 100px;
        padding: 20px;
        position: fixed;
        right: 0;
        top: 80px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        width: 100%;
        z-index: 99997;
    }
}

.header-nav-list {
    list-style: none;
    list-style-type: none;
    padding: 10px;
    width: calc(100% - 10px);
}

.header-nav-list > li {
    display: block;
    list-style: none;
    margin-bottom: 10px;
    position: relative;
    width: 100%;
}

.header-nav-list > li:last-child {
    border-bottom: none;
}

.header-nav-list > li > a {
    background: #f7f8f9;
    border-radius: 5px 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    color: #333;
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2 !important;
    padding: 5px 10px;
    text-transform: uppercase;
    width: 100%;
}

.header-nav-list > li > a.menu-toggle {
    padding-right: 30px;
    position: relative;
}

.header-nav-list > li > a.menu-toggle::after {
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    content: "";
    display: block;
    height: 7px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.3s ease;
    width: 7px;
}

.header-nav-list > li > a.menu-toggle.active::after {
    transform: translateY(-20%) rotate(225deg);
}

.sub-menu {
    background: #f7f8f9;
    margin: 5px 0 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease-out;
}

.sub-menu > li {
    align-items: center;
    background: #fff;
    display: flex;
    margin: 5px 0;
    min-height: 32px;
    padding: 5px 15px;
}

.sub-menu > a {
    margin: 5px;
    width: calc(100% - 10px);
}

ul ul {
    list-style-type: none;
}

.sub-menu.collapsed {
    max-height: 0;
}

.sub-menu.expanded {
    max-height: 1200px;
    transition: max-height 0.5s ease-in;
}

#menu-carrinho > li {
    margin-bottom: 10px;
}

.footer {
    background: var(--bg-footer);
}

#footer > div > p {
    color: var(--color-footer);
}

.menu-rodape-footer {
    list-style: none;
    padding: 0;
}

.menu-rodape-footer > li {
    margin-bottom: 15px;
}

.menu-rodape-footer > li > a {
    color: var(--color-footer);
    font-size: 14px;
    font-weight: 500;
}

#meuCrumb {
    background: var(--bg-tema);
}

#breadcrumbs {
    color: #fff;
    font-size: 12px;
    margin-bottom: 0;
    text-align: center;
    text-transform: uppercase;
}

#crumbs > p > span > span > a {
    color: #fff !important;
    font-weight: 700;
}

main > p {
    margin-bottom: 20px;
}

main > ol {
    counter-reset: my-awesome-counter;
    list-style: none;
    margin: 30px 0;
    padding-left: 40px;
}

main > ol > li {
    counter-increment: my-awesome-counter;
    margin: 0 0 15px;
    position: relative;
}

main > ol > li::before {
    --size: 24px;
    align-self: center;
    background: #fff;
    border: 1px solid #000;
    border-radius: 50%;
    color: #000;
    content: counter(my-awesome-counter);
    display: block;
    font-size: 1rem;
    font-weight: 500;
    height: var(--size);
    left: calc(-1 * var(--size) - 10px);
    line-height: var(--size);
    position: absolute;
    text-align: center;
    top: 0;
    width: var(--size);
}

main > ul {
    margin: 30px 0;
}

main > ul > li {
    margin-bottom: 15px;
}

main > ul > li::marker {
    background-color: #008000;
    color: #f05269;
    display: inline-block;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    position: absolute;
    text-decoration: underline;
}

#leiaTambem > ol {
    counter-reset: my-awesome-counter;
    list-style: none;
    padding-left: 40px;
}

#leiaTambem > ol > li {
    counter-increment: my-awesome-counter;
    margin: 0 0 0.5rem;
    position: relative;
}

#leiaTambem > ol > li::before {
    --size: 24px;
    color: red;
    content: counter(my-awesome-counter);
    font-size: 1rem;
    font-weight: 500;
    height: var(--size);
    left: calc(-1 * var(--size) - 10px);
    line-height: var(--size);
    position: absolute;
    text-align: center;
    top: 0;
    width: var(--size);
}

@media (max-width: 460px) {
    main > ol > li::before {
        top: 10px;
    }
}

.info > h2,
.info > h3,
.info > h4,
.info > h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.overlaybox {
    position: relative;
}

.corrigirGutter {
    --bs-gutter-x: 0;
}

.overlaybox .media {
    background-color: #fff;
    border-radius: 5px;
}

.overlaybox img {
    border-radius: 5px;
    width: 100%;
}

.overlaybox .info {
    bottom: 10px;
    left: 10px;
    padding-right: 10px;
    position: absolute;
}

.overlaybox h3 {
    color: #fff;
    font-size: 14px;
    text-align: left;
}

.overlaybox .overlay {
    border-radius: 10px !important;
}

.overlay {
    background: linear-gradient(196deg, #fff0 15%, rgb(0 0 0 / 0.9) 100%);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    bottom: 0;
    height: 100%;
    position: absolute;
    width: 100%;
}

.hover-zoom {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}

.overlaybox .hover-zoom:hover {
    backdrop-filter: blur(5px);
    background: #fff;
    border-radius: 10px !important;
}

.hover-zoom + .recipe-head {
    cursor: default;
    pointer-events: none;
}

.relacionadas .overlaybox h3 {
    font-size: 16px !important;
}

.imgArticle {
    border-radius: 0 0 5px 5px;
    min-height: 70px;
}

.imgArticle > a > h2 {
    color: #fa0f77;
    font-size: 16px;
    font-weight: 500;
    padding: 0 5px;
    text-shadow: none;
}

#btn_next_prev > .btn {
    background: var(--cor-fundo-breadcrumbs) !important;
}

#btn_next_prev > .btn > a {
    color: var(--cor-breadcrumbs) !important;
    height: 30px;
    margin: 10px;
    padding: 20px;
    width: 100px;
}

.wp-caption {
    margin: 30px auto;
    width: 100% !important;
}

.wp-caption-text {
    color: #000 !important;
    font-size: 12px !important;
    padding: 10px 0;
}

@media (hover: hover) {
    .hover-zoom img {
        transition: all 0.3s linear;
    }

    .hover-zoom:hover img {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .overlaybox h5 {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media (max-width: 460px) {
    .imgArticle {
        align-items: center;
        display: flex;
    }

    .imgArticle > a > h2 {
        font-size: 14px;
        padding: 0;
    }
}

.conversinglepost {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 640px;
    position: relative;
    z-index: 1;
}

.conversinglepost::after {
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

::after,
::before {
    box-sizing: border-box;
}

.titulo-aside {
    align-items: center;
    display: flex;
    font-size: 32px;
    gap: 10px;
    line-height: 1;
}

.titulo-aside::after {
    background-color: #000;
    content: "";
    flex-grow: 1;
    height: 5px;
}

.titulo-aside > h2 {
    font-size: 24px;
}

@media (max-width: 576px) {
    .conversinglepost {
        height: 320px;
    }

    .titulo-aside {
        font-size: 24px;
    }
}

/* Migrated global layout sections from header.php */
/*===========================================================
 * 
 *  CONTAINERS
 * 
 ===========================================================*/	
	.container{
		max-width:1250px;
	}	
	 
/*===========================================================
 * 
 *  CTA
 * 
 ===========================================================*/
	#cta{
		background: var(--bg-cta);
	}
	.cta-descricao{
		font-size:20px;
		color: var(--cor-cta); 
		line-height:1.1;
	}
	.cta-descricao-d{
		display:flex;
		margin-bottom:0;
	} 
	
	.cta-descricao-m {
		display:none;	
		
	}
	#btn-faleConosco{
		background: var(--bg-cta);
		color: var(--cor-cta); 
		border: 1px solid var(--cor-cta);
		
	}
	

@media (max-width:576px){
	.cta-descricao{
		font-size:18px;
		color: var(--cor-cta); 
		line-height:1.1;
	}
	.cta-descricao-d{
		display:none;
	}
	.cta-descricao-m {
		display:flex;
		justify-content:center;
	}
	#btn-faleConosco{
		width:100%;
	}
		
}


/*===========================================================
 * 
 *  SEPARADOR
 * 
 ===========================================================*/
	#separador{
		background:var(--bg-tema);
		border-style: solid ; border-width: 1px; margin:0; color:#ccc;	
		border-left:none;
		border-right:none;
		margin:3px 0 15px 0;
		padding:15px 0 15px 0;
	}
	#separador >  div > a{
		font-size:18px;
		font-weight:700;
		color:var(--color-tema);
	}
	#separador >  div > h1, #separador >  div > h2,
	#separador >  div > h3, #separador >  div > h4,
	#separador >  div > h5, #separador >  div > h6{
		font-size:20px;
		font-weight:700;
		margin-bottom:5px;
		line-height:1.2;
		color:var(--color-tema);
	}
	#separador > div > p{
		font-size:14px;
		font-weight:500;
		margin-bottom:0px;
		color:var(--color-tema);
	}
	#separador > div > a{
		font-size:26px;
		font-weight:700;
		color:var(--color-tema);
	}
	@media (max-width: 576px){
		 #separador{
			margin:15px 0;
			padding:10px;
		}	
		}

	
	
/*===========================================================
 * 
 *  CATEGORIA DE PRODUTOS WOO
 * 
 ===========================================================*/	
	#separador-produto{
		background:#FFF;
		border-style: solid ; border-width: 1px; margin:0; color:#ccc;
		border-left:none;
		border-right:none;
		padding:15px 0 15px 0;
	}
	
	#separador-produto >  div > a > h1, #separador-produto >  div > a > h2,
	#separador-produto >  div > a > h3, #separador-produto >  div > a > h4,
	#separador-produto >  div > a > h5, #separador-produto >  div > a >  h6{
		font-size:20px;
		font-weight:700;
		margin-bottom:5px;
		line-height:1.2;
		color:var(--color-tema);
	}
	#separador-produto >  div > p{
		font-size:14px;
		font-weight:500;
		margin-bottom:0px;
		color:var(--color-tema);
	}
	
	
	#produto-item{
		border:1px dotted #ccc;
		
	}
	.produto-titulo{
		font-size: 18px;
		font-weight:500;
		color:#000;
		text-transform:uppercase;
	}	
	.produto-preco,
	#produto-item > div.text-center.p-2.bg-light.d-flex.justify-content-center.align-items-center > span > span > bdi{
		font-size: 20px;
		font-weight:700;
		color:#000;
	}
	.btn-produto{
		font-size:16px;
		font-weight:700;
		padding:7px 10px;
		color:var(--btn-woo-cor);
		background:var(--btn-woo-fundo);
		border:none;
	}
	.btn-produto:hover{
		color:var(--btn-woo-cor);
		background:var(--btn-woo-fundo);
		
	}

@media (max-width:576px){
	#separador-produto{
		padding:10px;
	}	
	#produto-item{
		border:1px solid #ccc;
	}
	.produto-titulo,
	.product_title, .entry-title{
		font-size: 12px;
		font-weight:500;
		
	}	
	.produto-preco, 
	#produto-item > div.text-center.p-2.bg-light.d-flex.justify-content-center.align-items-center > span > span > bdi{
		font-size: 16px;
		font-weight:700;
		
	}	
	.btn-produto{
		font-size:14px;
		font-weight:500;
		padding:5px 10px;
	}
}


	


/*===========================================================
 * 
 *  SESSÃƒO CONTEÃšDO
 * 
 ===========================================================*/	

	#sessao-conteudo > h3, #sessao-conteudo > h2,
	#sessao-conteudo > h3, #sessao-conteudo > h4,
	#sessao-conteudo > h5, #sessao-conteudo > h6{
	  font-size: 20px;	
	 
      margin-bottom:20px;
		
    }
   #sessao-conteudo > ul{
        padding:0;
        list-style:none;
    }
   #sessao-conteudo > ul > li{
        margin: 0 10px 10px 0;
        padding: 10px;
        background:#f7f8f9;
    }

	#btn-conteudo{
		padding:10px;
	}
	
@media (max-width:576px){

	#sessao-conteudo > p{
       text-align:justify;
    }
    #sessao-conteudo> ul > li{
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }
	#btn-conteudo{
		padding:15px;
		width:100%;
		margin: 15px auto;
	}
}
	
	
/*===========================================================
 * 
 *  SESSÃƒO CAROUSEL
 * 
 ===========================================================*/	
/* Carousel Container */
.product-carousel-container {
    margin: 0 auto;
    max-width: none;
    overflow: hidden;
    padding: 0 8px;
    position: relative;
    width: 100%;
		
}

.product-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* Importante: remover a propriedade flex para permitir scroll infinito */
    flex-wrap: nowrap;
}

.product-carousel::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 calc((100% - 5rem) / 6);
    min-width: 0;
    scroll-snap-align: start;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 400px;
}

@media (max-width: 991px) {
    .product-carousel-container {
        padding: 0 20px;
    }
    
    .product-card {
        flex: 0 0 calc((100% - 1rem) / 2);
        min-width: 0;
        height: 500px;
    }
}

.product-card:hover {
    transform: scale(1.02);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    padding: 20px;
    color: white;
}

.expiration-badge {
    position: absolute;
    top: 15px;
    left: 15px;
   
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.button-container {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.btn-redeem {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 6px;
    flex: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    background: white;
    color: #333;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-redeem:hover {
    background: #f8f8f8;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
	.btn-redeem > .woocommerce-Price-amount, .amount{
		font-size:20px !important;
	}
	
	
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: #f8f8f8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

/* Indicador de progresso */
.carousel-progress {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    padding: 10px;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: #333;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-nav {
        display: none;
    }
    
	    .product-card {
	        flex: 0 0 85%;
	        min-width: 0;
		}
	.product-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}	
		
 }
	
	
/*===========================================================
 * 
 *  SESSÃƒO FAQ
 * 
 ===========================================================*/	
	#FaqContainer{
		
		border-style: solid ; border-width: 1px; margin:0; color:#ccc;
	}
	
	
	#faq  > div > h1, #faq  > div >  h2, #faq  > div >  h3, 
	#faq  > div >  h4, #faq  > div >  h5, #faq  > div >  h6{
		font-size: 18px;
		color:#000;
	} 
	#faq > div >  p{
		font-size: 16px;
		color:#000;
	}
.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #f7f8f9;
    box-shadow: none;
	
	}

.recipe-faq-section {
    border-top: 1px solid #ececec;
    padding-top: 28px;
}

.recipe-faq-title {
    margin-bottom: 12px;
}

.recipe-faq-description {
    margin-bottom: 18px;
}

.recipe-faq-description p:last-child {
    margin-bottom: 0;
}

.recipe-faq-item {
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.recipe-faq-accordion .accordion-button {
    box-shadow: none;
    font-weight: 700;
}

.recipe-faq-accordion .accordion-button:not(.collapsed) {
    background: #f8f8f8;
    color: #000;
}
	
	
	
	.contorno{
		border-style: solid ; border-width: 1px; margin:0; color:#ccc;
	}	
	
	
	
hr { border-style: dashed; border-width: 3px; margin:0;}		
	
/*Ajuste Global - Sessao contedo*/	

.coverLogo {
    background-image: var(--cover-logo);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60px;
    position: relative;
    z-index: 1;
}

.coverLogo::after {
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

#redesSociais,
.social-links {
}

.social-links > a {
    background: #fff;
    border-radius: 5px;
    box-shadow: 1px 1px 0 #999;
    color: var(--color-footer);
    font-size: 1.5rem;
    font-weight: bold;
    height: 24px;
    line-height: 24px;
    margin-right: 5px;
    padding: 5px 10px;
    text-align: left;
    top: 0;
    width: 24px;
}

.rodape-title {
    color: var(--color-footer);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rodape-descricao {
    color: var(--color-footer);
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
}

.rodape-descricao:hover {
    color: var(--color-footer);
}

.menu-rodape-footer > li {
    margin-bottom: 10px;
}

.menu-rodape-footer > li > a {
    color: var(--color-footer);
}

.cover-pagamentos {
    background-image: url("../../template-parts/imagens/formas-de-pagamentos.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 50px;
    position: relative;
    z-index: 1;
}

.img-rodape-logo {
    display: block;
}

.pagamentos-diversos {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .pagamentos-diversos {
        color: #000;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.2;
        margin: 15px auto;
    }
}


/* OTIMIZACOES CSS DAS RECEITAS */
#fomularioPesquisa {
    display: none;
}

.recipe-featured-image {
    aspect-ratio: 16 / 9;
    background-image: none !important;
    background-color: #f7f8f9;
    height: auto !important;
    min-height: 0;
    overflow: hidden;
    position: relative;
}

.recipe-featured-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.recipe-image-credit {
    background: #fff;
    border-radius: 5px;
    bottom: 8px;
    color: #000;
    font-size: 10px;
    left: 8px;
    margin: 0;
    opacity: 0.9;
    padding: 5px;
    position: absolute;
    z-index: 2;
}

.recipe-ad-box {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 250px;
    width: 100%;
}

.recipe-ad-box ins.adsbygoogle,
.recipe-ad-box .adsbygoogle {
    display: block;
    max-width: 100%;
    min-height: 250px;
    width: 100%;
}

.recipe-ad-label {
    color: #000;
    display: block;
    font-size: 12px;
    line-height: 20px;
    min-height: 20px;
}

#img-sessao-conteudo,
#video-sessao-conteudo {
    margin-bottom: 30px;
}

#separador-produto-blog {
    border-color: #ccc;
    border-left: none;
    border-right: none;
    border-style: solid;
    border-width: 1px;
    color: #ccc;
    margin: 0;
    padding: 15px 0;
}

#separador-produto-blog > div > a > h1,
#separador-produto-blog > div > a > h2,
#separador-produto-blog > div > a > h3,
#separador-produto-blog > div > a > h4,
#separador-produto-blog > div > a > h5,
#separador-produto-blog > div > a > h6 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}

#separador-produto-blog > div > p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.hero-Imagem {
    background-color: rgba(0, 0, 0, 0.6);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 0;
    min-height: 30vh;
    position: relative;
    z-index: 1;
}

.hero-Imagem::after {
    background-color: rgba(0, 0, 0, 0.4);
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

#hero {
    padding: 50px;
}

#heroBox {
    border: dotted 2px #fff;
    display: flex;
    flex-wrap: wrap;
    min-height: auto;
    padding: 50px;
}

.hero-title {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.hero-sub-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    width: 100%;
}

@media (max-width: 576px) {
    #hero {
        align-items: center;
        display: flex;
        padding: 20px;
    }

    #heroBox {
        border: dotted 1px #f7f8f9;
        min-height: auto;
        padding: 30px 10px;
    }

    .hero-title {
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 15px;
        min-width: 100%;
        padding: 0 10px;
        text-align: center;
        text-transform: uppercase;
    }

    .hero-sub-title {
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 0;
        max-width: 100%;
        padding: 0 35px;
        text-align: center;
    }

    #hero-btn {
        display: flex;
        justify-content: center;
    }
}

/* Header portal */
.pg-site-header{background:#fff!important;border-bottom:1px solid #eee;box-shadow:0 2px 12px rgba(30,20,10,.05);height:auto;margin:0!important;overflow:hidden;padding:0!important;position:relative;top:0!important;transform:none!important;width:100%;z-index:89}
.pg-header-wrap{align-items:center;display:flex;gap:18px;margin:0 auto;max-width:1180px;padding:0 16px;width:100%}
.pg-header-top{background:#fff!important;border-bottom:1px solid #f0f0f0;margin:0!important;padding:0!important}
.pg-header-top .pg-header-wrap{display:flex;justify-content:flex-start;min-height:64px}
.pg-brand{align-items:flex-start;color:#f45108;display:flex;flex:0 0 190px;flex-direction:column;line-height:1;max-width:190px;text-decoration:none}
.pg-brand img{display:block;height:auto;max-height:44px;max-width:190px;object-fit:contain;width:100%}
.pg-brand span{display:none}
.pg-header-search{align-items:center;border:1px solid #e6e6e6;border-radius:999px;display:grid;flex:1 1 auto;grid-template-columns:1fr 46px;max-width:560px;min-width:220px;overflow:hidden;width:100%}
.pg-header-search label{clip:rect(0 0 0 0);height:1px;overflow:hidden;position:absolute;width:1px}
.pg-header-search input{border:0;font-size:14px;min-height:44px;outline:0;padding:0 18px}
.pg-header-search button,.pg-icon-button{align-items:center;background:#fff;border:0;color:#111;display:flex;justify-content:center}
.pg-header-actions{align-items:center;display:flex;flex:0 0 auto;gap:10px;justify-content:flex-end;margin-left:auto}
.pg-fav-link,.pg-login-link{align-items:center;border:1px solid #f1d5c1;border-radius:999px;color:#f45108;display:inline-flex;font-size:14px;font-weight:850;gap:7px;min-height:38px;padding:0 13px;text-decoration:none}
.pg-login-link{background:#fff7f0;color:#171717}
.pg-login-link svg{color:#f45108}
.pg-header-nav{background:#fff;overflow:visible}
.pg-header-nav .pg-header-wrap{justify-content:center;overflow:visible}
.pg-nav-list{align-items:center;display:flex;gap:4px;justify-content:center;list-style:none;margin:0;max-width:100%;overflow:visible;padding:0;width:100%}
.pg-nav-list li{margin:0;position:relative}
.pg-nav-list a{border-radius:7px;color:#171717;display:block;font-size:14px;font-weight:800;padding:13px 12px;text-decoration:none;white-space:normal}
.pg-nav-list > li:first-child > a,.pg-nav-list > li > a:hover{background:#f45108;color:#fff}
.pg-nav-list > li.menu-item-has-children > a{padding-right:26px}
.pg-nav-list > li.menu-item-has-children > a::after{border-bottom:2px solid currentColor;border-right:2px solid currentColor;content:"";height:7px;position:absolute;right:10px;top:50%;transform:translateY(-65%) rotate(45deg);width:7px}
.pg-nav-list .sub-menu{background:#fff;border:1px solid #eee3d9;border-radius:10px;box-shadow:0 14px 30px rgba(30,20,10,.12);display:block;left:0;list-style:none;margin:0;max-height:none;min-width:210px;opacity:0;overflow:visible;padding:8px;position:absolute;top:100%;transform:translateY(8px);transition:opacity .18s ease,transform .18s ease,visibility .18s ease;visibility:hidden;z-index:9999}
.pg-nav-list li:hover > .sub-menu,.pg-nav-list li:focus-within > .sub-menu{opacity:1;transform:translateY(0);visibility:visible}
.pg-nav-list .sub-menu li{background:transparent;display:block;margin:0;min-height:0;padding:0}
.pg-nav-list .sub-menu a{border-radius:7px;color:#171717;font-size:13px;font-weight:800;padding:9px 10px;white-space:nowrap}
.pg-nav-list .sub-menu a:hover{background:#fff4ec;color:#f45108}
.pg-mobile-only{display:none}
.pg-mobile-search{display:grid;gap:8px;padding:14px}
.pg-mobile-search input{border:1px solid #ddd;border-radius:8px;min-height:42px;padding:0 12px}
.pg-mobile-search button{background:#f45108;border:0;border-radius:8px;color:#fff;font-weight:800;min-height:42px}
@media(max-width:920px){
    .pg-header-top{padding:0!important}.pg-header-top .pg-header-wrap{display:flex;gap:6px;min-height:54px;padding:0 10px}.pg-mobile-only{display:flex}.pg-header-search,.pg-header-social,.pg-header-nav{display:none}.pg-brand{flex:1 1 auto;margin-right:auto;max-width:132px}.pg-brand img{max-height:42px;width:132px}.pg-header-actions{gap:6px;margin-left:0}.pg-fav-link,.pg-login-link,.pg-icon-button.pg-mobile-only{align-items:center;border:1px solid #f1d5c1;border-radius:999px;display:inline-flex;flex:0 0 34px;height:34px;justify-content:center;min-height:34px;padding:0;width:34px}.pg-fav-link,.pg-login-link{font-size:0}.pg-fav-link svg,.pg-login-link svg,.pg-icon-button.pg-mobile-only svg{height:20px;width:20px}
}

/* Footer portal */
.pg-footer-wrap{margin:0 auto;max-width:1180px;padding:0 16px}
.pg-feature-strip{display:none}
.pg-feature-strip .pg-footer-wrap{background:#fff;border:1px solid #f0dfcf;border-radius:12px;display:grid;gap:14px;grid-template-columns:repeat(5,1fr);padding:18px}
.pg-feature-strip div{align-items:center;display:flex;gap:12px}
.pg-feature-strip span{align-items:center;border:1px solid #ff6a00;border-radius:50%;color:#ff5a00;display:flex;font-size:18px;height:38px;justify-content:center;width:38px}
.pg-feature-strip strong{color:#20202a;font-size:14px;line-height:1.3}
.pg-footer-orange-strip{background:#f45108;display:block;height:8px;margin:0;width:100%}
.pg-footer-orange-strip + .pg-footer,
.pg-footer-orange-strip + .footer{margin-top:0!important}
.pg-footer{background:#fff7ef;border-top:1px solid #f0dfcf;margin-top:0;padding:34px 0 38px}
.pg-footer-grid{display:grid;gap:34px;grid-template-columns:1.35fr .8fr .8fr 1fr}
.pg-footer-brand img{height:auto;margin-bottom:12px;max-width:210px}
.pg-footer-brand p,.pg-footer-copy{color:#555;font-size:14px;line-height:1.6}
.pg-footer-social{display:flex;gap:9px;margin-top:14px}
.pg-footer-social a{align-items:center;background:#24315f;border-radius:50%;color:#fff;display:flex;font-size:11px;font-weight:800;height:28px;justify-content:center;text-decoration:none;width:28px}
.pg-footer-social a:nth-child(2){background:#d63384}
.pg-footer-social a:nth-child(3){background:#e60023}
.pg-footer-social a:nth-child(4){background:#ff0000}
.pg-footer-col h2{color:#15151f;font-size:16px;margin:0 0 12px}
.pg-footer-menu{list-style:none;margin:0;padding:0}
.pg-footer-menu li{margin:0 0 7px}
.pg-footer-menu a{color:#20202a;font-size:14px;text-decoration:none}
.pg-footer-menu a:hover{color:#f45108}
.pg-footer-bottom{align-items:center!important;border-top:1px solid #f0dfcf;clear:both;display:flex!important;float:none!important;grid-column:1/-1;justify-content:center!important;margin:38px auto 0!important;max-width:1180px;padding:20px 16px 0;text-align:center!important;width:100%}
.pg-footer-bottom p{color:#665b52;display:block!important;float:none!important;font-size:10.5px;line-height:1.55;margin:0 auto!important;max-width:820px;text-align:center!important;width:100%}
.pg-footer-bottom strong{color:#20202a;font-weight:600}
.pg-footer-bottom span{display:inline-flex;gap:9px;justify-content:center;margin-left:8px;text-align:center}
.pg-footer-bottom a{color:#f45108;font-size:10.5px;font-weight:700;text-decoration:none}
.pg-footer-bottom a:hover{text-decoration:underline}
@media(max-width:820px){
    .pg-feature-strip .pg-footer-wrap,.pg-footer-grid{grid-template-columns:1fr 1fr}.pg-footer-brand{grid-column:1/-1}
}
@media(max-width:540px){
    .pg-feature-strip .pg-footer-wrap,.pg-footer-grid{grid-template-columns:1fr}.pg-feature-strip{padding-top:18px}.pg-footer-bottom span{display:flex;justify-content:center;margin:8px 0 0}
}
/* Post normal editorial */
.pg-article-shell {
    background: transparent;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 820px) minmax(280px, 360px);
    margin: 0 auto;
    max-width: none;
    padding: 0;
}

.pg-article-main,
.pg-sidebar-card,
.pg-author-box,
.pg-comments-box,
.pg-article-video,
.pg-article-tags {
    background: #fff;
    border: 1px solid #f0dfd3;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(30, 22, 15, 0.06);
}

.pg-article-main {
    overflow: hidden;
}

.pg-article-shell-recipe-style .pg-article-main {
    border-radius: 12px;
    box-shadow: none;
    padding: 0 0 28px;
}

.pg-normal-breadcrumb {
    font-size: 12px;
    justify-content: center;
    margin: 0 auto 18px;
    padding: 0 0 0;
    text-align: center;
}

.pg-normal-breadcrumb #breadcrumbs,
.pg-normal-breadcrumb a {
    color: #333;
    margin: 0;
}

.pg-normal-featured-image {
    margin: 0 0 18px;
    overflow: hidden;
}

.pg-normal-featured-image img {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    display: block;
    max-height: 520px;
    object-fit: cover;
    width: 100%;
}

.pg-normal-caption {
    color: #171717;
    font-size: 14px;
    line-height: 1.45;
    margin: 0 0 22px;
}

.pg-normal-caption p {
    margin: 0 0 4px;
}

.pg-normal-caption a {
    color: #171717;
    font-weight: 800;
    text-decoration: underline;
}

.pg-normal-article {
    padding-top: 0;
}

.pg-normal-article .recipe-byline {
    margin-bottom: 26px;
}

.pg-normal-article .recipe-title {
    margin-bottom: 16px;
}

.pg-normal-share-actions {
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    margin: 22px 0 30px;
}

.pg-normal-share-actions .recipe-share-label {
    align-items: center;
    background: #fff;
    border: 1px solid #d9e0e8;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    color: #111827;
    display: inline-flex;
    font-size: 16px;
    font-weight: 900;
    gap: 10px;
    min-height: 50px;
    padding: 0 24px;
    text-decoration: none;
}

.pg-normal-share-actions .recipe-social-actions {
    align-items: center;
    display: flex;
    gap: 11px;
}

.pg-normal-share-actions .recipe-social {
    height: 42px;
    width: 42px;
}

.pg-normal-share-actions .recipe-social svg {
    height: 22px;
    width: 22px;
}

.pg-normal-content {
    padding: 0;
}

.pg-editor-box {
    margin-top: 32px;
}

.pg-editor-box > div:last-child > span {
    text-transform: uppercase;
}

.pg-normal-rating-box {
    margin-top: 34px;
}

.pg-article-breadcrumb {
    padding: 18px 28px 0;
}

.pg-article-breadcrumb,
.pg-article-breadcrumb a,
.pg-article-breadcrumb p {
    color: #73665f;
    font-size: 13px;
    margin: 0;
}

.pg-article-hero {
    background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
    padding: 18px 28px 18px;
}

.pg-article-category {
    background: #fff1e8;
    border-radius: 999px;
    color: #f45108;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 10px;
    padding: 7px 12px;
    text-decoration: none;
    text-transform: uppercase;
}

.pg-article-hero h1 {
    color: #151515;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.08;
    margin: 0 0 14px;
    text-shadow: none;
}

.pg-article-lead {
    color: #4b4540;
    font-size: 18px;
    line-height: 1.65;
    margin: 0 0 20px;
}

.pg-article-meta {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.pg-article-author {
    align-items: center;
    color: #222;
    display: inline-flex;
    gap: 12px;
    text-decoration: none;
}

.pg-article-author img {
    border-radius: 50%;
    flex: 0 0 auto;
}

.pg-article-author strong,
.pg-article-author small {
    display: block;
}

.pg-article-author small {
    color: #706862;
    font-size: 13px;
    line-height: 1.4;
}

.pg-article-share {
    display: flex;
    gap: 10px;
}

.pg-article-share a {
    align-items: center;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    text-decoration: none;
    width: 40px;
}

.pg-article-share a:nth-child(1) { background: #21c063; }
.pg-article-share a:nth-child(2) { background: #2866c9; }
.pg-article-share a:nth-child(3) { background: #d80b34; }

.pg-article-share svg {
    height: 21px;
    width: 21px;
}

.pg-article-cover {
    margin: 0;
    padding: 0 28px 22px;
}

.pg-article-cover img {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    display: block;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    width: 100%;
}

.pg-article-cover figcaption {
    color: #756a63;
    font-size: 13px;
    padding: 10px 2px 0;
}

.pg-article-cover figcaption span {
    display: block;
}

.pg-article-content {
    color: #2a2622;
    font-size: 18px;
    line-height: 1.78;
    padding: 26px 28px 12px;
}

.pg-article-content > * {
    max-width: 100%;
}

.pg-article-content p {
    color: #2f2924;
    font-size: 18px;
    line-height: 1.78;
    margin-bottom: 20px;
}

.pg-article-content h2,
.pg-article-content h3 {
    color: #171717;
    margin: 34px 0 14px;
    text-shadow: none;
}

.pg-article-content h2 {
    font-size: 30px;
}

.pg-article-content h3 {
    font-size: 24px;
}

.pg-article-content img {
    border-radius: 12px;
    height: auto;
    max-width: 100%;
}

.pg-article-video,
.pg-article-tags,
.pg-author-box,
.pg-comments-box {
    margin: 24px 28px;
    padding: 22px;
}

.pg-article-video h2,
.pg-sidebar-card h2,
.pg-author-box h2 {
    color: #171717;
    font-size: 24px;
    margin: 0 0 14px;
    text-shadow: none;
}

.pg-video-frame {
    aspect-ratio: 16 / 9;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
}

.pg-video-frame iframe {
    border: 0;
    height: 100%;
    width: 100%;
}

.custom-youtube-embed,
.ratio.ratio-16x9 {
    aspect-ratio: 16 / 9;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.custom-youtube-embed iframe,
.ratio.ratio-16x9 iframe {
    border: 0;
    display: block;
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.pg-video-link {
    background: #f45108;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-weight: 800;
    margin-top: 14px;
    padding: 11px 14px;
    text-decoration: none;
}

.pg-article-tags strong {
    color: #151515;
    display: block;
    margin-bottom: 12px;
}

.pg-article-tags div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pg-article-tags a {
    background: #fff5ee;
    border: 1px solid #ffd7c1;
    border-radius: 999px;
    color: #db4200;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 12px;
    text-decoration: none;
}

.pg-author-box {
    align-items: center;
    display: flex;
    gap: 16px;
}

.pg-author-box img {
    border-radius: 50%;
    flex: 0 0 auto;
}

.pg-author-box span {
    color: #f45108;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.pg-author-box p {
    color: #4f4842;
    margin: 0;
}

.pg-article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 620px;
}

.pg-sidebar-card {
    padding: 20px;
}

.pg-sidebar-card h2 {
    border-bottom: 2px solid #f45108;
    display: inline-block;
    padding-bottom: 7px;
}

.pg-sidebar-item {
    align-items: center;
    border-bottom: 1px solid #f3e7df;
    color: #171717;
    display: grid;
    gap: 12px;
    grid-template-columns: 86px 1fr;
    padding: 13px 0;
    text-decoration: none;
}

.pg-sidebar-item:last-child {
    border-bottom: 0;
}

.pg-sidebar-item img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    height: auto;
    object-fit: cover;
    width: 86px;
}

.pg-sidebar-item span {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.pg-article-shell .recipe-ad-slot {
    margin: 24px 28px;
}

.pg-article-main .recipe-affiliate-box {
    background: linear-gradient(135deg, #fff, #fff6ee);
    border: 1px solid #ffd7c1;
    border-radius: 14px;
    margin: 24px 28px;
    padding: 18px;
}

.pg-article-main .recipe-affiliate-header {
    margin-bottom: 14px;
}

.pg-article-main .recipe-affiliate-kicker {
    color: #d9480f;
    display: block;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.pg-article-main .recipe-affiliate-header strong {
    color: #f45108;
    display: block;
    font-size: 22px;
    line-height: 1.2;
}

.pg-article-main .recipe-affiliate-header p {
    color: #5d524b;
    font-size: 14px;
    margin: 6px 0 0;
}

.pg-article-main .recipe-affiliate-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pg-article-main .recipe-affiliate-product {
    background: #fff;
    border: 1px solid #ffe1d0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.pg-article-main .recipe-affiliate-media {
    align-items: center;
    aspect-ratio: 1;
    background: #fffaf4;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
}

.pg-article-main .recipe-affiliate-media img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.pg-article-main .recipe-affiliate-content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.pg-article-main .recipe-affiliate-content strong {
    color: #171717;
    font-size: 15px;
    line-height: 1.25;
}

.pg-article-main .recipe-affiliate-content p {
    color: #5d524b;
    font-size: 13px;
    line-height: 1.4;
    margin: 6px 0;
}

.pg-article-main .recipe-affiliate-price {
    color: #171717;
    display: block;
    font-size: 14px;
    font-weight: 900;
    margin: 2px 0 10px;
}

.pg-article-main .recipe-affiliate-button {
    background: #f45108;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    justify-content: center;
    margin-top: auto;
    padding: 11px 14px;
    text-decoration: none;
}

@media (max-width: 980px) {
    .pg-article-shell {
        grid-template-columns: 1fr;
        padding: 16px 12px 32px;
    }

    .pg-article-sidebar {
        padding-top: 0;
    }

    .pg-article-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .pg-article-hero,
    .pg-article-content,
    .pg-normal-article {
        padding-left: 18px;
        padding-right: 18px;
    }

    .pg-article-breadcrumb {
        padding-left: 18px;
        padding-right: 18px;
    }

    .pg-article-video,
    .pg-article-tags,
    .pg-author-box,
    .pg-comments-box,
    .pg-article-shell .recipe-ad-slot,
    .pg-article-main .recipe-affiliate-box {
        margin-left: 18px;
        margin-right: 18px;
    }

    .pg-article-content p {
        font-size: 17px;
    }

    .pg-normal-share-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .pg-article-shell {
        padding-left: 0;
        padding-right: 0;
    }

    .pg-article-main,
    .pg-sidebar-card,
    .pg-author-box,
    .pg-comments-box,
    .pg-article-video,
    .pg-article-tags {
        border-left: 0;
        border-radius: 0;
        border-right: 0;
    }

    .pg-article-cover {
        padding-left: 18px;
        padding-right: 18px;
    }

    .pg-normal-featured-image img {
        border-radius: 12px;
    }

    .pg-article-main .recipe-affiliate-grid {
        grid-template-columns: 1fr;
    }

    .pg-article-hero h1 {
        font-size: 32px;
    }

    .pg-article-lead {
        font-size: 16px;
    }

    .pg-author-box {
        align-items: flex-start;
    }
}

/* Reforco do layout do post normal contra sobrescritas do CSS de receitas */
body.single-post .pg-article-shell.pg-article-shell-recipe-style {
    background: transparent;
    gap: 24px;
    grid-template-columns: minmax(0, 820px) minmax(280px, 360px);
    max-width: none;
    padding: 0;
}

body.single-post .pg-article-shell-recipe-style .pg-article-main {
    background: #fff;
    border: 0;
    border-radius: 12px;
    box-shadow: none;
    overflow: hidden;
    padding: 0 0 28px;
}

body.single-post .pg-normal-container {
    border: 0;
    padding-bottom: 0;
}

body.single-post .pg-normal-page {
    padding-bottom: 0 !important;
}

body.single-post .pg-article-shell-recipe-style .recipe-ad-slot:last-child {
    margin-bottom: 0;
    min-height: 0;
}

body.single-post .pg-article-shell-recipe-style .recipe-ad-slot:last-child .recipe-ad-box {
    min-height: 0;
}

body.single-post .pg-article-shell-recipe-style .pg-normal-rating-box {
    margin-bottom: 0;
}

body.single-post .pg-article-shell-recipe-style .pg-normal-breadcrumb {
    font-size: 12px;
    justify-content: center;
    margin: 0 auto 18px;
    padding: 0;
    text-align: center;
}

body.single-post .pg-article-shell-recipe-style .pg-normal-breadcrumb #breadcrumbs {
    margin: 0;
}

body.single-post .pg-article-shell-recipe-style .pg-normal-featured-image {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 0 0 18px;
    overflow: hidden;
}

body.single-post .pg-article-shell-recipe-style .pg-normal-featured-image img {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    display: block;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    width: 100%;
}

body.single-post .pg-article-shell-recipe-style .pg-normal-caption {
    margin: 0 0 22px;
}

body.single-post .pg-article-shell-recipe-style .pg-normal-article {
    padding-top: 0;
}

body.single-post .pg-article-shell-recipe-style .pg-article-sidebar {
    padding-top: 620px;
}

body.single-post .pg-article-shell-recipe-style .pg-normal-share-actions {
    align-items: center;
    gap: 12px;
    margin: 22px 0 30px;
}

body.single-post .pg-article-shell-recipe-style .pg-normal-share-actions .pg-share-pill {
    background: #fff;
    border: 1px solid #d9e0e8;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    color: #111827;
    font-size: 16px;
    font-weight: 900;
    min-height: 50px;
    padding: 0 24px;
}

body.single-post .pg-article-shell-recipe-style .pg-normal-share-actions .recipe-social {
    height: 42px;
    width: 42px;
}

body.single-post .pg-article-shell-recipe-style .pg-normal-share-actions .recipe-social svg {
    height: 22px;
    width: 22px;
}

body.single-post .pg-article-shell-recipe-style .pg-normal-action-rating {
    background: #fff;
    border: 1px solid #f0dfd3;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    flex: 1 1 280px;
    min-height: 50px;
    padding: 9px 16px;
}

body.single-post .pg-article-sidebar .pg-sidebar-affiliate .recipe-affiliate-box {
    background: #fff;
    border: 1px solid #f0dfd3;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(30, 22, 15, 0.06);
    margin: 0;
    padding: 16px;
}

body.single-post .pg-article-sidebar .recipe-affiliate-header {
    margin-bottom: 12px;
}

body.single-post .pg-article-sidebar .recipe-affiliate-header strong {
    color: #171717;
    display: block;
    font-size: 20px;
    line-height: 1.2;
}

body.single-post .pg-article-sidebar .recipe-affiliate-header p {
    color: #5d524b;
    font-size: 13px;
    line-height: 1.45;
    margin: 6px 0 0;
}

body.single-post .pg-article-sidebar .recipe-affiliate-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

body.single-post .pg-article-sidebar .recipe-affiliate-product {
    align-items: center;
    background: #fffaf4;
    border: 1px solid #ffe1d0;
    border-radius: 12px;
    display: grid;
    gap: 12px;
    grid-template-columns: 86px 1fr;
    padding: 10px;
}

body.single-post .pg-article-sidebar .recipe-affiliate-media {
    aspect-ratio: 1;
    background: #fff;
    border-radius: 10px;
    display: block;
    overflow: hidden;
}

body.single-post .pg-article-sidebar .recipe-affiliate-media img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

body.single-post .pg-article-sidebar .recipe-affiliate-content strong {
    color: #171717;
    display: block;
    font-size: 14px;
    line-height: 1.25;
}

body.single-post .pg-article-sidebar .recipe-affiliate-content p {
    color: #5d524b;
    font-size: 12px;
    line-height: 1.35;
    margin: 5px 0;
}

body.single-post .pg-article-sidebar .recipe-affiliate-price {
    color: #171717;
    display: block;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 8px;
}

body.single-post .pg-article-sidebar .recipe-affiliate-button {
    background: #f45108;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    justify-content: center;
    padding: 9px 11px;
    text-decoration: none;
}

@media (max-width: 980px) {
    body.single-post .pg-article-shell.pg-article-shell-recipe-style {
        grid-template-columns: 1fr;
        padding: 16px 12px 32px;
    }

    body.single-post .pg-article-shell-recipe-style .pg-article-sidebar {
        padding-top: 0;
    }

    body.single-post .pg-article-sidebar .pg-sidebar-affiliate {
        display: none;
    }
}

/* Modelo padrao de paginas */
body.page .pg-page {
    background: #fff7ef;
    padding: 32px 0 28px;
}

body.page .pg-page-shell {
    margin: 0 auto;
    max-width: 1040px;
    padding: 0 18px;
}

body.page .pg-page-breadcrumb {
    color: #655a52;
    font-size: 14px;
    margin: 0 auto 14px;
    max-width: 860px;
    text-transform: uppercase;
}

body.page .pg-page-breadcrumb #breadcrumbs,
body.page .pg-page-breadcrumb #breadcrumbs span,
body.page .pg-page-breadcrumb #breadcrumbs strong,
body.page .pg-page-breadcrumb #breadcrumbs .breadcrumb_last {
    color: #2b2622 !important;
}

body.page .pg-page-breadcrumb p {
    margin: 0;
}

body.page .pg-page-breadcrumb a {
    color: #f45108;
    font-weight: 800;
    text-decoration: none;
}

body.page .pg-page-card {
    background: #fff;
    border: 1px solid #f0dfd3;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(78, 48, 21, 0.07);
    margin: 0 auto;
    max-width: 900px;
    overflow: hidden;
}

body.page .pg-page-header {
    padding: 44px 38px 46px;
    text-align: center;
}

body.page .pg-page-kicker {
    color: #f45108;
    display: inline-block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

body.page .pg-page-card .pg-page-header h1 {
    color: #151515;
    font-size: clamp(34px, 3.5vw, 50px);
    line-height: 1.08;
    margin: 20px auto 0;
    max-width: 780px;
    text-shadow: none !important;
}

body.page .pg-page-header p {
    color: #5d524b;
    font-size: 18px;
    line-height: 1.65;
    margin: 0 auto 12px;
    max-width: 720px;
}

body.page .pg-page-header time {
    background: #fff7ef;
    border: 1px solid #f0dfd3;
    border-radius: 999px;
    color: #6f6259;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    margin-top: 4px;
    padding: 8px 12px;
}

body.page .pg-page-content > :first-child {
    margin-top: 0;
}

body.page .pg-page-content > h1:first-child,
body.page .pg-page-content > h2:first-child {
    display: none;
}

body.page .pg-page-featured {
    margin: 0;
}

body.page .pg-page-featured img {
    display: block;
    height: auto;
    width: 100%;
}

body.page .pg-page-content {
    color: #2b2622;
    font-size: 18px;
    line-height: 1.78;
    margin: 0 auto;
    max-width: 760px;
    padding: 54px 38px 44px;
}

body.page .pg-page-content p,
body.page .pg-page-content ul,
body.page .pg-page-content ol {
    color: #2b2622 !important;
    font-size: 18px !important;
    line-height: 1.78 !important;
    margin-bottom: 1.2em;
    position: static !important;
    text-align: left !important;
    text-shadow: none !important;
    transform: none !important;
}

body.page .pg-page-content h2 {
    color: #151515;
    font-size: 30px;
    line-height: 1.2;
    margin: 38px 0 16px;
    position: static !important;
    text-shadow: none !important;
}

body.page .pg-page-content > h2:first-child,
body.page .pg-page-content > h3:first-child {
    margin-top: 0;
}

body.page .pg-page-content h3 {
    color: #151515;
    font-size: 24px;
    line-height: 1.25;
    margin: 28px 0 12px;
    position: static !important;
    text-shadow: none !important;
}

body.page .pg-page-content a {
    color: #f45108;
    font-weight: 800;
}

body.page .pg-page-recent {
    background: #fff;
    border: 1px solid #f0dfd3;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(78, 48, 21, 0.06);
    margin: 32px auto 0;
    max-width: 1040px;
    padding: 24px;
}

body.page .pg-footer {
    margin-top: 0;
}

body.home .pg-seasonal-wide,
body.front-page .pg-seasonal-wide,
.pg-home .pg-seasonal-wide {
    margin-bottom: 56px !important;
    margin-top: 56px !important;
    padding-bottom: 34px !important;
    padding-top: 28px !important;
}

body.page .pg-page-section-head {
    margin-bottom: 18px;
}

body.page .pg-page-section-head span {
    color: #f45108;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

body.page .pg-page-section-head h2 {
    color: #151515;
    font-size: 28px;
    line-height: 1.15;
    margin: 0;
}

body.page .pg-page-section-head h2::after {
    background: #f45108;
    content: "";
    display: block;
    height: 2px;
    margin-top: 10px;
    width: 42px;
}

body.page .pg-page-recent-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page .pg-page-recent-card {
    background: #fff;
    border: 1px solid #eee3d9;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(30, 20, 10, 0.04);
    overflow: hidden;
}

body.page .pg-page-recent-media {
    aspect-ratio: 16 / 10;
    background: #fff2e8;
    display: block;
    overflow: hidden;
}

body.page .pg-page-recent-media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

body.page .pg-page-recent-body {
    padding: 12px;
}

body.page .pg-page-recent-cat {
    background: #fff1e8;
    border-radius: 5px;
    color: #f45108;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 8px;
    padding: 4px 7px;
    text-decoration: none;
    text-transform: uppercase;
}

body.page .pg-page-recent-card h3 {
    font-size: 17px;
    line-height: 1.3;
    margin: 0;
}

body.page .pg-page-recent-card h3 a {
    color: #151515;
    text-decoration: none;
}

@media (max-width: 820px) {
    body.page .pg-page-recent-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    body.page .pg-page {
        padding-bottom: 18px;
        padding-top: 16px;
    }

    body.page .pg-page-shell {
        padding: 0 10px;
    }

    body.page .pg-page-card,
    body.page .pg-page-recent {
        border-radius: 14px;
    }

    body.page .pg-page-header {
        padding: 34px 18px 38px;
        text-align: left;
    }

    body.page .pg-page-card .pg-page-header h1 {
        font-size: 32px;
        line-height: 1.12;
        margin-top: 18px;
    }

    body.page .pg-page-header p,
    body.page .pg-page-content {
        font-size: 16px;
    }

    body.page .pg-page-content {
        padding: 42px 18px 34px;
    }

    body.page .pg-page-content p,
    body.page .pg-page-content ul,
    body.page .pg-page-content ol {
        font-size: 16px !important;
        line-height: 1.72 !important;
    }

    body.page .pg-page-content h2 {
        font-size: 25px;
    }

    body.page .pg-page-recent {
        padding: 18px;
    }

    body.page .pg-page-recent-grid {
        grid-template-columns: 1fr;
    }

    body.home .pg-seasonal-wide,
    body.front-page .pg-seasonal-wide,
    .pg-home .pg-seasonal-wide {
        margin-bottom: 48px !important;
        margin-top: 48px !important;
        padding-bottom: 36px !important;
        padding-top: 24px !important;
    }
}

@media (max-width: 560px) {
    body.single-post .pg-article-shell.pg-article-shell-recipe-style {
        padding-left: 0;
        padding-right: 0;
    }

    body.single-post .pg-normal-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    body.single-post .pg-article-shell-recipe-style .pg-normal-article,
    body.single-post .pg-article-shell-recipe-style .pg-article-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    body.single-post .pg-article-shell-recipe-style .pg-article-content p,
    body.single-post .pg-article-shell-recipe-style .pg-normal-content p {
        font-size: 16px;
        line-height: 1.72;
    }

    body.single-post .pg-article-shell-recipe-style .pg-normal-featured-image img {
        border-radius: 8px;
    }

    body.single-post .pg-article-shell-recipe-style .pg-normal-share-actions {
        align-items: stretch;
    }

    body.single-post .pg-article-shell-recipe-style .pg-normal-action-rating {
        border-radius: 16px;
        justify-content: center;
        width: 100%;
    }
}
