/* =========================
   BASE OTIMIZADA
========================= */

/* Melhor fallback de fonte */
body {
    font-family: system-ui, -apple-system, Arial, sans-serif;
}

/* Variável de cor (evita repetição) */
:root {
    --primary: #04A54F;
    --primary-dark: #044a17;
    --primary-hover: #044a17;
    --accent: #04A54F;
}

/* =========================
   HEADER
========================= */

.loading__spinner {
    color: var(--primary);
}

.site-header__logo img {
    height: 70px;
    width: auto;
    /* evita CLS */
}

.site-header__cart i {
    color: #999;
}

.site-header__cart i:hover {
    color: #5a5a5a;
}

.site-header__cart .indicator__value {
    background-color: var(--primary);
    color: #fff;
}

.site-header {
    position: fixed;
    top: 40;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
}

@media (min-width: 992px) {
    .site__body {
        margin-top: 200px;
    }
}

/* =========================
   NAV / MENU (menos pesado)
========================= */

.nav-panel {
    background: var(--primary);
    color: #FFF;
    height: 60px;
}

/* Removido position absolute pesado */
.nav-links__list {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ajustes responsivos simplificados */
@media (min-width: 992px) {
    .nav-links__item-link {
        font-size: 16px;
        font-weight: 500;
        white-space: nowrap;
    }
}

.nav-links__item-body {
    padding: 0 11px;
}

.nav-links__item--has-submenu .nav-links__item-body {
    padding-right: 11px;
    height: 60px;
}

.nav-links__item-body .fa-chevron-down {
    display: none;
}

.nav-links__item {
    margin: 0 -3px;
}

/* =========================
   PRODUTOS
========================= */

.product-card__price,
.product-card__new-price,
.product__price,
.product__new-price {
    color: var(--primary);
}

.product-card__prices {
    min-height: 15px;
}

.block-products-carousel__column .product-card__name {
    min-height: 55px;
}

.block-products-carousel__column .product-card__prices {
    min-height: 35px;
    margin-bottom: 10px;
}

.block-products-carousel__column .product-card__buttons {
    margin-top: 0;
}

/* =========================
   BOTÕES / ELEMENTOS
========================= */

.top-button {
    color: var(--primary);
}

.page-header__back i {
    color: var(--primary);
}

.input-check__input:checked ~ .input-check__box {
    background: var(--primary);
}

/* =========================
   SLIDER (mantido leve)
========================= */

.block-slideshow .owl-carousel .owl-dot {
    background: #999;
}

.block-slideshow .owl-carousel .owl-dot.active {
    background: var(--primary);
}

/* =========================
   FOOTER
========================= */

.footer-contacts__text img {
    height: 70px;
}

.footer-apps__text img {
    width: 120px;
}

.footer-seals__text img {
    width: 50%;
}

/* Títulos */
.title-checkout,
.footer-links__title,
.footer-contacts__title,
.footer-newsletter__title,
.footer-payment__title,
.footer-seals__title,
.footer-apps__title,
.block-header__title,
.page-header__title,
.product__name {
    color: var(--primary);
    margin-top: 30px;
}

/* =========================
   MEGAMENU
========================= */

.megamenu {
    background: var(--primary);
}

.megamenu__links--level--1 > .megamenu__item > a {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    padding-right: 20px;
    color: #FFFFFF;
}

.megamenu__links--level--1 > .megamenu__item > a:hover,
.megamenu__links--level--1 > .megamenu__item > a:active,
.megamenu__links--level--1 > .megamenu__item > a:focus {
    color: #FFFFFF;
}

/* =========================
   TOPBAR - Atualizado 2026-05-19
========================= */

.topbar-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #006223;
    color: #FFF;
    min-height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 20px;
    z-index: 9999;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;

    box-sizing: border-box;
}

/* espaço para não cobrir o header */
body {
    padding-top: 40px;
}


/* APP BAR */
.topbar-app {
    background: #e1e1e1;
    padding: 15px 0;

    display: flex;
    justify-content: center;
    gap: 15px;
}

/* IMAGEM */
.topbar-app img {
    background: #FFF;
    padding: 7px;
    border-radius: 10px;
    height: 48px;

    box-shadow: 0 1px 2px rgba(0,0,0,0.2);

    transition: .2s ease;
}

.topbar-app img:hover {
    transform: translateY(-2px);
}

/* TOPBAR FADE */
.topbar-fade {
    position: relative;
    min-height: 24px;
    width: 100%;
    text-align: center;
}

/* MENSAGENS */
.topbar-fade .msg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;

    opacity: 0;

    color: #FFF;
    font-size: 13px;

    animation: fadeTopbar 12s infinite;
    overflow: hidden;
}

/* delays */
.topbar-fade .msg:nth-child(1) {
    animation-delay: 0s;
}

.topbar-fade .msg:nth-child(2) {
    animation-delay: 4s;
}

.topbar-fade .msg:nth-child(3) {
    animation-delay: 8s;
}

/* pausa hover */
.topbar-fade:hover .msg {
    animation-play-state: paused;
}

/* BOTÃO */
.topbar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 10;

    margin-left: 10px;
    padding: 3px 10px;

    border: 1px solid #FFF;
    border-radius: 3px;

    color: #FFF !important;
    text-decoration: none;

    font-weight: 700;
    font-size: 12px;

    cursor: pointer;

    transition: .2s ease;
}
.topbar-btn:hover {
    background: #FFF;
    color: #006223 !important;
}

/* ANIMAÇÃO */
@keyframes fadeTopbar {

    0% {
        opacity: 0;
        transform: translateY(5px);
    }

    5% {
        opacity: 1;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(0);
    }

    35% {
        opacity: 0;
        transform: translateY(-5px);
    }

    100% {
        opacity: 0;
        transform: translateY(-5px);
    }

}

/* mensagem visível */
.topbar-fade .msg.active {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}

.topbar-fade .msg {
    pointer-events: none;
    white-space: nowrap;
}

.topbar-fade .msg a,
.topbar-fade .msg .topbar-btn {
    pointer-events: auto;
    position: relative;
    z-index: 5;
}

@media (max-width:768px) {

    .topbar-message {
        min-height: 36px;
        padding: 8px 10px;
    }

    .topbar-fade {
        min-height: 18px;
    }

    .topbar-fade .msg {
        font-size: 12px;
        white-space: nowrap;
    }

    .topbar-btn {
        font-size: 9px;
        padding: 3px 8px;
        margin-left: 4px;
    }

}

/* =========================
   AJUSTES ESPECÍFICOS
========================= */

.nav-links__item:nth-child(11) .nav-links__item-body {
    /*background-color: #05621d;*/
}

.nav-links__item:nth-child(12) .nav-links__item-body {
    /*background-color: #ed1818;*/
    margin-left: 10px;
    color: #FFFFFF;
}

.nav-links__item:last-child .nav-links__item-link {
    /*background-color: #93CF1C;*/
    margin-left: 10px;
    color: #FFFFFF;
}

.nav-links__item:last-child(-1) .nav-links__item-link {
    background-color: #05621d;
}

/* =========================
   CHECKOUT
========================= */

.container__cart-container__split-title,
.container__confirmation-container__split-title,
.checkout__totals__split-title {
    display: none;
}

/* =========================
   MODAL
========================= */

.modal-header {
    background: var(--primary);
    color: #ffffff;
}

.fa-times {
    color: #ffffff;
}

/* =========================
   AJUSTES ROBERTO
========================= */

.product__features--codigo {
    position: relative;
    top: -18px;
    font-weight: bold;
    margin-bottom: 6px;
}

.product__features--sku {
    position: relative;
    top: 30px;
    margin-top: 6px;
}

/* =========================
   PERFORMANCE (FONTES)
========================= */

/* Mantido apenas essencial + swap */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2') format('woff2');
}

/* =========================
   MENU DEPARTAMENTOS 3 NIVEIS
========================= */
.nav-links__list {
    justify-content: flex-start !important;
}

.nav-links__item {
    margin: 0;
}

.nav-links__item-body,
.nav-links__item--has-submenu .nav-links__item-body {
    padding-left: 13px;
    padding-right: 13px;
    height: 60px;
}

.nav-links__item:nth-child(3) .nav-links__item-body {
    /*background-color: #05621d;*/
}

.nav-links__item:nth-child(4) .nav-links__item-body {
    /*background-color: #ed1818;*/
    margin-left: 10px;
    color: #FFFFFF;
}

.nav-links__item:nth-child(5) .nav-links__item-link,
.nav-links__item:last-child .nav-links__item-link {
    /*background-color: #93CF1C;*/
    margin-left: 10px;
    color: #FFFFFF;
}

.megamenu,
.megamenu--supports-level-3 .megamenu__flyout-panel > .menu {
    background: var(--primary);
}

.megamenu__links--level--1 > .megamenu__item > a,
.megamenu--supports-level-3 .megamenu__flyout-panel .menu__item-link {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
}

.megamenu__links--level--1 > .megamenu__item > a:hover,
.megamenu__links--level--1 > .megamenu__item > a:active,
.megamenu__links--level--1 > .megamenu__item > a:focus,
.megamenu--supports-level-3 .megamenu__flyout-panel .menu__item-link:hover,
.megamenu--supports-level-3 .megamenu__flyout-panel .menu__item-link:active,
.megamenu--supports-level-3 .megamenu__flyout-panel .menu__item-link:focus {
    color: #FFFFFF;
}


/* =========================
   AJUSTE MENU DEPARTAMENTOS 3 NIVEIS - 2026-04-28
========================= */
.nav-links__item-body,
.nav-links__item--has-submenu .nav-links__item-body {
    padding-left: 18px !important;
    padding-right: 18px !important;
    height: 60px;
}

.nav-links__item:nth-child(3) .nav-links__item-body,
.nav-links__item:nth-child(4) .nav-links__item-body,
.nav-links__item:nth-child(5) .nav-links__item-body,
.nav-links__item:last-child .nav-links__item-body {
    color: #FFFFFF;
}

.nav-links__item:nth-child(3) .nav-links__item-body {
    /*background-color: #05621d;*/
}

.nav-links__item:nth-child(4) .nav-links__item-body {
    /*background-color: #ed1818;*/
    margin-left: 10px;
}

.nav-links__item:nth-child(5) .nav-links__item-body,
.nav-links__item:last-child .nav-links__item-body {
    /*background-color: #93CF1C;*/
    margin-left: 10px;
}

.nav-links__item:nth-child(3) .nav-links__item-link,
.nav-links__item:nth-child(4) .nav-links__item-link,
.nav-links__item:nth-child(5) .nav-links__item-link,
.nav-links__item:last-child .nav-links__item-link {
    background: transparent !important;
    margin-left: 0 !important;
    color: #FFFFFF;
}

.megamenu__links--level--1 > .megamenu__item > a,
.megamenu--supports-level-3 .megamenu__flyout-panel .menu__item-link {
    line-height: 1.8;
    padding-top: 2px;
    padding-bottom: 2px;
}


/* =========================
   ALINHAMENTO MENU COM MARCA - 2026-04-28
========================= */
@media (min-width: 992px) {
    .nav-links__list {
        /* padding-left: 82px !important;*/
    }
}


/* =========================
   REFINO ALINHAMENTO TOPMENU - 2026-04-28
========================= */
@media (min-width: 992px) {
    .nav-links__list {
        /*padding-left: 150px !important;*/
        gap: 12px;
    }

    .nav-links__item {
        margin: 0 !important;
    }

    .nav-links__item-body,
    .nav-links__item--has-submenu .nav-links__item-body {
        padding-left: 24px !important;
        padding-right: 24px !important;
        justify-content: center;
        height: 60px;
    }

    .nav-links__item:nth-child(3) .nav-links__item-body,
    .nav-links__item:nth-child(4) .nav-links__item-body,
    .nav-links__item:nth-child(5) .nav-links__item-body,
    .nav-links__item:last-child .nav-links__item-body {
        margin-left: 0 !important;
        color: #FFFFFF;
    }

    .nav-links__item:nth-child(1) .nav-links__item-body {
        background-color: #05621d;
    }

    .nav-links__item:nth-child(3) .nav-links__item-body {
        /* background-color: #05621d;*/
    }

    .nav-links__item:nth-child(4) .nav-links__item-body {
        /*background-color: #ed1818;*/
    }

    .nav-links__item:nth-child(5) .nav-links__item-body,
    .nav-links__item:last-child .nav-links__item-body {
        /*background-color: #93CF1C;*/
    }

    .nav-links__item:nth-child(3) .nav-links__item-link,
    .nav-links__item:nth-child(4) .nav-links__item-link,
    .nav-links__item:nth-child(5) .nav-links__item-link,
    .nav-links__item:last-child .nav-links__item-link {
        background: transparent !important;
        margin-left: 0 !important;
        color: #FFFFFF;
    }
}

.nav-panel__nav-links {
    padding-left: 49px;
}


.shop-layout__content {
    width: 90%;
}

/* =========================
   REFINO ESPACAMENTO MENU 3 NIVEIS - 2026-04-28
========================= */
.megamenu__links--level--1 > .megamenu__item > a,
.megamenu--supports-level-3 .megamenu__flyout-panel .menu__item-link {
    line-height: 1.7;
    padding-top: 1px;
    padding-bottom: 1px;
}

/* =========================
   HOVER CATEGORIA ESQUERDA - VERDE ESCURO - ATUALIZADO 2026-05-20
========================= */

/* Hover — verde claro - INSERIR 2026-05-12 */
.megamenu__flyout-panel .menu__item-link:hover {
    background: var(--accent) !important;
    color: #ffffff !important;
}

@media (min-width: 992px) {

    /* Hover da categoria da esquerda - verde escuro #05621d */
    .megamenu__item > a:hover {
        background: var(--primary-hover) !important;
        color: #ffffff !important;
    }

    /* Z-index para garantir sobreposição */
    .megamenu__item {
        position: relative;
        z-index: 1;
    }

    .megamenu__item:hover {
        z-index: 10;
    }

    .megamenu__item > a {
        position: relative;
        z-index: 2;
    }

}

/* ============================================
   MENU DEPARTAMENTOS 3 NÍVEIS - AJUSTES BASE - ATUALIZADO 2026-05-20
   ============================================ */
.megamenu__links--level-1 {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.megamenu__links--level-1 > .megamenu__item {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
}

/* NÍVEL 1 - CATEGORIA PRINCIPAL: mesma cor do menu */
.megamenu__links--level-1 > .megamenu__item > a {
    flex: 1 !important;
    /* NOVA LINHA */
    display: flex !important;
    /* NOVA LINHA */
    align-items: center !important;
    /* NOVA LINHA */
    color: #FFFFFF;
    /* ou a cor do seu menu principal */
    background: transparent;
    /* ou a cor do menu principal */
}

/* NÍVEIS 2 E 3 - SUBCATEGORIAS: verde escuro */
.megamenu--supports-level-3 .megamenu__flyout-panel .menu__list:not(.megamenu__links--level-1) {
    background: var(--primary-dark);
}

/* Ou de forma mais específica para nível 2 e 3 */
.megamenu__links--level-2,
.megamenu__links--level-3 {
    background: var(--primary-dark);
}

/* Texto das subcategorias em branco para contraste */
.megamenu__links--level-2 .megamenu__item > a,
.megamenu__links--level-3 .megamenu__item > a {
    color: #FFFFFF;
}

/* ============================================
   CORRIGIR BACKGROUND DO PAINEL FLYOUT - ATUALIZADO 2026-05-20
   ============================================ */

/* Força o background do painel para primary-dark */
.megamenu--supports-level-3 .megamenu__flyout-panel > .menu,
.megamenu__flyout-panel > .menu,
.megamenu__flyout-panel .menu--layout--classic {
    background: var(--primary-dark) !important;
    box-shadow: none !important;
    /* remove sombra se quiser */
}

/* Garante que submenus também fiquem escuros */
.megamenu__flyout-panel .menu__list,
.megamenu__flyout-panel .megamenu__links--level-2,
.megamenu__flyout-panel .megamenu__links--level-3 {
    background: var(--primary-dark) !important;
}

/* Remove qualquer borda ou sombra que possa aparecer */
.megamenu__flyout-panel,
.megamenu__flyout-panel > .menu {
    border: none !important;
    outline: none !important;
}

/* =========================
   REFINO ESPACAMENTO MENU 3 ATUALIZADO 2026-05-20
========================= */
.megamenu__links--level--1 > .megamenu__item > a,
.megamenu--supports-level-3 .megamenu__flyout-panel .menu__item-link {
    line-height: 1.7;
    padding-top: 1px;
    padding-bottom: 1px;
}

/* ==========================================================================
   NOVO RODAPÉ UNIFICADO — ATACADO IDEAL (VERSÃO FINAL COM TODAS AS CORREÇÕES)
   ========================================================================== */

.site__footer {
    font-family: 'Outfit', sans-serif;
    color: #3a5c35;
    -webkit-font-smoothing: antialiased;
    background: #f4f8f1;
    width: 100%;
    padding-top: 20px;
}

/* Reset interno otimizado para tags específicas */
.site__footer,
.site__footer div,
.site__footer p,
.site__footer a,
.site__footer ul,
.site__footer li,
.site__footer span,
.site__footer nav,
.site__footer img,
.site__footer i {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── ESTRUTURA VISUAL ────────────────────────────────── */
.site__footer .f-hero {
    background: #0d4524;
    padding: 52px 60px 0;
    display: block;
}
.site__footer .f-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 96px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 0.92;
    color: #ffffff;
    animation: fadeUpFooter .6s ease both;
}
.site__footer .f-hero-title span {
    color: #a8c14c;
}
.site__footer .f-hero-tagline {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    text-align: right;
    max-width: 220px;
    line-height: 1.7;
    padding-bottom: 8px;
    margin-left: auto;
}
.site__footer .f-hero-bar {
    background: #0d4524;
    height: 32px;
    position: relative;
}
.site__footer .f-hero-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: #f4f8f1;
    border-radius: 24px 24px 0 0;
}

/* Grid Principal */
.site__footer .f-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    padding: 0 60px;
    border-bottom: 1px solid rgba(90,154,85,0.15);
}
.site__footer .f-col {
    padding: 40px 40px 40px 0;
    border-right: 1px solid rgba(90,154,85,0.15);
}
.site__footer .f-col + .f-col {
    padding-left: 40px;
}
.site__footer .f-col:last-child {
    border-right: none;
}

.site__footer .f-label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5a9a55;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.site__footer .f-label::before {
    content: '';
    display: block;
    width: 14px;
    height: 2px;
    background: #a8c14c;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Bloco Institucional & Logo */
.site__footer .f-logo {
    display: block;
    margin-bottom: 16px;
}
.site__footer .f-logo img {
    height: 60px;
    width: auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.site__footer .f-desc {
    font-size: 13px;
    font-weight: 300;
    color: #7aA070;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 260px;
}

/* Lojas de Aplicativos */
.site__footer .f-apps {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.site__footer .f-apps a {
    display: block;
    border: 1px solid rgba(90,154,85,0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.site__footer .f-apps img {
    height: 50px;
    width: auto;
    display: block;
}

/* Links de Navegação */
.site__footer .f-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.site__footer .f-links a {
    color: #3a5c35;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 300;
    padding: 5px 0;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.site__footer .f-cats {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px 12px;
}
.site__footer .f-cats a {
    color: #3a5c35;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 0;
    display: block;
    border-bottom: 1px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

/* Contatos (Ícones Maiores) */
.site__footer .f-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(90,154,85,0.15);
    transition: background 0.2s ease;
}
.site__footer .f-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(90,154,85,0.10);
    border: 1px solid rgba(90,154,85,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a9a55;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.site__footer .f-contact-icon i {
    font-size: 16px;
    /* Ícones internos maiores */
    display: inline-block;
    line-height: 1;
}
.site__footer .f-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.site__footer .f-contact-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7aA070;
    font-weight: 500;
}
.site__footer .f-contact-value {
    font-size: 13px;
    font-weight: 400;
    color: #3a5c35;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* GERAÇÃO VISUAL DO E-MAIL MASCARADO (Burlar Filtro) */
.site__footer .f-mail-masked {
    display: inline-block !important;
    color: #3a5c35 !important;
    font-size: 12.5px !important;
    text-decoration: none !important;
}
.site__footer .f-mail-masked::after {
    content: "contato" "@" "idealpapel.com.br";
    display: inline-block;
    word-break: break-all;
}

/* ESTILO SEGURO PARA O LINK DE E-MAIL */
.site__footer .f-mail-safe {
    display: inline-block !important;
    color: #3a5c35 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

/* Efeito de hover ao passar o rato */
.site__footer .f-contact-item:hover .f-mail-safe {
    color: #0d4524 !important;
    text-decoration: underline !important;
}

/* Redes Sociais & Pagamentos */
.site__footer .f-social {
    display: flex;
    gap: 8px;
}
.site__footer .f-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(90,154,85,0.15);
    border-radius: 8px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a9a55;
    font-size: 14px;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.site__footer .f-social a i {
    font-size: 16px;
    /* Ícones sociais maiores */
}
.site__footer .f-payment {
    margin-top: 20px;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid rgba(90,154,85,0.15);
    border-radius: 8px;
    display: inline-block;
}
.site__footer .f-payment img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 300px;
}

/* Rodapé Inferior (Faixa Escura) */
.site__footer .f-bottom {
    padding: 18px 60px;
    background: #006223;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.site__footer .f-bottom-left {
    font-size: 11.5px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}
.site__footer .f-bottom-right {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.06em;
}

/* ── ETIQUETA DO PDF ─────────────────────────────────── */
.site__footer .pdf-tag {
    background-color: #e65b5b;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
    margin-left: 6px;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── ANIMAÇÕES & INTERAÇÕES (HOVERS) ────────────────── */
.site__footer .f-logo:hover img {
    opacity: 0.85;
    transform: scale(1.02);
}
.site__footer .f-links a:hover {
    color: #0d4524;
    padding-left: 8px;
}
.site__footer .f-links a::after {
    content: '→';
    font-size: 11px;
    color: #5a9a55;
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: opacity 0.2s ease, left 0.2s ease;
}
.site__footer .f-links a:hover::after {
    opacity: 1;
    left: -2px;
}
.site__footer .f-cats a:hover {
    color: #0d4524;
    border-color: #a8c14c;
}
.site__footer .f-contact-item:hover .f-contact-icon {
    background: #0d4524;
    border-color: #0d4524;
    color: #ffffff;
}
.site__footer .f-contact-item:hover .f-contact-value,
.site__footer .f-contact-item:hover .f-mail-masked,
.site__footer .f-contact-item:hover .f-mail-masked::after {
    color: #0d4524 !important;
}
.site__footer .f-social a:hover {
    background: #0d4524;
    border-color: #0d4524;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(13,69,36,0.2);
}
.site__footer .f-apps a:hover {
    border-color: #5a9a55;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90,154,85,0.15);
}

@keyframes fadeUpFooter {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVIDADE ──────────────────────────────────── */
@media (max-width: 1024px) {
    .site__footer .f-hero {
        padding: 40px 32px 0
    }
    .site__footer .f-hero-title {
        font-size: 72px;
    }
    .site__footer .f-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 32px
    }
    .site__footer .f-col:nth-child(2) {
        border-right: none
    }
    .site__footer .f-col:nth-child(3) {
        padding-left: 0;
        border-right: 1px solid rgba(90,154,85,0.15)
    }
    .site__footer .f-bottom {
        padding: 18px 32px
    }
}
@media (max-width: 640px) {
    .site__footer .f-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 20px 0
    }
    .site__footer .f-hero-title {
        font-size: 54px;
    }
    .site__footer .f-hero-tagline {
        text-align: left;
        max-width: 100%
    }
    .site__footer .f-grid {
        grid-template-columns: 1fr;
        padding: 0 20px
    }
    .site__footer .f-col {
        border-right: none;
        padding-right: 0
    }
    .site__footer .f-col + .f-col {
        padding-left: 0;
        border-top: 1px solid rgba(90,154,85,0.15)
    }
    .site__footer .f-bottom {
        padding: 18px 20px
    }
}

/* Ajuste de espaçamento entre a faixa verde e o logo da Agile */
.site__footer .f-bottom {
    margin-bottom: 24px;
    /* Cria o respiro perfeito abaixo da faixa verde */
}