:root {
    --page-bg: #e8e0d2;
    --panel-bg: #ebe3d5;
    --surface: #f7f0e6;
    --text-dark: #1d140d;
    --text-light: #fff8ef;
    --muted-light: rgba(255, 248, 239, 0.82);
    --line-light: rgba(255, 248, 239, 0.18);
    --brand-green: #2d7c38;
    --brand-green-dark: #24682f;
    --brand-gold: #f1bd19;
    --shadow-soft: 0 20px 60px rgba(25, 15, 6, 0.18);
    --shadow-hero: 0 24px 90px rgba(12, 7, 3, 0.24);
    --container: min(100% - 64px, 1380px);
    --radius-pill: 18px;
    --font-body: "poppins", sans-serif;
    --font-display: "arial-narrow", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text-dark);
    font-family: var(--font-body);
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-stat strong,
.historia-stat strong {
    font-family: var(--font-display);
    font-weight: 700;
}

.flaibam-page {
    min-height: 100vh;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 25;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: #35c759;
    box-shadow: 0 18px 40px rgba(28, 86, 40, 0.28);
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    background: #2eb34f;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 46px rgba(28, 86, 40, 0.34);
}

.floating-whatsapp img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(232, 224, 210, 0.94);
    border-bottom: 1px solid rgba(61, 40, 18, 0.08);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    box-shadow: 0 14px 40px rgba(35, 21, 11, 0.12);
}

.site-header__inner {
    width: var(--container);
    min-height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-header__brand {
    flex: 0 0 auto;
}

.site-header__brand img {
    width: 124px;
    height: auto;
}

.site-header__nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-header__nav a,
.site-header__cta,
.mobile-menu__nav a {
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.site-header__cta,
.mobile-menu__cta,
.mobile-menu__close,
.button,
.section-contato button,
.section-contato__info-side a,
.section-folder-final a {
    font-family: var(--font-display);
    font-weight: 700;
}

.site-header__nav a {
    position: relative;
}

.site-header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--brand-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.site-header__nav a:hover::after,
.site-header__nav a:focus-visible::after {
    transform: scaleX(1);
}

.site-header__cta,
.mobile-menu__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    background: var(--brand-green);
    color: #fff;
    box-shadow: 0 10px 24px rgba(45, 124, 56, 0.28);
    transition: background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible,
.mobile-menu__cta:hover,
.mobile-menu__cta:focus-visible {
    background: var(--brand-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(36, 104, 47, 0.3);
}

.site-header__toggle {
    display: none;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: rgba(45, 124, 56, 0.08);
    cursor: pointer;
}

.site-header__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--text-dark);
    border-radius: 999px;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(14, 8, 4, 0.72);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu__panel {
    width: min(100%, 360px);
    padding: 28px 24px;
    border-radius: 24px;
    background: #1b120b;
    color: var(--text-light);
    box-shadow: var(--shadow-hero);
}

.mobile-menu__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-left: auto;
    padding: 0 14px;
    border: 1px solid rgba(255, 248, 239, 0.14);
    border-radius: 999px;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
}

.mobile-menu__nav {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.mobile-menu__nav a {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 248, 239, 0.12);
}

.mobile-menu__nav .mobile-menu__cta {
    margin-top: 6px;
    border-bottom: 0;
}

.hero-section {
    position: relative;
    min-height: calc(100vh - 74px);
    overflow: hidden;
    background: #1b120b;
    box-shadow: var(--shadow-hero);
}

.hero-section__media,
.hero-section__shade {
    position: absolute;
    inset: 0;
}

.hero-section__media {
    background-image: url("../../build/img/site/capa.jpg");
    background-size: cover;
    background-position: center right;
    transform: scale(1.02);
}

.hero-section__shade {
    background:
        linear-gradient(90deg, rgba(8, 5, 3, 0.84) 0%, rgba(18, 10, 5, 0.68) 27%, rgba(23, 13, 8, 0.18) 57%, rgba(18, 10, 5, 0.08) 100%),
        linear-gradient(180deg, rgba(10, 6, 3, 0.14) 0%, rgba(10, 6, 3, 0.28) 100%);
}

.hero-section__content {
    position: relative;
    z-index: 1;
    width: var(--container);
    min-height: calc(100vh - 74px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 72px 0 64px;
}

.hero-section__copy {
    width: min(100%, 560px);
    color: var(--text-light);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 0 0 18px;
    padding: 0 20px;
    border-radius: 999px;
    background: rgba(137, 98, 10, 0.6);
    color: #ffd451;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-section h1 {
    margin: 0;
    font-size: clamp(3.6rem, 6vw, 5.6rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
    text-transform: none;
}

.hero-section h1 span {
    display: inline;
    color: var(--brand-gold);
}

.hero-section__description {
    max-width: 520px;
    margin: 22px 0 0;
    color: var(--muted-light);
    font-size: 1.16rem;
    line-height: 1.65;
}

.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button--outline {
    border-color: rgba(241, 189, 25, 0.82);
    background: rgba(0, 0, 0, 0.24);
    color: #ffd451;
}

.button--outline:hover,
.button--outline:focus-visible {
    background: rgba(241, 189, 25, 0.12);
}

.button--solid {
    background: var(--brand-green);
    color: #fff;
    box-shadow: 0 12px 28px rgba(45, 124, 56, 0.28);
}

.button--solid:hover,
.button--solid:focus-visible {
    background: var(--brand-green-dark);
    box-shadow: 0 16px 38px rgba(36, 104, 47, 0.32);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 58px;
    padding-top: 26px;
    border-top: 1px solid var(--line-light);
}

.hero-stat strong {
    display: block;
    color: var(--brand-gold);
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
}

.hero-stat span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 248, 239, 0.94);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.section-diferenciais {
    padding: 86px 0 96px;
    background: linear-gradient(180deg, rgba(232, 224, 210, 1) 0%, rgba(244, 235, 223, 1) 100%);
}

.section-diferenciais__inner,
.section-preview__inner {
    width: var(--container);
    margin: 0 auto;
}

.section-diferenciais__intro {
    max-width: 760px;
}

.section-diferenciais__eyebrow,
.section-preview__eyebrow {
    margin: 0 0 10px;
    color: var(--brand-green);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-diferenciais h2,
.section-preview h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.section-diferenciais h2 span {
    display: block;
}

.section-diferenciais__text,
.section-preview__text {
    max-width: 760px;
    margin: 20px 0 0;
    color: rgba(29, 20, 13, 0.72);
    font-size: 1.04rem;
    line-height: 1.75;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
}

.diferencial-card {
    position: relative;
    min-height: 320px;
    padding: 28px 24px 122px;
    border: 1px solid rgba(61, 40, 18, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.diferencial-card__icon {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 0 0 20px 0;
    background: rgba(255, 255, 255, 0.22);
}

.diferencial-card__icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.diferencial-card h3 {
    margin: 20px 0 0;
    color: #ffcc00;
    font-size: 2.15rem;
    line-height: 0.96;
    letter-spacing: -0.02em;
}

.diferencial-card p {
    margin: 16px 0 0;
    color: rgba(29, 20, 13, 0.74);
    font-size: 1rem;
    line-height: 1.72;
}

.section-historia {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    background: #120a06;
}

.section-historia__media,
.section-historia__overlay {
    position: absolute;
    inset: 0;
}

.section-historia__media {
    background-image: url("../../build/img/site/ingredientes.jpg");
    background-size: cover;
    background-position: center center;
    transform: scale(1.02);
}

.section-historia__overlay {
    background:
        linear-gradient(180deg, rgba(6, 4, 2, 0.18) 0%, rgba(7, 4, 2, 0.46) 58%, rgba(5, 3, 2, 0.82) 100%),
        linear-gradient(90deg, rgba(8, 5, 3, 0.3) 0%, rgba(8, 5, 3, 0.12) 42%, rgba(8, 5, 3, 0.32) 100%);
}

.section-historia__inner {
    position: relative;
    z-index: 1;
    width: var(--container);
    min-height: 720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 430px);
    justify-content: space-between;
    align-items: start;
    gap: 56px;
    padding: 42px 0 72px;
}

.historia-card {
    margin-top: 28px;
    padding: 28px 26px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(239, 233, 223, 0.96);
    box-shadow: 0 26px 60px rgba(10, 6, 3, 0.28);
}

.historia-card__eyebrow {
    margin: 0 0 8px;
    color: var(--brand-green);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.historia-card h2 {
    margin: 0;
    color: #17100a;
    font-size: clamp(2.7rem, 4.2vw, 4rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
}

.historia-card h2 span {
    display: block;
}

.historia-card p {
    margin: 22px 0 0;
    color: rgba(23, 16, 10, 0.78);
    font-size: 1rem;
    line-height: 1.7;
}

.historia-card__purpose strong {
    color: #17100a;
}

.historia-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 52px;
    padding-top: 58px;
}

.historia-stat {
    position: relative;
    padding-top: 12px;
}

.historia-stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 248, 239, 0.18);
}

.historia-stat strong {
    display: block;
    color: #ffcc00;
    font-size: clamp(2.2rem, 3vw, 3rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
}

.historia-stat span {
    display: block;
    margin-top: 2px;
    color: rgba(255, 248, 239, 0.95);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.section-preview {
    padding: 0 0 104px;
    background: linear-gradient(180deg, rgba(244, 235, 223, 1) 0%, rgba(245, 237, 225, 1) 100%);
}

.section-portfolio {
    padding: 84px 0 88px;
    background: #f3efe8;
}

.section-portfolio__inner {
    width: var(--container);
    margin: 0 auto;
}

.section-portfolio__intro {
    max-width: 780px;
}

.section-portfolio__eyebrow {
    margin: 0 0 10px;
    color: var(--brand-green);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-portfolio h2 {
    margin: 0;
    color: #17100a;
    font-size: clamp(2.7rem, 4.5vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.section-portfolio__text {
    margin: 16px 0 0;
    color: rgba(29, 20, 13, 0.64);
    font-size: 1.06rem;
    line-height: 1.7;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.portfolio-card {
    position: relative;
    min-height: 190px;
    padding: 28px 24px 112px;
    border: 1px solid rgba(61, 40, 18, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.34);
}

.portfolio-card__icon {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(36, 23, 11, 0.12);
    font-size: 2rem;
    line-height: 1;
}

.portfolio-card__icon-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1) brightness(0.82) contrast(0.9);
}

.portfolio-card h3 {
    margin: 22px 0 0;
    color: #0f1112;
    font-size: 1.85rem;
    line-height: 0.98;
    letter-spacing: -0.01em;
}

.portfolio-card p {
    margin: 14px 0 0;
    color: rgba(29, 20, 13, 0.64);
    font-size: 1rem;
    line-height: 1.7;
}

.portfolio-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    margin-top: 18px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(226, 219, 205, 0.92);
    color: #1d140d;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-marcas {
    background: #e8e0d2;
}

.section-marcas__inner {
    width: var(--container);
    margin: 0 auto;
}

.section-marca-propria {
    background: #144b34;
}

.section-marca-propria__inner {
    width: var(--container);
    margin: 0 auto;
}

.section-contato {
    background: #e8e0d2;
}

.section-contato__inner {
    width: var(--container);
    margin: 0 auto;
}

.section-folder-final__inner,
.site-footer-final__inner {
    width: var(--container);
    margin: 0 auto;
}

.section-contato__ornament {
    position: absolute;
    right: -140px;
    top: -86px;
    width: min(38vw, 410px);
    pointer-events: none;
}

.section-contato__ornament img {
    display: block;
    width: 100%;
    height: auto;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.preview-card {
    min-height: 220px;
    padding: 26px 24px;
    border: 1px solid rgba(61, 40, 18, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: var(--shadow-soft);
    scroll-margin-top: 110px;
}

.preview-card h3 {
    margin: 0;
    font-size: 2rem;
    line-height: 0.96;
}

.preview-card p {
    margin: 16px 0 0;
    color: rgba(29, 20, 13, 0.72);
    line-height: 1.7;
}

#diferenciais,
#portfolio,
#marcas,
#marca-propria,
#contato {
    scroll-margin-top: 110px;
}

@media (max-width: 1180px) {
    .site-header__inner {
        gap: 20px;
    }

    .site-header__nav {
        gap: 18px;
    }

    .preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .section-historia__inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 38px 0 64px;
    }

    .marcas-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-marca-propria__inner {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .historia-stats {
        max-width: 520px;
        padding-top: 0;
    }
}

@media (max-width: 920px) {
    :root {
        --container: min(100% - 40px, 1380px);
    }

    .site-header__nav,
    .site-header__cta {
        display: none;
    }

    .site-header__toggle {
        display: inline-block;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-section__media {
        background-position: 72% center;
    }

    .hero-section__shade {
        background:
            linear-gradient(180deg, rgba(10, 6, 3, 0.28) 0%, rgba(10, 6, 3, 0.64) 42%, rgba(10, 6, 3, 0.82) 100%),
            linear-gradient(90deg, rgba(10, 6, 3, 0.74) 0%, rgba(10, 6, 3, 0.1) 100%);
    }

    .hero-section__content {
        min-height: auto;
        align-items: flex-end;
        padding: 72px 0 42px;
    }

    .hero-section__copy {
        width: 100%;
        max-width: 620px;
    }

    .hero-stats {
        gap: 18px;
    }

    .diferencial-card {
        min-height: auto;
        padding-bottom: 116px;
    }

    .section-historia {
        min-height: auto;
    }

    .section-historia__inner {
        min-height: auto;
        width: var(--container) !important;
        grid-template-columns: 1fr !important;
        justify-content: initial !important;
        align-items: start !important;
        gap: 24px !important;
        padding: 34px 0 56px !important;
    }

    .section-historia__media {
        background-position: center bottom;
    }

    .historia-card {
        width: 100% !important;
        margin-top: 0 !important;
    }

    .historia-stats {
        width: 100%;
        max-width: none;
        grid-template-columns: 1fr 1fr !important;
        gap: 22px 20px !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
        align-self: start !important;
    }

    .section-contato__inner {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .section-contato__ornament {
        right: -120px;
        top: -52px;
        width: min(44vw, 320px);
        opacity: 0.92;
    }

    .section-folder-final__inner,
    .site-footer-final__inner {
        width: var(--container);
    }
}

@media (max-width: 680px) {
    :root {
        --container: min(100% - 28px, 1380px);
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 58px;
        height: 58px;
    }

    .floating-whatsapp img {
        width: 34px;
        height: 34px;
    }

    .site-header__inner {
        min-height: 70px;
    }

    .site-header__brand img {
        width: 112px;
    }

    .hero-section__content {
        padding: 56px 0 34px;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 0 16px;
    }

    .hero-section h1 {
        font-size: clamp(3rem, 13vw, 4rem);
    }

    .hero-section__description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-section__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }

    .section-portfolio {
        padding: 64px 0 68px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card {
        min-height: auto;
        padding: 24px 18px 96px;
    }

    .portfolio-card h3 {
        font-size: 1.6rem;
    }

    .portfolio-card__icon {
        right: 18px;
        bottom: 18px;
        width: 62px;
        height: 62px;
        font-size: 1.7rem;
    }

    .preview-card {
        min-height: auto;
    }

    .historia-card {
        margin-top: 20px;
        padding: 24px 20px 24px;
    }

    .historia-card h2 {
        font-size: clamp(2.3rem, 11vw, 3.2rem);
    }

    .historia-stats {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-top: 0 !important;
    }

    .historia-stat {
        padding-top: 10px;
    }

    .historia-stat span {
        font-size: 0.76rem;
    }

    .section-marcas {
        padding: 56px 0 84px !important;
    }

    .section-marcas__inner {
        width: var(--container);
    }

    .section-marca-propria {
        padding: 62px 0 72px !important;
    }

    .section-marca-propria__inner {
        width: var(--container);
    }

    .section-contato {
        padding: 60px 0 74px !important;
    }

    .section-contato__inner {
        width: var(--container);
    }

    .section-contato__ornament {
        display: none;
    }

    .section-folder-final {
        padding: 26px 0 28px !important;
    }

    .section-folder-final__inner {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .site-footer-final {
        padding: 28px 0 24px !important;
    }

    .site-footer-final__inner {
        grid-template-columns: 1fr !important;
    }
}
