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

:root {
    --prim: #C65022;
    --sec: #C7905F;
    --txt: #686868;
    --dark: #462613;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--txt);
}

h1 {
    font-size: 34px;
    font-weight: 700;
    color: var(--prim);
}

table {
    width: 100%;
    margin: 30px 0;
}

table th {
    background: var(--prim);
    padding: 5px 10px;
    color: #fff;
    font-size: 20px;
}

table th td {
    padding: 5px 10px;
}

table tr td {
    padding: 5px 10px;
}

tr:nth-child(even) {
    background: #efefef;
}

tr:nth-child(odd) {
    background: #fcfcfc;
}

article ol {
    padding: 0 0 20px 20px;
    font-size: 18px;
    font-weight: 300;
}

article ol li {
    list-style-type: decimal;
    line-height: 180%;

}

article ul {
    padding: 0 0 20px 20px;
    font-size: 18px;
    font-weight: 300;
}

article ul li {
    list-style-type: disc;
    line-height: 180%;

}

article ul li ul li {
    list-style-type: circle;
}

article h3 {
    color: var(--sec);
    margin-bottom: 20px;
}

article h4 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 18px;
}

article p a,
article ol a,
article ul a {
    color: blue;
    transition: all ease .2s;
    word-wrap: break-word;
}

article p a:hover,
article ol a:hover,
article ul a:hover {
    opacity: 0.8;
}

article ol {
    padding: 0 0 20px 20px;
    font-size: 18px;
    font-weight: 300;
}

article ol li {
    list-style-type: decimal;
    line-height: 180%;

}

article ul {
    padding: 0 0 20px 20px;
    font-size: 18px;
    font-weight: 300;
}

article ul li {
    list-style-type: disc;
    line-height: 180%;

}

article ul li ul li {
    list-style-type: circle;
}

article h3 {
    color: var(--sec);
    margin-bottom: 20px;
}

article h4 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 18px;
}

article p a,
article ol a,
article ul a {
    color: blue;
    transition: all ease .2s;
    word-wrap: break-word;
}

article p a:hover,
article ol a:hover,
article ul a:hover {
    opacity: 0.8;
}

.nopadding {
    padding: 0;
}

.nomargin {
    margin: 0;
}

.container,
main {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}

header {
    border-bottom: solid 1px var(--sec);
    padding: 10px 0;
    display: flex;
    align-items: center;
    background: #FFFFFF;
}

header nav {
    display: grid;
    grid-template-columns: 280px 1fr 100px;
}

header .logo img {
    width: 100%;
    height: auto;
}

header .menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

header ul li {
    list-style: none;
    display: inline-block;
    margin: 0 5px;
}

header .menu a {
    color: var(--prim);
    font-weight: 500;
    text-decoration: none;
    transition: all ease-in-out 0.3s;
}

header .menu a:hover {
    color: var(--sec);
}

header .search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header .search a {
    transition: all ease-in-out 0.3s;
}

header .search a:hover path {
    fill: var(--sec);
}

header .search #bt-menu {
    margin: 0 0 0 15px;
    display: none;
}

section {
    padding: 40px 0;
}

.img-noticia {
    display: block;
    width: 100%;
    height: 100%;
}

.card .image {
    overflow: hidden;
}

.card a {
    text-decoration: none;
}

.card .cardcategory {
    color: var(--prim);
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: "Cookie", cursive;
    font-size: 24px;
}

.card h2 a {
    color: var(--dark);
    letter-spacing: -3.5%;
    font-weight: 600;
    line-height: 120%;
    transition: all ease .2s;
}

.card h2 a:hover {
    color: var(--sec);
}

.destaques {
    display: grid;
    grid-template-columns: 480px 1fr;
    grid-gap: 40px;
}

.destaque .card {
    border: solid 1px var(--sec);
}

.destaque .card .text {
    padding: 20px;
}

.destaque .image {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.destaque .img-noticia {
    display: block;
    width: 100%;
    height: 100%;
}

.img-responsive {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


.destaque .card img {
    max-width: 480px;
    width: 100%;
    height: auto;
}

.destaque h2 {
    font-size: 32px;
    line-height: 37px;
}

.recentes {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-gap: 40px;
}

.recentes .card {
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-gap: 20px;
    justify-content: center;
    align-items: center;
    border: solid 1px var(--sec);
}

.recentes .card .image {
    height: 100%;
}

.recentes .card img {
    width: auto;
    height: 100%;
}

.recentes h2 {
    font-size: 24px;
    line-height: 28px;
}

.recentes .card .text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

.border-gray {
    border-bottom: 1px solid #E1E2EF;
}

.blogcontent {
    display: grid;
    grid-template-columns: 1fr 370px;
    grid-gap: 40px;
    padding-bottom: 20px;
}

article .card {
    display: grid;
    grid-template-columns: 350px 1fr;
    grid-gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border: solid 1px var(--sec);
    box-shadow: 0px 3.44828px 13.7931px -2.24138px rgba(38, 38, 38, 0.07);
}

article .card .text {
    padding: 0 20px 0 0;
}

article .card .image {
    max-height: 220px;
}

article .card img {
    max-width: 350px;
    width: 100%;
    height: auto;
}

aside h2 {
    color: var(--prim);
    border-bottom: solid 1px #BFACAA;
    padding-bottom: 7px;
    margin-bottom: 20px;
    font-family: "Cookie", cursive;
    font-size: 46px;
    letter-spacing: 1px;
}

aside img {
    width: 100%;
    height: auto;
}

aside .card {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

aside .card a {
    color: #14080E;
    font-size: 18px;
    line-height: 21px;
}

aside .widget_media_image a {
    margin-bottom: 20px;
    display: inline-block;
}

.widget_custom_html {
    text-align: center;
    margin: 15px 0;
}

.oldcontent {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.oldcontent .card {
    max-width: 350px;
    margin-bottom: 40px;
    border: solid 1px var(--sec);
}

.oldcontent .card .text {
    padding: 20px;
}

.oldcontent .image {
    max-height: 220px;
}

.oldcontent .card img {
    max-width: 350px;
    width: 100%;
    height: auto;
}

.oldcontent h2 {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -3.5%;
}

.breadcrumbs {
    margin-top: 20px;
    margin-bottom: 20px;
    color: var(--txt);
    font-size: 12px;
    font-weight: 500;
}

.breadcrumbs a {
    color: var(--sec);
    text-decoration: none;
}

.singlecontent p {
    line-height: 160%;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 300;
}

.singlecontent strong {
    font-weight: 700 !important;
}

.singlecontent h2 {
    color: var(--prim);
    margin-bottom: 20px;
}

.singlecontent h2 a {
    color: var(--prim);
}

.singlecontent article {
    max-width: 740px;
}

.singlecontent ul {
    padding-bottom: 20px;
}

.singlecontent .img-noticia {
    margin: 20px 0;
    position: relative;
    max-height: 500px;
    display: block;
}

.singlecontent .img-noticia img,
.singlecontent .img-noticia picture {
    width: 100%;
    height: auto;
}

.data-texto {
    font-size: 14px;
    margin: 10px 0 0;
    display: flex;
    align-items: center;
    color: var(--txt);
}

.data-texto svg {
    margin: -2px 5px 0 0;
}

article .relacionados {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

article .relacionados .card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 10px;
}

article .relacionados h2 a {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
}

article .relacionados .image {
    max-height: 100%;
}

article .relacionados .text {
    padding: 20px;
}


article .relacionados .text h2 {
    margin: 0;
}

article .relacionados img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.singlecontent .relacionados .img-noticia {
    margin: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.nota-review-img {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #fff;
    background: #14080E;
    border-radius: 15px 0 0 0;
    padding: 10px 15px 5px;
    font-size: 36px;
    font-weight: 700;
}

.nota-review-img span {
    display: block;
    width: 100%;
    font-size: 20px;
    margin-bottom: -10px;
    text-align: center;
}

.barra-notas {
    background: var(--prim);
    padding: 30px;
    font-weight: bold;
    border-radius: 8px;
    color: #FFF;
}

.barra-notas h2 {
    font-size: 40px;
    color: #FFF;
    letter-spacing: -2px;
    font-weight: 700;
    margin-bottom: 20px;
}

.barra-notas .barra-container {
    background: var(--sec);
    margin-bottom: 20px;
    border-radius: 4px;
}

.barra-notas .barra {
    background: #FFF;
    height: 26px;
    display: block;
    color: #14080E;
    font-weight: 700;
    font-size: 18px;
    padding: 0 10px;
    text-align: right;
    border-radius: 4px;
    line-height: 26px;
    font-family: Arial, Helvetica, sans-serif;
}

.barra-notas .nota-final {
    background: #60d167;
    border-radius: 8px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.barra-notas .num-nota {
    font-size: 80px;
    letter-spacing: -3px;
}

.archive-title {
    margin-bottom: 40px;
}

footer {
    background: var(--prim);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 4px 0 0 0;
}

footer .footer-logo {
    width: 100%;
    height: auto;
    max-width: 150px;
}

footer .menufooter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer .social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

footer .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer li {
    list-style: none;
    display: inline-block;
    margin: 0 5px;
}

footer li a {
    font-weight: 500;
    color: #fff;
}

footer a,
footer path {
    transition: all ease-in-out 0.2s;
    text-decoration: none;
}

footer a:hover {
    color: var(--dark);
}

footer svg {
    margin: 0 3px;
}

footer a:hover path {
    fill: var(--dark);
    color: var(--dark);
}

.modal {
    display: none;
    position: fixed;
    z-index: 30;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: var(--prim);
    color: #FFF;
    font-size: 18px;
    transition: all ease-in-out 0.5s;
}

.modal-content {
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    text-align: center;
}

.search-form input[type=search] {
    height: 60px;
    font-size: 30px;
    color: #FFFFFF;
    padding: 20px;
    border: solid 1px #FFFFFF;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background: none;
    width: 100%;
    max-width: 510px;
}

.search-form input[type=search]::placeholder {
    color: #FFFFFF;
}

.search-submit {
    display: none;
}

.closeSearch {
    color: #FFFFFF;
    float: right;
    font-size: 48px;
    font-weight: bold;
    margin: 0 40px 0 0;
}

.closeSearch:hover,
.closeSearch:focus {
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
}

#snippet-box {
    height: 0;
    border: none !important;
    overflow: hidden;
}

/* Banner Inside Content */
.block-banner img,
.block-banner picture {
    display: inline-block;
    width: 100%;
    height: auto;
}

/* Invisible Content */

.inv {
    width: 0;
    height: 0;
    overflow: hidden;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

    table th td,
    table tr td {
        padding: 5px 5px;
    }

    header .search #bt-menu {
        display: inline-block;
    }

    .container,
    main {
        padding: 0 20px;
        max-width: 530px;
    }

    header .menu {
        display: none;
    }

    header nav {
        grid-template-columns: 220px 1fr;
    }

    article .card .text,
    .recentes .card .text,
    .destaque .card .text,
    .oldcontent .card .text {
        padding: 0 20px 20px 20px;
    }

    .card,
    .card .image {
        margin-bottom: 20px;
    }

    .recentes .card img,
    .blogcontent .card img,
    .oldcontent .card,
    .oldcontent .card img {
        max-width: 540px;
    }

    aside {
        margin: 40px 0 20px;
    }

    .recentes .card,
    article .card,
    .destaques,
    .recentes,
    .blogcontent,
    .oldcontent,
    article .relacionados,
    article .relacionados .card {
        display: block;
    }

    .singlecontent,
    .blogcontent {
        padding-top: 40px;
    }

    .singlecontent img {
        width: 100%;
        height: auto;
    }

    .breadcrumbs {
        display: none;
    }

    footer {
        height: auto;
        padding: 12px 0;
    }

    footer .container {
        flex-direction: column;
        align-items: center;
    }

    footer .container div {
        margin: 5px 0;
    }

    .closeSearch {
        margin-right: 20px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {}

/* Menu Mobile*/
.btn-close {
    top: 16px;
    right: 16px;
    position: absolute;
}

.o-menu {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    align-items: center
}

.o-menu__list {
    display: flex;
    list-style: none
}

.o-menu__item {
    position: relative;
    margin: 0 16px
}

.o-menu__link {
    color: #103440;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-decoration: none;
    white-space: nowrap;
    padding: 20px 0
}

.o-menu .o-button {
    margin: 0
}

@media (max-width:768px) {
    .o-menu {
        display: none
    }
}

.o-menu-mobile {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    padding: 24px;
    background: #fff;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    -webkit-transition: transform 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out;
    -ms-transition: transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    z-index: 10
}

.o-menu-mobile--open {
    display: block;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0)
}

.o-menu-mobile label {
    display: block;
    color: var(--prim);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 8px
}

.o-menu-mobile__list {
    padding: 0;
    margin: 0 0 24px;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr
}

.o-menu-mobile__item {
    margin: 8px 0
}

.o-menu-mobile__link {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    color: #103440
}

.o-menu-mobile__icon {
    margin-right: 8px
}

.o-menu-mobile hr {
    margin: 24px -24px;
    background: #F7F9FC
}

.o-menu-mobile__footer .o-menu-mobile__link {
    font-size: 16px
}

.o-menu-mobile__footer-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%
}

.o-menu-mobile__footer-btn {
    display: block;
    font-size: 16px;
    color: #fff;
    padding: 28px 0;
    text-align: center
}

.o-menu-mobile__footer .btn-tryit {
    width: 100%;
    background: var(--prim);
    font-weight: 700;
    text-decoration: none;
}

/* ---RECEITA BOX--- */

.receita-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 32px;
    margin: 30px 0;
    border: 1px solid rgba(199, 144, 95, 0.2);
}

.receita-foto {
    margin-bottom: 24px;
}

.receita-foto img {
    width: 100%;
    height: auto;
}

.receita-titulo {
    font-size: 28px;
    font-weight: 700;
    color: var(--prim);
    margin-bottom: 16px;
    line-height: 1.2;
}

.receita-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.receita-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(198, 80, 34, 0.08);
    padding: 10px 16px;
    border-radius: 10px;
}

.receita-meta-item svg {
    flex-shrink: 0;
}

.receita-meta-item span {
    font-size: 15px;
    color: var(--txt);
}

.receita-meta-item strong {
    color: var(--prim);
    font-weight: 600;
}

.receita-descricao {
    font-size: 16px;
    color: var(--txt);
    line-height: 1.6;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(199, 144, 95, 0.2);
}

.receita-tela-ativa {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(198, 80, 34, 0.06), rgba(199, 144, 95, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(198, 80, 34, 0.15);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 28px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked+.toggle-slider {
    background: linear-gradient(135deg, var(--prim), var(--sec));
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(24px);
}

.toggle-label {
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
}

.receita-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(199, 144, 95, 0.15);
}

.receita-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 14px;
}

.receita-section-title svg {
    flex-shrink: 0;
}

.receita-section-content {
    font-size: 15px;
    color: var(--txt);
    line-height: 1.7;
}

.receita-section-content ul,
.receita-section-content ol {
    padding-left: 20px;
    margin: 0;
}

.receita-section-content li {
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .receita-box {
        padding: 20px;
        border-radius: 12px;
    }

    .receita-titulo {
        font-size: 22px;
    }

    .receita-meta {
        flex-direction: column;
        gap: 12px;
    }

    .receita-meta-item {
        width: 100%;
        justify-content: flex-start;
    }
}