/* 1. Fontes e variáveis */
@font-face { font-family: "Araucaria Sans Fallback"; src: local("Segoe UI"); font-display: swap; }

:root {
    --color-primary: #123c2a;
    --color-primary-deep: #08281b;
    --color-primary-soft: #2f7250;
    --color-accent: #b58a42;
    --color-accent-light: #d5bc83;
    --color-background: #f5f1e7;
    --color-paper: #fffdf8;
    --color-surface: #e7e2d5;
    --color-text: #14231b;
    --color-muted: #637067;
    --color-line: rgba(20, 35, 27, .18);
    --color-white-line: rgba(255, 255, 255, .2);
    --container-width: 1240px;
    --gutter: clamp(20px, 4vw, 48px);
    --radius: 2px;
    --shadow: 0 24px 70px rgba(10, 35, 24, .12);
    --font-sans: "Araucaria Sans Fallback", "Segoe UI", Arial, sans-serif;
    --font-serif: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    --header-height: 92px;
}

/* 2. Reset e elementos globais */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; background: var(--color-background); color: var(--color-text); font-family: var(--font-sans); line-height: 1.6; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -.035em; line-height: .98; }
h1 { font-size: clamp(3.15rem, 7vw, 7.35rem); }
h2 { font-size: clamp(2.4rem, 5vw, 5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.1; }
p { text-wrap: pretty; }
::selection { background: var(--color-accent); color: var(--color-primary-deep); }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 4px; }

.container { width: min(calc(100% - (var(--gutter) * 2)), var(--container-width)); margin-inline: auto; }
.section-space { padding-block: clamp(78px, 10vw, 150px); }
.eyebrow { margin-bottom: 22px; color: var(--color-primary-soft); font-size: .78rem; font-weight: 700; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase; }
.section-index { color: var(--color-accent); font-size: .82rem; font-weight: 700; letter-spacing: .14em; }
.section-heading { max-width: 780px; margin-bottom: clamp(42px, 7vw, 86px); }
.section-heading h2 { margin-bottom: 26px; }
.section-heading > p:last-child { max-width: 600px; color: var(--color-muted); font-size: 1.05rem; }
.section-heading--split { display: grid; gap: 32px; max-width: none; }
.section-heading--split > p { align-self: end; max-width: 460px; }

.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; padding: 12px 18px; transform: translateY(-160%); background: var(--color-paper); color: var(--color-primary); font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 14px 22px; border: 1px solid var(--color-primary); border-radius: var(--radius); background: var(--color-primary); color: #fff; font-size: .86rem; font-weight: 700; letter-spacing: .05em; line-height: 1.2; text-align: center; text-decoration: none; text-transform: uppercase; transition: background .2s ease, color .2s ease, transform .2s ease; }
.button:hover { background: var(--color-primary-deep); transform: translateY(-2px); }
.button--outline { background: transparent; color: var(--color-primary); }
.button--outline:hover { background: var(--color-primary); color: #fff; }
.button--light { border-color: #fff; background: #fff; color: var(--color-primary-deep); }
.button--light:hover { background: var(--color-accent-light); border-color: var(--color-accent-light); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--color-primary); font-weight: 700; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

/* 3. Cabeçalho */
.site-header {
    position: relative;
    z-index: 1000;
    background: rgba(245, 241, 231, .96);
    border-bottom: 1px solid transparent;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { border-color: var(--color-line); box-shadow: 0 10px 30px rgba(10, 35, 24, .08); }
.utility-bar { display: none; background: var(--color-primary-deep); color: #fff; font-size: .75rem; letter-spacing: .06em; }
.utility-bar__inner { display: flex; min-height: 34px; align-items: center; justify-content: space-between; }
.utility-bar p { margin: 0; }
.utility-bar a { text-decoration: none; }
.header-main { display: grid; min-height: 82px; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; }
.brand {
    display: inline-flex;
    width: 82px;
    align-items: center;
    text-decoration: none;
}
.brand img {
    width: 82px;
    height: auto;
}
.menu-toggle { display: inline-flex; justify-self: end; align-items: center; gap: 10px; padding: 10px; border: 0; background: transparent; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.menu-toggle__icon { display: grid; width: 26px; gap: 6px; }
.menu-toggle__icon span { height: 2px; background: currentColor; transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:last-child { transform: translateY(-4px) rotate(-45deg); }
.main-nav { grid-column: 1 / -1; }
.js .main-nav { display: none; }
.js .main-nav.is-open { display: block; }
.main-nav ul { display: grid; gap: 4px; margin: 0; padding: 20px 0 28px; list-style: none; }
.nav-link { display: block; padding: 13px 4px; border-bottom: 1px solid var(--color-line); color: var(--color-muted); font-size: 1.05rem; font-weight: 600; text-decoration: none; }
.nav-link.active, .nav-link:hover { color: var(--color-primary); }
.header-cta { display: none; }

/* 4. Hero e títulos internos */
.hero {
    position: relative;
    overflow: clip;
    padding-block: 8px;
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--color-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-line) 1px, transparent 1px);
    background-size: 88px 88px;
    content: "";
    opacity: .23;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    gap: 20px;

}

.hero-copy {
    align-self: center;
}

.hero-copy h1 {
    max-width: 800px;
    margin-bottom: 12px;
    color: var(--color-primary-deep);
    font-size: clamp(3rem, 4.4vw, 5.4rem);
    line-height: .88;
}

.hero-lead {
    max-width: 720px;
    margin-bottom: 14px;
    color: #435047;
    font-size: clamp(.95rem, 1.2vw, 1.08rem);
}

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

.hero-facts {
    display: grid;
    gap: 1px;
    margin: 30px 0 0;
    background: var(--color-line);
}

.hero-facts div {
    padding: 10px 14px;
    background: var(--color-background);
}

.hero-facts dt {
    color: var(--color-primary);
    font-family: var(--font-serif);
    font-size: 1.9rem;
    line-height: 1;
}

.hero-facts dd {
    margin: 5px 0 0;
    color: var(--color-muted);
    font-size: .8rem;
}

.hero-media {
    position: relative;
    margin: 0;
    box-shadow: var(--shadow);
}

.hero-media picture,
.hero-media img {
    width: 100%;
    height: 100%;
}

.hero-media img {
    min-height: 0;
    object-fit: cover;
}

.hero-media figcaption,
.story-image figcaption {
    padding: 10px 0 0;
    color: var(--color-muted);
    font-size: .72rem;
    line-height: 1.4;
}

.hero-media__stamp {
    position: absolute;
    right: -1px;
    bottom: 28px;
    padding: 14px 20px;
    background: var(--color-accent);
    color: var(--color-primary-deep);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .13em;
    line-height: 1.4;
    text-align: right;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(380px, .85fr);
        align-items: stretch;
        height: calc(100svh - 162px);
        min-height: 0;
    }

    .hero-media {
        height: 100%;
        max-height: none;
    }
}

@media (min-width: 992px) and (max-height: 800px) {
    .hero {
        padding-block: 6px;
    }

    .hero-grid {
        height: calc(100svh - 158px);
    }

    .hero-copy h1 {
        margin-bottom: 10px;
        font-size: clamp(2.8rem, 4vw, 4.2rem);
        line-height: .86;
    }

    .hero-lead {
        margin-bottom: 12px;
        font-size: .95rem;
        line-height: 1.45;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-facts {
        margin-top: 14px;
    }

    .hero-facts div {
        padding-block: 8px;
    }

    .hero-media {
        height: 100%;
        max-height: none;
    }
}
.page-hero {
    padding-block: clamp(52px, 6vw, 90px);
    background: var(--color-primary-deep);
    color: #fff;
}

.page-hero__grid {
    display: grid;
    gap: 40px;
}

.page-hero__grid--media {
    align-items: center;
}

.page-hero__copy {
    min-width: 0;
}

.page-hero h1 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(3.2rem, 4.6vw, 5.6rem);
    line-height: .92;
}

.page-hero__lead {
    max-width: 650px;
    margin-top: 20px;
    color: rgba(255, 255, 255, .72);
}

.page-hero__media {
    width: 100%;
    margin: 0;
}

.page-hero__media picture,
.page-hero__media img {
    display: block;
    width: 100%;
}

.page-hero__media img {
    height: clamp(430px, 39vw, 610px);
    object-fit: cover;
}

@media (min-width: 992px) {
    .page-hero__grid--media {
        grid-template-columns: minmax(0, .84fr) minmax(500px, 1.16fr);
        gap: clamp(45px, 5vw, 75px);
    }
}
/* 5. Home */
.statement-section { border-block: 1px solid var(--color-line); background: var(--color-paper); }
.statement-grid { display: grid; gap: clamp(48px, 6vw, 96px); padding-block: clamp(62px, 8vw, 100px);}
.statement-grid h2 { max-width: 760px; margin-bottom: 0; }
.statement-copy { align-self: end; }
.statement-copy p { color: var(--color-muted); }
.service-lines { border-top: 1px solid var(--color-line); }
.service-line { display: grid; gap: 14px; padding-block: 28px; border-bottom: 1px solid var(--color-line); }
.service-line__number { color: var(--color-accent); font-size: .75rem; font-weight: 700; letter-spacing: .12em; }
.service-line h3 { margin: 0; font-family: var(--font-serif); font-weight: 500; }
.service-line p { margin: 0; color: var(--color-muted); }
.service-line > a { display: inline-grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--color-line); color: var(--color-primary); text-decoration: none; transition: background .2s ease, color .2s ease; }
.service-line > a:hover { background: var(--color-primary); color: #fff; }
.grain-section { position: relative; min-height: 760px; overflow: clip; background: var(--color-primary-deep); color: #fff; }
.grain-section__image { position: absolute; inset: 0; opacity: .22; }
.grain-section__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.3); }
.grain-section::after { position: absolute; inset: 0; background: linear-gradient(90deg, var(--color-primary-deep) 5%, rgba(8,40,27,.78) 55%, rgba(8,40,27,.95)); content: ""; }
.grain-content { position: relative; z-index: 1; padding-block: clamp(90px, 11vw, 165px); }
.grain-content .eyebrow { color: var(--color-accent-light); }
.grain-list { display: grid; }
.grain-list article { display: grid; gap: 12px; padding-block: 24px; border-bottom: 1px solid var(--color-white-line); }
.grain-list h2 { margin: 0; color: #fff; font-size: clamp(2.4rem, 6vw, 5.7rem); }
.grain-list p { max-width: 420px; margin: 0; color: rgba(255,255,255,.66); }
.legacy-section { background: var(--color-paper); }
.legacy-grid { display: grid; gap: 52px; }
.legacy-number { align-self: start; padding-top: 20px; border-top: 1px solid var(--color-line); }
.legacy-number span { color: var(--color-accent); font-family: var(--font-serif); font-size: clamp(6rem, 18vw, 13rem); letter-spacing: -.08em; line-height: .78; }
.legacy-number p { max-width: 200px; margin: 26px 0 0; font-weight: 700; line-height: 1.3; }
.legacy-copy h2 { margin-bottom: 28px; }
.legacy-copy > p:not(.eyebrow) { max-width: 620px; margin-bottom: 34px; color: var(--color-muted); font-size: 1.06rem; }
.location-panels { display: grid; gap: 1px; background: var(--color-line); }
.location-panel { min-height: 440px; padding: clamp(34px, 6vw, 68px); background: var(--color-paper); }
.location-panel--dark { background: var(--color-primary); color: #fff; }
.location-panel__type { color: var(--color-accent); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.location-panel h2, .location-panel h3 { margin: 44px 0 24px; font-family: var(--font-serif); font-size: clamp(2.6rem, 5vw, 4.7rem); font-weight: 500; }
.location-panel > p:not(.location-panel__type) { max-width: 520px; color: var(--color-muted); }
.location-panel--dark > p:not(.location-panel__type) { color: rgba(255,255,255,.72); }
.location-panel address { margin: 35px 0 26px; font-weight: 700; }
.location-panel--dark .text-link { color: #fff; }
.principles-section { background: #ded9cb; }
.principles-grid { display: grid; gap: 55px; }
.principles-grid h2 { max-width: 700px; }
.principles-list { margin: 0; padding: 0; border-top: 1px solid var(--color-line); list-style: none; }
.principles-list li { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding-block: 20px; border-bottom: 1px solid var(--color-line); font-weight: 700; }
.principles-list span { color: var(--color-accent); font-size: .75rem; }
.testimonial-placeholder { background: var(--color-paper); }
.testimonial-placeholder__inner { display: grid; gap: 40px; }
.image-placeholder { display: grid; min-height: 290px; place-items: center; padding: 34px; border: 1px dashed rgba(18,60,42,.45); background: repeating-linear-gradient(135deg, rgba(18,60,42,.035) 0 12px, transparent 12px 24px); color: var(--color-primary); font-size: .9rem; font-weight: 700; line-height: 1.5; text-align: center; }
.image-placeholder--compact { min-height: 180px; }
.faq-grid { display: grid; gap: 50px; }
.accordion { border-top: 1px solid var(--color-line); }
.accordion details { border-bottom: 1px solid var(--color-line); }
.accordion summary { display: flex; cursor: pointer; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; font-weight: 700; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--color-accent); font-size: 1.4rem; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 700px; padding: 0 40px 22px 0; color: var(--color-muted); }
.cta-band { background: var(--color-primary); color: #fff; }
.cta-band__inner { display: grid; gap: 28px; padding-block: clamp(70px, 9vw, 125px); }
.cta-band .eyebrow { color: var(--color-accent-light); }
.cta-band h2 { max-width: 900px; margin: 0; color: #fff; }
.cta-band .button { justify-self: start; }

/* 6. Sobre */
.story-grid { display: grid; gap: 46px; }
.story-rail { display: flex; justify-content: space-between; color: var(--color-accent); font-size: .8rem; font-weight: 700; letter-spacing: .12em; }
.story-content h2 { margin-bottom: 30px; }
.story-content > p:not(.eyebrow) { color: var(--color-muted); font-size: 1.05rem; }
.story-highlight { margin-top: 42px; padding: 28px; border-left: 4px solid var(--color-accent); background: var(--color-paper); }
.story-highlight p { margin: 8px 0 0; }
.story-image { margin: 0; overflow: hidden; aspect-ratio: 4 / 5; max-height: 640px; }
.story-image picture { width: 100%; height: 100%; }
.story-image img { width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: center 45%; }
.purpose-section { background: var(--color-primary-deep); color: #fff; }
.purpose-grid { display: grid; gap: 1px; background: var(--color-white-line); }
.purpose-grid article { position: relative; min-height: 480px; padding: clamp(36px, 6vw, 70px); background: var(--color-primary-deep); }
.purpose-grid article > span { position: absolute; top: 28px; right: 28px; color: var(--color-accent); font-weight: 700; }
.purpose-grid h2 { margin: 55px 0 24px; color: #fff; }
.purpose-grid article > p:last-child { color: rgba(255,255,255,.68); }
.values-grid { display: grid; gap: 50px; }
.values-grid ul { margin: 0; padding: 0; border-top: 1px solid var(--color-line); list-style: none; }
.values-grid li { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding-block: 22px; border-bottom: 1px solid var(--color-line); font-size: 1.05rem; font-weight: 700; }
.values-grid li span { color: var(--color-accent); font-size: .75rem; }
.commitment-section {
    background: var(--color-paper);
}

.commitment-grid {
    display: grid;
    gap: 50px;
}

.commitment-copy > p:not(.eyebrow) {
    max-width: 630px;
    color: var(--color-muted);
}

.commitment-copy .button {
    margin-top: 22px;
}

.commitment-panel {
    width: 100%;
    min-width: 0;
}

.commitment-panel__image {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.commitment-panel__image picture,
.commitment-panel__image img {
    display: block;
    width: 100%;
}

.commitment-panel__image img {
    height: clamp(320px, 30vw, 410px);
    object-fit: cover;
}

.commitment-stats {
    display: grid;
    width: 100%;
    grid-template-columns: .75fr 1.05fr 1.2fr;
    gap: 1px;
    border: 1px solid var(--color-line);
    background: var(--color-line);
}

.commitment-stats div {
    display: flex;
    min-width: 0;
    min-height: 210px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 5px;
    background: var(--color-background);
    text-align: center;
}

.commitment-stats strong {
    display: block;
    color: var(--color-primary);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 2.4vw, 2.7rem);
    font-weight: 500;
    line-height: 1;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.commitment-stats span {
    display: block;
    max-width: none;
    margin-top: 16px;
    color: var(--color-muted);
    font-size: .95rem;
    line-height: 1.5;
}

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

    .commitment-stats div {
        min-height: auto;
        padding: 24px;
    }

    .commitment-panel__image img {
        height: clamp(260px, 72vw, 360px);
    }
}
/* 7. Serviços */
.process-track { display: grid; gap: 1px; background: var(--color-line); }
.process-track a { display: flex; min-height: 112px; align-items: center; gap: 18px; padding: 24px; background: var(--color-paper); font-weight: 700; text-decoration: none; transition: background .2s ease, color .2s ease; }
.process-track a:hover { background: var(--color-primary); color: #fff; }
.process-track span { color: var(--color-accent); font-size: .75rem; }
.service-details { padding-bottom: clamp(64px, 8vw, 110px); }
.service-details__list { display: grid; gap: 28px; }
.service-detail {
    display: grid;
    grid-template-areas: "heading" "image" "content";
    gap: 24px;
    padding: clamp(22px, 3vw, 40px);
    border: 1px solid var(--color-line);
    background: var(--color-paper);
    scroll-margin-top: 24px;
}
.service-detail__heading { grid-area: heading; min-width: 0; }
.service-detail__step { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; color: var(--color-primary-soft); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-detail__step span { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; background: var(--color-primary); color: var(--color-accent-light); font-size: .86rem; letter-spacing: .03em; }
.service-detail__heading h2 { margin: 0; font-size: clamp(2.25rem, 3.7vw, 3.65rem); line-height: 1.02; }
.service-detail__image { position: relative; grid-area: image; min-width: 0; margin: 0; overflow: hidden; aspect-ratio: 3 / 2; background: var(--color-surface); }
.service-detail__image picture { position: absolute; inset: 0; }
.service-detail__image picture, .service-detail__image img { width: 100%; height: 100%; }
.service-detail__image img { object-fit: cover; }
.service-detail__content { grid-area: content; min-width: 0; }
.service-detail__lead { margin: 0 0 24px; color: var(--color-muted); font-size: 1rem; line-height: 1.65; }
.service-detail__meta { display: grid; gap: 18px; margin: 0 0 26px; }
.service-detail__meta div { padding-top: 16px; border-top: 1px solid var(--color-line); }
.service-detail__meta dt { color: var(--color-primary); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-detail__meta dd { margin: 8px 0 0; color: var(--color-muted); font-size: .92rem; line-height: 1.6; }
.service-detail__action { width: 100%; font-size: .76rem; }
.grain-catalog { background: var(--color-primary-deep); color: #fff; }
.grain-catalog .section-heading p { color: rgba(255,255,255,.65); }
.grain-catalog .eyebrow { color: var(--color-accent-light); }
.grain-catalog__grid { display: grid; gap: 1px; background: var(--color-white-line); }
.grain-catalog__grid article { min-height: 270px; padding: 30px; background: var(--color-primary-deep); }
.grain-catalog__grid span { color: var(--color-accent); font-size: .75rem; }
.grain-catalog__grid h3 { margin: 65px 0 18px; color: #fff; font-family: var(--font-serif); font-size: 2.8rem; font-weight: 500; }
.grain-catalog__grid p { color: rgba(255,255,255,.65); }

/* 8. Estrutura */
.structure-map__grid { display: grid; gap: 1px; background: var(--color-line); }
.structure-map article { min-height: 600px; padding: clamp(36px, 6vw, 72px); background: var(--color-paper); }
.structure-map__dark { background: var(--color-primary) !important; color: #fff; }
.structure-map h2 { margin: 62px 0 28px; }
.structure-map article > p:not(.eyebrow) { color: var(--color-muted); }
.structure-map__dark > p:not(.eyebrow) { color: rgba(255,255,255,.7) !important; }
.check-list { margin: 36px 0; padding: 0; border-top: 1px solid var(--color-line); list-style: none; }
.check-list li { padding: 13px 0; border-bottom: 1px solid var(--color-line); }
.structure-map__dark .check-list { border-color: var(--color-white-line); }
.structure-map__dark .check-list li { border-color: var(--color-white-line); }
.structure-map address { margin-bottom: 24px; font-weight: 700; }
.structure-map__dark .text-link { color: #fff; }
.flow-list { display: grid; margin: 0; padding: 0; background: var(--color-line); gap: 1px; list-style: none; }
.flow-list li { min-height: 220px; padding: 26px; background: var(--color-paper); }
.flow-list span { color: var(--color-accent); font-size: .76rem; font-weight: 700; }
.flow-list strong { display: block; margin-top: 55px; font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500; }
.flow-list p { margin: 10px 0 0; color: var(--color-muted); }
.gallery-section { background: var(--color-paper); }
.gallery-grid { display: grid; gap: 14px; }
.gallery-item { position: relative; min-height: 310px; overflow: hidden; padding: 0; border: 0; background: var(--color-primary-deep); cursor: zoom-in; text-align: left; }
.gallery-item picture, .gallery-item img { width: 100%; height: 100%; }
.gallery-item img { min-height: 310px; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item span { position: absolute; right: 0; bottom: 0; left: 0; padding: 18px; background: linear-gradient(transparent, rgba(8,40,27,.9)); color: #fff; font-size: .78rem; font-weight: 700; }
.gallery-item picture {
    display: block;
}

.gallery-item--tall {
    min-height: 310px;
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-flow: row dense;
        grid-auto-rows: 310px;
    }

    .gallery-item,
    .image-placeholder {
        min-height: 310px;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    .gallery-item--tall {
        grid-column: span 1;
        grid-row: span 2;
        min-height: 634px;
    }

    .gallery-item--tall img {
        min-height: 634px;
    }
}
.lightbox { width: min(94vw, 1100px); max-width: none; padding: 0; border: 0; background: transparent; }
.lightbox::backdrop { background: rgba(3,17,11,.88); }
.lightbox img { width: 100%; max-height: 84vh; object-fit: contain; }
.lightbox__close { position: fixed; top: 18px; right: 22px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.4); background: rgba(8,40,27,.75); color: #fff; cursor: pointer; font-size: 2rem; }

/* 9. Contato e formulários */
.contact-overview__grid { display: grid; gap: 1px; background: var(--color-line); }
.contact-primary, .contact-list { padding: clamp(34px, 6vw, 70px); background: var(--color-paper); }
.contact-primary h2 { margin-bottom: 32px; }
.contact-number { display: inline-block; margin-bottom: 24px; color: var(--color-primary); font-family: var(--font-serif); font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1; text-decoration: none; }
.contact-primary > p:not(.eyebrow) { max-width: 520px; color: var(--color-muted); }
.contact-primary .button { margin-top: 22px; }
.contact-list article { padding: 22px 0; border-bottom: 1px solid var(--color-line); }
.contact-list span { display: block; margin-bottom: 8px; color: var(--color-muted); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-list a, .contact-list p { margin: 0; font-weight: 700; }
.form-section { background: var(--color-primary-deep); color: #fff; }
.form-grid { display: grid; gap: 55px; }
.form-grid header p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.67); }
.form-grid .eyebrow { color: var(--color-accent-light); }
.contact-form { display: grid; gap: 22px; }
.form-row { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.34); border-radius: 0; outline: none; background: transparent; color: #fff; }
.field input, .field select { min-height: 52px; }
.field textarea { padding-block: 14px; resize: vertical; }
.field select option { color: var(--color-text); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--color-accent-light); box-shadow: 0 2px 0 var(--color-accent-light); }
.field [aria-invalid="true"] { border-color: #ffb1a8; }
.field small, .consent-error { min-height: 18px; color: #ffb1a8; font-size: .75rem; }
.consent { display: flex; align-items: flex-start; gap: 12px; font-size: .85rem; }
.consent input { width: 20px; height: 20px; accent-color: var(--color-accent); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.form-status { margin: 0; font-size: .86rem; }
.noscript-note { color: #fff; }
.map-placeholder { display: grid; gap: 38px; padding: clamp(34px, 6vw, 70px); border: 1px dashed var(--color-primary-soft); background: repeating-linear-gradient(135deg, rgba(18,60,42,.03) 0 12px, transparent 12px 24px); }
.map-placeholder > div:last-child { display: flex; flex-wrap: wrap; gap: 14px; }

/* 10. Rodapé e WhatsApp */
.site-footer { background: #061e14; color: #fff; }
.footer-grid { display: grid; gap: 52px; padding-block: clamp(75px, 9vw, 125px); }
.brand--footer { width: 150px; margin-bottom: 24px; opacity: 1; }
.brand--footer img { width: 150px; }
.footer-brand p { max-width: 390px; color: rgba(255,255,255,.62); }
.footer-brand strong { color: var(--color-accent-light); }
.footer-title { margin: 0 0 24px; font-family: var(--font-sans); font-size: .77rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-links, .footer-contact { margin: 0; padding: 0; list-style: none; }
.footer-links li, .footer-contact li { margin-bottom: 11px; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,.76); text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-address { max-width: 320px; color: rgba(255,255,255,.56); }
.footer-action { padding: 32px; border: 1px solid var(--color-white-line); }
.footer-action .eyebrow { color: var(--color-accent-light); }
.footer-action h2 { margin-bottom: 28px; color: #fff; font-size: 2.35rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-block: 22px; border-top: 1px solid var(--color-white-line); color: rgba(255,255,255,.5); font-size: .75rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a { color: inherit; }
.footer-privacy-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
}
.whatsapp-floating {
    position: fixed;
    z-index: 950;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    display: inline-grid;
    min-height: 64px;
    grid-template-columns: 46px auto 18px;
    align-items: center;
    gap: 12px;
    padding: 8px 13px 8px 8px;
    border: 1px solid rgba(213, 188, 131, .78);
    border-radius: var(--radius);
    background: var(--color-primary-deep);
    color: #fff;
    box-shadow: 0 18px 48px rgba(8, 40, 27, .26);
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.whatsapp-floating__icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    background: var(--color-accent-light);
    color: var(--color-primary-deep);
}
.whatsapp-floating__icon svg { width: 22px; fill: currentColor; }
.whatsapp-floating__copy { display: grid; gap: 1px; line-height: 1.15; }
.whatsapp-floating__copy small {
    color: var(--color-accent-light);
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.whatsapp-floating__copy strong {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .055em;
    text-transform: uppercase;
}
.whatsapp-floating__arrow { color: var(--color-accent-light); font-size: 1rem; transition: transform .2s ease; }
.whatsapp-floating:hover {
    border-color: var(--color-accent-light);
    background: var(--color-primary);
    box-shadow: 0 22px 54px rgba(8, 40, 27, .32);
    transform: translateY(-3px);
}
.whatsapp-floating:hover .whatsapp-floating__arrow { transform: translate(2px, -2px); }
.cookie-consent {
    position: fixed;
    z-index: 1200;
    right: var(--gutter);
    bottom: var(--gutter);
    left: var(--gutter);
    display: grid;
    max-width: 760px;
    gap: 18px;
    margin-inline: auto;
    padding: 24px;
    border: 1px solid var(--color-accent-light);
    background: var(--color-paper);
    box-shadow: var(--shadow);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent strong { color: var(--color-primary-deep); font-family: var(--font-serif); font-size: 1.35rem; font-weight: 500; }
.cookie-consent p { margin: 7px 0 0; color: var(--color-muted); font-size: .9rem; }
.cookie-consent a { color: var(--color-primary); }
.cookie-consent__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-consent__actions .button { min-height: 46px; cursor: pointer; }

/* 11. Páginas legais */
.legal-page { min-height: 70vh; }
.legal-content { max-width: 860px; }
.legal-content h1 { margin-bottom: 50px; }
.legal-content h2 { margin: 50px 0 18px; font-family: var(--font-sans); font-size: 1.25rem; font-weight: 700; letter-spacing: 0; line-height: 1.3; }
.legal-content p { color: var(--color-muted); }
.legal-content code { padding: .12em .35em; background: var(--color-surface); color: var(--color-primary-deep); font-size: .92em; }
.legal-content .legal-update { margin-top: 48px; font-size: .82rem; }

/* 12. Animações */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* 13. Responsividade */
@media (min-width: 680px) {
    .hero-facts { grid-template-columns: repeat(3, 1fr); }
    .service-line { grid-template-columns: 50px 1fr 1.3fr 44px; align-items: center; }
    .grain-list article { grid-template-columns: minmax(180px, .7fr) 1fr; align-items: end; }
    .commitment-stats { grid-template-columns: repeat(3, 1fr); }
    .process-track { grid-template-columns: repeat(2, 1fr); }
    .grain-catalog__grid { grid-template-columns: repeat(2, 1fr); }
    .flow-list { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item--wide { grid-column: span 2; }
    .form-row { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .utility-bar { display: block; }
    .header-main { min-height: var(--header-height); grid-template-columns: auto 1fr auto; }
    .brand { width: 104px; }
    .brand img { width: 104px; }
    .menu-toggle { display: none; }
    .main-nav, .js .main-nav { display: block; grid-column: auto; justify-self: center; }
    .main-nav ul { display: flex; align-items: center; gap: 24px; padding: 0; }
    .nav-link { position: relative; padding: 34px 0 30px; border: 0; font-size: .83rem; }
    .nav-link::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; transform: scaleX(0); background: var(--color-accent); content: ""; transform-origin: left; transition: transform .2s ease; }
    .nav-link.active::after, .nav-link:hover::after { transform: scaleX(1); }
    .header-cta { display: inline-flex; align-items: center; gap: 12px; padding: 13px 17px; border: 1px solid var(--color-primary); font-size: .74rem; font-weight: 700; text-decoration: none; text-transform: uppercase; }
    .hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr); align-items: stretch; }
    .hero-copy { padding-block: 32px; }
    .hero-copy h1 { font-size: clamp(4.6rem, 6.4vw, 7.35rem); }
    .hero-media { clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%, 0 15%); }
    .statement-grid { grid-template-columns: 60px 1.5fr 1fr; }
    .section-heading--split { grid-template-columns: 1.4fr .6fr; }
    .legacy-grid { grid-template-columns: .8fr 1.2fr; align-items: center; }
    .location-panels { grid-template-columns: repeat(2, 1fr); }
    .principles-grid { grid-template-columns: 1fr .9fr; }
    .testimonial-placeholder__inner { grid-template-columns: 1fr 1fr; align-items: center; }
    .faq-grid { grid-template-columns: .78fr 1.22fr; }
    .cta-band__inner { grid-template-columns: 1fr auto; align-items: end; }
    .cta-band .eyebrow { grid-column: 1 / -1; }
    .story-grid { grid-template-columns: 64px 1fr .8fr; align-items: start; }
    .story-rail { flex-direction: column; min-height: 620px; }
    .purpose-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: .9fr 1.1fr; }
    .commitment-grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
    .process-track { grid-template-columns: repeat(3, 1fr); }
    .service-detail {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
        grid-template-areas: "image heading" "image content";
        grid-template-rows: auto 1fr;
        column-gap: clamp(28px, 4vw, 54px);
        row-gap: 20px;
    }
    .service-detail__image { aspect-ratio: auto; min-height: 420px; }
    .service-detail__action { width: auto; }
    .grain-catalog__grid { grid-template-columns: repeat(4, 1fr); }
    .structure-map__grid { grid-template-columns: repeat(2, 1fr); }
    .flow-list { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item--wide { grid-column: span 2; }
    .contact-overview__grid { grid-template-columns: 1.1fr .9fr; }
    .form-grid { grid-template-columns: .75fr 1.25fr; }
    .map-placeholder { grid-template-columns: 1fr auto; align-items: center; }
    .footer-grid { grid-template-columns: 1.25fr .6fr .9fr 1.15fr; }
}

@media (min-width: 1160px) {
    .main-nav ul { gap: 36px; }
    .header-cta { padding-inline: 22px; }
}

@media (max-width: 899px) {
    .header-main { align-items: center; }
    .header-cta { grid-column: 3; }
    .page-hero h1 { font-size: clamp(3rem, 12vw, 5.2rem); }
}

@media (max-width: 520px) {
    :root { --gutter: 18px; }
    .hero-actions, .form-actions, .map-placeholder > div:last-child { align-items: stretch; flex-direction: column; }
    .hero-actions .button, .form-actions .button, .map-placeholder .button { width: 100%; }
    .whatsapp-floating {
        width: 58px;
        min-height: 58px;
        grid-template-columns: 1fr;
        justify-content: center;
        padding: 6px;
    }
    .whatsapp-floating__icon { width: 44px; height: 44px; }
    .whatsapp-floating__copy, .whatsapp-floating__arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .js [data-reveal] { opacity: 1; transform: none; }
}

/* 14. Ajustes solicitados — julho de 2026 */
.page-home {
    --color-text: #102017;
    --color-muted: #4f5b53;
}

/* Cabeçalho */
.brand { width: 82px; }
.brand img { width: 82px; }
.nav-link { font-size: 1.1rem; }
.header-cta {
    color: var(--color-primary);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.header-cta:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Home — hero */
.hero--home { padding-block: clamp(44px, 6vw, 82px); }
.hero--home .hero-grid { gap: clamp(34px, 5vw, 54px); }
.hero--home .hero-copy h1 { margin-bottom: 24px; }
.hero--home .hero-lead { margin-bottom: 28px; color: #39463e; }
.hero--home .hero-facts { margin-top: 38px; }
.hero--home .hero-media img { min-height: 410px; }

/* Heroes internos com imagem */
.page-hero__grid--media { gap: clamp(34px, 6vw, 68px); }
.page-hero__copy { align-self: center; }
.page-hero__copy h1 { margin-bottom: 28px; }
.page-hero__lead {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 1.12rem;
}
.page-hero__media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
}
.page-hero__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,40,27,.08), rgba(8,40,27,.32));
    content: "";
    pointer-events: none;
}
.page-hero__media picture,
.page-hero__media img { width: 100%; height: 100%; }
.page-hero__media img { min-height: 360px; object-fit: cover; }
.page-hero--compact { padding-block: clamp(48px, 7vw, 88px); }
.page-hero--contact .page-hero__media img { object-position: 58% center; }

/* Home — seção 01 */
.statement-grid .eyebrow { margin-bottom: 14px; }
.statement-grid h2 { margin-top: 0; }
.statement-copy__image {
    margin: 0 0 24px;
    overflow: hidden;
}
.statement-copy__image picture,
.statement-copy__image img { width: 100%; }
.statement-copy__image img {
    height: clamp(170px, 18vw, 230px);
    object-fit: cover;
}
.statement-copy p { font-size: 1.14rem; line-height: 1.7; }

/* Home — seção 02 */
.services-preview.section-space { padding-block: clamp(58px, 7vw, 96px); }
.services-preview .section-heading { margin-bottom: clamp(34px, 5vw, 58px); }
.services-preview .service-line { padding-block: 22px; }

/* Home — seção 04 */
.legacy-media {
    position: relative;
    min-height: 460px;
    margin: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.legacy-media picture,
.legacy-media img { width: 100%; height: 100%; }
.legacy-media img { min-height: 460px; object-fit: cover; }
.legacy-media__tag {
    position: absolute;
    right: 0;
    bottom: 28px;
    display: flex;
    max-width: 190px;
    align-items: baseline;
    gap: 8px;
    padding: 16px 21px;
    background: var(--color-accent);
    color: var(--color-primary-deep);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .09em;
    line-height: 1.25;
    text-transform: uppercase;
}
.legacy-media__tag strong {
    font-family: var(--font-serif);
    font-size: 2.7rem;
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: .8;
}

/* Home — seção 05 */
.locations-section.section-space { padding-block: clamp(58px, 7vw, 96px); }
.section-heading--locations {
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
}
.section-heading--locations h2 { max-width: 900px; margin-inline: auto; }
.locations-section .location-panel {
    min-height: 380px;
    padding: clamp(32px, 5vw, 56px);
}
.locations-section .location-panel h2,
.locations-section .location-panel h3 { margin-top: 34px; }

/* Home — seção 07 */
.testimonial-image { margin: 0; }
.testimonial-image picture,
.testimonial-image img { width: 100%; }
.testimonial-image img {
    height: clamp(260px, 32vw, 420px);
    object-fit: cover;
}
.testimonial-image figcaption {
    padding-top: 10px;
    color: var(--color-muted);
    font-size: .72rem;
    line-height: 1.4;
}

/* CTAs solicitados */
.cta-band--center-action .cta-band__inner { align-items: center; }

/* Empresa */
.story-grid--no-rail { gap: clamp(40px, 6vw, 72px); }
.commitment-panel { min-width: 0; }
.commitment-panel__image { margin: 0; overflow: hidden; }
.commitment-panel__image picture,
.commitment-panel__image img { width: 100%; }
.commitment-panel__image img {
    height: clamp(260px, 28vw, 390px);
    object-fit: cover;
}

/* Contato — mapas */
.maps-grid {
    display: grid;
    gap: 24px;
    align-items: stretch;
}

.map-card {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 420px;
    overflow: hidden;
    border: 1px solid var(--color-line);
    background: var(--color-line);
}

.map-card__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: clamp(30px, 3.5vw, 48px);
    background: var(--color-paper);
}

.map-card__content h2 {
    max-width: 520px;
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 3.6vw, 4.2rem);
    line-height: .94;
}

.map-card__content > p:not(.eyebrow) {
    max-width: 520px;
    color: var(--color-muted);
    line-height: 1.6;
}

.map-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 28px;
}

.map-card__actions .button {
    font-size: .75rem;
    text-align: center;
}

.map-card__frame {
    position: relative;
    display: grid;
    width: 100%;
    min-width: 0;
    min-height: 420px;
    background: var(--color-surface);
}

.map-card__privacy {
    display: grid;
    place-content: center;
    justify-items: start;
    gap: 12px;
    min-height: 420px;
    padding: clamp(28px, 5vw, 52px);
    background: repeating-linear-gradient(135deg, rgba(18,60,42,.04) 0 12px, transparent 12px 24px), var(--color-surface);
}
.map-card__privacy strong { color: var(--color-primary-deep); font-family: var(--font-serif); font-size: 1.7rem; font-weight: 500; }
.map-card__privacy p { max-width: 420px; margin: 0; color: var(--color-muted); }
.map-card__privacy .button { margin-top: 8px; cursor: pointer; }

.map-card__frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

@media (min-width: 992px) {
    .maps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .maps-grid .map-card {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: 1fr 420px;
    }

    .maps-grid .map-card__content,
    .maps-grid .map-card__frame {
        grid-column: 1;
    }

    .maps-grid .map-card__content {
        grid-row: 1;
    }

    .maps-grid .map-card__frame {
        grid-row: 2;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .map-card__content {
        padding: 30px;
    }

    .map-card__content h2 {
        font-size: clamp(2.3rem, 3.5vw, 3.3rem);
    }

    .map-card__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .map-card__actions .button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .maps-grid {
        grid-template-columns: 1fr;
    }

    .map-card {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto 400px;
    }
}

@media (max-width: 767px) {
    .map-card {
        grid-template-rows: auto 340px;
    }

    .map-card__content {
        padding: 28px 22px;
    }

    .map-card__content h2 {
        font-size: clamp(2.3rem, 11vw, 3.3rem);
    }

    .map-card__frame,
    .map-card__frame iframe {
        min-height: 340px;
    }

    .map-card__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .map-card__actions .button {
        width: 100%;
        justify-content: center;
    }
}
@media (min-width: 900px) {
    .brand { width: 88px; }
    .brand img { width: 88px; }
    .nav-link { font-size: .92rem; }

    .hero--home .hero-copy { padding-block: 20px; }
    .hero--home .hero-copy h1 { font-size: clamp(4.15rem, 5.6vw, 6.55rem); }

    .page-hero__grid--media {
        grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
        align-items: center;
    }
    .page-hero__media { clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%, 0 13%); }
    .page-hero__media img { min-height: 420px; }
    .page-hero--compact .page-hero__media img { min-height: 360px; }

    .story-grid--no-rail { grid-template-columns: 1.08fr .92fr; align-items: start; }
    .map-card { grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr); align-items: stretch; }
}

@media (max-width: 520px) {
    .map-card__actions { align-items: stretch; flex-direction: column; }
    .map-card__actions .button { width: 100%; }
    .legacy-media,
    .legacy-media img { min-height: 360px; }
}


@media (prefers-reduced-motion: reduce) {
    .header-cta { transition-duration: .01ms !important; }
}

/* Fotografias das captações de setembro de 2026 */
.grain-section__image picture { width: 100%; height: 100%; }
