﻿@font-face {
    font-family: "Geomatrix";
    src: url("../fonts/Geomatrix.woff2") format("woff2"),
         url("../fonts/Geomatrix.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0
    }

    to {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: "Nunito", "Geomatrix", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: #2d8c3e;
    transition: color .15s ease
}

button {
    font-family: inherit
}

ul,
ol {
    list-style: none
}

.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
}

.skip-link:focus {
    position: static;
    width: auto;
    height: auto;
    padding: .75rem 1.25rem;
    background: #2d8c3e;
    color: #fff;
    font-weight: 700;
    z-index: 999;
    clip: unset
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
    line-height: 1.15;
    color: #212121
}

h1 {
    font-size: 3.052rem
}

h2 {
    font-size: 2.441rem
}

h3 {
    font-size: 1.953rem
}

h4 {
    font-size: 1.563rem
}

h5 {
    font-size: 1.25rem
}

h6 {
    font-size: 1rem
}

p {
    line-height: 1.6
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
}

.header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    transition: box-shadow .25s ease
}

.header.header--scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .12)
}

.header.header--scrolled .header__topo {
    max-height: 0;
    overflow: hidden;
    padding: 0
}

.header__topo {
    background: #2d8c3e;
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    transition: max-height .25s ease, padding .25s ease;
    overflow: hidden;
    max-height: 36px
}

.header__topo-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 36px
}

.header__topo-info {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    color: hsla(0, 0%, 100%, .9)
}

.header__topo-info a {
    color: #fff;
    text-decoration: none;
    transition: opacity .15s ease
}

.header__topo-info a:hover {
    opacity: .8
}

.header__topo-info svg {
    flex-shrink: 0
}

.header__topo-separador {
    color: hsla(0, 0%, 100%, .4)
}

.header__topo-social {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem
}

.header__social-link {
    color: hsla(0, 0%, 100%, .85);
    transition: color .15s ease, transform .15s ease
}

.header__social-link:hover {
    color: gold;
    transform: translateY(-1px)
}

.header__nav {
    background: #fff
}

.header__nav-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    gap: 1.5rem
}

.header__logo {
    flex-shrink: 0;
    transition: opacity .15s ease
}

.header__logo img {
    display: block
}

.header__logo:hover {
    opacity: .85
}

.header__menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center
}

@media(max-width: 991px) {
    .header__menu {
        display: none
    }
}

.header__menu-item {
    position: relative
}

.header__menu-item:hover .header__dropdown,
.header__menu-item:focus-within .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.header__menu-item:hover .header__menu-chevron,
.header__menu-item:focus-within .header__menu-chevron {
    transform: rotate(180deg)
}

.header__menu-item:hover .header__menu-link::after,
.header__menu-item:focus-within .header__menu-link::after {
    width: 100%
}

.header__menu-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: .5rem 1rem;
    font-size: .8rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
    transition: color .15s ease
}

.header__menu-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: #2d8c3e;
    width: 0;
    transition: width .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.header__menu-link:hover,
.header__menu-link[aria-expanded=true] {
    color: #2d8c3e
}

.header__menu-link--destaque {
    color: #e91e8c !important
}

.header__menu-link--destaque::after {
    background: #e91e8c
}

.header__menu-link--destaque:hover {
    color: #c2006e !important
}

.header__menu-chevron {
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0
}

.header__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 340px;
    background: hsla(0, 0%, 100%, .97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .14), 0 0 0 1px rgba(0, 0, 0, .06);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s cubic-bezier(0.4, 0, 0.2, 1), visibility .3s cubic-bezier(0.4, 0, 0.2, 1), transform .3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100
}

.header__dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: hsla(0, 0%, 100%, .97);
    border-top: 1px solid rgba(0, 0, 0, .06);
    border-left: 1px solid rgba(0, 0, 0, .06);
    rotate: 45deg
}

.header__dropdown-inner {
    padding: 1.5rem
}

.header__dropdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: .75rem;
    margin-bottom: 1rem
}

.header__dropdown-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: .75rem;
    padding: 1rem .75rem;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: background .15s ease, transform .15s ease
}

.header__dropdown-item:hover {
    background: #e8f5e9;
    transform: translateY(-2px)
}

.header__dropdown-item:hover .header__dropdown-titulo {
    color: #2d8c3e
}

.header__dropdown-icone {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fdf8f2;
    border-radius: 12px;
    overflow: hidden
}

.header__dropdown-icone img {
    width: 48px;
    height: 48px;
    object-fit: contain
}

.header__dropdown-icone--placeholder {
    color: #2d8c3e
}

.header__dropdown-titulo {
    font-size: .64rem;
    font-weight: 900;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: color .15s ease;
    line-height: 1.2
}

.header__dropdown-social {
    border-top: 1px solid #e5e5e5;
    padding-top: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.header__dropdown-social span {
    font-size: .64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #aaa
}

.header__dropdown-social-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: .75rem
}

.header__dropdown-social-links a {
    color: #888;
    transition: color .15s ease, transform .15s ease
}

.header__dropdown-social-links a:hover {
    color: #2d8c3e;
    transform: scale(1.15)
}

.header__acoes {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0
}

.header__acao-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0);
    border: none;
    color: #4a4a4a;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
    text-decoration: none
}

.header__acao-btn:hover {
    background: #e8f5e9;
    color: #2d8c3e
}

.header__acao-btn:focus-visible {
    outline: 3px solid gold;
    outline-offset: 2px;
    border-radius: 4px
}

.header__carrinho {
    position: relative
}

.header__carrinho-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 16px;
    height: 16px;
    background: #e91e8c;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4px;
    line-height: 1;
    animation: pulse 2s ease-in-out infinite
}

.header__conta-dropdown {
    position: relative
}

.header__conta-dropdown:hover .header__conta-menu,
.header__conta-dropdown:focus-within .header__conta-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.header__conta-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    overflow: hidden
}

.header__conta-menu a {
    display: block;
    padding: .75rem 1.25rem;
    font-size: .8rem;
    font-weight: 600;
    color: #4a4a4a;
    text-decoration: none;
    transition: background .15s ease, color .15s ease
}

.header__conta-menu a:hover {
    background: #e8f5e9;
    color: #2d8c3e
}

.header__conta-menu a+a {
    border-top: 1px solid #f5f5f5
}

.header__busca {
    background: #f5f5f5;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s cubic-bezier(0.4, 0, 0.2, 1), padding .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.header__busca.header__busca--aberta {
    max-height: 80px;
    padding: .75rem 0
}

.header__busca-form {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
    gap: .5rem;
    max-width: 600px;
    margin: 0 auto
}

.header__busca-input {
    flex: 1;
    padding: .75rem 1rem;
    font-family: "Nunito", "Geomatrix", sans-serif;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 9999px;
    background: #fff;
    color: #333;
    outline: none;
    transition: border-color .15s ease
}

.header__busca-input:focus {
    border-color: #2d8c3e
}

.header__busca-input::placeholder {
    color: #aaa
}

.header__busca-btn {
    padding: .75rem 1.25rem;
    background: #2d8c3e;
    color: #fff;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background .15s ease
}

.header__busca-btn:hover {
    background: #1a6b2a
}

.header__busca-fechar {
    background: rgba(0, 0, 0, 0);
    border: none;
    font-size: 1.953rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
    padding: 0 .5rem
}

.header__busca-fechar:hover {
    color: #333
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    padding: .5rem
}

@media(max-width: 991px) {
    .header__burger {
        display: flex
    }
}

.header__burger-linha {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center
}

.header__burger[aria-expanded=true] .header__burger-linha:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.header__burger[aria-expanded=true] .header__burger-linha:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.header__burger[aria-expanded=true] .header__burger-linha:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

@media(max-width: 991px) {
    .header__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 90vw);
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 1.5rem;
        overflow-y: auto;
        z-index: 300;
        box-shadow: 0 24px 64px rgba(0, 0, 0, .18);
        transition: right .3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0
    }

    .header__menu.menu--aberto {
        right: 0;
        display: flex
    }

    .header__menu-item {
        width: 100%
    }

    .header__menu-link {
        width: 100%;
        justify-content: space-between;
        padding: 1rem .5rem;
        border-bottom: 1px solid #f5f5f5;
        font-size: 1rem
    }

    .header__dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-radius: 0;
        background: #f5f5f5;
        display: none;
        min-width: unset
    }

    .header__dropdown::before {
        display: none
    }

    .header__dropdown.dropdown--aberto {
        display: block
    }

    .header__dropdown-inner {
        padding: 1rem
    }

    .header__dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .5rem
    }
}

.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 299;
    backdrop-filter: blur(2px);
    animation: fadeIn .25s ease forwards
}

.menu-overlay.overlay--ativo {
    display: block
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 2rem;
    font-family: "Nunito", "Geomatrix", sans-serif;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .03em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 9999px;
    cursor: pointer;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap
}

.btn:focus-visible {
    outline: 3px solid gold;
    outline-offset: 2px
}

.btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none
}

.btn--sm {
    padding: .5rem 1.25rem;
    font-size: .8rem
}

.btn--lg {
    padding: 1rem 3rem;
    font-size: 1.25rem
}

.btn--full {
    width: 100%
}

.btn--primario {
    background: #2d8c3e;
    color: #fff;
    box-shadow: 0 8px 24px rgba(45, 140, 62, .3)
}

.btn--primario:hover {
    background: #1a6b2a;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(45, 140, 62, .4)
}

.btn--primario:active {
    transform: translateY(0)
}

.btn--rosa {
    background: #e91e8c;
    color: #fff;
    box-shadow: 0 8px 24px rgba(233, 30, 140, .3)
}

.btn--rosa:hover {
    background: #c2006e;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(233, 30, 140, .4)
}

.btn--amarelo {
    background: gold;
    color: #212121;
    box-shadow: 0 8px 24px rgba(255, 215, 0, .4)
}

.btn--amarelo:hover {
    background: #e6b800;
    transform: translateY(-2px)
}

.btn--branco {
    background: #fff;
    color: #2d8c3e
}

.btn--branco:hover {
    background: #e8f5e9
}

.btn--outline {
    background: rgba(0, 0, 0, 0);
    border-color: #2d8c3e;
    color: #2d8c3e
}

.btn--outline:hover {
    background: #2d8c3e;
    color: #fff
}

.btn--outline-branco {
    background: rgba(0, 0, 0, 0);
    border-color: hsla(0, 0%, 100%, .6);
    color: #fff
}

.btn--outline-branco:hover {
    background: hsla(0, 0%, 100%, .15);
    border-color: #fff
}

.btn--outline-rosa {
    background: rgba(0, 0, 0, 0);
    border-color: #e91e8c;
    color: #e91e8c
}

.btn--outline-rosa:hover {
    background: #e91e8c;
    color: #fff
}

.btn--carregando {
    pointer-events: none;
    opacity: .8
}

.btn--carregando::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: rgba(0, 0, 0, 0);
    border-radius: 50%;
    animation: spin .6s linear infinite;
    margin-left: .5rem
}

.btn svg {
    flex-shrink: 0
}

.card-produto {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    overflow: hidden;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.card-produto:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .14)
}

.card-produto {
    position: relative
}

.card-produto__imagem-wrap {
    position: relative;
    overflow: hidden;
    background: #fdf8f2;
    border-radius: 16px 16px 0 0;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center
}

.card-produto__imagem {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform .4s ease;
    display: block
}

.card-produto:hover .card-produto__imagem {
    transform: scale(1.08) rotate(-2deg)
}

.card-produto__badges {
    position: absolute;
    top: .75rem;
    left: .75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: .25rem
}

.card-produto__badge {
    display: inline-block;
    padding: .25rem .75rem;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-radius: 9999px;
    color: #fff
}

.card-produto__badge--novo {
    background: #2d8c3e
}

.card-produto__badge--destaque {
    background: #e91e8c
}

.card-produto__badge--promocao {
    background: gold;
    color: #212121
}

.card-produto__badge--delivery {
    background: #4a4a4a
}

.card-produto__favorito {
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 32px;
    height: 32px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    color: #aaa;
    transition: all .15s ease;
    opacity: 0
}

.card-produto__favorito:hover,
.card-produto__favorito.ativo {
    color: #e91e8c
}

.card-produto__favorito.ativo {
    opacity: 1
}

.card-produto:hover .card-produto__favorito {
    opacity: 1
}

.card-produto__info {
    padding: 1rem 1.25rem 1.25rem
}

.card-produto__categoria {
    font-size: .64rem;
    font-weight: 700;
    color: #2d8c3e;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .25rem
}

.card-produto__nome {
    font-size: 1.25rem;
    font-weight: 900;
    color: #212121;
    line-height: 1.2;
    margin-bottom: .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.card-produto__descricao {
    font-size: .8rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.card-produto__preco-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1rem
}

.card-produto__preco {
    font-size: 1.563rem;
    font-weight: 900;
    color: #2d8c3e;
    line-height: 1
}

.card-produto__preco-original {
    font-size: .8rem;
    color: #aaa;
    text-decoration: line-through
}

.card-produto__acoes {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
    gap: .5rem
}

.card-produto__btn-carrinho {
    flex: 1
}

.card-produto__btn-ver {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
    flex-shrink: 0
}

.card-produto__btn-ver:hover {
    background: #e8f5e9;
    color: #2d8c3e
}

.card-post {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    overflow: hidden;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.card-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .14)
}

.card-post {
    display: flex;
    flex-direction: column
}

.card-post__imagem-wrap {
    overflow: hidden;
    aspect-ratio: 16/9
}

.card-post__imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/9;
    transition: transform .4s ease
}

.card-post:hover .card-post__imagem {
    transform: scale(1.05)
}

.card-post__info {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: .75rem
}

.card-post__meta {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap
}

.card-post__categoria {
    display: inline-block;
    padding: .25rem .75rem;
    background: #e8f5e9;
    color: #2d8c3e;
    font-size: .64rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-radius: 9999px;
    text-decoration: none
}

.card-post__data {
    font-size: .64rem;
    color: #aaa;
    font-weight: 600
}

.card-post__titulo {
    font-size: 1.25rem;
    font-weight: 900;
    color: #212121;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none
}

.card-post__titulo:hover {
    color: #2d8c3e
}

.card-post__resumo {
    font-size: .8rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1
}

.card-post__link {
    font-size: .8rem;
    font-weight: 700;
    color: #2d8c3e;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: .25rem
}

.card-post__link svg {
    transition: transform .15s ease
}

.card-post__link:hover svg {
    transform: translateX(4px)
}

.card-depoimento {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    position: relative
}

.card-depoimento::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 5rem;
    color: #e8f5e9;
    font-family: Georgia, serif;
    line-height: 1
}

.card-depoimento__estrelas {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: .25rem;
    margin-bottom: 1rem
}

.card-depoimento__estrela {
    color: gold;
    font-size: 1rem
}

.card-depoimento__texto {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem
}

.card-depoimento__autor {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: .75rem
}

.card-depoimento__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #f5e6d3;
    flex-shrink: 0
}

.card-depoimento__avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f5e6d3;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #c8a882;
    font-weight: 900;
    font-size: 1.25rem;
    flex-shrink: 0
}

.card-depoimento__nome {
    font-weight: 900;
    color: #212121;
    font-size: 1rem
}

.card-depoimento__cargo {
    font-size: .64rem;
    color: #888;
    font-weight: 600
}

.card-categoria {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    text-decoration: none;
    display: block
}

.card-categoria::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    transition: opacity .25s ease
}

.card-categoria:hover::after {
    opacity: .85
}

.card-categoria__imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease
}

.card-categoria:hover .card-categoria__imagem {
    transform: scale(1.06)
}

.card-categoria__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.25rem;
    z-index: 1;
    color: #fff
}

.card-categoria__nome {
    font-size: 1.563rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.1;
    margin-bottom: .5rem
}

.card-categoria__count {
    font-size: .8rem;
    opacity: .8;
    font-weight: 600
}

.footer {
    background: #212121;
    color: hsla(0, 0%, 100%, .85)
}

.footer__newsletter {
    background: #2d8c3e;
    padding: 3rem 0
}

.footer__newsletter-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem
}

@media(max-width: 767px) {
    .footer__newsletter-inner {
        flex-direction: column;
        text-align: center
    }
}

.footer__newsletter-texto {
    flex: 1
}

.footer__newsletter-titulo {
    font-size: 1.953rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: .5rem;
    line-height: 1.2
}

.footer__newsletter-texto p {
    color: hsla(0, 0%, 100%, .85);
    font-size: 1rem
}

.footer__newsletter-form {
    flex: 1;
    min-width: 300px
}

@media(max-width: 767px) {
    .footer__newsletter-form {
        width: 100%
    }
}

.footer__newsletter-campo {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    gap: .5rem
}

.footer__newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.25rem;
    border-radius: 9999px;
    border: 2px solid hsla(0, 0%, 100%, .3);
    background: hsla(0, 0%, 100%, .15);
    color: #fff;
    font-family: "Nunito", "Geomatrix", sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color .15s ease, background .15s ease
}

.footer__newsletter-input::placeholder {
    color: hsla(0, 0%, 100%, .6)
}

.footer__newsletter-input:focus {
    border-color: #fff;
    background: hsla(0, 0%, 100%, .2)
}

.footer__newsletter-btn {
    background: #fff !important;
    color: #2d8c3e !important;
    flex-shrink: 0
}

.footer__newsletter-btn:hover {
    background: gold !important;
    color: #212121 !important
}

.footer__newsletter-privacidade {
    font-size: .64rem;
    color: hsla(0, 0%, 100%, .65);
    margin-top: .75rem
}

.footer__principal {
    padding: 4rem 0 2rem
}

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

@media(max-width: 1199px) {
    .footer__grid {
        grid-template-columns: 2fr repeat(2, 1fr)
    }
}

@media(max-width: 767px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem
    }
}

@media(max-width: 767px) {
    .footer__coluna--marca {
        grid-column: 1/-1
    }
}

.footer__logo img {
    display: block
}

.footer__slogan {
    margin-top: .75rem;
    font-size: .8rem;
    color: hsla(0, 0%, 100%, .6);
    font-style: italic;
    margin-bottom: 1.25rem
}

.footer__social {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: .75rem
}

.footer__social-link {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: hsla(0, 0%, 100%, .1);
    border-radius: 8px;
    color: hsla(0, 0%, 100%, .7);
    text-decoration: none;
    transition: all .15s ease
}

.footer__social-link:hover {
    background: #2d8c3e;
    color: #fff;
    transform: translateY(-2px)
}

.footer__coluna-titulo {
    font-size: .8rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1.25rem
}

.footer__lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: .75rem
}

.footer__lista--contato {
    gap: 1rem
}

.footer__link {
    font-size: .8rem;
    color: hsla(0, 0%, 100%, .65);
    text-decoration: none;
    transition: color .15s ease;
    line-height: 1.4
}

.footer__link:hover {
    color: #5ec46a
}

.footer__link--icone {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem
}

.footer__link--icone svg {
    flex-shrink: 0;
    opacity: .7
}

.footer__bottom {
    border-top: 1px solid hsla(0, 0%, 100%, .08);
    padding: 1.5rem 0
}

.footer__bottom-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

@media(max-width: 767px) {
    .footer__bottom-inner {
        flex-direction: column;
        text-align: center
    }
}

.footer__bottom-texto p {
    font-size: .64rem;
    color: hsla(0, 0%, 100%, .4);
    line-height: 1.6
}

.footer__bottom-texto p+p {
    margin-top: .25rem
}

.footer__bottom-selos {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: .75rem;
    opacity: .6
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 580px;
    background: #f5e6d3
}

@media(max-width: 767px) {
    .hero {
        min-height: 360px
    }
}

.hero__slider {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    transition: transform .4s ease
}

.hero__slide {
    position: relative;
    min-width: 100%;
    min-height: 580px;
    overflow: hidden
}

@media(max-width: 767px) {
    .hero__slide {
        min-height: 360px
    }
}

.hero__imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 60%)
}

.hero__conteudo {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 580px;
    padding: 4rem 0
}

@media(max-width: 767px) {
    .hero__conteudo {
        min-height: 360px;
        padding: 2.5rem 0
    }
}

.hero__texto {
    max-width: 560px;
    color: #fff
}

.hero__pretitulo {
    font-size: 1.0rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: gold;
    margin-bottom: .75rem;
    display: block
}

.hero__titulo {
    font-size: clamp(2.6rem, 6vw, 5.0rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .25)
}

.hero__subtitulo {
    font-size: clamp(1rem, 2vw, 1.563rem);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: hsla(0, 0%, 100%, .9)
}

.hero__acoes {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap
}

.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    background: hsla(0, 0%, 100%, .85);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all .15s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1)
}

.hero__nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05)
}

.hero__nav:focus-visible {
    outline: 2px solid gold
}

.hero__nav--prev {
    left: 1.25rem
}

.hero__nav--next {
    right: 1.25rem
}

@media(max-width: 767px) {
    .hero__nav {
        display: none
    }
}

.hero__dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    z-index: 2
}

.hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, .5);
    border: none;
    cursor: pointer;
    transition: all .25s ease;
    padding: 0
}

.hero__dot--ativo {
    background: #fff;
    width: 24px;
    border-radius: 4px
}

.barra-notificacao {
    background: #2d8c3e;
    color: #fff;
    text-align: center;
    padding: .75rem 4rem;
    font-size: .8rem;
    font-weight: 700;
    position: relative;
    letter-spacing: .04em;
    text-transform: uppercase
}

.barra-notificacao a {
    color: gold;
    text-decoration: underline
}

.barra-notificacao__fechar {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0);
    border: none;
    color: #fff;
    font-size: 1.953rem;
    cursor: pointer;
    line-height: 1;
    opacity: .7
}

.barra-notificacao__fechar:hover {
    opacity: 1
}

.secao-categorias {
    padding: 5rem 0
}

@media(max-width: 767px) {
    .secao-categorias {
        padding: 3rem 0
    }
}

.secao-categorias {
    background: #fff
}

.secao-categorias__titulo {
    font-family: "Nunito", "Geomatrix", sans-serif;
    font-size: 2.441rem;
    font-weight: 900;
    line-height: 1.15;
    color: #212121;
    text-align: center;
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .secao-categorias__titulo {
        font-size: 1.953rem
    }
}

.secao-categorias__subtitulo {
    font-family: "Nunito", "Geomatrix", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem
}

.secao-categorias__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem
}

@media(max-width: 991px) {
    .secao-categorias__grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width: 767px) {
    .secao-categorias__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem
    }
}

.secao-destaques {
    padding: 5rem 0
}

@media(max-width: 767px) {
    .secao-destaques {
        padding: 3rem 0
    }
}

.secao-destaques {
    background: #fdf8f2
}

.secao-destaques__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 1rem;
    flex-wrap: wrap
}

.secao-destaques__titulo {
    font-family: "Nunito", "Geomatrix", sans-serif;
    font-size: 2.441rem;
    font-weight: 900;
    line-height: 1.15;
    color: #212121
}

.secao-destaques__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

@media(max-width: 1199px) {
    .secao-destaques__grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width: 991px) {
    .secao-destaques__grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width: 767px) {
    .secao-destaques__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem
    }
}

@media(max-width: 767px) {
    .secao-destaques__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none
    }

    .secao-destaques__grid::-webkit-scrollbar {
        display: none
    }

    .secao-destaques__grid>* {
        scroll-snap-align: start;
        flex-shrink: 0
    }

    .secao-destaques__grid {
        grid-template-columns: unset
    }

    .secao-destaques__grid .card-produto {
        width: 220px
    }
}

.secao-revendedor {
    background: #e91e8c;
    padding: 5rem 0;
    position: relative;
    overflow: hidden
}

.secao-revendedor::before {
    content: "";
    position: absolute;
    right: -10%;
    top: -20%;
    width: 500px;
    height: 500px;
    background: hsla(0, 0%, 100%, .06);
    border-radius: 50%
}

.secao-revendedor__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem
}

@media(max-width: 767px) {
    .secao-revendedor__inner {
        flex-direction: column;
        text-align: center
    }
}

.secao-revendedor__conteudo {
    flex: 1;
    max-width: 500px;
    color: #fff
}

.secao-revendedor__titulo {
    font-size: clamp(1.953rem, 4vw, 3.052rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    color: #FFF;
}

.secao-revendedor__texto {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: hsla(0, 0%, 100%, .9)
}

.secao-revendedor__imagem {
    flex: 1;
    max-width: 460px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2))
}

@media(max-width: 767px) {
    .secao-revendedor__imagem {
        max-width: 280px
    }
}

.secao-festa {
    background: #2d8c3e;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.secao-festa::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 50%)
}

.secao-festa__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap
}

.secao-festa__imagem {
    width: 180px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2))
}

@media(max-width: 767px) {
    .secao-festa__imagem {
        width: 120px
    }
}

.secao-festa__conteudo {
    color: #fff;
    text-align: center
}

.secao-festa__titulo {
    font-size: clamp(2.441rem, 5vw, 3.052rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #FFF;
}

.secao-festa__subtitulo {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.4;
    color: hsla(0, 0%, 100%, .9)
}

.secao-delivery {
    padding: 5rem 0
}

@media(max-width: 767px) {
    .secao-delivery {
        padding: 3rem 0
    }
}

.secao-delivery {
    background: #fff
}

.secao-delivery__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4rem
}

@media(max-width: 767px) {
    .secao-delivery__inner {
        flex-direction: column-reverse
    }
}

.secao-delivery__imagem {
    flex: 1;
    max-width: 500px
}

.secao-delivery__imagem img {
    width: 100%;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.12))
}

.secao-delivery__conteudo {
    flex: 1;
    max-width: 500px
}

.secao-delivery__pretitulo {
    font-size: .8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #2d8c3e;
    margin-bottom: .75rem
}

.secao-delivery__titulo {
    font-family: "Nunito", "Geomatrix", sans-serif;
    font-size: clamp(2.441rem, 4vw, 3.052rem);
    font-weight: 900;
    line-height: 1.15;
    color: #212121;
    margin-bottom: 1.25rem
}

.secao-delivery__texto {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem
}

.secao-delivery__info-lista {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 2rem
}

.secao-delivery__info-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: .75rem;
    font-size: .8rem;
    color: #4a4a4a;
    font-weight: 600
}

.secao-delivery__info-item::before {
    content: "✓";
    width: 22px;
    height: 22px;
    background: #e8f5e9;
    color: #2d8c3e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .64rem;
    font-weight: 900;
    flex-shrink: 0
}

.secao-depoimentos {
    padding: 5rem 0
}

@media(max-width: 767px) {
    .secao-depoimentos {
        padding: 3rem 0
    }
}

.secao-depoimentos {
    background: #fdf8f2;
    position: relative;
    overflow: hidden
}

.secao-depoimentos__titulo {
    font-family: "Nunito", "Geomatrix", sans-serif;
    font-size: 2.441rem;
    font-weight: 900;
    line-height: 1.15;
    color: #212121;
    text-align: center;
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .secao-depoimentos__titulo {
        font-size: 1.953rem
    }
}

.secao-depoimentos__slider-wrap {
    position: relative
}

.secao-depoimentos__slider {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    transition: transform .4s ease
}

.secao-depoimentos__slide {
    min-width: calc(33.333% - 1rem);
    padding: 0 .75rem
}

@media(max-width: 991px) {
    .secao-depoimentos__slide {
        min-width: 50%
    }
}

@media(max-width: 767px) {
    .secao-depoimentos__slide {
        min-width: 100%
    }
}

.secao-depoimentos__imagem-lateral {
    position: absolute;
    right: -5%;
    top: -20%;
    opacity: .12;
    pointer-events: none;
    width: 300px;
    filter: saturate(0)
}

.secao-faq {
    padding: 5rem 0
}

@media(max-width: 767px) {
    .secao-faq {
        padding: 3rem 0
    }
}

.secao-faq {
    background: #fff
}

.secao-faq__titulo {
    font-family: "Nunito", "Geomatrix", sans-serif;
    font-size: 2.441rem;
    font-weight: 900;
    line-height: 1.15;
    color: #212121;
    text-align: center;
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .secao-faq__titulo {
        font-size: 1.953rem
    }
}

.secao-faq__lista {
    max-width: 760px;
    margin: 0 auto 2.5rem
}

.accordion {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08)
}

.accordion__item {
    border-bottom: 1px solid #e5e5e5
}

.accordion__item:last-child {
    border-bottom: none
}

.accordion__item.ativo .accordion__resposta {
    max-height: 400px
}

.accordion__item.ativo .accordion__chevron {
    transform: rotate(180deg)
}

.accordion__pergunta {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: "Nunito", "Geomatrix", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #212121;
    transition: background .15s ease
}

.accordion__pergunta:hover {
    background: #f5f5f5
}

.accordion__chevron {
    color: #2d8c3e;
    flex-shrink: 0;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.accordion__resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.accordion__resposta-inner {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
    color: #666;
    line-height: 1.7
}

.secao-cta {
    background: #2d8c3e;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.secao-cta::before,
.secao-cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, .05)
}

.secao-cta::before {
    top: -100px;
    left: -100px
}

.secao-cta::after {
    bottom: -100px;
    right: -100px
}

.secao-cta__inner {
    position: relative;
    z-index: 1;
    color: #fff
}

.secao-cta__titulo {
    font-size: clamp(2.441rem, 4vw, 3.052rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #FFF;
}

.secao-cta__subtitulo {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: hsla(0, 0%, 100%, .85)
}

.secao-cta__acoes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap
}

.pagina-catalogo .filtros {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    margin-bottom: 1.5rem
}

.pagina-catalogo .filtros__titulo {
    font-size: .8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #666;
    margin-bottom: 1rem
}

.pagina-catalogo .filtros__grupo {
    margin-bottom: 1.25rem
}

.pagina-catalogo .filtros__grupo-nome {
    font-size: .8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: .75rem
}

.pagina-catalogo .filtros__item {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem;
    font-size: .8rem;
    color: #4a4a4a;
    cursor: pointer
}

.pagina-catalogo .filtros__item input {
    accent-color: #2d8c3e
}

.pagina-catalogo .grid-produtos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

@media(max-width: 991px) {
    .pagina-catalogo .grid-produtos {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width: 767px) {
    .pagina-catalogo .grid-produtos {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem
    }
}

.pagina-catalogo .ordenacao {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: .75rem
}

.pagina-catalogo .ordenacao__select {
    padding: .5rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 9999px;
    font-family: "Nunito", "Geomatrix", sans-serif;
    font-size: .8rem;
    font-weight: 600;
    color: #4a4a4a;
    background: #fff;
    cursor: pointer;
    outline: none
}

.pagina-catalogo .ordenacao__select:focus {
    border-color: #2d8c3e
}

.pagina-delivery .passos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0
}

@media(max-width: 767px) {
    .pagina-delivery .passos {
        grid-template-columns: 1fr
    }
}

.pagina-delivery .passo {
    text-align: center
}

.pagina-delivery .passo__numero {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2d8c3e;
    color: #fff;
    border-radius: 50%;
    font-size: 1.953rem;
    font-weight: 900;
    margin: 0 auto 1rem
}

.pagina-delivery .passo__titulo {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: .5rem
}

.pagina-delivery .passo__texto {
    font-size: .8rem;
    color: #666;
    line-height: 1.6
}

.pagina-delivery .carrinho-flutuante {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    padding: 1.25rem
}

.pagina-delivery .carrinho-flutuante__titulo {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f5f5f5
}

.pagina-delivery .carrinho-flutuante__vazio {
    text-align: center;
    color: #aaa;
    padding: 2rem 0;
    font-size: .8rem
}

.pagina-delivery .carrinho-flutuante__total {
    padding-top: 1rem;
    border-top: 2px solid #f5f5f5;
    margin-top: 1rem
}

.pagina-delivery .carrinho-flutuante__total-linha {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: #666;
    margin-bottom: .5rem
}

.pagina-delivery .carrinho-flutuante__total-valor {
    font-size: 1.953rem;
    font-weight: 900;
    color: #2d8c3e
}

.admin {
    display: flex;
    min-height: 100vh;
    background: #f0f2f5;
    font-family: "Nunito", "Geomatrix", sans-serif
}

.admin__sidebar {
    width: 260px;
    background: #212121;
    color: #fff;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 200;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1)
}

@media(max-width: 767px) {
    .admin__sidebar {
        transform: translateX(-100%)
    }

    .admin__sidebar.aberta {
        transform: translateX(0)
    }
}

.admin__logo {
    padding: 1.5rem;
    border-bottom: 1px solid hsla(0, 0%, 100%, .08);
    display: block
}

.admin__logo img {
    height: 40px
}

.admin__nav {
    flex: 1;
    padding: 1rem 0
}

.admin__nav-grupo {
    margin-bottom: 1.5rem
}

.admin__nav-grupo-titulo {
    padding: .5rem 1.25rem;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: hsla(0, 0%, 100%, .35)
}

.admin__nav-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.25rem;
    color: hsla(0, 0%, 100%, .7);
    text-decoration: none;
    font-size: .8rem;
    font-weight: 600;
    transition: all .15s ease;
    border-left: 3px solid rgba(0, 0, 0, 0)
}

.admin__nav-link:hover,
.admin__nav-link.ativo {
    color: #fff;
    background: hsla(0, 0%, 100%, .08);
    border-left-color: #2d8c3e
}

.admin__nav-link.ativo {
    color: #5ec46a
}

.admin__nav-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.admin__nav-badge {
    margin-left: auto;
    background: #e91e8c;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    padding: 1px 7px;
    border-radius: 9999px;
    min-width: 18px;
    text-align: center
}

.admin__conteudo {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column
}

@media(max-width: 767px) {
    .admin__conteudo {
        margin-left: 0
    }
}

.admin__topbar {
    background: #fff;
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
    position: sticky;
    top: 0;
    z-index: 199
}

.admin__topbar-titulo {
    font-size: 1.563rem;
    font-weight: 900;
    color: #212121
}

.admin__topbar-acoes {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem
}

.admin__usuario {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: .75rem;
    font-size: .8rem;
    font-weight: 600;
    color: #4a4a4a
}

.admin__main {
    padding: 1.5rem;
    flex: 1
}

.admin__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem
}

@media(max-width: 991px) {
    .admin__stats {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width: 767px) {
    .admin__stats {
        grid-template-columns: 1fr 1fr
    }
}

.admin__stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start
}

.admin__stat-label {
    font-size: .64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #888;
    margin-bottom: .5rem
}

.admin__stat-valor {
    font-size: 2.441rem;
    font-weight: 900;
    color: #212121;
    line-height: 1
}

.admin__stat-variacao {
    font-size: .64rem;
    font-weight: 600;
    margin-top: .25rem
}

.admin__stat-variacao--positivo {
    color: #2e7d32
}

.admin__stat-variacao--negativo {
    color: #c62828
}

.admin__stat-icone {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center
}

.admin__stat-icone--verde {
    background: #e8f5e9;
    color: #2d8c3e
}

.admin__stat-icone--rosa {
    background: #fce4ec;
    color: #e91e8c
}

.admin__stat-icone--amarelo {
    background: #fffde7;
    color: #e6b800
}

.admin__stat-icone--azul {
    background: #e3f2fd;
    color: #1565c0
}

.admin__tabela-wrap {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    overflow: hidden
}

.admin__tabela-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    flex-wrap: wrap;
    gap: .75rem
}

.admin__tabela-titulo {
    font-size: 1.563rem;
    font-weight: 900
}

.admin__tabela {
    width: 100%;
    border-collapse: collapse
}

.admin__tabela th {
    padding: .75rem 1rem;
    text-align: left;
    font-size: .64rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #888;
    background: #f5f5f5;
    white-space: nowrap
}

.admin__tabela td {
    padding: 1rem;
    font-size: .8rem;
    color: #4a4a4a;
    border-bottom: 1px solid #f5f5f5;
    vertical-align: middle
}

.admin__tabela tr:last-child td {
    border-bottom: none
}

.admin__tabela tr:hover td {
    background: #f5f5f5
}

.admin__tabela-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    background: #f5f5f5
}

.admin__tabela-acoes {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: .5rem
}

.admin__btn-acao {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .15s ease
}

.admin__btn-acao--editar {
    background: #e8f5e9;
    color: #2d8c3e
}

.admin__btn-acao--editar:hover {
    background: #2d8c3e;
    color: #fff
}

.admin__btn-acao--excluir {
    background: #ffebee;
    color: #c62828
}

.admin__btn-acao--excluir:hover {
    background: #c62828;
    color: #fff
}

.admin__btn-acao--ver {
    background: #f5f5f5;
    color: #666
}

.admin__btn-acao--ver:hover {
    background: #e5e5e5
}

.admin__form {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    padding: 2rem;
    margin-bottom: 1.5rem
}

.admin__form-titulo {
    font-size: 1.953rem;
    font-weight: 900;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #f5f5f5
}

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

@media(max-width: 767px) {
    .admin__form-grid {
        grid-template-columns: 1fr
    }
}

.admin__form-full {
    grid-column: 1/-1
}

.admin__form-acoes {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 2px solid #f5f5f5;
    flex-wrap: wrap
}

.admin__form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #f5f5f5
}

.admin__form-section-titulo {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid #e5e5e5;
    color: #212121;
    text-transform: uppercase;
    font-size: .64rem;
    letter-spacing: .06em
}

.admin__form-group {
    margin-bottom: 1.25rem
}

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

@media(max-width: 767px) {
    .admin__form-row {
        grid-template-columns: 1fr
    }
}

.admin__form-row--tripla {
    grid-template-columns: repeat(3, 1fr)
}

@media(max-width: 767px) {
    .admin__form-row--tripla {
        grid-template-columns: 1fr
    }
}

.admin__form-label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 700;
    color: #212121;
    font-size: .8rem
}

.admin__form-label--required::after {
    content: " *";
    color: #c62828
}

.admin__form-input,
.admin__form-textarea,
.admin__form-select {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: .8rem;
    font-family: inherit;
    color: #212121;
    background: #fff;
    transition: all .15s ease
}

.admin__form-input:hover,
.admin__form-textarea:hover,
.admin__form-select:hover {
    border-color: #aaa
}

.admin__form-input:focus,
.admin__form-textarea:focus,
.admin__form-select:focus {
    outline: none;
    border-color: #2d8c3e;
    box-shadow: 0 0 0 3px rgba(45, 140, 62, .1)
}

.admin__form-input:disabled,
.admin__form-textarea:disabled,
.admin__form-select:disabled {
    background: #f5f5f5;
    color: #888;
    cursor: not-allowed
}

.admin__form-textarea {
    resize: vertical;
    min-height: 120px
}

.admin__form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    padding-right: 2rem
}

.admin__form-help {
    display: block;
    margin-top: .25rem;
    font-size: .64rem;
    color: #888
}

.admin__form-help--error {
    color: #c62828
}

.admin__form-checkbox,
.admin__form-radio {
    margin-right: .5rem
}

.admin__form-checkbox-label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    cursor: pointer
}

.admin__form-full {
    grid-column: 1/-1
}

.admin__form-info {
    background: #f5f5f5;
    border-left: 4px solid #2d8c3e;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-size: .8rem;
    color: #333
}

.admin__form-info--warning {
    border-left-color: #ffc107;
    background: #fff8e1
}

.admin__form-info--error {
    border-left-color: #c62828;
    background: #ffebee
}

.admin__form-info--sucesso {
    border-left-color: #2e7d32;
    background: #e8f5e9
}

.alert {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1rem
}

.alert--success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #2e7d32
}

.alert--danger {
    background: #ffebee;
    color: #c62828;
    border-left: 4px solid #c62828
}

.alert--warning {
    background: #fff8e1;
    color: #f57f17;
    border-left: 4px solid #f57f17
}

.alert--info {
    background: #e3f2fd;
    color: #1565c0;
    border-left: 4px solid #1565c0
}

.alert__icone {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: .64rem;
    flex-shrink: 0;
    background: currentColor;
    color: #fff
}

.alert__texto {
    flex: 1
}

.alert__fechar {
    background: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    font-size: 1.953rem;
    color: currentColor;
    opacity: .6;
    line-height: 1;
    padding: 0
}

.alert__fechar:hover {
    opacity: 1
}

.flash-container {
    position: fixed;
    top: 100px;
    right: 1.25rem;
    z-index: 500;
    max-width: 380px;
    width: 100%
}

@media(max-width: 767px) {
    .flash-container {
        top: auto;
        bottom: 1.25rem;
        left: 1rem;
        right: 1rem;
        max-width: unset
    }
}

.campo {
    margin-bottom: 1.25rem
}

.campo__label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: .5rem
}

.campo__input,
.campo__select,
.campo__textarea {
    width: 100%;
    padding: .75rem 1rem;
    font-family: "Nunito", "Geomatrix", sans-serif;
    font-size: 1rem;
    color: #212121;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
    appearance: none
}

.campo__input:focus,
.campo__select:focus,
.campo__textarea:focus {
    border-color: #2d8c3e;
    box-shadow: 0 0 0 3px rgba(45, 140, 62, .15)
}

.campo__input.campo--erro,
.campo__select.campo--erro,
.campo__textarea.campo--erro {
    border-color: #c62828
}

.campo__input::placeholder,
.campo__select::placeholder,
.campo__textarea::placeholder {
    color: #aaa
}

.campo__textarea {
    min-height: 120px;
    resize: vertical
}

.campo__erro {
    margin-top: .25rem;
    font-size: .64rem;
    color: #c62828;
    font-weight: 600
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: .25rem .75rem;
    border-radius: 9999px;
    font-size: .64rem;
    font-weight: 900
}

.badge--verde {
    background: #e8f5e9;
    color: #2d8c3e
}

.badge--rosa {
    background: #fce4ec;
    color: #e91e8c
}

.badge--amarelo {
    background: #fffde7;
    color: #e6b800
}

.badge--cinza {
    background: #f5f5f5;
    color: #666
}

.paginacao {
    margin-top: 2.5rem
}

.paginacao__lista {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap
}

.paginacao__btn {
    min-width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 700;
    color: #666;
    text-decoration: none;
    transition: all .15s ease
}

.paginacao__btn:hover {
    border-color: #2d8c3e;
    color: #2d8c3e
}

.paginacao__btn--ativo {
    background: #2d8c3e;
    border-color: #2d8c3e;
    color: #fff
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e5e5;
    border-top-color: #2d8c3e;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    margin: 2.5rem auto
}

.whatsapp-flutuante {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: all .25s ease
}

.whatsapp-flutuante:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .5)
}

.whatsapp-flutuante:hover .whatsapp-flutuante__tooltip {
    opacity: 1;
    transform: translateX(0)
}

.whatsapp-flutuante__tooltip {
    position: absolute;
    right: 68px;
    background: #212121;
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 12px;
    font-size: .8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: all .25s ease;
    pointer-events: none
}

.whatsapp-flutuante__tooltip::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #212121;
    border-top: 5px solid rgba(0, 0, 0, 0);
    border-bottom: 5px solid rgba(0, 0, 0, 0)
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
    z-index: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn .3s ease
}

.popup {
    background: #fff;
    border-radius: 24px;
    max-width: 500px;
    width: calc(100% - 2rem);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .18);
    animation: fadeUp .4s ease
}

.popup__fechar {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.953rem;
    cursor: pointer;
    color: #666;
    z-index: 1;
    transition: background .15s ease
}

.popup__fechar:hover {
    background: #e5e5e5
}

.popup__imagem {
    width: 100%;
    border-radius: 24px 24px 0 0
}

.popup__conteudo {
    padding: 2rem;
    text-align: center
}

.popup__titulo {
    font-family: "Nunito", "Geomatrix", sans-serif;
    font-size: 2.441rem;
    font-weight: 900;
    line-height: 1.15;
    color: #212121;
    margin-bottom: 1rem
}

.popup__texto {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem
}

.hero-pagina {
    background: #2d8c3e;
    padding: 4rem 0 3rem;
    color: #fff;
    position: relative;
    overflow: hidden
}

.hero-pagina::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%)
}

.hero-pagina__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem
}

@media(max-width: 767px) {
    .hero-pagina__inner {
        flex-direction: column;
        text-align: center
    }
}

.hero-pagina__breadcrumb {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
    font-size: .8rem;
    color: hsla(0, 0%, 100%, .7)
}

.hero-pagina__breadcrumb a {
    color: hsla(0, 0%, 100%, .7);
    text-decoration: none
}

.hero-pagina__breadcrumb a:hover {
    color: #fff
}

.hero-pagina__breadcrumb span {
    color: hsla(0, 0%, 100%, .4)
}

.hero-pagina__titulo {
    font-size: clamp(2.441rem, 4vw, 3.052rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1
}

.hero-pagina__subtitulo {
    font-size: 1.25rem;
    color: hsla(0, 0%, 100%, .85);
    max-width: 500px
}

.hero-pagina__imagem {
    max-width: 400px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2))
}

@media(max-width: 767px) {
    .hero-pagina__imagem {
        max-width: 220px
    }
}

.secao-interna {
    padding: 5rem 0
}

@media(max-width: 767px) {
    .secao-interna {
        padding: 3rem 0
    }
}

.secao-interna--fundo {
    background: #fdf8f2
}

.secao-interna--verde {
    background: #e8f5e9
}

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

@media(max-width: 767px) {
    .grid-2 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem
    }
}

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

@media(max-width: 991px) {
    .grid-3 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }
}

@media(max-width: 767px) {
    .grid-3 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem
}

@media(max-width: 1199px) {
    .grid-4 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem
    }
}

@media(max-width: 991px) {
    .grid-4 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }
}

@media(max-width: 767px) {
    .grid-4 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem
    }
}

/*# sourceMappingURL=main.css.map */
.manutencao {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: radial-gradient(circle at top, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, 0) 38%), linear-gradient(145deg, #1A6B2A 0%, #2D8C3E 100%);
    position: relative;
    overflow: hidden
}

.manutencao::before,
.manutencao::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    filter: blur(2px)
}

.manutencao::before {
    width: 420px;
    height: 420px;
    top: -140px;
    right: -120px
}

.manutencao::after {
    width: 320px;
    height: 320px;
    bottom: -120px;
    left: -80px
}

.manutencao__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 780px);
    display: grid;
    gap: 1.5rem
}

.manutencao__card {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .16);
    border-radius: 32px;
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: #fff
}

.manutencao__logo {
    width: min(100%, 220px);
    max-height: 110px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .16))
}

.manutencao__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .45rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .2);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1rem
}

.manutencao__titulo {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase
}

.manutencao__texto {
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .92)
}

.manutencao__footer {
    display: grid;
    gap: .9rem;
    justify-items: center;
    color: #fff
}

.manutencao__footer-label {
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .85)
}

.manutencao__social {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center
}

.manutencao__social-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem;
    border-radius: 999px;
    background: rgba(33, 33, 33, .18);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .2s ease, background .2s ease, border-color .2s ease
}

.manutencao__social-link:hover {
    transform: translateY(-2px);
    background: rgba(33, 33, 33, .3);
    border-color: rgba(255, 255, 255, .35);
    color: #fff
}

@media(max-width: 767px) {
    .manutencao {
        padding: 1.25rem
    }

    .manutencao__card {
        padding: 1.5rem;
        border-radius: 24px
    }

    .manutencao__logo {
        width: min(100%, 180px);
        max-height: 90px
    }

    .manutencao__social {
        width: 100%
    }

    .manutencao__social-link {
        flex: 1;
        justify-content: center;
        min-width: 140px
    }
}