 :root {
     --color-primary: #C52F33;
     --color-secondary: #FF6A2A;
     --color-off-white: #FFF7F3;
     --color-dark: #3c3c3c;
     --color-gray: #6B6B6B;
     --color-light-gray: #E5E5E5;
     --active-color: #C52F33;
     --inactive-color: #666666;
     --font-weight: 600;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
     color: #333;
     background-color: #FFFFFF;
     line-height: 1.6;
     font-size: 20px;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
     font-weight: 600;
 }


 /* Breadcrumb */
 .breadcrumb-wrapper {
     background-color: #F8F8F8;
     padding: 12px 0;
     margin-bottom: 2rem;
 }

 .breadcrumb {
     background: transparent;
     margin-bottom: 0;
     padding: 0;
     font-size: 0.875rem;
     color: var(--color-gray);
     list-style: none;
     display: flex;
     flex-wrap: wrap;
 }

 .breadcrumb li {
     display: inline-flex;
     align-items: center;
 }

 .breadcrumb li+li::before {
     content: "/";
     color: var(--color-gray);
     padding: 0 0.5rem;
 }

 .breadcrumb a {
     color: var(--color-gray);
     text-decoration: none;
     transition: color 0.3s;
 }

 .breadcrumb a:hover {
     color: var(--color-primary);
 }

 .breadcrumb .current {
     color: var(--color-dark);
 }

 /* Header Section */
 .recipe-header {
     text-align: center;
     margin-bottom: 2.5rem;
 }

 .recipe-title {
     font-size: 3rem;
     font-weight: 700;
     color: var(--color-dark);
     margin-bottom: 1.5rem;
     line-height: 1.2;
     text-align: center
 }

 .author-info {
     display: flex;
     align-items: center;
     justify-content: left;
     gap: 1rem;
 }

 .author-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     object-fit: cover;
 }

 .author-details h4 {
     font-size: 1rem;
     font-weight: 600;
     margin-bottom: 0.25rem;
     margin: 0;
     font-family: 'Inter', sans-serif;
     text-align: left;
 }

 .author-details p {
     font-size: 0.875rem;
     color: var(--color-gray);
     margin: 0;
 }

 /* Hero Image */
 .hero-image-wrapper {
     margin-bottom: 2rem;
 }

 .hero-image {
     width: 100%;
     height: auto;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     display: block;
     aspect-ratio: 16/9;
     object-fit: cover;
 }

 .image-caption {
     font-size: 0.875rem;
     color: var(--color-gray);
     font-style: italic;
     margin-top: 0.75rem;
     text-align: left;
 }

 /* Info Card */
 .info-card {
     background: white;
     border-radius: 8px;
     padding: 1.5rem;
     margin-bottom: 2rem;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     position: relative;
     overflow: hidden;
 }

 .info-card::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(135deg, #C52F33 0%, #E0462D 60%, #F06A3C 100%);
 }

 .info-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
 }

 @media(max-width: 767px) {
     .info-grid {
         grid-template-columns: repeat(3, 3fr) !important;
     }
 }

 .info-item {
     text-align: center;
 }

 .info-item i {
     font-size: 1.8rem;
     color: var(--color-primary);
     margin-bottom: 0.5rem;
 }

 .info-item .label {
     font-size: 0.875rem;
     color: var(--color-gray);
     display: block;
     margin-bottom: 0.25rem;
 }

 .info-item .value {
     font-size: 1rem;
     font-weight: 600;
     color: var(--color-dark);
 }

 /* Content */
     font-size: 20px;
     line-height: 1.8;
     color: #333;
     margin-bottom: 3rem;
 }

 .recipe-content p {
     margin-bottom: 1.5rem;
 }

/* Ingredients Section */
.ingredients-section {
    background: linear-gradient(135deg, #FFF7F3 0%, #FFFFFF 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(197, 47, 51, 0.1);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #C52F33 0%, #E0462D 60%, #F06A3C 100%);
}

.ingredients-list-wrapper {
    margin-top: 1.5rem;
}

.ingredients-list-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.ingredients-list-title:first-child {
    margin-top: 0;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.ingredients-grid li {
    list-style: none;
    margin: 0;
}

.ingredient-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px 0;
}

.ingredient-item:hover {
    border-color: rgba(197, 47, 51, 0.2);
    background: rgba(255, 247, 243, 0.5);
    transform: translateX(4px);
}

.ingredient-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--color-primary);
    transition: transform 0.2s ease;
}

.ingredient-item input[type="checkbox"]:checked {
    transform: scale(1.1);
}

.ingredient-item label {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--color-dark);
    cursor: pointer;
    margin: 0;
    user-select: none;
    transition: all 0.3s ease;
    width: 100%;
}

.ingredient-item input[type="checkbox"]:checked + label,
.ingredient-item:has(input[type="checkbox"]:checked) label {
    color: var(--color-primary);
    text-decoration: line-through;
    opacity: 0.7;
}

/* Preparation Steps */
.preparation-section {
    margin-bottom: 4rem;
}

.preparation-section .section-title {
    margin-bottom: 2rem;
}

.preparation-list-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.preparation-list-title:first-child {
    margin-top: 0;
}

.step-card {
    display: flex;
    gap: 1.75rem;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    margin-bottom: 1.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #C52F33 0%, #E0462D 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(197, 47, 51, 0.2);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #C52F33 0%, #E0462D 60%, #F06A3C 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(197, 47, 51, 0.3);
    transition: transform 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.step-content {
    flex: 1;
    align-items: center;
    display: flex;
    padding-top: 0.5rem;
}

.step-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-dark);
    margin: 0;
}

 /* Print Button */
 .print-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.75rem 2rem;
     border: 2px solid var(--color-dark);
     background: transparent;
     color: var(--color-dark);
     border-radius: 8px;
     font-size: 1rem;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s;
     text-decoration: none;
 }

 .print-btn:hover {
     background: var(--color-dark);
     color: white;
 }


 /* Sidebar */
 .sidebar-widget {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
     margin-bottom: 2rem;
 }

 .widget-header {
     background: linear-gradient(135deg, #C52F33 0%, #E0462D 60%, #F06A3C 100%);
     color: white;
     padding: 1rem 1.5rem;
     font-size: 1.25rem;
     font-weight: 600;
     font-family: 'Open Sans', sans-serif;
 }

 .widget-content {
     padding: 1.5rem;
 }

 .recipe-item {
     display: flex;
     gap: 1rem;
     margin-bottom: 1.5rem;
     padding-bottom: 1.5rem;
     border-bottom: 1px solid var(--color-light-gray);
 }

 .recipe-item:last-child {
     margin-bottom: 0;
     padding-bottom: 0;
     border-bottom: none;
 }

 .recipe-thumb {
     width: 80px;
     height: 80px;
     border-radius: 8px;
     object-fit: cover;
     flex-shrink: 0;
 }

 .recipe-info h5 {
     font-size: 0.9375rem;
     font-weight: 600;
     margin: 0 !important;
     line-height: 1.3;
     font-family: 'Opens sans', sans-serif;
 }

 .recipe-info h5 a {
     color: var(--color-dark);
     text-decoration: none;
     transition: color 0.3s;
 }

 .recipe-info h5 a:hover {
     color: var(--color-primary);
 }

 .recipe-info .date {
     font-size: 0.8125rem;
     color: var(--color-gray);
 }

 .subscribe-btn {
     width: 100%;
     padding: 0.875rem;
     background: linear-gradient(135deg, #C52F33 0%, #E0462D 60%, #F06A3C 100%);
     color: white;
     border: none;
     border-radius: 8px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: transform 0.3s, box-shadow 0.3s;
 }

 .subscribe-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(197, 47, 51, 0.3);
 }

 /* Responsive */
 @media (max-width: 991px) {
     .recipe-title {
         font-size: 2.25rem;
     }

     .info-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 1rem;
     }

    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ingredients-section {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .recipe-title {
        font-size: 1.875rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
        align-self: flex-start;
    }

     .related-posts-grid {
         grid-template-columns: 1fr;
     }
 }

 .receitas-sidebar-sticky {
     position: sticky !important;
     top: 24px !important;
 }

 .widget {
     margin-bottom: 0 !important;
 }

.ad {
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    background: #F5F5F5;
    border-radius: 4px;
    padding-top: 24px;
}

/* Só mostra "Publicidade" no .ad mais externo */
.ad::before {
    content: 'Publicidade';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #AAAAAA;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.ad .ad {
    background: transparent;
    padding-top: 0;
    border-radius: 0;
}

.ad .ad::before {
    display: none;
}

.ad-truvid {
    width: 100%;
    min-height: 360px;
    margin: 10px 0;
}

@media (max-width: 778px) {
    .ad-truvid {
        min-height: 200px;
    }
}

@media (max-width: 778px) {
    .ad-mobile-disabled {
        display: none;
    }
}

.ad-300x250 {
    width: auto;
    min-height: 250px;
    margin: 15px auto;
    text-align: center;
}

.ad-300x600 {
    width: auto;
    min-height: 600px;
    text-align: center;
}

.ad-970x250 {
    max-width:970px;
    min-height: 250px;
    margin: 20px auto;
    text-align: center;
	
}

@media (max-width: 992px) {
    .ad-970x250 {
        width: 728px;
        height: 90px;
    }
}

@media (max-width: 727px) {
    .ad-970x250 {
        width: 320px;
        height: 50px;
    }
}

 /* Taxonomy badges (mais bonito + espaçamento em cima/baixo) */
 .recipe-taxonomy {
     margin: 3rem 0;
     /* margem em cima e embaixo */
     padding: 1.5rem 0;
     border-top: 1px solid rgba(0, 0, 0, 0.06);
     border-bottom: 1px solid rgba(0, 0, 0, 0.06);
 }

 .recipe-taxonomy__header {
     display: flex;
     align-items: baseline;
     justify-content: space-between;
     gap: 12px;
     margin-bottom: 1rem;
 }

 .recipe-taxonomy__title {
     font-size: 1.25rem;
     font-weight: 800;
     letter-spacing: -0.01em;
     margin: 0;
     color: var(--color-dark);
 }

 .recipe-taxonomy__subtitle {
     font-size: 0.9rem;
     margin: 0;
     color: var(--color-gray);
 }


 .receita-relacionados {
     margin: 2rem 0;
 }

 .receita-relacionados__header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 1rem;
 }

 .receita-relacionados__title {
     margin: 0;
     font-size: 1.25rem;
     font-weight: 700;
 }

 /* Card horizontal */
 .receita-card.receita-card--horizontal {
     display: flex;
     align-items: center;
     gap: 12px;
     text-decoration: none;
     border-radius: 12px;
     overflow: hidden;
     background: #fff;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
     padding: 12px;
 }

 .receita-card__thumb {
     flex: 0 0 72px;
     width: 72px;
     height: 72px;
     border-radius: 10px;
     overflow: hidden;
     background: #f2f2f2;
 }

 .receita-card__img {
     width: 100%;
     height: 100%;
     display: block;
     object-fit: cover;
 }

 .receita-card__img--placeholder {
     width: 100%;
     height: 100%;
     background: #e9e9e9;
 }

 .receita-card__body {
     flex: 1;
     min-width: 0;
     /* permite ellipsis */
 }

 .receita-card__title {
     color: #2A2A2A;
     font-size: 0.95rem;
     font-weight: 600;
     line-height: 1.35;

     /* corta título longo */
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 /* Ajuste dos controles do Swiper */
 .receitas-related-swiper .swiper-button-next,
 .receitas-related-swiper .swiper-button-prev {
     width: 36px;
     height: 36px;
 }

 .receitas-related-swiper .swiper-button-next:after,
 .receitas-related-swiper .swiper-button-prev:after {
     font-size: 16px;
 }




 .recipe-nav-sticky-wrapper {

     border-bottom: 1px solid #eee;
     padding: 10px 0;
     margin: 15px 0;
 }

 .recipe-nav-sticky {
     display: flex;
     gap: 30px;
     margin: 0;
     padding: 0;
 }

 .recipe-nav-item {
     text-decoration: none;
     color: var(--inactive-color);
     font-size: 16px;
     font-weight: var(--font-weight);

     position: relative;
     padding-bottom: 10px;
     transition: color 0.3s ease;
 }

 .recipe-nav-item:hover {
     color: var(--active-color);
 }

 .recipe-nav-item.active {
     color: var(--active-color);
 }

 .recipe-nav-item.active::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 100%;
     height: 2px;
     background-color: var(--active-color);
 }

 /* ============================
   RELATED POSTS (Receitas)
   ============================ */

 #related-post.related-posts {
     margin-top: 24px;
 }

 #related-post>h3 {
     margin: 0 0 14px 0;
     font-weight: 700;
     font-size: 18px;
     line-height: 1.2;
 }

 /* Espaçamento entre itens */
 #related-post .row>[class*="col-"] {
     margin-bottom: 12px;
 }

 /* Card */
 #related-post .related-card {
     width: 100%;
 }

 #related-post .related-card__link {
     display: flex !important;
     flex-direction: row !important;
     align-items: center;
     gap: 14px;
     width: 100%;
     padding: 14px;
     background: #fff;
     border-radius: 14px;
     text-decoration: none;
     transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
     min-height: 96px;
 }

 #related-post .related-card__link:hover,
 #related-post .related-card__link:focus-visible {
     transform: translateY(-2px);
     box-shadow: 0 14px 34px rgba(0, 0, 0, .10);
     border-color: rgba(0, 0, 0, .14);
     outline: none;
 }

 /* Thumb à esquerda */
 #related-post .related-card__thumb {
     flex: 0 0 200px !important;
     width: 200px;
     height: 200px;
     border-radius: 12px;
     overflow: hidden;
     background: rgba(0, 0, 0, .06);
 }

 #related-post .related-card__img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 #related-post .related-card__thumb--placeholder {
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .02));
 }

 /* Conteúdo à direita */
 #related-post .related-card__content {
     flex: 1 1 auto !important;
     min-width: 0;
 }

 #related-post .related-card__title {
     margin: 0;
     font-size: 24px;
     font-weight: 700;
     line-height: 1.25;
     color: var(--color-primary);

     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 #related-post .related-card__meta {
     margin-top: 8px;
     font-size: 12px;
     line-height: 1.2;
     color: rgba(0, 0, 0, .60);
 }

 /* Mobile */
 @media (max-width: 576px) {
     #related-post .related-card__link {
         padding: 12px;
         gap: 12px;
         min-height: 88px;
     }

     #related-post .related-card__thumb {
         flex-basis: 84px !important;
         width: 84px;
         height: 84px;
     }

     #related-post .related-card__title {
         font-size: 15px;
     }
 }

 /* Action Buttons Header */
 .action-buttons-header {
     display: flex;
     align-items: center;
     gap: 0.75rem;
 }

 .action-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.75rem 1.5rem;
     border: 2px solid var(--color-dark);
     background: transparent;
     color: var(--color-dark);
     border-radius: 50px;
     font-size: 0.9375rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     font-family: 'Open Sans', sans-serif;
 }

 .action-btn i {
     font-size: 1rem;
 }

 .action-btn:hover {
     background: var(--color-dark);
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
 }

 .action-btn--share {
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
     border-color: var(--color-primary);
     color: white;
 }

 .action-btn--share:hover {
     background: linear-gradient(135deg, #A52529 0%, #E55A1F 100%);
 }

 .recipe-meta-info {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     /* joga tudo pro "fim" (embaixo) */
     gap: 16px;
 }

 .recipe-meta-info .author-info {
     flex: 1 1 auto;
 }

 .recipe-meta-info .action-buttons-header {
     margin-left: auto;
     /* garante ir pro lado direito */
     align-self: flex-end;
     /* garante ficar no fundo */
     display: flex;
     gap: 0.75rem;
 }

 /* Mobile: quebra em duas linhas e mantém botões à direita */
 @media (max-width: 768px) {
     .recipe-meta-info {
         flex-wrap: wrap;
     }

     .recipe-meta-info .action-buttons-header {
         width: 100%;
         justify-content: flex-end;
     }
 }

 .brand-poster-swiper {
     margin: 24px 0;
 }

 .brand-poster-swiper__wrap {
     position: relative;
     padding: 0 46px;
     /* espaço pras setas */
 }

 .brand-poster-swiper__swiper {
     overflow: hidden;
 }

 .brand-poster-swiper .swiper-slide {
     width: auto;
 }

 /* CARD alto (poster) */
 .poster-card {
     position: relative;
     display: block;
     width: 260px;
     height: 170px;
     /* MAIS ALTO */
     border-radius: 16px;
     overflow: hidden;
     text-decoration: none;
     box-shadow: 0 14px 36px rgba(0, 0, 0, .14);
     transform: translateZ(0);
 }


 .poster-card__bg {
     position: absolute;
     inset: 0;
     background-size: cover;
     background-position: center;
     transform: scale(1.02);
     transition: transform .35s ease;
 }

 /* sombra para legibilidade (mais editorial) */
 .poster-card__shade {
     position: absolute;
     inset: 0;
     background:
         linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .35) 60%, rgba(0, 0, 0, .70) 100%);
 }

 /* selo (logo) - obrigatório no design */
 .poster-card__seal {
     position: absolute;
     left: 14px;
     top: 14px;
     width: 48px;
     height: 48px;
     border-radius: 999px;
     background: rgba(255, 255, 255, .96);
     box-shadow: 0 10px 24px rgba(0, 0, 0, .20);
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 7px;
     border: 2px solid var(--color-primary);
 }

 .poster-card__seal img {
     max-width: 100%;
     max-height: 100%;
     display: block;
 }

 .poster-card__footer {
     position: absolute;
     left: 0;
     right: 0;
     bottom: 0;
     padding: 14px 14px 14px 14px;
 }

 .poster-card__title {
     color: #fff;
     font-weight: 900;
     font-size: 14px;
     line-height: 1.15;
     text-transform: uppercase;
     letter-spacing: .3px;
     text-shadow: 0 2px 14px rgba(0, 0, 0, .45);

     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .poster-card:hover {
     box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
 }

 .poster-card:hover .poster-card__bg {
     transform: scale(1.08);
 }

 /* SETAS */
 .poster-nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 40px;
     height: 40px;
     border-radius: 999px;
     border: 0;
     background: linear-gradient(135deg, #C52F33 0%, #E0462D 60%, #F06A3C 100%);
     box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
     cursor: pointer;
     z-index: 7;
     color: white
 }

 .poster-nav--prev {
     left: 6px;
 }

 .poster-nav--next {
     right: 6px;
 }

 .poster-nav::after {
     content: "";
     position: absolute;
     left: 50%;
     top: 50%;
     width: 10px;
     height: 10px;
     border-right: 2px solid rgba(0, 0, 0, .65);
     border-bottom: 2px solid rgba(0, 0, 0, .65);
     color: white
 }

 .poster-nav--prev::after {
     transform: translate(-40%, -50%) rotate(135deg);
 }

 .poster-nav--next::after {
     transform: translate(-60%, -50%) rotate(-45deg);
 }

 /* Responsivo */
 @media (max-width: 576px) {
     .brand-poster-swiper__wrap {
         padding: 0 40px;
     }

     .poster-card {
         width: 100px;
         height: 100px
     }

     .poster-card__seal {
         left: 25px;
         top: -9px;
         width: 44px;
         height: 44px;
     }

     .poster-card__title {
         font-size: 9px;
     }
 }


 .recipe-tax-badge {
     margin: 0 0 10px 0;
 }

 .recipe-tax-badge a {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 7px 14px;
     border-radius: 999px;

     background: linear-gradient(135deg, #C52F33 0%, #E0462D 60%, #F06A3C 100%);

     color: white;

     font-weight: 800;
     font-size: 12px;
     text-decoration: none;
     text-transform: uppercase;
     letter-spacing: .35px;
     line-height: 1;
 }

 .recipe-tax-badge a:hover {
     background: rgba(0, 0, 0, .10);
 }

.recipe-tax-badge i {
    font-size: 14px;
    line-height: 1;
}


