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

:root {
    --g: #449B3A;
    --g2: #2F6E28;
    --g3: #e8f5e4;
    --dark: #f7f8f6;
    --dark2: #ffffff;
    --dark3: #f0f4ee;
    --border: rgba(61, 145, 50, 0.18);
    --border2: rgba(0, 0, 0, 0.07);
    --text: rgba(20, 30, 18, 0.9);
    --muted: rgba(20, 30, 18, 0.5);
    --muted2: rgba(20, 30, 18, 0.32);
    --f: 'Sora', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--f);
    #background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;

}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--g);
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 52px;
    transition: height 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    height: 60px;
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.15);
}

.nav-logo img {
    height: 65px;
    display: block;
    width: auto;
    transition: height 0.35s ease;
}

nav.scrolled .nav-logo img {
    height: 42px;
}

.nav-links {
    display: flex;
    gap: 15px;
    list-style: none;
}

.nav-links a {
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    color: #2D2D2D;
    text-decoration: none;
    transition: color 0.25s ease, font-size 0.35s ease, background 0.25s ease, border-radius 0.25s ease, padding 0.25s ease;
    position: relative;
    padding: 7px 15px;
}

nav.scrolled .nav-links a {
    font-size: 13px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--g2);
    background: rgba(217, 217, 217, 0.40);
    border-radius: 100px;
}

.nav-links a:hover::after, .nav-links a.active::after {
    transform: scaleX(1);
}

.nav-btn {
    font-family: var(--f);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background: var(--g);
    border: none;
    padding: 14px 26px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 100px;
    transition: background 0.2s, transform 0.2s;
}

.nav-btn:hover {
    background: var(--g2);
}

nav.scrolled .nav-btn {
    font-size: 12px;
    padding: 12px 22px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-dropdown {
    position: relative;
    flex-shrink: 0;
}

.language-dropdown summary {
    list-style: none;
}

.language-dropdown summary::-webkit-details-marker {
    display: none;
}

.lang-trigger {
    height: 46px;
    min-width: 82px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.82);
    color: #2D2D2D;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s, height 0.35s ease;
}

.lang-trigger:hover,
.language-dropdown[open] .lang-trigger {
    border-color: var(--g);
    color: var(--g2);
    background: #fff;
    box-shadow: 0 8px 22px rgba(61, 145, 50, 0.1);
}

nav.scrolled .lang-trigger {
    height: 40px;
}

.lang-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.lang-current {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
}

.lang-caret {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s;
}

.language-dropdown[open] .lang-caret {
    transform: rotate(225deg) translateY(-1px);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 700;
    min-width: 168px;
    padding: 6px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(17, 26, 15, 0.12);
}

.lang-option {
    width: 100%;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #2D2D2D;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    font-family: var(--f);
    font-size: 12px;
    font-weight: 600;
    text-align: left;
}

.lang-option:hover,
.lang-option.active {
    background: var(--g3);
    color: var(--g2);
}

.lang-option.active::after {
    content: '';
    width: 6px;
    height: 6px;
    margin-left: auto;
    border-radius: 50%;
    background: var(--g);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s;
}

/* SHARED */
.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 52px;
}

.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 18px;
}

.sec-label::before {
    content: '';
    display: block;
    width: 35px;
    height: 3px;
    background: currentColor;
}

.btn {
    font-family: var(--f);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 28px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.25s;
}

.btn-green {
    color: #fff;
    background: var(--g);
    border: 1px solid var(--g);
    border-radius: 100px;
}

.btn-green:hover {
    background: var(--g2);
    border-color: var(--g2);
}

.btn-ghost {
    color: var(--muted);
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 100px;
}

.btn-ghost:hover {
    color: var(--g2);
    border-color: var(--g);
}

.btn-white {
    color: var(--g2);
    background: #fff;
    border: 1px solid #fff;
    border-radius: 100px;
    font-family: var(--f);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 28px;
    text-decoration: none;
    display: inline-flex;
    transition: background 0.2s;
}

.page-quem-somos .btn-white {
    color: #2D2D2D;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.88);
}

.btn-outline-white {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-family: var(--f);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 28px;
    text-decoration: none;
    display: inline-flex;
    transition: border-color 0.2s;
    border-radius: 100px;
}


.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s, transform 0.65s cubic-bezier(.16, 1, .3, 1);
}

.reveal.on {
    opacity: 1;
    transform: none;
}

.reveal-d1 {
    transition-delay: 0.08s;
}

.reveal-d2 {
    transition-delay: 0.16s;
}

.reveal-d3 {
    transition-delay: 0.24s;
}

/* BREADCRUMB */
.breadcrumb {
    background: var(--g3);
    border-bottom: 1px solid var(--border);
    padding: 12px 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    color: var(--muted2);
    margin-top: 68px;
}

.breadcrumb a {
    color: var(--g);
    text-decoration: none;
}

/* CTA STRIP */
.cta-strip {
    background: var(--g);
    padding: 56px 0;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-strip-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cta-strip-title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.cta-strip-sub {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}

/* FOOTER */
footer {
    background: #2D2D2D;
    padding: 56px 0 26px;
    border-top: 1px solid rgba(61, 145, 50, 0.2);
}

.ft-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ft-brand-logo img {
    height: 30px;
    display: block;
    width: auto;
}

.ft-brand-body {
    font-size: 12.5px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.75;
    margin-top: 16px;
}

.ft-col-title {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #449B3A;
    margin-bottom: 16px;
}

.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ft-links a {
    font-size: 12.5px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.ft-links a:hover {
    color: #449B3A;
}

.ft-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ft-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.18);
    font-weight: 300;
}

.ft-social {
    display: flex;
    gap: 9px;
}

.ft-social a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.2s;
}

.ft-social svg {
    width: 15px;
    height: 15px;
    display: block;
    flex-shrink: 0;
}

.ft-social svg [fill]:not([fill="none"]) {
    fill: currentColor;
}

.ft-social svg [stroke] {
    stroke: currentColor;
}

.ft-social a:hover {
    border-color: #449B3A;
    color: #449B3A;
}

@media (max-width: 960px) {
    .cta-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-strip-actions {
        flex-wrap: wrap;
        flex-shrink: 1;
        width: 100%;
    }

    .ft-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ft-bot {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

@media (max-width: 520px) {
    .cta-strip {
        padding: 42px 0;
    }

    .cta-strip-actions {
        flex-direction: column;
    }

    .cta-strip-actions .btn-white,
    .cta-strip-actions .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}

/* FOOTER redesign */
footer {
    position: relative;
    overflow: hidden;
    padding: 88px 0 0;
    border-top: 0;
    background:
        radial-gradient(circle at 9% 6%, rgba(68, 155, 58, 0.24), transparent 24%),
        linear-gradient(135deg, #2D2D2D 0%, #2D2D2D 56%, #252525 100%);
    color: #fff;
}

footer::before {
    content: none;
}

footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 88px 88px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    opacity: 0.26;
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer .ft-top {
    grid-template-columns: minmax(270px, 1.35fr) minmax(210px, 0.9fr) minmax(260px, 1fr);
    gap: 56px;
    margin-bottom: 0;
    padding-bottom: 58px;
}

footer .ft-top > div {
    position: relative;
}

footer .ft-top > div + div {
    padding-left: 48px;
}

footer .ft-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 228px;
    margin-bottom: 24px;
}

footer .ft-brand-logo img {
    height: 88px !important;
    width: auto !important;
    display: block;
}

footer .ft-brand-body {
    max-width: 430px;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

footer .ft-brand-body::after {
    content: none;
}

footer .ft-col-title {
    position: relative;
    margin-bottom: 24px;
    padding-bottom: 14px;
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: none;
}

footer .ft-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: #D9A000;
}

footer .ft-col-title-sub {
    margin-top: 30px;
}

footer .ft-links {
    gap: 13px;
}

footer .ft-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.45;
    transition: color 0.2s, transform 0.2s;
}

footer .ft-links a::before {
    content: '';
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-top: 2px solid #449B3A;
    border-right: 2px solid #449B3A;
    transform: rotate(45deg);
}

footer .ft-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

footer .ft-bot {
    min-height: 82px;
    padding: 24px 0;
}

footer .ft-copy {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 400;
}

footer .ft-social {
    gap: 11px;
    margin-top: 26px;
}

footer .ft-social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    backdrop-filter: blur(10px);
}

footer .ft-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

footer .ft-social a:hover {
    border-color: #449B3A;
    background: #449B3A;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1080px) {
    footer .ft-top {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 42px;
    }

    footer .ft-top > div:first-child {
        grid-column: 1 / -1;
    }

    footer .ft-top > div + div {
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 700px) {
    footer {
        padding-top: 68px;
    }

    footer::before {
        content: none;
    }

    footer .ft-top {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 42px;
    }

    footer .ft-brand-logo img {
        height: 76px !important;
    }

    footer .ft-col-title {
        font-size: 23px;
    }

    footer .ft-bot {
        align-items: flex-start;
        gap: 18px;
    }
}

.sol-icon-wrap img, .ctt-item-icon img {
    display: block;
}

.scroll-top {
    --scroll-progress: 0deg;
    position: fixed;
    right: 26px;
    bottom: 28px;
    z-index: 560;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    padding: 3px;
    border: 0;
    border-radius: 50%;
    background: conic-gradient(var(--g) var(--scroll-progress), rgba(61, 145, 50, 0.22) 0deg);
    box-shadow: 0 18px 42px rgba(4, 42, 31, 0.22);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.92);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.scroll-top::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #052d22;
}

.scroll-top::after {
    content: '';
    position: absolute;
    inset: 11px;
    border: 1px solid rgba(61, 145, 50, 0.5);
    border-radius: 50%;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top:hover {
    transform: translateY(-2px) scale(1);
}

.scroll-top:focus-visible {
    outline: 3px solid rgba(61, 145, 50, 0.32);
    outline-offset: 4px;
}

.scroll-top-arrow {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 22px;
}

.scroll-top-arrow::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 4px;
    width: 2px;
    height: 17px;
    border-radius: 999px;
    background: var(--g);
}

.scroll-top-arrow::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--g);
    border-left: 2px solid var(--g);
    transform: rotate(45deg);
}

@media (max-width: 620px) {
    .scroll-top {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
    }

    .scroll-top::after {
        inset: 10px;
    }
}

.cookie-consent {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 650;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto;
    padding: 20px 22px;
    border: 1px solid rgba(82, 178, 68, 0.28);
    border-radius: 8px;
    background: rgba(7, 29, 24, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.cookie-consent.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-consent-title {
    margin-bottom: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
}

.cookie-consent-text {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
}

.cookie-consent-btn {
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--g);
    color: #fff;
    cursor: pointer;
    font-family: var(--f);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0 22px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}

.cookie-consent-btn:hover {
    background: var(--g2);
    transform: translateY(-1px);
}

.cookie-consent-btn:focus-visible {
    outline: 3px solid rgba(82, 178, 68, 0.34);
    outline-offset: 3px;
}

body.cookie-consent-open .scroll-top {
    bottom: 118px;
}

@media (max-width: 700px) {
    .cookie-consent {
        left: 16px;
        right: 16px;
        bottom: 16px;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
    }

    .cookie-consent-btn {
        width: 100%;
    }

    body.cookie-consent-open .scroll-top {
        bottom: 178px;
    }
}

/* PAGE-INDEX */
body.page-index {
    --mid: #e4ede1;
}

body.page-index .cursor {
    width: 8px;
    height: 8px;
    background: var(--g);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s;
    mix-blend-mode: multiply;
}

/* HERO */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 68px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    background-image: url("../img/banner-header.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

body.page-index .hero-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("../img/index-bg-1.svg");
    opacity: 0.5;
}

body.page-index .hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(61, 145, 50, 0.08) 0%, transparent 65%);
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

body.page-index .hero-glow2 {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(61, 145, 50, 0.05) 0%, transparent 65%);
    left: -60px;
    bottom: -60px;
    pointer-events: none;
}

body.page-index .hero-left {
    padding: 80px 52px;
    position: relative;
    z-index: 2;
}

body.page-index .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    background: var(--g3);
    padding: 7px 14px;
    margin-bottom: 32px;
    opacity: 0;
    animation: rise 0.7s 0.1s forwards;
}

body.page-index .hero-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--g);
    box-shadow: 0 0 8px rgba(61, 145, 50, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: 0.35
    }
}

body.page-index .hero-badge span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--g);
}

body.page-index .hero-h1 {
    font-size: clamp(42px, 5.2vw, 60px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: #2D2D2D;
    opacity: 0;
    animation: rise 0.8s 0.25s forwards;
    text-transform: uppercase;
}

body.page-index .hero-h1 em {
    font-style: normal;
    color: var(--g);
    position: relative;
}


body.page-index .hero-sub {
    font-size: 15px;
    font-weight: 400;
    color: var(--muted);
    line-height: 110%;
    max-width: 420px;
    margin-top: 24px;
    opacity: 0;
    animation: rise 0.8s 0.4s forwards;
}

body.page-index .hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    opacity: 0;
    animation: rise 0.8s 0.55s forwards;
}

body.page-index .btn-green:hover {
    transform: translateY(-2px);
}

body.page-index .hero-nums {
    display: flex;
    gap: 0;
    margin-top: 52px;
    border-top: 1px solid var(--border);
    padding-top: 28px;
    opacity: 0;
    animation: rise 0.8s 0.7s forwards;
}

body.page-index .hero-num {
    flex: 1;
    padding-right: 28px;
    border-right: 1px solid var(--border);
    margin-right: 28px;
}

body.page-index .hero-num:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

body.page-index .hero-num-val {
    font-size: 40px;
    font-weight: 800;
    color: #2D2D2D;
    line-height: 1;
    letter-spacing: -0.03em;
}

body.page-index .hero-num-lbl {
    font-size: 11px;
    font-weight: 500;
    color: var(--g);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
    line-height: 1.4;
}

body.page-index .hero-right {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

body.page-index .geo-wrap {
    position: relative;
    width: 460px;
    height: 460px;
    opacity: 0;
    animation: fadeIn 1.2s 0.5s forwards;
}

body.page-index .geo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(61, 145, 50, 0.18);
}

body.page-index .geo-ring:nth-child(1) {
    inset: 0;
    animation: spin1 40s linear infinite;
}

body.page-index .geo-ring:nth-child(1)::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--g);
    box-shadow: 0 0 12px var(--g);
    top: -3.5px;
    left: 50%;
    transform: translateX(-50%);
}

body.page-index .geo-ring:nth-child(2) {
    inset: 60px;
    border-style: dashed;
    border-color: rgba(61, 145, 50, 0.09);
    animation: spin1 25s linear infinite reverse;
}

body.page-index .geo-ring:nth-child(3) {
    inset: 120px;
    animation: spin1 18s linear infinite;
}

body.page-index .geo-ring:nth-child(3)::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--g2);
    opacity: 0.7;
    bottom: -2.5px;
    left: 50%;
    transform: translateX(-50%);
}

body.page-index .geo-center {
    position: absolute;
    inset: 160px;
    background: radial-gradient(circle, rgba(61, 145, 50, 0.2) 0%, rgba(61, 145, 50, 0.05) 50%, transparent 80%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-index .geo-icon {
    opacity: 0.55;
}

body.page-index .geo-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    padding: 10px 16px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.page-index .geo-tag-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--g);
}

body.page-index .geo-tag-val {
    font-size: 20px;
    font-weight: 700;
    color: #2D2D2D;
    line-height: 1.2;
    margin-top: 2px;
}

body.page-index .geo-tag:nth-child(5) {
    top: 20px;
    right: 0;
    animation: float1 4s ease-in-out infinite;
}

body.page-index .geo-tag:nth-child(6) {
    bottom: 60px;
    left: 0;
    animation: float1 4s ease-in-out infinite;
    animation-delay: -2s;
}

body.page-index .geo-tag:nth-child(7) {
    top: 50%;
    right: -24px;
    animation: float2 4s ease-in-out infinite;
    animation-delay: -1s;
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-8px)
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(-50%)
    }
    50% {
        transform: translateY(calc(-50% - 8px))
    }
}

@keyframes spin1 {
    to {
        transform: rotate(360deg)
    }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(22px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

/* MARQUEE */
.marquee-wrap {
    overflow: hidden;
    background: var(--g);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.page-index .marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 10s linear infinite;
}

body.page-index .marquee-item {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    padding: 0 36px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
}


@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

/* LAYOUT */
section {
    padding: 100px 0;
}

section#solucoes {
    padding: 60px 0;
}

body.page-index h2.sec-title {
    font-size: clamp(30px, 3.8vw, 56px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: #2D2D2D;
    text-transform: uppercase;
}

body.page-index h2.sec-title .acc {
    color: var(--g);
}

/* SOBRE */
#sobre {
    background: var(--dark2);
}

body.page-index .sobre-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

body.page-index .sobre-body {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.85;
    margin-top: 20px;
}

body.page-index .sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    margin-top: 40px;
}

body.page-index .sobre-cell {
    background: var(--dark2);
    padding: 22px 20px;
    transition: background 0.3s;
    border: 1px solid transparent;
}

body.page-index .sobre-cell:hover {
    background: var(--g3);
}

body.page-index .sobre-cell-n {
    font-size: 36px;
    font-weight: 800;
    color: var(--g);
    line-height: 1;
    letter-spacing: -0.03em;
}

body.page-index .sobre-cell-t {
    font-size: 10.5px;
    font-weight: 500;
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

body.page-index .sobre-actions {
    display: flex;
    margin-top: 28px;
}

body.page-index .sobre-right {
    min-width: 0;
}

body.page-index .sobre-presenca {
    background: var(--dark3);
    border: 1px solid var(--border);
    overflow: hidden;
}

body.page-index .sobre-presenca-media {
    position: relative;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: #dfe8dc;
}

body.page-index .sobre-presenca-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: sobreSlideFade 18s infinite;
}

body.page-index .sobre-presenca-slide:nth-child(2) {
    animation-delay: 6s;
}

body.page-index .sobre-presenca-slide:nth-child(3) {
    animation-delay: 12s;
}

body.page-index .sobre-presenca-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.86);
    transform: scale(1);
    animation: sobreSlideZoom 18s infinite;
}

body.page-index .sobre-presenca-slide:nth-child(2) img {
    animation-delay: 6s;
}

body.page-index .sobre-presenca-slide:nth-child(3) img {
    animation-delay: 12s;
}

body.page-index .sobre-presenca-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 26, 15, 0.48), rgba(17, 26, 15, 0.02) 62%);
}

body.page-index .sobre-presenca-badge {
    position: absolute;
    left: 22px;
    bottom: 18px;
    z-index: 1;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--g);
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
}

body.page-index .sobre-presenca-badge span {
    display: block;
    margin-bottom: 3px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: rgba(45, 45, 45, 0.55);
}

@keyframes sobreSlideFade {
    0% {
        opacity: 0;
    }
    4% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    36% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes sobreSlideZoom {
    0% {
        transform: scale(1);
    }
    36% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.1);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.page-index .sobre-presenca-slide,
    body.page-index .sobre-presenca-slide img {
        animation: none;
    }

    body.page-index .sobre-presenca-slide:first-child {
        opacity: 1;
    }
}

body.page-index .sobre-presenca-body {
    padding: 30px 30px 32px;
}

body.page-index .sobre-presenca-kicker {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 8px;
}

body.page-index .sobre-presenca-title {
    max-width: 430px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #2D2D2D;
    margin-bottom: 13px;
}

body.page-index .sobre-presenca-body p {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.76;
}

body.page-index .sobre-unidades {
    display: grid;
    gap: 1px;
    background: var(--border);
    margin-top: 24px;
}

body.page-index .sobre-unidade {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 15px 16px;
    background: var(--dark2);
    border-left: 3px solid transparent;
    transition: background 0.25s, border-color 0.25s;
}

body.page-index .sobre-unidade:hover {
    background: var(--g3);
    border-left-color: var(--g);
}

body.page-index .sobre-unidade-sigla {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

body.page-index .sobre-unidade-sigla svg {
    max-width: 30px;
}

body.page-index .sobre-unidade-nome {
    font-size: 14px;
    font-weight: 700;
    color: #2D2D2D;
    line-height: 1.25;
}

body.page-index .sobre-unidade-meta {
    margin-top: 3px;
    font-size: 11px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.35;
}

body.page-index #sobre {
    position: relative;
    overflow: hidden;
    background: #142113;
    min-height: 700px;
}

body.page-index #sobre::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(13, 24, 12, 0.7) 0%, rgba(13, 24, 12, 0.35) 47%, rgba(13, 24, 12, 0.14) 100%),
        linear-gradient(0deg, rgba(13, 24, 12, 0.35), rgba(13, 24, 12, 0.08));
    pointer-events: none;
}

body.page-index .sobre-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #142113;
}

body.page-index .sobre-bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.45s cubic-bezier(.45, 0, .2, 1);
    will-change: opacity;
}

body.page-index .sobre-bg-slide.active {
    opacity: 1;
}

body.page-index .sobre-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.92);
    transform: scale(1.12);
    will-change: transform;
}

body.page-index .sobre-bg-slide.active img {
    animation: sobreBgZoom 7.2s cubic-bezier(.22, .61, .36, 1) forwards;
}

body.page-index #sobre > .container {
    position: relative;
    z-index: 2;
}

body.page-index #sobre .sobre-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.42fr);
    gap: clamp(28px, 5vw, 78px);
}

body.page-index .sobre-copy-card {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: clamp(28px, 4vw, 46px);
    background: linear-gradient(135deg, rgba(61, 145, 50, 0.6), rgba(46, 112, 38, 0.58));
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(3px) saturate(1.18);
    -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

body.page-index .sobre-copy-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03) 42%, rgba(255, 255, 255, 0.1));
    pointer-events: none;
}

body.page-index .sobre-copy-card > * {
    position: relative;
    z-index: 1;
}

body.page-index .sobre-copy-card .sec-title {
    font-size: clamp(26px, 3vw, 43px);
    line-height: 1.04;
}

body.page-index .sobre-copy-card .sec-label {
    color: rgba(255, 255, 255, 0.78);
}

body.page-index .sobre-copy-card .sec-title,
body.page-index .sobre-copy-card .sec-title .acc,
body.page-index .sobre-copy-card .sobre-body,
body.page-index .sobre-copy-card .sobre-cell-t {
    color: #fff;
}

body.page-index .sobre-copy-card .sobre-body {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    line-height: 1.5;
    margin-top: 15px;
}

body.page-index .sobre-copy-card .sobre-grid {
    background: rgba(255, 255, 255, 0.18);
    margin-top: 28px;
}

body.page-index .sobre-copy-card .sobre-cell {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
    padding: 16px 18px;
}

body.page-index .sobre-copy-card .sobre-cell:hover {
    background: rgba(255, 255, 255, 0.15);
}

body.page-index .sobre-copy-card .sobre-cell-n {
    color: #fff;
    font-size: 30px;
}

body.page-index .sobre-copy-card .sobre-cell-t {
    font-size: 9.5px;
}

body.page-index .sobre-copy-card .sobre-actions {
    margin-top: 22px;
}

body.page-index .sobre-copy-card .btn-green {
    color: var(--g2);
    background: #fff;
    border-color: #fff;
}

body.page-index .sobre-copy-card .btn-green:hover {
    color: #fff;
    background: rgba(20, 30, 18, 0.92);
    border-color: rgba(20, 30, 18, 0.92);
}

body.page-index .sobre-presenca {
    position: relative;
    z-index: 2;
    width: min(100%, 450px);
    margin-left: auto;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-left: 4px solid var(--g);
    border-radius: 6px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
    overflow: visible;
}

body.page-index .sobre-presenca-media {
    display: none;
}

body.page-index .sobre-presenca-slide {
    opacity: 0;
    animation: none;
    transition: opacity 0.8s ease;
}

body.page-index .sobre-presenca-slide.active {
    opacity: 1;
    z-index: 1;
}

body.page-index .sobre-presenca-slide img,
body.page-index .sobre-presenca-slide:nth-child(2) img,
body.page-index .sobre-presenca-slide:nth-child(3) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92);
    transform: scale(1.02);
    animation: none;
}

body.page-index .sobre-presenca-slide.active img {
    animation: sobreBgZoom 6.5s linear forwards;
}

body.page-index .sobre-presenca-slide::after {
    background: linear-gradient(to right, rgba(13, 24, 12, 0.38), rgba(13, 24, 12, 0.04));
}

body.page-index .sobre-presenca-badge,
body.page-index .sobre-presenca-body p,
body.page-index .sobre-unidades {
    display: none;
}

body.page-index .sobre-presenca-body {
    padding: 26px;
}

body.page-index .sobre-presenca-kicker {
    margin-bottom: 18px;
}

body.page-index .sobre-filial-region {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 26px;
    padding: 5px 11px;
    color: var(--g2);
    background: var(--g3);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.page-index .sobre-filial-flag {
    width: 22px;
    height: 16px;
    display: block;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 2px;
}

body.page-index .sobre-presenca-title {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 25px;
}

body.page-index .sobre-filial-meta {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

body.page-index .sobre-filial-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
}

body.page-index .sobre-filial-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: rgba(20, 30, 18, 0.62);
    font-family: var(--f);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

body.page-index .sobre-filial-btn img {
    width: 18px;
    height: 13px;
    display: block;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 2px;
}

body.page-index .sobre-filial-btn:hover,
body.page-index .sobre-filial-btn.active {
    color: #fff;
    background: var(--g);
    border-color: var(--g);
}

@keyframes sobreBgZoom {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1.12);
    }
}

@media (max-width: 960px) {
    body.page-index #sobre {
        min-height: auto;
    }

    body.page-index #sobre .sobre-layout {
        grid-template-columns: 1fr;
    }

    body.page-index .sobre-copy-card {
        padding: 34px 24px;
    }

    body.page-index .sobre-presenca {
        width: 100%;
        margin-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.page-index .sobre-bg-slide.active img {
        animation: none;
        transform: scale(1.04);
    }
}

/* SOLUÇÕES */
#solucoes {
    background: var(--dark);
}

body.page-index .sol-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

body.page-index .sol-sub {
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    max-width: 400px;
    line-height: 1.3;
}

body.page-index .sol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

body.page-index .sol-card {
    background: var(--dark2);
    padding: 28px 24px;
    position: relative;
    transition: background 0.3s, box-shadow 0.3s;
    cursor: default;
}

body.page-index .sol-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--g);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

body.page-index .sol-card:hover {
    background: var(--g3);
}

body.page-index .sol-card:hover::after {
    transform: scaleX(1);
}

body.page-index .sol-n {
    font-size: 10px;
    font-weight: 600;
    color: rgba(61, 145, 50, 0.4);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}

body.page-index .sol-icon-wrap {
    width: 40px;
    height: 40px;
    background: rgba(61, 145, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background 0.3s;
}

body.page-index .sol-card:hover .sol-icon-wrap {
    background: rgba(61, 145, 50, 0.18);
}

body.page-index .sol-for {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 4px;
}

body.page-index .sol-title {
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 9px;
    color: #2D2D2D;
    text-transform: uppercase;
}

body.page-index .sol-desc {
    font-size: 12px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

/* SERVIÇOS */
#servicos {
    background: var(--dark2);
}

body.page-index .srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 48px;
}

body.page-index .srv-main {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    background: transparent;
}

body.page-index .srv-main-left {
    background: #FAFAFA;
    padding: 35px;
    position: relative;
}

body.page-index .srv-main-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--g);
}

body.page-index .srv-main-right {
    background: var(--g3);
    padding: 42px 38px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

body.page-index .srv-icon {
    width: 46px;
    height: 46px;
    background: rgba(61, 145, 50, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--g);
}

body.page-index .srv-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
    color: #2D2D2D;
}

body.page-index .srv-body {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.82;
    margin-bottom: 22px;
}

body.page-index .srv-feat {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 13px;
    font-weight: 500;
    color: var(--g);
    line-height: 1.55;
    padding: 12px 0;
}

body.page-index .srv-feat:last-child {
    border-bottom: none;
}

body.page-index .srv-feat-arr {
    color: var(--g);
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 11px;
}

body.page-index .srv-spec-label {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 20px;
}

body.page-index .srv-spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--g);
    padding: 6px 0;
}

body.page-index .srv-spec-item:last-of-type {
    border-bottom: none;
}

body.page-index .srv-spec-arr {
    color: var(--g);
    font-size: 12px;
}

body.page-index .srv-quote {
    margin-top: auto;
    padding-top: 18px;
    font-size: 12px;
    font-weight: 300;
    color: var(--g);
    line-height: 1.5;
    text-align: justify;
}

body.page-index .srv-mini {
    background: var(--dark2);
    padding: 32px 28px;
    transition: background 0.3s;
    display: flex;
    flex-direction: column;
}

body.page-index .srv-mini:hover {
    background: var(--g3);
}

body.page-index .srv-mini-icon {
    width: 36px;
    height: 36px;
    background: rgba(61, 145, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g);
    margin-bottom: 16px;
}

body.page-index .srv-mini-title {
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    color: #2D2D2D;
}

body.page-index .srv-mini-body {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

body.page-index .srv-legacy {
    display: none;
}

body.page-index .srv-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 60px;
    align-items: start;
    margin-top: 42px;
}

body.page-index .srv-visual {
    position: relative;
    min-height: 560px;
}

body.page-index .srv-visual::before {
    content: '';
    position: absolute;
    left: -26px;
    bottom: 44px;
    width: 54%;
    height: 52%;
    border-radius: 8px;
    background: var(--g);
}

body.page-index .srv-photo-card {
    position: absolute;
    left: 0;
    top: 0;
    width: 78%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    background: #e1e8df;
    box-shadow: 0 28px 70px rgba(17, 26, 15, 0.14);
}

body.page-index .srv-photo-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(0.92);
}

body.page-index .srv-photo-card-small {
    left: auto;
    right: 0;
    top: 92px;
    width: 46%;
    height: 260px;
    border: 14px solid #fff;
    box-shadow: 0 24px 56px rgba(17, 26, 15, 0.18);
}

body.page-index .srv-years-badge {
    position: absolute;
    right: 0;
    bottom: 18px;
    z-index: 2;
    min-width: 330px;
    min-height: 126px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 34px;
    border-radius: 48px 8px 8px 48px;
    background: #146a0a;
    color: #fff;
    box-shadow: 0 28px 60px rgba(17, 26, 15, 0.22);
}

body.page-index .srv-years-badge strong {
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0;
}

body.page-index .srv-years-badge span {
    max-width: 130px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

body.page-index .srv-content {
    min-width: 0;
}

@media (min-width: 1121px) {
    body.page-index .srv-content {
        margin-top: -190px;
    }
}

body.page-index .srv-script {
    color: var(--g);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 22px;
}

body.page-index .srv-headline {
    max-width: 660px;
    color: #10220e;
    font-size: clamp(36px, 4vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

body.page-index .srv-lead {
    max-width: 650px;
    margin-top: 24px;
    color: rgba(16, 34, 14, 0.62);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

body.page-index .srv-proof {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 34px 0;
}

body.page-index .srv-proof-number {
    color: var(--g);
    font-size: clamp(58px, 6vw, 94px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0;
}

body.page-index .srv-proof-text {
    max-width: 270px;
    padding-left: 24px;
    border-left: 1px solid rgba(16, 34, 14, 0.18);
    color: #10220e;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

body.page-index .srv-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

body.page-index .srv-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    border: 1px solid rgba(16, 34, 14, 0.08);
    border-radius: 8px;
    background: #fff;
    color: #10220e;
    text-decoration: none;
    box-shadow: 0 18px 48px rgba(17, 26, 15, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body.page-index .srv-card:hover {
    transform: translateY(-4px);
    border-color: rgba(61, 145, 50, 0.34);
    box-shadow: 0 26px 58px rgba(17, 26, 15, 0.13);
}

body.page-index .srv-card-green {
    background: var(--g);
    color: #fff;
}

body.page-index .srv-card-outline {
    background: #E1BA77;
    color: #10220e;
}

body.page-index .srv-card-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: auto;
    border-radius: 50%;
    background: rgba(61, 145, 50, 0.1);
    color: var(--g);
    font-size: 11px;
    font-weight: 800;
}

body.page-index .srv-card-green .srv-card-index {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

body.page-index .srv-card-outline .srv-card-index {
    background: rgba(16, 34, 14, 0.12);
    color: #10220e;
}

body.page-index .srv-card strong {
    display: block;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: 0;
}

body.page-index .srv-card p {
    margin-top: 10px;
    color: currentColor;
    opacity: 0.72;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.55;
}

body.page-index .srv-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 17px 28px;
    border-radius: 100px;
    background: #146a0a;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, gap 0.2s;
}

body.page-index .srv-cta:hover {
    gap: 16px;
    background: var(--g2);
}

@media (max-width: 1120px) {
    body.page-index .srv-showcase {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    body.page-index .srv-visual {
        min-height: 560px;
    }
}

@media (max-width: 680px) {
    body.page-index .srv-showcase {
        margin-top: 38px;
        gap: 34px;
    }

    body.page-index .srv-visual {
        min-height: auto;
        padding-bottom: 92px;
    }

    body.page-index .srv-visual::before {
        left: -14px;
        bottom: 48px;
        width: 70%;
        height: 42%;
    }

    body.page-index .srv-photo-card {
        position: relative;
        width: 86%;
        height: auto;
        aspect-ratio: 4 / 3.55;
    }

    body.page-index .srv-photo-card-small {
        position: absolute;
        right: 0;
        top: 42%;
        width: 48%;
        height: auto;
        aspect-ratio: 1.1 / 1;
        border-width: 8px;
    }

    body.page-index .srv-years-badge {
        left: 22px;
        right: 0;
        bottom: 0;
        min-width: 0;
        min-height: 96px;
        padding: 18px 22px;
    }

    body.page-index .srv-years-badge span {
        max-width: 155px;
        font-size: 12px;
    }

    body.page-index .srv-script {
        font-size: 21px;
    }

    body.page-index .srv-headline {
        font-size: 34px;
    }

    body.page-index .srv-proof {
        align-items: flex-start;
        gap: 18px;
    }

    body.page-index .srv-proof-text {
        padding-left: 18px;
        font-size: 12.5px;
    }

    body.page-index .srv-cards {
        grid-template-columns: 1fr;
    }
}

/* MERCADOS */
#mercados {
    background: linear-gradient(180deg, #eef6ec 0%, #f8fbf7 70%, #ffffff 100%);
    padding: 50px 0 92px;
    position: relative;
    overflow: hidden;
}

body.page-index #mercados::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(61, 145, 50, 0.08), transparent 34%),
        repeating-linear-gradient(-45deg, transparent, transparent 34px, rgba(61, 145, 50, 0.035) 34px, rgba(61, 145, 50, 0.035) 35px);
}

body.page-index .mkt-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    position: relative;
    z-index: 1;
}

body.page-index .mkt-intro {
    display: grid;
    grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1fr);
    column-gap: 46px;
    row-gap: 12px;
    align-items: end;
}

body.page-index .mkt-label {
    grid-column: 1;
    grid-row: 1;
    color: rgba(36, 90, 31, 0.62);
    margin-bottom: 0;
}

body.page-index .mkt-title {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 800;
    line-height: 0.97;
    letter-spacing: -0.025em;
    color: var(--g2);
}

body.page-index .mkt-title .dim {
    color: rgba(36, 90, 31, 0.38);
}

body.page-index .mkt-sub {
    grid-column: 2;
    grid-row: 1 / span 2;
    font-size: 13px;
    font-weight: 400;
    color: rgba(20, 30, 18, 0.66);
    line-height: 1.8;
    margin-top: 0;
    max-width: 610px;
}

body.page-index .mkt-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: clamp(26px, 3.5vw, 42px);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(61, 145, 50, 0.12);
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(35, 80, 31, 0.14);
}

body.page-index .mkt-stat {
    display: grid;
    align-content: center;
    gap: 22px;
    min-height: 132px;
    padding: 0 clamp(18px, 2.7vw, 34px);
    border-left: 1px solid rgba(61, 145, 50, 0.12);
    transition: transform 0.25s ease;
}

body.page-index .mkt-stat:first-child {
    border-left: 0;
}

body.page-index .mkt-stat:hover {
    transform: translateY(-3px);
}

body.page-index .mkt-stat-n {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1;
    color: var(--g2);
    letter-spacing: -0.02em;
}

body.page-index .mkt-stat-detail {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    align-items: center;
}

body.page-index .mkt-stat-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.page-index .mkt-stat-icon img {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
}

body.page-index .mkt-stat-t {
    font-size: 13px;
    font-weight: 600;
    color: rgba(20, 30, 18, 0.78);
    line-height: 1.45;
}

@media (max-width: 960px) {
    body.page-index .mkt-intro {
        grid-template-columns: 1fr;
        row-gap: 14px;
    }

    body.page-index .mkt-label,
    body.page-index .mkt-title,
    body.page-index .mkt-sub {
        grid-column: auto;
        grid-row: auto;
    }

    body.page-index .mkt-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 20px;
    }

    body.page-index .mkt-stat {
        padding: 22px;
        border-left: 0;
        border-top: 1px solid rgba(61, 145, 50, 0.12);
    }

    body.page-index .mkt-stat:nth-child(-n + 2) {
        border-top: 0;
    }

    body.page-index .mkt-stat:nth-child(2n) {
        border-left: 1px solid rgba(61, 145, 50, 0.12);
    }
}

@media (max-width: 560px) {
    body.page-index .mkt-stats {
        grid-template-columns: 1fr;
        padding: 12px 20px;
    }

    body.page-index .mkt-stat,
    body.page-index .mkt-stat:nth-child(2n) {
        min-height: auto;
        padding: 22px 0;
        border-left: 0;
        border-top: 1px solid rgba(61, 145, 50, 0.12);
    }

    body.page-index .mkt-stat:first-child {
        border-top: 0;
    }
}

/* MERCADOS redesign */
#mercados {
    background: linear-gradient(180deg, #fff 0%, #fbfcf8 46%, #f1eee4 100%);
    padding: 104px 0 78px;
    position: relative;
    overflow: hidden;
}

body.page-index #mercados::before {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 52%;
    background-image: radial-gradient(rgba(61, 145, 50, 0.11) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.52), transparent 78%);
    pointer-events: none;
}

body.page-index .mkt-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 72px;
    align-items: center;
}

body.page-index .mkt-visual {
    position: relative;
    min-height: 545px;
}

body.page-index .mkt-rice-frame {
    position: absolute;
    left: 76px;
    top: 44px;
    width: 56%;
    height: 72%;
    border: 12px solid #f1c75f;
    border-radius: 8px;
}

body.page-index .mkt-rice-img {
    position: absolute;
    left: -68px;
    top: 42px;
    z-index: 2;
    width: min(112%, 760px);
    height: auto;
    display: block;
    filter: drop-shadow(0 28px 42px rgba(71, 55, 28, 0.18));
}

body.page-index .mkt-presence-card {
    position: absolute;
    right: 18px;
    bottom: 50px;
    z-index: 3;
    width: min(310px, 46%);
    padding: 22px 24px;
    border: 1px solid rgba(61, 145, 50, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 58px rgba(17, 26, 15, 0.14);
    backdrop-filter: blur(8px);
}

body.page-index .mkt-presence-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--g);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

body.page-index .mkt-presence-card strong {
    display: block;
    color: #10220e;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.18;
}

body.page-index .mkt-intro {
    display: block;
}

body.page-index .mkt-label {
    color: var(--g);
    margin-bottom: 18px;
}

body.page-index .mkt-title {
    max-width: 680px;
    color: #10220e;
    font-size: clamp(38px, 4.8vw, 70px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: 0;
}

body.page-index .mkt-sub {
    max-width: 650px;
    margin-top: 24px;
    color: rgba(16, 34, 14, 0.62);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.78;
}

body.page-index .mkt-highlights {
    display: grid;
    gap: 14px;
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid rgba(16, 34, 14, 0.12);
}

body.page-index .mkt-highlight {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    color: rgba(16, 34, 14, 0.74);
    font-size: 15px;
    font-weight: 700;
    line-height: 2.1;
}

body.page-index .mkt-highlight span {
    width: 30px;
    height: 30px;
    border: 7px solid #172018;
    border-radius: 50%;
    position: relative;
}

body.page-index .mkt-highlight span::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -60%) rotate(-45deg);
}

body.page-index .mkt-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 34px auto 0;
    padding: 34px 42px;
    border: 1px solid rgba(16, 34, 14, 0.06);
    border-radius: 84px;
    background: #fff;
    box-shadow: 0 30px 86px rgba(17, 26, 15, 0.12);
}

body.page-index .mkt-stat {
    min-height: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 30px;
    border-top: 0;
    border-left: 1px solid rgba(16, 34, 14, 0.12);
}

body.page-index .mkt-stat:first-child {
    border-left: 0;
}

body.page-index .mkt-stat:hover {
    transform: translateY(-3px);
}

body.page-index .mkt-stat-icon {
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #172018;
}

body.page-index .mkt-stat-icon img {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

body.page-index .mkt-stat-n {
    color: #10220e;
    font-size: clamp(34px, 3.4vw, 54px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: 0;
}

body.page-index .mkt-stat-t {
    margin-top: 6px;
    color: rgba(16, 34, 14, 0.58);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 1100px) {
    body.page-index .mkt-shell {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    body.page-index .mkt-visual {
        min-height: 470px;
        order: 2;
    }

    body.page-index .mkt-intro {
        order: 1;
    }

    body.page-index .mkt-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 28px;
        padding: 24px;
    }

    body.page-index .mkt-stat {
        padding: 22px;
        border-left: 0;
        border-top: 1px solid rgba(16, 34, 14, 0.12);
    }

    body.page-index .mkt-stat:nth-child(-n + 2) {
        border-top: 0;
    }

    body.page-index .mkt-stat:nth-child(2n) {
        border-left: 1px solid rgba(16, 34, 14, 0.12);
    }
}

@media (max-width: 620px) {
    #mercados {
        padding: 72px 0 58px;
    }

    body.page-index .mkt-title {
        font-size: 38px;
    }

    body.page-index .mkt-sub {
        font-size: 14px;
    }

    body.page-index .mkt-visual {
        min-height: 330px;
    }

    body.page-index .mkt-rice-frame {
        left: 34px;
        top: 34px;
        width: 66%;
        height: 65%;
        border-width: 8px;
    }

    body.page-index .mkt-rice-img {
        left: -36px;
        top: 50px;
        width: 118%;
    }

    body.page-index .mkt-presence-card {
        right: 0;
        bottom: 8px;
        width: 76%;
        padding: 16px 18px;
    }

    body.page-index .mkt-presence-card strong {
        font-size: 15px;
    }

    body.page-index .mkt-stats {
        grid-template-columns: 1fr;
        border-radius: 24px;
        padding: 10px 20px;
    }

    body.page-index .mkt-stat,
    body.page-index .mkt-stat:nth-child(2n) {
        padding: 20px 0;
        border-left: 0;
        border-top: 1px solid rgba(16, 34, 14, 0.12);
    }

    body.page-index .mkt-stat:first-child {
        border-top: 0;
    }
}

/* PROJETOS */
#projetos {
    background: var(--dark);
}

body.page-index .proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 48px;
}

body.page-index .proj-card {
    background: var(--dark2);
    padding: 28px 26px;
    cursor: default;
    transition: background 0.3s;
}

body.page-index .proj-card:hover {
    background: var(--g3);
}

body.page-index .proj-feat {
    grid-column: span 2;
    background: var(--g3);
    border-top: 2px solid var(--g);
    padding: 38px 34px;
}

body.page-index .proj-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g);
    padding: 4px 10px;
    border: 1px solid rgba(61, 145, 50, 0.3);
    background: rgba(61, 145, 50, 0.07);
    margin-bottom: 14px;
}

body.page-index .proj-name {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 5px;
    color: #2D2D2D;
}

body.page-index .proj-feat .proj-name {
    font-size: 24px;
}

body.page-index .proj-loc {
    font-size: 11px;
    color: var(--muted2);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 11px;
}

body.page-index .proj-loc::before {
    content: '⌖';
    color: var(--g);
    font-size: 12px;
}

body.page-index .proj-desc {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

/* old proj/par styles removed — replaced by pj-* and par-* above */

/* MOBILE */


body.page-index .ctt-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 1px;
    margin-top: 48px;
}

body.page-index .ctt-info {
    background: var(--dark2);
    padding: 0 50px 48px 0;
}

body.page-index .ctt-intro {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.82;
    margin-bottom: 36px;
}

body.page-index .ctt-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

body.page-index .ctt-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

body.page-index .ctt-item-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(61, 145, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g);
}

body.page-index .ctt-item-lbl {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 3px;
}

body.page-index .ctt-item-val {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
    line-height: 1.5;
}

body.page-index .ctt-form {
    background: var(--dark3);
    padding: 48px 42px;
}

body.page-index .ctt-form-title {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
    color: #2D2D2D;
}

body.page-index .fg {
    margin-bottom: 14px;
}

body.page-index .fg label {
    display: block;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 6px;
}

body.page-index .fg input, body.page-index .fg select, body.page-index .fg textarea {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 11px 13px;
    font-family: var(--f);
    font-size: 13px;
    color: #2D2D2D;
    outline: none;
    transition: border-color 0.25s;
}

body.page-index .fg input:focus, body.page-index .fg select:focus, body.page-index .fg textarea:focus {
    border-color: var(--g);
}

body.page-index .fg select {
    appearance: none;
    cursor: pointer;
    background-image: url("../img/index-bg-2.svg");
    background-repeat: no-repeat;
    background-position: right 13px center;
    background-size: 9px;
    background-color: #fff;
}

body.page-index .fg select option {
    background: #fff;
    color: #2D2D2D;
}

body.page-index .fg textarea {
    height: 105px;
    resize: vertical;
}

body.page-index .fg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

body.page-index .btn-submit {
    font-family: var(--f);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--g);
    border: none;
    padding: 14px 0;
    cursor: pointer;
    width: 100%;
    margin-top: 4px;
    transition: background 0.2s;
    border-radius: 100px;
}

body.page-index .btn-submit:hover {
    background: var(--g2);
}

/* CONTACT redesign */
body.page-index #contato {
    position: relative;
    overflow: hidden;
    padding: 118px 0;
    background: linear-gradient(90deg, #e9f1ec 0 45%, var(--g2) 45% 100%);
}

body.page-index #contato::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 38%),
        radial-gradient(circle at 16% 18%, rgba(61, 145, 50, 0.1), transparent 24%);
    pointer-events: none;
}

body.page-index #contato .container {
    position: relative;
    z-index: 1;
}

body.page-index .ctt-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 0;
    margin-top: 0;
}

body.page-index .ctt-form {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 64px 72px;
    border-radius: 8px;
    box-shadow: 0 34px 90px rgba(14, 36, 24, 0.18);
}

body.page-index .ctt-form-kicker {
    color: var(--g);
    font-size: 23px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 14px;
}

body.page-index .ctt-form-title {
    color: #1d2d24;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.02;
    margin-bottom: 14px;
}

body.page-index .ctt-form-sub {
    max-width: 520px;
    margin-bottom: 30px;
    color: #63716a;
    font-size: 14px;
    line-height: 1.75;
}

body.page-index .ctt-info {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    background: transparent;
    padding: 72px 0 72px 104px;
    color: #fff;
}

body.page-index .ctt-info-kicker {
    color: #E1BA77;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

body.page-index .ctt-info-title {
    position: relative;
    max-width: 520px;
    color: #fff;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.05;
    margin-bottom: 32px;
    padding-bottom: 22px;
}

body.page-index .ctt-info-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: #E1BA77;
}

body.page-index .ctt-intro {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 36px;
}

body.page-index .ctt-items {
    position: relative;
    z-index: 2;
    gap: 23px;
}

body.page-index .ctt-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
}

body.page-index .ctt-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

body.page-index .ctt-item-icon img {
    filter: brightness(0) invert(1);
}

body.page-index .ctt-item-lbl {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.25;
    margin-bottom: 5px;
    text-transform: none;
}

body.page-index .ctt-item-val {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.55;
}

body.page-index .ctt-rice-decor {
    position: absolute;
    right: -210px;
    bottom: -175px;
    width: min(520px, 70vw);
    opacity: 0.2;
    pointer-events: none;
    transform: rotate(-8deg);
}

body.page-index .fg {
    margin-bottom: 16px;
}

body.page-index .fg label {
    color: #607069;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
}

body.page-index .fg input,
body.page-index .fg select,
body.page-index .fg textarea {
    border: 1px solid transparent;
    border-radius: 6px;
    background-color: #f5f7f4;
    padding: 15px 17px;
    font-size: 14px;
}

body.page-index .fg input:focus,
body.page-index .fg select:focus,
body.page-index .fg textarea:focus {
    border-color: rgba(61, 145, 50, 0.42);
    background-color: #fff;
}

body.page-index .fg textarea {
    min-height: 150px;
}

body.page-index .fg-row {
    gap: 14px;
}

body.page-index .btn-submit {
    width: auto;
    min-width: 230px;
    border-radius: 6px;
    background: #E1BA77;
    color: #13231a;
    padding: 17px 28px;
    margin-top: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

body.page-index .btn-submit:hover {
    background: #e9b844;
}

@media (max-width: 1080px) {
    body.page-index #contato {
        background: #e9f1ec;
        padding: 92px 0;
    }

    body.page-index .ctt-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    body.page-index .ctt-form {
        padding: 46px;
    }

    body.page-index .ctt-info {
        min-height: 0;
        background: #174f3d;
        border-radius: 8px;
        padding: 48px;
    }

    body.page-index .ctt-rice-decor {
        right: -150px;
        bottom: -130px;
        width: 390px;
    }
}

@media (max-width: 620px) {
    body.page-index #contato {
        padding: 74px 0;
    }

    body.page-index .ctt-form,
    body.page-index .ctt-info {
        padding: 30px 22px;
    }

    body.page-index .ctt-form-title,
    body.page-index .ctt-info-title {
        font-size: 34px;
    }

    body.page-index .ctt-item {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    body.page-index .ctt-item-icon {
        width: 40px;
        height: 40px;
    }

    body.page-index .btn-submit {
        width: 100%;
        min-width: 0;
    }
}

/* BLOG */
body.page-index .blog-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 96px 0 112px;
}

body.page-index .blog-section::before,
body.page-index .blog-section::after {
    content: '';
    position: absolute;
    width: 138px;
    height: 138px;
    border: 2px solid rgba(61, 145, 50, 0.12);
    border-radius: 42% 58% 50% 50%;
    pointer-events: none;
}

body.page-index .blog-section::before {
    left: -76px;
    top: 68px;
    transform: rotate(-28deg);
}

body.page-index .blog-section::after {
    right: -72px;
    top: 34px;
    transform: rotate(32deg);
}

body.page-index .blog-head {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

body.page-index .blog-label {
    margin-bottom: 12px;
    color: var(--g);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-index .blog-title {
    color: var(--g2);
    font-size: clamp(34px, 4.2vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

body.page-index .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 58px;
}

body.page-index .blog-card {
    position: relative;
    min-width: 0;
}

body.page-index .blog-media {
    position: relative;
    aspect-ratio: 1.32 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: #e7eee4;
}

body.page-index .blog-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(0.9);
    transition: transform 0.6s cubic-bezier(.16, 1, .3, 1), filter 0.3s ease;
}

body.page-index .blog-card:hover .blog-media img {
    transform: scale(1.055);
    filter: saturate(1);
}

body.page-index .blog-date {
    position: absolute;
    left: 12px;
    top: 12px;
    min-width: 78px;
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--g2);
    border-radius: 4px;
    box-shadow: 0 10px 26px rgba(20, 35, 18, 0.1);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-transform: lowercase;
}

body.page-index .blog-date span {
    margin-right: 4px;
    font-size: 20px;
    font-weight: 800;
}

body.page-index .blog-body {
    position: relative;
    width: calc(100% - 58px);
    min-height: 304px;
    margin: -64px auto 0;
    padding: 28px 30px 32px;
    background: #fff;
    box-shadow: 0 26px 64px rgba(50, 90, 43, 0.1);
    z-index: 1;
}

body.page-index .blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    color: rgba(20, 30, 18, 0.54);
    font-size: 13px;
    font-weight: 400;
}

body.page-index .blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body.page-index .blog-meta svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--g2);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.page-index .blog-card-title {
    margin-bottom: 14px;
    color: var(--g2);
    font-size: clamp(25px, 2.25vw, 32px);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: 0;
}

body.page-index .blog-body p {
    color: rgba(20, 30, 18, 0.58);
    font-size: 14px;
    line-height: 1.72;
}

body.page-index .blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    color: var(--g2);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-decoration: none;
    text-transform: uppercase;
    transition: gap 0.25s ease, color 0.25s ease;
}

body.page-index .blog-link:hover {
    gap: 13px;
    color: var(--g);
}

body.page-index .blog-link span[aria-hidden="true"] {
    font-size: 0;
}

body.page-index .blog-link span[aria-hidden="true"]::after {
    content: "\2192";
    font-size: 15px;
}

@media (max-width: 960px) {
    body.page-index .blog-section {
        padding: 78px 0 88px;
    }

    body.page-index .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    body.page-index .blog-body {
        width: calc(100% - 36px);
        padding: 26px 24px 30px;
    }
}

@media (max-width: 680px) {
    body.page-index .blog-grid {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    body.page-index .blog-media {
        aspect-ratio: 1.42 / 1;
    }

    body.page-index .blog-body {
        min-height: auto;
        margin-top: -48px;
    }

    body.page-index .blog-meta {
        gap: 12px;
        margin-bottom: 18px;
    }
}

/* LINES DIVIDER */
.lines-divider {
    position: relative;
    width: 100%;
    height: 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.lines-divider::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("../img/lines2.svg");
    background-size: 63px 63px;
    background-repeat: repeat;
    background-color:#fff;

    opacity: 0.1; /* controla a transparência */
}

/* PROJETOS — photo card layout */
#projetos {
    background: #fff;
}

body.page-index .pj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

body.page-index .pj-card {
    display: flex;
    flex-direction: column;
}

body.page-index .pj-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    background: #e8ede6;
}

body.page-index .pj-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(.16, 1, .3, 1);
    filter: grayscale(15%);
}

body.page-index .pj-card:hover .pj-img img {
    transform: scale(1.04);
}

body.page-index .pj-logo {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    width: min(188px, calc(100% - 36px));
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(17, 26, 15, 0.16);
    backdrop-filter: blur(8px);
}

body.page-index .pj-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
    filter: none;
    transform: none;
}

body.page-index .pj-logo span {
    color: var(--g2);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
}

body.page-index .pj-card:hover .pj-logo img {
    transform: none;
}

body.page-index .pj-body {
    padding: 16px 0 12px;
}

body.page-index .pj-loc {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 5px;
}

body.page-index .pj-name {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #2D2D2D;
    margin-bottom: 14px;
    text-transform: uppercase;
}

body.page-index .pj-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--g);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s, gap 0.2s;
}

body.page-index .pj-link:hover {
    border-color: var(--g);
    gap: 10px;
}

/* PARCEIROS redesign */
.parceiros {
    border-top: none;
    border-bottom: none;
    padding: 0;
}

body.page-index .par-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

body.page-index .par-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background: var(--g);
    padding: 7px 18px;
    border-radius: 100px;
    margin-top: -15px;
    position:absolute;
}

body.page-index .par-track-wrap {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

body.page-index .par-track {
    display: flex;
    align-items: center;
    gap: 5px;
    width: max-content;
    animation: par-scroll 280s linear infinite;
}

body.page-index .par-track:hover {
    animation-play-state: paused;
}

body.page-index .par-logo-card {
    width: 190px;
    height: 104px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

body.page-index .par-logo-card img {
    max-width: 100%;
    max-height: 68px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    filter: grayscale(1) saturate(0.15);
    opacity: 0.72;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

body.page-index .par-logo-card:hover {
    transform: translateY(-3px);
}

body.page-index .par-logo-card:hover img {
    filter: grayscale(0) saturate(1);
    opacity: 1;
}
@keyframes par-scroll {
    to {
        transform: translateX(-50%);
    }
}

/* REVEAL */
body.page-index .reveal-d1 {
    transition-delay: 0.06s;
}

body.page-index .reveal-d2 {
    transition-delay: 0.13s;
}

/* MOBILE */
@media (max-width: 960px) {
    body.page-index nav {
        padding: 0 22px;
    }

    body.page-index .nav-links, body.page-index .nav-btn {
        display: none;
    }

    body.page-index .hamburger {
        display: flex;
    }

    body.page-index #hero {
        grid-template-columns: 1fr;
    }

    body.page-index .hero-left {
        padding: 56px 22px;
    }

    body.page-index .hero-right {
        display: none;
    }

    body.page-index .container {
        padding: 0 22px;
    }

    body.page-index section {
        padding: 70px 0;
    }

    body.page-index .sobre-layout, body.page-index .mkt-layout, body.page-index .ctt-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    body.page-index .sol-header {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
    }

    body.page-index .sol-grid, body.page-index .srv-grid, body.page-index .ft-top {
        grid-template-columns: 1fr;
    }

    body.page-index .pj-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    body.page-index .srv-main {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    body.page-index .ft-bot {
        flex-direction: column;
        gap: 14px;
    }

    body.page-index .fg-row {
        grid-template-columns: 1fr;
    }
}

/* PAGE-QUEM-SOMOS */

/* HERO INTERNO */
body.page-quem-somos .page-hero {
    padding-top: 68px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

body.page-quem-somos .page-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

body.page-quem-somos .page-hero-left {
    padding: 80px 52px 80px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

body.page-quem-somos .page-hero-right {
}

body.page-quem-somos .page-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.8);
}

body.page-quem-somos .page-hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #fff 0%, transparent 30%);
}

body.page-quem-somos .page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 22px;
    opacity: 0;
    animation: rise 0.7s 0.1s forwards;
}

body.page-quem-somos .page-hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--g);
}

body.page-quem-somos .page-hero-h1 {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 800;
    line-height: 0.97;
    letter-spacing: -0.025em;
    color: #2D2D2D;
    opacity: 0;
    animation: rise 0.8s 0.25s forwards;
}

body.page-quem-somos .page-hero-h1 em {
    font-style: normal;
    color: var(--g);
}

body.page-quem-somos .page-hero-sub {
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
    max-width: 480px;
    margin-top: 22px;
    opacity: 0;
    animation: rise 0.8s 0.4s forwards;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* MISSÃO VISÃO VALORES */
#mvv {
    background: var(--dark);
    padding: 80px 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 52px;
}

.mvv-card {
    background: #fff;
    padding: 44px 36px;
    position: relative;
    transition: background 0.3s;
}

.mvv-card:hover {
    background: var(--g3);
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--g);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.mvv-card:hover::before {
    transform: scaleX(1);
}

.mvv-icon {
    width: 48px;
    height: 48px;
    background: rgba(61, 145, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g);
    margin-bottom: 24px;
}

.mvv-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 10px;
}

.mvv-title {
    font-size: 22px;
    font-weight: 700;
    color: #2D2D2D;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
}

.mvv-body {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
}

.mvv-values-list {
    list-style: none;
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
}

.mvv-values-list li {
    position: relative;
    padding-left: 18px;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.45;
}

.mvv-values-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--g);
}

/* HISTÓRIA TIMELINE */
#historia {
    background: #fff;
    padding: 80px 0;
}

.historia-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.historia-text h3 {
    font-size: 36px;
    font-weight: 800;
    color: #2D2D2D;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.historia-text h3 em {
    font-style: normal;
    color: var(--g);
}

.historia-text p {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 14px;
}

.historia-text .highlight-stat {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hs {
    flex: 1;
}

.hs-n {
    font-size: 44px;
    font-weight: 800;
    color: var(--g);
    line-height: 1;
    letter-spacing: -0.03em;
}

.hs-l {
    font-size: 11px;
    font-weight: 400;
    color: var(--muted2);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

.timeline {
    position: relative;
    padding-left: 28px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--border);
}

.tl-item {
    position: relative;
    padding-bottom: 36px;
}

.tl-item:last-child {
    padding-bottom: 0;
}

.tl-dot {
    position: absolute;
    left: -28px;
    top: 4px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--g);
    background: #fff;
    transition: background 0.3s;
}

.tl-item:hover .tl-dot {
    background: var(--g);
}

.tl-year {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 5px;
}

.tl-title {
    font-size: 15px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 6px;
}

.tl-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

/* EQUIPE & VALORES */
#valores {
    background: var(--dark);
    padding: 80px 0;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 52px;
}

.valor-card {
    background: var(--dark);
    padding: 32px 26px;
    transition: background 0.3s;
}

.valor-card:hover {
    background: #fff;
}

.valor-n {
    font-size: 52px;
    font-weight: 800;
    color: rgba(61, 145, 50, 0.12);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.valor-title {
    font-size: 16px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 10px;
}

.valor-body {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

/* PRESENÇA */
#presenca {
    background: var(--g);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#presenca::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 32px, rgba(255, 255, 255, 0.04) 32px, rgba(255, 255, 255, 0.04) 33px);
}

.presenca-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.presenca-title {
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 800;
    line-height: 0.97;
    letter-spacing: -0.025em;
    color: #fff;
}

.presenca-title span {
    color: rgba(255, 255, 255, 0.3);
}

.presenca-body {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-top: 20px;
}

.presenca-cards {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.presenca-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 22px 24px;
    border-left: 3px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background 0.3s;
}

.presenca-card:hover {
    background: rgba(255, 255, 255, 0.16);
}

.presenca-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.presenca-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.presenca-card-sub {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
}

/* DIFERENCIAIS */
#diferenciais {
    background: #fff;
    padding: 80px 0;
}

.dif-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 52px;
}

.dif-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dif-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 20px;
    border: 1px solid var(--border);
    background: var(--dark);
    transition: background 0.3s, border-color 0.3s;
}

.dif-item:hover {
    background: var(--g3);
    border-color: rgba(61, 145, 50, 0.3);
}

.dif-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--g);
    letter-spacing: 0.1em;
    flex-shrink: 0;
    width: 24px;
    margin-top: 2px;
}

.dif-content-title {
    font-size: 15px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 5px;
}

.dif-content-body {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
}

.dif-visual {
    position: relative;
}

.dif-img-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.dif-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85);
}

.dif-img-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 18px 20px;
    border-left: 3px solid var(--g);
}

.dib-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g);
}

.dib-val {
    font-size: 24px;
    font-weight: 800;
    color: #2D2D2D;
    margin-top: 3px;
    letter-spacing: -0.02em;
}

.dib-sub {
    font-size: 11px;
    color: var(--muted);
    font-weight: 300;
    margin-top: 2px;
}

/* CTA */
#cta {
    background: var(--dark);
    padding: 80px 0;
}

.cta-box {
    background: #2D2D2D;
    padding: 60px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(61, 145, 50, 0.25), transparent 65%);
    border-radius: 50%;
}

.cta-box-left h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cta-box-left h2 em {
    font-style: normal;
    color: var(--g);
}

.cta-box-left p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 12px;
    max-width: 400px;
    line-height: 1.7;
}

.cta-box-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 960px) {
    .page-hero-inner {
        grid-template-columns: 1fr;
    }

    .page-hero-right {
        height: 240px;
    }

    .page-hero-right::after {
        background: linear-gradient(to bottom, transparent, #fff 80%);
    }

    .page-hero-left {
        padding: 48px 22px 36px;
    }

    .mvv-grid, .valores-grid, .dif-grid {
        grid-template-columns: 1fr;
    }

    .historia-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .presenca-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cta-box {
        flex-direction: column;
        padding: 36px 28px;
    }

}

/* PAGE-SOLUCOES */

body.page-solucoes,
body.page-case,
body.page-quem-somos,
body.page-blog,
body.page-trabalhe {
    #background: var(--dark);
}

body.page-solucoes nav,
body.page-case nav,
body.page-quem-somos nav,
body.page-blog nav,
body.page-trabalhe nav {
    height: 68px;
    background: rgba(247, 248, 246, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 52px;
}

body.page-solucoes nav.scrolled,
body.page-case nav.scrolled,
body.page-quem-somos nav.scrolled,
body.page-blog nav.scrolled,
body.page-trabalhe nav.scrolled {
    height: 60px;
}

body.page-solucoes .nav-logo img,
body.page-case .nav-logo img,
body.page-quem-somos .nav-logo img,
body.page-blog .nav-logo img,
body.page-trabalhe .nav-logo img {
    height: 36px;
}

body.page-solucoes nav.scrolled .nav-logo img,
body.page-case nav.scrolled .nav-logo img,
body.page-quem-somos nav.scrolled .nav-logo img,
body.page-blog nav.scrolled .nav-logo img,
body.page-trabalhe nav.scrolled .nav-logo img {
    height: 36px;
}

/* PAGE HERO */
body.page-solucoes .page-hero {
    background: #fff;
    padding: 64px 0 72px;
    border-bottom: 1px solid var(--border);
}

body.page-solucoes .page-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

body.page-solucoes .page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 20px;
}

body.page-solucoes .page-hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--g);
}

body.page-solucoes .page-hero-h1 {
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    line-height: 0.97;
    letter-spacing: -0.025em;
    color: #111a0f;
}

body.page-solucoes .page-hero-h1 em {
    font-style: normal;
    color: var(--g);
}

body.page-solucoes .page-hero-sub {
    font-size: 14.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.82;
    margin-top: 22px;
}

.hero-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-cat {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--border);
    color: var(--muted);
    background: var(--g3);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.hero-cat:hover {
    border-color: var(--g);
    color: var(--g);
}

.hero-right-nums {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-num-card {
    background: var(--dark);
    border: 1px solid var(--border);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background 0.3s;
}

.hero-num-card:hover {
    background: var(--g3);
}

.hnc-n {
    font-size: 44px;
    font-weight: 800;
    color: var(--g);
    line-height: 1;
    letter-spacing: -0.03em;
    flex-shrink: 0;
    min-width: 80px;
}

.hnc-t {
    font-size: 13px;
    font-weight: 500;
    color: #111a0f;
}

.hnc-s {
    font-size: 11.5px;
    font-weight: 300;
    color: var(--muted);
    margin-top: 2px;
}

/* FILTER NAV */
.filter-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 60px;
    z-index: 100;
}

.filter-nav-toggle {
    display: none;
    width: 100%;
    border: 0;
    background: #fff;
    color: var(--g);
    font-family: var(--f);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
}

.filter-nav-current {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.filter-nav-icon {
    position: relative;
    width: 18px;
    height: 2px;
    background: currentColor;
    flex-shrink: 0;
    transition: background 0.2s;
}

.filter-nav-icon::before,
.filter-nav-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s, top 0.2s;
}

.filter-nav-icon::before {
    top: -6px;
}

.filter-nav-icon::after {
    top: 6px;
}

.filter-nav.open .filter-nav-icon {
    background: transparent;
}

.filter-nav.open .filter-nav-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.filter-nav.open .filter-nav-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.filter-nav-inner {
    display: flex;
    overflow-x: auto;
    padding: 0 52px;
    gap: 0;
}

.filter-nav-inner::-webkit-scrollbar {
    height: 0;
}

.fnav-item {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 16px 24px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
}

.fnav-item:hover {
    color: var(--g);
}

.fnav-item.active {
    color: var(--g);
    border-bottom-color: var(--g);
}

/* SOLUÇÕES DETAIL */
.sol-section {
    padding: 80px 0;
    scroll-margin-top: 136px;
}

.sol-section:nth-child(even) {
    background: #fff;
}

.sol-section:nth-child(odd) {
    background: var(--dark);
}

.sol-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sol-detail.reverse {
    direction: rtl;
}

.sol-detail.reverse > * {
    direction: ltr;
}

.sol-n {
    font-size: 10px;
    font-weight: 700;
    color: rgba(61, 145, 50, 0.4);
    letter-spacing: 0.25em;
    margin-bottom: 16px;
}

.sol-detail-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g);
    padding: 5px 12px;
    border: 1px solid rgba(61, 145, 50, 0.3);
    background: var(--g3);
    margin-bottom: 14px;
}

.sol-detail-title {
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 800;
    color: #2D2D2D;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 20px;
}

.sol-detail-body {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 28px;
}

.sol-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.sol-feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.55;
}

.sol-feat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--g);
    flex-shrink: 0;
    margin-top: 7px;
}

.sol-apps {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.sol-app {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--g2);
    padding: 5px 12px;
    background: var(--g3);
    border: 1px solid var(--border);
}

.sol-media-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sol-brand-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 86px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(61, 145, 50, 0.16);
    border-left: 3px solid var(--g);
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(20, 35, 18, 0.08);
}

.sol-brand-kicker {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--g);
}

.sol-brand-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 170px;
    max-width: 240px;
    min-height: 46px;
}

.sol-brand-logo img {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 46px;
    object-fit: contain;
}

.sol-brand-name {
    display: block;
    color: #2D2D2D;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 800;
    line-height: 1;
    text-align: right;
}

.sol-img-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.sol-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: saturate(0.85);
    transition: transform 0.6s cubic-bezier(.16, 1, .3, 1);
}

.sol-img-wrap:hover img {
    transform: scale(1.03);
}

.sol-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 14px 18px;
    border-left: 3px solid var(--g);
}

.sib-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--g);
}

.sib-val {
    font-size: 18px;
    font-weight: 700;
    color: #2D2D2D;
    margin-top: 3px;
}

@media (max-width: 960px) {
    body.page-solucoes nav,
    body.page-case nav,
    body.page-quem-somos nav,
    body.page-blog nav,
    body.page-trabalhe nav {
        padding: 0 22px;
    }

    body.page-solucoes .nav-links,
    body.page-solucoes .nav-btn,
    body.page-case .nav-links,
    body.page-case .nav-btn,
    body.page-quem-somos .nav-links,
    body.page-quem-somos .nav-btn,
    body.page-blog .nav-links,
    body.page-blog .nav-btn,
    body.page-trabalhe .nav-links,
    body.page-trabalhe .nav-btn {
        display: none;
    }

    body.page-solucoes .hamburger,
    body.page-case .hamburger,
    body.page-quem-somos .hamburger,
    body.page-blog .hamburger,
    body.page-trabalhe .hamburger {
        display: flex;
    }

    body.page-solucoes .breadcrumb,
    body.page-case .breadcrumb,
    body.page-quem-somos .breadcrumb,
    body.page-blog .breadcrumb,
    body.page-trabalhe .breadcrumb {
        padding: 12px 22px;
    }

    body.page-solucoes .container,
    body.page-case .container,
    body.page-quem-somos .container,
    body.page-blog .container,
    body.page-trabalhe .container {
        padding: 0 22px;
    }

    body.page-solucoes .filter-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        min-height: 52px;
        padding: 0 22px;
    }

    body.page-solucoes .filter-nav-inner {
        display: none;
        overflow-y: auto;
        flex-direction: column;
        max-height: calc(100vh - 112px);
        padding: 0;
        border-top: 1px solid var(--border);
        background: #fff;
        box-shadow: 0 18px 30px rgba(17, 26, 15, 0.08);
    }

    body.page-solucoes .filter-nav.open .filter-nav-inner {
        display: flex;
    }

    body.page-solucoes .fnav-item {
        padding: 14px 22px;
        border-bottom: 1px solid var(--border);
    }

    body.page-solucoes .fnav-item.active {
        background: var(--g3);
        border-bottom-color: var(--border);
    }

    .page-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sol-detail, .sol-detail.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .sol-brand-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .sol-brand-logo {
        justify-content: flex-start;
        min-width: 0;
        width: 100%;
    }

    .sol-brand-name {
        text-align: left;
    }

    .filter-nav-inner {
        padding: 0 22px;
    }

}

/* PAGE-CASE */

/* PAGE HERO */
body.page-case .page-hero {
    background: #111a0f;
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
}

body.page-case .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 32px, rgba(255, 255, 255, 0.02) 32px, rgba(255, 255, 255, 0.02) 33px);
}

body.page-case .page-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

body.page-case .page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 22px;
}

body.page-case .page-hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--g);
}

body.page-case .page-hero-h1 {
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    line-height: 0.97;
    letter-spacing: -0.025em;
    color: #fff;
}

body.page-case .page-hero-h1 em {
    font-style: normal;
    color: var(--g);
}

body.page-case .page-hero-sub {
    font-size: 14.5px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.82;
    margin-top: 22px;
}

.hero-right-feat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 36px;
}

.hrf-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 6px;
}

.hrf-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}

.hrf-body {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.hrf-stats {
    display: flex;
    gap: 0;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 22px;
}

.hrf-stat {
    flex: 1;
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 24px;
}

.hrf-stat:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.hrf-stat-n {
    font-size: 32px;
    font-weight: 800;
    color: var(--g);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hrf-stat-l {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
    line-height: 1.4;
}

@media (max-width: 960px) {
    body.page-case .page-hero {
        padding: 54px 0 60px;
    }

    body.page-case .page-hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        align-items: start;
    }

    body.page-case .page-hero-sub {
        max-width: 640px;
    }
}

@media (max-width: 640px) {
    body.page-case .page-hero {
        padding: 42px 0 46px;
    }

    body.page-case .page-hero-inner {
        gap: 26px;
    }

    body.page-case .page-hero-eyebrow {
        max-width: 100%;
        margin-bottom: 16px;
        letter-spacing: 0.14em;
    }

    body.page-case .page-hero-eyebrow::before {
        width: 20px;
    }

    body.page-case .page-hero-h1 {
        font-size: clamp(34px, 12vw, 46px);
        line-height: 1;
        letter-spacing: -0.015em;
    }

    body.page-case .page-hero-sub {
        font-size: 13.5px;
        line-height: 1.68;
        margin-top: 18px;
    }

    .hero-right-feat {
        width: 100%;
        padding: 24px;
    }

    .hrf-title {
        font-size: 21px;
        line-height: 1.18;
    }

    .hrf-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        padding-top: 18px;
    }

    .hrf-stat {
        display: grid;
        grid-template-columns: 72px 1fr;
        gap: 14px;
        align-items: center;
        min-width: 0;
        margin-right: 0;
        padding-right: 0;
        padding-bottom: 16px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hrf-stat:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .hrf-stat-n {
        font-size: 30px;
    }

    .hrf-stat-l {
        margin-top: 0;
    }
}

@media (max-width: 380px) {
    .hero-right-feat {
        padding: 20px;
    }

    .hrf-stat {
        grid-template-columns: 62px 1fr;
        gap: 12px;
    }
}

/* CASES GRID — listagem */
#cases-list {
    background: var(--dark2);
    padding: 80px 0;
}

.cases-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
}

.cases-filter {
    display: flex;
    gap: 8px;
}

.cf-btn {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 18px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--f);
}

.cf-btn.active, .cf-btn:hover {
    background: var(--g);
    color: #fff;
    border-color: var(--g);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
}

/* CASE CARD */
.case-card {
    background: var(--dark2);
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.case-card:hover {
    background: var(--g3);
}

.case-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #dde8da;
}

.case-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8);
    transition: transform 0.5s cubic-bezier(.16, 1, .3, 1);
}

.case-card:hover .case-card-img img {
    transform: scale(1.05);
}

.case-card-body {
    padding: 22px 24px 26px;
}

.case-card-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g);
    padding: 4px 10px;
    border: 1px solid rgba(61, 145, 50, 0.3);
    background: var(--g3);
    margin-bottom: 12px;
}

.case-card-loc {
    font-size: 11px;
    font-weight: 600;
    color: var(--g);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.case-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #2D2D2D;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.case-card-desc {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.case-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--g);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s, gap 0.2s;
}

.case-card-link:hover {
    border-color: var(--g);
    gap: 10px;
}

.case-card-feat {
    grid-column: span 2;
    background: var(--g3);
    border-top: 3px solid var(--g);
}

.case-card-feat .case-card-body {
    padding: 36px 36px 40px;
}

.case-card-feat .case-card-name {
    font-size: 26px;
}

.case-card-feat .case-card-img {
    aspect-ratio: 21/9;
}

/* CASE DESTAQUE — full article view */
#case-destaque {
    background: var(--dark);
    padding: 80px 0;
}

.case-article {
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
}

.case-article-hero {
    position: relative;
}

.case-article-hero img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: saturate(0.85);
}

.case-article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 26, 15, 0.85) 0%, rgba(17, 26, 15, 0.2) 60%, transparent 100%);
}

.case-article-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 52px;
}

.ca-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g);
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 14px;
    backdrop-filter: blur(4px);
}

.ca-title {
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.02;
}

.ca-loc {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ca-loc::before {
    content: '⌖';
    color: var(--g);
    font-size: 14px;
}

.case-article-body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0;
}

.ca-main {
    padding: 52px;
    border-right: 1px solid var(--border);
}

.ca-section-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ca-section-title::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--g);
}

.ca-lead {
    font-size: 18px;
    font-weight: 400;
    color: #2D2D2D;
    line-height: 1.65;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.ca-text {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.88;
    margin-bottom: 24px;
}

.ca-challenge {
    background: var(--dark);
    border-left: 3px solid var(--g);
    padding: 28px 28px;
    margin: 32px 0;
}

.ca-challenge-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 10px;
}

.ca-challenge p {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
}

.ca-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 32px 0;
}

.ca-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    filter: saturate(0.85);
}

.ca-gallery img:first-child {
    grid-column: span 2;
    height: 320px;
}

.ca-solutions {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 28px 0;
}

.ca-sol-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--dark);
    border: 1px solid var(--border);
}

.ca-sol-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--g);
    flex-shrink: 0;
}

.ca-sol-text {
    font-size: 13px;
    font-weight: 500;
    color: #2D2D2D;
}

.ca-sidebar {
    padding: 52px 36px;
}

.ca-meta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.ca-meta-item {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.ca-meta-item:last-child {
    border-bottom: none;
}

.ca-meta-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 6px;
}

.ca-meta-val {
    font-size: 14px;
    font-weight: 600;
    color: #2D2D2D;
}

.ca-meta-sub {
    font-size: 12px;
    font-weight: 300;
    color: var(--muted);
    margin-top: 2px;
}

.ca-result-box {
    background: #2D2D2D;
    padding: 28px 24px;
    margin-top: 28px;
}

.ca-result-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 20px;
}

.ca-result-stat {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ca-result-stat:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.ca-result-n {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.ca-result-n span {
    color: var(--g);
}

.ca-result-l {
    font-size: 11.5px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    line-height: 1.4;
}

.ca-cta {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* OUTROS CASES */
#outros {
    background: var(--dark);
    padding: 80px 0;
}

.outros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.outro-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 28px;
    transition: border-color 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
}

.outro-card:hover {
    border-color: var(--g);
    box-shadow: 0 4px 24px rgba(61, 145, 50, 0.1);
}

.outro-loc {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--g);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.outro-name {
    font-size: 17px;
    font-weight: 700;
    color: #2D2D2D;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.outro-desc {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
}

.outro-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--g);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 16px;
}

@media (max-width: 960px) {
    .page-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cases-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

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

    .case-card-feat {
        grid-column: span 1;
    }

    .case-article-body {
        grid-template-columns: 1fr;
    }

    .ca-sidebar {
        border-top: 1px solid var(--border);
    }

    .ca-main {
        padding: 32px 24px;
    }

    .ca-sidebar {
        padding: 32px 24px;
    }

    .case-article-hero-content {
        padding: 28px 24px;
    }

    .ca-gallery {
        grid-template-columns: 1fr;
    }

    .ca-gallery img:first-child {
        grid-column: span 1;
    }

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

}


/* VIDEO HERO */
body.page-index .hero-video {
  position: relative;
  width: min(620px, 88%);
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 24px 60px rgba(17,26,15,0.16);
  transform: translateY(-32px);
}
body.page-index .hero-video img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.85); transition: transform 0.5s cubic-bezier(.16,1,.3,1); }
body.page-index .hero-video:hover img { transform: scale(1.04); }
body.page-index .hero-video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,26,15,0.72), rgba(17,26,15,0.05)); }
body.page-index .hero-video-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 74px; height: 74px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--g); color: #fff; font-size: 28px; padding-left: 4px; box-shadow: 0 0 0 10px rgba(61,145,50,0.16); transition: transform 0.25s ease, background 0.25s ease; }
body.page-index .hero-video:hover .hero-video-play { transform: translate(-50%,-50%) scale(1.06); background: var(--g2); }
body.page-index .hero-video-caption { position: absolute; left: 24px; right: 24px; bottom: 22px; color: #fff; font-size: 24px; font-weight: 800; letter-spacing: -0.02em; text-align: left; }
body.page-index .hero-video-caption span { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #8bd37d; margin-bottom: 5px; }
.video-lightbox { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 28px; background: rgba(5,8,5,0.86); backdrop-filter: blur(8px); }
.video-lightbox.open { display: flex; }
.video-lightbox-frame { width: min(1040px, 100%); aspect-ratio: 16 / 9; background: #000; box-shadow: 0 30px 80px rgba(0,0,0,0.45); }
.video-lightbox-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-lightbox-close { position: absolute; top: 24px; right: 28px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); color: #fff; font-size: 30px; line-height: 1; cursor: pointer; }

/* HERO slideshow redesign */
body.page-index nav:not(.scrolled) {

}

body.page-index nav:not(.scrolled) .nav-links a {
    color: #2D2D2D;
}

body.page-index nav:not(.scrolled) .nav-links a:hover,
body.page-index nav:not(.scrolled) .nav-links a.active {
    color: #2F6E28;
    background: rgba(217, 217, 217, 0.44);
}

body.page-index nav:not(.scrolled) .hamburger span {
    background: #2D2D2D;
}

body.page-index #hero {
    min-height: 100vh;
    min-height: 880px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
    gap: 34px;
    align-items: center;
    padding: 138px 52px 190px;
    background: #f7f8f6;
    background-image: none;
    color: #fff;
}

body.page-index .hero-bg,
body.page-index .hero-bg-shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

body.page-index .hero-bg {
    overflow: hidden;
    z-index: 0;
}

body.page-index .hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(0.58) contrast(0.88) brightness(1.14);
}

body.page-index .hero-bg-youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100vw, 177.78vh);
    height: max(56.25vw, 100vh);
    border: 0;
    display: block;
    transform: translate(-50%, -50%);
    pointer-events: none;
    zoom: 1.05;
    filter: saturate(0.58) contrast(0.88) brightness(1.14);
}

body.page-index .hero-bg-shade {
    z-index: 1;
    background:
        radial-gradient(circle at 80% 28%, rgba(255, 255, 255, 0.66), transparent 20%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 32%, rgba(255, 255, 255, 0.72) 62%, rgba(255, 255, 255, 0.36) 100%),
        linear-gradient(90deg, rgba(247, 248, 246, 0.5), rgba(232, 245, 228, 0.28) 72%, rgba(68, 155, 58, 0.08) 100%);
    backdrop-filter: blur(1px);
}

body.page-index .hero-noise {
    z-index: 2;
    opacity: 0.28;
    mix-blend-mode: multiply;
}

body.page-index .hero-glow {
    z-index: 2;
    background: radial-gradient(circle, rgba(103, 180, 50, 0.18) 0%, transparent 64%);
}

body.page-index .hero-glow2 {
    z-index: 2;
    background: radial-gradient(circle, rgba(217, 160, 0, 0.16) 0%, transparent 64%);
}

body.page-index .hero-left {
    max-width: 780px;
    padding: 0;
    z-index: 3;
}

body.page-index .hero-left .sec-label {
    color: #2F6E28;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

body.page-index .hero-left .sec-label::before {
    background: #449B3A;
}

body.page-index .hero-h1 {
    max-width: 820px;
    color: #2D2D2D;
    font-size: clamp(34px, 3.85vw, 56px);
    line-height: 1.06;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: none;
}

body.page-index .hero-h1 em {
    color: #449B3A;
}

body.page-index .hero-sub {
    max-width: 570px;
    color: rgba(45, 45, 45, 0.72);
    font-size: 17px;
    line-height: 1.55;
}

body.page-index .hero-actions {
    gap: 14px;
}

body.page-index #hero .btn-green {
    background: #449B3A;
}

body.page-index #hero .btn-green:hover {
    background: #2F6E28;
}

body.page-index #hero .btn-ghost {
    color: #2D2D2D;
    border-color: rgba(45, 45, 45, 0.18);
    background: rgba(255, 255, 255, 0.56);
}

body.page-index #hero .btn-ghost:hover {
    border-color: #449B3A;
    color: #2F6E28;
}

body.page-index .hero-right {
    height: auto;
    z-index: 3;
    overflow: visible;
}

body.page-index .hero-video {
    width: min(610px, 42vw);
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
    transform: none;
    background: #2D2D2D;
}

body.page-index .hero-video::before {
    content: '';
    position: absolute;
    inset: auto -18px -18px auto;
    z-index: -1;
    width: 190px;
    height: 190px;
    border-radius: 26px 0 8px 0;
    background: linear-gradient(135deg, #449B3A, #2F6E28);
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.24));
}

body.page-index .hero-video img {
    filter: saturate(0.96) contrast(1.02);
}

body.page-index .hero-video-overlay {
    background: linear-gradient(to top, rgba(45, 45, 45, 0.78), rgba(45, 45, 45, 0.02) 58%);
}

body.page-index .hero-video-play {
    width: 66px;
    height: 66px;
    background: #449B3A;
    box-shadow: 0 0 0 11px rgba(68, 155, 58, 0.22);
}

body.page-index .hero-video-caption {
    left: 24px;
    right: 24px;
    bottom: 22px;
    font-size: 22px;
    line-height: 1.16;
    text-align: left;
}

body.page-index .hero-video-caption span {
    color: #EAFF81;
}

body.page-index .hero-nums {
    position: absolute;
    left: 52px;
    right: 52px;
    bottom: 30px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

body.page-index .hero-num {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    min-height: 118px;
    margin: 0;
    padding: 24px 26px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
}

body.page-index .hero-num:last-child {
    margin: 0;
    padding: 24px 26px;
    border: 1px solid rgba(255, 255, 255, 0.82);
}

body.page-index .hero-num-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(68, 155, 58, 0.12);
    color: #2F6E28;
}

body.page-index .hero-num-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.page-index .hero-num-val {
    color: #2D2D2D;
    font-size: 38px;
}

body.page-index .hero-num-lbl {
    color: #2F6E28;
    font-size: 11px;
    font-weight: 800;
}

@media (max-width: 1120px) {
    body.page-index #hero {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
    }

    body.page-index .hero-video {
        width: min(510px, 42vw);
    }

    body.page-index .hero-nums {
        gap: 14px;
    }
}

@media (max-width: 960px) {
    body.page-index #hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 126px 22px 34px;
    }

    body.page-index .hero-bg-shade {
        background:
            radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.62), transparent 22%),
            linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.84) 60%, rgba(255, 255, 255, 0.42)),
            linear-gradient(90deg, rgba(247, 248, 246, 0.44), rgba(68, 155, 58, 0.08));
    }

    body.page-index .hero-left {
        max-width: none;
        padding: 0;
    }

    body.page-index .hero-right {
        display: none;
    }

    body.page-index .hero-nums {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 54px;
    }
}

@media (max-width: 620px) {
    body.page-index .hero-h1 {
        font-size: 31px;
        line-height: 1.08;
    }

    body.page-index .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.page-index #hero .btn {
        justify-content: center;
    }
}

/* SOLUTION PHOTOS */
body.page-index .sol-grid {
    gap: 28px;
    background: transparent;
    border: 0;
}

body.page-index .sol-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(20, 35, 18, 0.06);
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(20, 35, 18, 0.08);
    transform-origin: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

body.page-index .sol-card::after {
    display: none;
}

body.page-index .sol-card:hover {
    background: #fff;
    transform: translateY(-4px) scale(1.025);
    box-shadow: 0 26px 58px rgba(20, 35, 18, 0.14);
}

body.page-index .sol-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 118px;
    padding: 10px 30px 22px;
    background: #fff;
}

body.page-index .sol-card-logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

body.page-index .sol-card-logo img {
    display: block;
    width: auto;
    max-width: 156px;
    max-height: 50px;
    object-fit: contain;
}

body.page-index .sol-card-brand-name {
    color: #172415;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

body.page-index .sol-top-link {
    flex-shrink: 0;
    color: var(--g);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}

body.page-index .sol-top-link:hover {
    color: var(--g2);
    transform: translateX(3px);
}

body.page-index .sol-title {
    margin: 0;
    color: #fff;
    font-size: clamp(18px, 1.25vw, 26px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

body.page-index .sol-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 14.2;
    overflow: visible;
    background: #dde8da;
    margin-top: 26px;
}

body.page-index .sol-img-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 0 0 15px 15px;
    background: #dde8da;
}

body.page-index .sol-img .sol-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.88);
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.25s cubic-bezier(.45, 0, .2, 1), filter 0.55s cubic-bezier(.16, 1, .3, 1);
    will-change: opacity, transform;
}

body.page-index .sol-img .sol-slide.active {
    opacity: 1;
    z-index: 1;
}

body.page-index .sol-img .sol-slide.leaving {
    opacity: 0;
    z-index: 0;
    transform: scale(1.12);
}

body.page-index .sol-card.is-sliding .sol-img .sol-slide.active {
    animation: solutionCardKenBurns 3s cubic-bezier(.22, .61, .36, 1) forwards;
}

body.page-index .sol-img-hover {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    background: linear-gradient(to top, rgba(10, 18, 9, 0.72), rgba(10, 18, 9, 0.34) 58%, rgba(10, 18, 9, 0.06));
    opacity: 0;
    transition: opacity 0.28s ease;
}

body.page-index .sol-img-hover p {
    max-width: 82%;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    transform: translateY(12px);
    transition: transform 0.28s ease;
}

body.page-index .sol-title-panel {
    position: absolute;
    top: -45px;
    right: 0;
    z-index: 2;
    width: min(80%, 330px);
    min-height: 118px;
    display: flex;
    align-items: center;
    padding: 22px 26px;
    background: var(--g);
    border-radius: 20px 0 0 20px;
    box-shadow: 0 18px 34px rgba(20, 35, 18, 0.16);
}

body.page-index .sol-card:hover .sol-img img,
body.page-index .sol-card:focus-within .sol-img img {
    filter: saturate(0.96);
}

body.page-index .sol-card:hover .sol-img-hover,
body.page-index .sol-card:focus-within .sol-img-hover {
    opacity: 1;
}

body.page-index .sol-card:hover .sol-img-hover p,
body.page-index .sol-card:focus-within .sol-img-hover p {
    transform: none;
}

@keyframes solutionCardKenBurns {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1.12);
    }
}

@media (max-width: 520px) {
    body.page-index .sol-card-top {
        min-height: 104px;
        padding: 24px 22px 18px;
    }

    body.page-index .sol-card-logo img {
        max-width: 132px;
    }

    body.page-index .sol-title-panel {
        width: 78%;
        min-height: 104px;
        padding: 18px 20px;
    }

    body.page-index .sol-title {
        font-size: 20px;
    }

    body.page-index .sol-img-hover {
        padding: 22px;
    }

    body.page-index .sol-img-hover p {
        max-width: 92%;
        font-size: 12px;
    }
}

/* SERVICE PHOTOS */
body.page-index .srv-mini { padding: 0; overflow: hidden; }
body.page-index .srv-mini-img { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; background: #dfe8dc; }
body.page-index .srv-mini-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.85); transition: transform 0.5s cubic-bezier(.16,1,.3,1); }
body.page-index .srv-mini:hover .srv-mini-img img { transform: scale(1.04); }
body.page-index .srv-mini .srv-mini-icon, body.page-index .srv-mini .srv-mini-title, body.page-index .srv-mini .srv-mini-body { margin-left: 28px; margin-right: 28px; }
body.page-index .srv-mini .srv-mini-icon { margin-top: 26px; }
body.page-index .srv-mini .srv-mini-body { margin-bottom: 30px; }

/* UNIT PHOTOS */
.unidade-card { display: block; padding: 0; overflow: hidden; }
.presenca-card-img { width: 100%; height: 150px; object-fit: cover; display: block; filter: saturate(0.88); }
.presenca-card-content { display: flex; align-items: center; gap: 18px; padding: 20px 24px; }

@media (max-width: 960px) {
  body.page-index .hero-video { width: 100%; }
  body.page-index .srv-main { grid-template-columns: 1fr; }
}

/* BLOG ARTICLE */
body.page-blog,
body.page-trabalhe {
    background: var(--dark);
}

body.page-blog .blog-article-hero {
    padding: 92px 0 80px;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

body.page-blog .blog-article-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
    align-items: center;
    gap: 56px;
}

body.page-blog .blog-article-title {
    max-width: 820px;
    color: #2D2D2D;
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.page-blog .blog-article-sub {
    max-width: 680px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

body.page-blog .blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

body.page-blog .blog-article-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--g2);
    background: var(--g3);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-blog .blog-article-hero-media {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 26px 60px rgba(17, 26, 15, 0.12);
}

body.page-blog .blog-article-hero-media img {
    width: 100%;
    aspect-ratio: 1.12 / 1;
    display: block;
    object-fit: cover;
    filter: saturate(0.9);
}

body.page-blog .blog-date {
    position: absolute;
    left: 16px;
    top: 16px;
    min-width: 78px;
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--g2);
    border-radius: 4px;
    box-shadow: 0 10px 26px rgba(20, 35, 18, 0.1);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-transform: lowercase;
}

body.page-blog .blog-date span {
    margin-right: 4px;
    font-size: 20px;
    font-weight: 800;
}

body.page-blog .blog-article-shell {
    padding: 80px 0;
}

body.page-blog .blog-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

body.page-blog .blog-article-content {
    background: #fff;
    border: 1px solid var(--border);
    padding: 54px 58px;
}

body.page-blog .blog-article-lead {
    color: #2D2D2D;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0;
    margin-bottom: 34px;
}

body.page-blog .blog-article-content h2 {
    margin: 42px 0 16px;
    color: #2D2D2D;
    font-size: clamp(24px, 2.4vw, 36px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
}

body.page-blog .blog-article-content p {
    color: var(--muted);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 18px;
}

body.page-blog .blog-article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 28px 0;
}

body.page-blog .blog-article-content figure {
    margin: 28px 0;
}

body.page-blog .blog-article-content figure img {
    margin: 0;
}

body.page-blog .blog-article-content figcaption {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
    margin-top: 8px;
}

body.page-blog .blog-article-content ul,
body.page-blog .blog-article-content ol {
    display: grid;
    gap: 10px;
    margin: 0 0 24px 22px;
    color: rgba(20, 30, 18, 0.68);
    line-height: 1.8;
}

body.page-blog .blog-article-content blockquote {
    border-left: 4px solid var(--g);
    padding: 8px 0 8px 20px;
    margin: 28px 0;
    color: rgba(20, 30, 18, 0.72);
    font-weight: 600;
}

body.page-blog .blog-article-callout {
    margin: 42px 0;
    padding: 30px 34px;
    border-left: 4px solid var(--g);
    background: var(--g3);
    color: #2D2D2D;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
}

body.page-blog .blog-checklist {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    list-style: none;
}

body.page-blog .blog-checklist li {
    position: relative;
    padding: 16px 18px 16px 42px;
    border: 1px solid var(--border);
    background: var(--dark);
    color: #2D2D2D;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

body.page-blog .blog-checklist li::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 22px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--g);
}

body.page-blog .blog-article-sidebar {
    position: sticky;
    top: 88px;
    display: grid;
    gap: 16px;
}

body.page-blog .blog-side-card {
    padding: 28px;
    border: 1px solid var(--border);
    background: #fff;
}

body.page-blog .blog-side-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 22px;
}

body.page-blog .blog-side-card-dark {
    background: #2D2D2D;
    border-color: rgba(255, 255, 255, 0.1);
}

body.page-blog .blog-side-label {
    color: var(--g);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

body.page-blog .blog-side-title {
    color: #2D2D2D;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

body.page-blog .blog-side-meta {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
}

body.page-blog .blog-side-card-dark p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
}

body.page-blog .blog-related {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid var(--border);
}

body.page-blog .blog-related-title {
    color: #2D2D2D;
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.08;
}

body.page-blog .blog-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin-top: 38px;
}

body.page-blog .blog-related-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--border);
    background: var(--dark);
    text-decoration: none;
    transition: border-color 0.25s, transform 0.25s;
}

body.page-blog .blog-related-card:hover {
    border-color: var(--g);
    transform: translateY(-3px);
}

body.page-blog .blog-related-card img {
    grid-row: span 4;
    width: 100%;
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
    filter: saturate(0.9);
}

body.page-blog .blog-related-card span {
    color: var(--g);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.page-blog .blog-related-card h3 {
    color: #2D2D2D;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
}

body.page-blog .blog-related-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

body.page-blog .blog-related-card div {
    color: var(--g);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    body.page-blog .blog-article-hero-grid,
    body.page-blog .blog-article-layout {
        grid-template-columns: 1fr;
    }

    body.page-blog .blog-article-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body.page-blog .blog-article-hero {
        padding: 70px 0 58px;
    }

    body.page-blog .blog-article-title {
        font-size: 38px;
    }

    body.page-blog .blog-article-content {
        padding: 34px 24px;
    }

    body.page-blog .blog-article-sidebar,
    body.page-blog .blog-related-grid,
    body.page-blog .blog-related-card {
        grid-template-columns: 1fr;
    }

    body.page-blog .blog-related-card img {
        grid-row: auto;
    }
}

/* CAREERS */
body.page-trabalhe .career-hero {
    padding: 92px 0 82px;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

body.page-trabalhe .career-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 56px;
    align-items: center;
}

body.page-trabalhe .career-title {
    color: #2D2D2D;
    font-size: clamp(46px, 6vw, 86px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.page-trabalhe .career-title em {
    color: var(--g);
    font-style: normal;
}

body.page-trabalhe .career-sub {
    max-width: 720px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

body.page-trabalhe .career-hero-card {
    padding: 34px;
    border: 1px solid var(--border);
    background: var(--g3);
}

body.page-trabalhe .career-hero-label,
body.page-trabalhe .career-aside-label {
    color: var(--g);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

body.page-trabalhe .career-hero-card p {
    color: #2D2D2D;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 24px;
}

body.page-trabalhe .career-section {
    padding: 82px 0;
}

body.page-trabalhe .career-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
    align-items: start;
}

body.page-trabalhe .career-form-panel,
body.page-trabalhe .career-aside-card {
    border: 1px solid var(--border);
    background: #fff;
}

body.page-trabalhe .career-form-panel {
    padding: 46px;
}

body.page-trabalhe .career-panel-head {
    margin-bottom: 30px;
}

body.page-trabalhe .career-panel-head h2 {
    color: #2D2D2D;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
}

body.page-trabalhe .career-panel-head p {
    max-width: 720px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

body.page-trabalhe .career-form .fg {
    margin-bottom: 16px;
}

body.page-trabalhe .career-form .fg label {
    display: block;
    margin-bottom: 7px;
    color: var(--muted2);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

body.page-trabalhe .career-form .fg input,
body.page-trabalhe .career-form .fg select,
body.page-trabalhe .career-form .fg textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--dark);
    color: #2D2D2D;
    font-family: var(--f);
    font-size: 13px;
    outline: none;
    padding: 13px 14px;
    transition: border-color 0.25s, background 0.25s;
}

body.page-trabalhe .career-form .fg input:focus,
body.page-trabalhe .career-form .fg select:focus,
body.page-trabalhe .career-form .fg textarea:focus {
    border-color: var(--g);
    background: #fff;
}

body.page-trabalhe .career-form .fg textarea {
    min-height: 126px;
    resize: vertical;
}

body.page-trabalhe .career-form .fg-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.page-trabalhe .career-file {
    cursor: pointer;
}

body.page-trabalhe .field-help {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 11.5px;
    line-height: 1.5;
}

body.page-trabalhe .btn-submit {
    width: 100%;
    margin-top: 8px;
    border: 0;
    border-radius: 100px;
    background: var(--g);
    color: #fff;
    cursor: pointer;
    font-family: var(--f);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 15px 22px;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
}

body.page-trabalhe .btn-submit:hover {
    background: var(--g2);
    transform: translateY(-1px);
}

body.page-trabalhe .form-alert {
    margin-bottom: 22px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    font-size: 13px;
    line-height: 1.6;
}

body.page-trabalhe .form-alert-success {
    background: var(--g3);
    color: var(--g2);
}

body.page-trabalhe .form-alert-error {
    background: #fff6f4;
    border-color: rgba(168, 59, 36, 0.22);
    color: #7d2d1d;
}

body.page-trabalhe .form-alert ul {
    margin-top: 8px;
    padding-left: 18px;
}

body.page-trabalhe .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

body.page-trabalhe .career-aside {
    position: sticky;
    top: 88px;
    display: grid;
    gap: 16px;
}

body.page-trabalhe .career-aside-card {
    padding: 28px;
}

body.page-trabalhe .career-step {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

body.page-trabalhe .career-step span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--g);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

body.page-trabalhe .career-step p,
body.page-trabalhe .career-aside-green p {
    color: var(--muted);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
}

body.page-trabalhe .career-aside-green {
    background: var(--g3);
}

body.page-trabalhe .career-aside-green p {
    color: #2D2D2D;
}

@media (max-width: 1080px) {
    body.page-trabalhe .career-hero-grid,
    body.page-trabalhe .career-layout {
        grid-template-columns: 1fr;
    }

    body.page-trabalhe .career-aside {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    body.page-trabalhe .career-hero {
        padding: 70px 0 58px;
    }

    body.page-trabalhe .career-title {
        font-size: 42px;
    }

    body.page-trabalhe .career-form-panel {
        padding: 30px 22px;
    }

    body.page-trabalhe .career-form .fg-row,
    body.page-trabalhe .career-aside {
        grid-template-columns: 1fr;
    }
}

body.page-index .hp-field,
body.page-admin .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

body.page-index .form-alert {
    border-radius: 8px;
    padding: 14px 16px;
    margin: 18px 0;
    font-size: 13px;
    line-height: 1.5;
}

body.page-index .contact-form-feedback:empty {
    display: none;
}

body.page-index .form-alert-success {
    background: rgba(68, 155, 58, 0.12);
    color: #255f1f;
    border: 1px solid rgba(68, 155, 58, 0.28);
}

body.page-index .form-alert-error {
    background: rgba(180, 35, 24, 0.08);
    color: #8d1d15;
    border: 1px solid rgba(180, 35, 24, 0.22);
}

body.page-index .form-alert ul {
    margin: 8px 0 0 18px;
}

body.page-index .btn-submit:disabled {
    cursor: wait;
    opacity: 0.72;
}

body.page-index .captcha-field,
body.page-trabalhe .captcha-field {
    margin-top: 4px;
}

body.page-index .captcha-row,
body.page-trabalhe .captcha-row {
    display: grid;
    grid-template-columns: 150px minmax(92px, 1fr) auto;
    gap: 10px;
    align-items: stretch;
}

body.page-index .captcha-row img,
body.page-trabalhe .captcha-row img {
    width: 150px;
    height: 54px;
    border: 1px solid rgba(31, 44, 28, 0.16);
    border-radius: 8px;
    background: #f6f8f2;
}

body.page-index .captcha-refresh,
body.page-trabalhe .captcha-refresh {
    min-width: 98px;
    border: 1px solid rgba(31, 44, 28, 0.16);
    border-radius: 8px;
    background: #fff;
    color: #1d271b;
    padding: 0 14px;
    font-family: var(--f);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

body.page-index .captcha-refresh:hover,
body.page-trabalhe .captcha-refresh:hover {
    border-color: var(--g);
    color: var(--g2);
}

@media (max-width: 560px) {
    body.page-index .captcha-row,
    body.page-trabalhe .captcha-row {
        grid-template-columns: 1fr;
    }

    body.page-index .captcha-row img,
    body.page-trabalhe .captcha-row img {
        width: 150px;
    }

    body.page-index .captcha-refresh,
    body.page-trabalhe .captcha-refresh {
        min-height: 44px;
    }
}

body.page-admin {
    min-height: 100vh;
    background: #f4f6f2;
    color: #1d271b;
}

body.page-admin a {
    color: inherit;
}

body.page-admin .admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

body.page-admin .admin-login-panel {
    width: min(420px, 100%);
    background: #fff;
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 34px;
    box-shadow: 0 18px 60px rgba(27, 42, 25, 0.1);
    display: grid;
    gap: 14px;
}

body.page-admin .admin-login-panel img {
    width: 150px;
    margin-bottom: 8px;
}

body.page-admin .admin-login-panel h1 {
    font-size: 24px;
    margin-bottom: 8px;
}

body.page-admin input,
body.page-admin select,
body.page-admin textarea {
    width: 100%;
    border: 1px solid rgba(31, 44, 28, 0.16);
    background: #fff;
    border-radius: 8px;
    padding: 12px 13px;
    font: inherit;
    color: #1d271b;
}

body.page-admin textarea {
    resize: vertical;
    line-height: 1.6;
}

body.page-admin label {
    display: grid;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(29, 39, 27, 0.72);
}

body.page-admin button,
body.page-admin .admin-primary {
    border: 0;
    border-radius: 8px;
    background: var(--g);
    color: #fff;
    padding: 12px 16px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.page-admin button:hover,
body.page-admin .admin-primary:hover {
    background: var(--g2);
}

body.page-admin .admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
}

body.page-admin .admin-sidebar {
    background: #fff;
    border-right: 1px solid var(--border2);
    padding: 28px 18px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 0;
    height: 100vh;
}

body.page-admin .admin-brand img {
    width: 155px;
}

body.page-admin .admin-nav {
    display: grid;
    gap: 8px;
}

body.page-admin .admin-nav a,
body.page-admin .admin-logout {
    width: 100%;
    justify-content: flex-start;
    border-radius: 8px;
    padding: 12px 14px;
    color: rgba(29, 39, 27, 0.72);
    background: transparent;
    border: 0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

body.page-admin .admin-nav a.active,
body.page-admin .admin-nav a:hover,
body.page-admin .admin-logout:hover {
    background: var(--g3);
    color: #255f1f;
}

body.page-admin .admin-sidebar form {
    margin-top: auto;
}

body.page-admin .admin-main {
    padding: 34px;
}

body.page-admin .admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

body.page-admin .admin-topbar span {
    font-size: 12px;
    font-weight: 800;
    color: var(--g2);
    text-transform: uppercase;
}

body.page-admin .admin-topbar h1 {
    font-size: 34px;
    line-height: 1.1;
    margin-top: 6px;
}

body.page-admin .admin-alert {
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-size: 14px;
}

body.page-admin .admin-alert-success {
    background: rgba(68, 155, 58, 0.12);
    border: 1px solid rgba(68, 155, 58, 0.24);
    color: #255f1f;
}

body.page-admin .admin-alert-error {
    background: rgba(180, 35, 24, 0.08);
    border: 1px solid rgba(180, 35, 24, 0.22);
    color: #8d1d15;
}

body.page-admin .admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

body.page-admin .admin-stats div,
body.page-admin .admin-panel {
    background: #fff;
    border: 1px solid var(--border2);
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(27, 42, 25, 0.06);
}

body.page-admin .admin-stats div {
    padding: 18px;
}

body.page-admin .admin-stats span {
    display: block;
    color: rgba(29, 39, 27, 0.56);
    font-size: 13px;
    margin-bottom: 8px;
}

body.page-admin .admin-stats strong {
    font-size: 32px;
    color: #1d271b;
}

body.page-admin .admin-panel {
    padding: 22px;
}

body.page-admin .admin-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

body.page-admin .admin-panel-head h2 {
    font-size: 20px;
}

body.page-admin .admin-primary-small {
    padding: 10px 13px;
    font-size: 13px;
}

body.page-admin .admin-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

body.page-admin .admin-actions-grid a {
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 16px;
    text-decoration: none;
    font-weight: 800;
    background: #fafcf8;
}

body.page-admin .admin-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px auto;
    gap: 10px;
    margin-bottom: 18px;
}

body.page-admin .admin-table-wrap {
    overflow-x: auto;
}

body.page-admin .admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

body.page-admin .admin-table th,
body.page-admin .admin-table td {
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid var(--border2);
    vertical-align: top;
    font-size: 14px;
}

body.page-admin .admin-table th {
    color: rgba(29, 39, 27, 0.58);
    font-size: 12px;
    text-transform: uppercase;
}

body.page-admin .admin-table td span {
    display: block;
    margin-top: 4px;
    color: rgba(29, 39, 27, 0.52);
    font-size: 12px;
}

body.page-admin .admin-status {
    display: inline-flex;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 800;
    background: #edf0ea;
    color: rgba(29, 39, 27, 0.72);
}

body.page-admin .admin-status-published,
body.page-admin .admin-status-lida {
    background: rgba(68, 155, 58, 0.12);
    color: #255f1f;
}

body.page-admin .admin-status-draft,
body.page-admin .admin-status-nova {
    background: rgba(245, 158, 11, 0.14);
    color: #8a5606;
}

body.page-admin .admin-status-arquivada {
    background: rgba(95, 111, 91, 0.12);
    color: #4d5a49;
}

body.page-admin .admin-row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.page-admin .admin-row-actions a,
body.page-admin .admin-row-actions button {
    border: 1px solid var(--border2);
    background: #fff;
    color: #1d271b;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

body.page-admin .admin-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

body.page-admin .admin-pagination a {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border2);
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

body.page-admin .admin-pagination a.active {
    background: var(--g);
    color: #fff;
    border-color: var(--g);
}

body.page-admin .admin-form {
    display: grid;
    gap: 18px;
}

body.page-admin .admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body.page-admin .admin-form-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

body.page-admin .admin-form-actions a {
    text-decoration: none;
    font-weight: 800;
    color: rgba(29, 39, 27, 0.64);
}

body.page-admin .admin-translation-grid {
    display: grid;
    gap: 18px;
}

body.page-admin .admin-translation-block {
    display: grid;
    gap: 16px;
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 18px;
    background: #fafcf8;
}

body.page-admin .admin-translation-block .admin-panel-head {
    margin-bottom: 0;
}

body.page-admin .admin-file-current,
body.page-admin .admin-help {
    color: rgba(29, 39, 27, 0.56);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

body.page-admin .ck-editor {
    color: #1d271b;
    font-weight: 400;
}

body.page-admin .ck-editor__editable {
    min-height: 360px;
    line-height: 1.65;
}

body.page-admin .proterra-editor {
    border: 1px solid rgba(31, 44, 28, 0.16);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

body.page-admin .proterra-editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    background: #f7f9fb;
    border-bottom: 1px solid rgba(31, 44, 28, 0.1);
}

body.page-admin .proterra-editor-toolbar button {
    min-width: 44px;
    height: 40px;
    border: 1px solid #dce4ef;
    border-radius: 7px;
    background: #fff;
    color: #07152b;
    padding: 0 13px;
    font-size: 14px;
    font-weight: 800;
}

body.page-admin .proterra-editor-toolbar button:hover {
    background: #edf4ff;
    color: #07152b;
}

body.page-admin .proterra-editor-area {
    min-height: 520px;
    padding: 22px;
    outline: none;
    color: #1d271b;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

body.page-admin .proterra-editor-area.is-dragging {
    background: rgba(68, 155, 58, 0.07);
    box-shadow: inset 0 0 0 2px rgba(68, 155, 58, 0.34);
}

body.page-admin .proterra-editor-area h2,
body.page-admin .proterra-editor-area h3 {
    margin: 24px 0 12px;
    line-height: 1.2;
}

body.page-admin .proterra-editor-area p {
    margin: 0 0 14px;
}

body.page-admin .proterra-editor-area img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

body.page-admin .proterra-editor-area figure {
    margin: 18px 0;
}

body.page-admin .proterra-editor-area figure.video {
    aspect-ratio: 16 / 9;
}

body.page-admin .proterra-editor-area figure.video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

body.page-admin .proterra-editor-source {
    display: none;
    min-height: 520px;
    border-radius: 0;
    border: 0;
    border-top: 1px solid rgba(31, 44, 28, 0.1);
    font-family: Consolas, monospace;
}

body.page-admin .proterra-editor-source.is-visible {
    display: block;
}

body.page-admin .proterra-editor.is-busy::after {
    content: "Enviando imagem...";
    display: block;
    padding: 10px 14px;
    background: rgba(68, 155, 58, 0.1);
    color: #255f1f;
    font-size: 12px;
    font-weight: 800;
}

body.page-admin .admin-messages {
    display: grid;
    gap: 14px;
}

body.page-admin .admin-message {
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 16px;
    background: #fff;
}

body.page-admin .admin-message-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

body.page-admin .admin-message-head strong,
body.page-admin .admin-message-head span {
    display: block;
}

body.page-admin .admin-message-head span,
body.page-admin .admin-message-meta,
body.page-admin .admin-message p {
    color: rgba(29, 39, 27, 0.62);
    font-size: 13px;
}

body.page-admin .admin-message-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 12px;
}

body.page-admin .admin-message p {
    line-height: 1.7;
    margin-bottom: 14px;
}

body.page-admin .admin-empty {
    color: rgba(29, 39, 27, 0.62);
}

@media (max-width: 920px) {
    body.page-admin .admin-shell {
        grid-template-columns: 1fr;
    }

    body.page-admin .admin-sidebar {
        position: static;
        height: auto;
    }

    body.page-admin .admin-stats,
    body.page-admin .admin-actions-grid,
    body.page-admin .admin-form-grid,
    body.page-admin .admin-filters {
        grid-template-columns: 1fr;
    }

    body.page-admin .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }
}
