/* ==========================================================================
   Hieros Agro — Tema WordPress
   Tom corporate · Governança · Compliance
   ========================================================================== */

/* ============================ VARIÁVEIS ================================== */
:root {
    /* Paleta — azul marinho dominante, verde como acento, dourado pontual */
    --color-primary:        #0F5132;   /* Verde escuro - acento estratégico */
    --color-primary-dark:   #0a3a23;
    --color-primary-light:  #1a6b44;
    --color-accent:         #E8B931;   /* Dourado - pontual */
    --color-accent-dark:    #cfa31f;
    --color-secondary:      #0F2746;   /* Azul marinho profundo - dominante */
    --color-secondary-mid:  #1E3A5F;
    --color-secondary-dark: #081830;

    --color-bg:             #ffffff;
    --color-bg-alt:         #f7f8f9;
    --color-bg-cream:       #f5f1e8;
    --color-text:           #16213a;
    --color-text-muted:     #5a6680;
    --color-border:         #e4e7ec;
    --color-white:          #ffffff;

    /* Tipografia maior, mais respirada */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --fs-h1:   clamp(2.75rem, 5vw + 1rem, 5.5rem);
    --fs-h2:   clamp(2rem, 3vw + 1rem, 3.25rem);
    --fs-h3:   clamp(1.35rem, 1vw + 1rem, 1.65rem);
    --fs-lead: clamp(1.1rem, 0.5vw + 1rem, 1.3rem);

    /* Layout */
    --container: 1240px;
    --container-narrow: 880px;
    --radius: 4px;
    --radius-sm: 2px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 8px rgba(15, 39, 70, 0.06);
    --shadow-md: 0 12px 32px rgba(15, 39, 70, 0.10);
    --shadow-lg: 0 24px 64px rgba(15, 39, 70, 0.14);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 84px;
}

/* ============================ RESET ====================================== */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 60px); }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary-dark); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-secondary);
    letter-spacing: -0.025em;
}
h1 { font-size: var(--fs-h1); font-weight: 800; line-height: 1.05; letter-spacing: -0.035em; }
h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: var(--fs-h3); font-weight: 600; }
p { margin: 0 0 1rem; }
ul, ol { padding: 0; margin: 0 0 1rem; }
.skip-link {
    position: absolute; left: -9999px;
    background: var(--color-secondary); color: #fff;
    padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 0; top: 0; }
.screen-reader-text {
    position: absolute; width: 1px; height: 1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
.text-center { text-align: center; }

/* ============================ CONTAINER ================================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.75rem;
}
.container--narrow { max-width: var(--container-narrow); }

/* ============================ BOTÕES ===================================== */
.btn {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .9rem 1.6rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
    line-height: 1;
    border: 1.5px solid transparent;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--primary  { background: var(--color-secondary); color: #fff; }
.btn--primary:hover { background: var(--color-secondary-dark); color: #fff; }
.btn--accent   { background: var(--color-accent); color: var(--color-secondary); border-color: var(--color-accent); }
.btn--accent:hover { background: var(--color-accent-dark); color: var(--color-secondary); border-color: var(--color-accent-dark); }
.btn--ghost    { background: transparent; color: var(--color-secondary); border-color: var(--color-secondary); }
.btn--ghost:hover { background: var(--color-secondary); color: #fff; }
.btn--outline  { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn--outline:hover { background: #fff; color: var(--color-secondary); border-color: #fff; }
.btn--lg { padding: 1.1rem 2.2rem; font-size: 1rem; }
.btn--sm { padding: .55rem 1.05rem; font-size: .85rem; }

/* ============================ TOPBAR ===================================== */
.topbar {
    background: var(--color-secondary-dark);
    color: rgba(255,255,255,0.78);
    font-size: .82rem;
}
.topbar__inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: .55rem 1.75rem;
    gap: 1rem; flex-wrap: wrap;
}
.topbar__contact { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar__contact a {
    display: inline-flex; align-items: center; gap: .4rem;
    color: rgba(255,255,255,0.85);
}
.topbar__contact a:hover { color: var(--color-accent); }
.topbar__social { display: flex; gap: .65rem; }
.topbar__social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}
.topbar__social a:hover { color: var(--color-accent); }

/* ============================ HEADER ===================================== */
.site-header {
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--color-border);
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: saturate(180%) blur(10px);
    transition: var(--transition);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.75rem;
    gap: 1.5rem;
    min-height: var(--header-h);
}
.site-logo { display: inline-block; max-width: 240px; }
.site-logo svg { max-height: 56px; width: auto; }
.site-logo img.custom-logo { max-height: 56px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.primary-menu {
    display: flex; gap: .25rem; list-style: none;
    margin: 0; padding: 0;
}
.primary-menu a {
    display: block;
    padding: .65rem 1.1rem;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: .95rem;
    position: relative;
}
.primary-menu a::after {
    content: '';
    position: absolute;
    left: 1.1rem; right: 1.1rem; bottom: .35rem;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after { transform: scaleX(1); }
.primary-menu a:hover { color: var(--color-primary); }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    background: transparent; border: 0;
    flex-direction: column; gap: 5px;
    align-items: center; justify-content: center;
}
.nav-toggle__bar { width: 24px; height: 2px; background: var(--color-secondary); transition: var(--transition); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
    .site-header__cta { display: none; }
    .nav-toggle { display: flex; }
    .primary-menu {
        position: fixed; inset: var(--header-h) 0 0 0;
        flex-direction: column; align-items: stretch;
        background: var(--color-bg);
        padding: 1.5rem;
        transform: translateX(100%);
        transition: var(--transition);
        gap: .25rem;
        overflow-y: auto;
    }
    .site-nav.is-open .primary-menu { transform: translateX(0); }
    .primary-menu a { padding: 1rem; border-bottom: 1px solid var(--color-border); }
    .primary-menu a::after { display: none; }
}

/* ============================ HERO COM FOTOGRAFIA ======================== */
.hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    padding: 8rem 0 6rem;
    min-height: clamp(540px, 75vh, 760px);
    display: flex;
    align-items: center;
}
.hero--photo {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero--photo .hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg,
        rgba(8, 24, 48, 0.86) 0%,
        rgba(15, 39, 70, 0.72) 35%,
        rgba(15, 39, 70, 0.40) 70%,
        rgba(15, 39, 70, 0.30) 100%);
    z-index: 1;
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 880px; }
.hero__eyebrow {
    display: inline-block;
    color: var(--color-accent);
    font-size: .82rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
    margin-bottom: 1.75rem;
    padding-left: 3.5rem;
    position: relative;
}
.hero__eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 3rem; height: 1px;
    background: var(--color-accent);
    transform: translateY(-50%);
}
.hero__title {
    color: #fff;
    margin: 0 0 1.75rem;
}
.hero__highlight {
    color: var(--color-accent);
    font-weight: 800;
}
.hero__subtitle {
    font-size: var(--fs-lead);
    color: rgba(255,255,255,0.88);
    max-width: 720px;
    margin: 0 0 2.5rem;
    line-height: 1.6;
}
.hero__actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
}
.hero__signature {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.55);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .35em;
    text-transform: uppercase;
    text-align: center;
}
.hero__signature span {
    padding: 0 1rem;
    position: relative;
}
.hero__signature span::before,
.hero__signature span::after {
    content: '';
    position: absolute; top: 50%;
    width: 30px; height: 1px;
    background: rgba(255,255,255,0.25);
}
.hero__signature span::before { right: 100%; }
.hero__signature span::after  { left: 100%; }

@media (max-width: 768px) {
    .hero { padding: 5.5rem 0 4rem; min-height: 600px; }
    .hero__eyebrow { padding-left: 0; }
    .hero__eyebrow::before { display: none; }
    .hero__signature { bottom: 1rem; font-size: .68rem; letter-spacing: .25em; }
}

/* ============================ STATEMENT ================================== */
.statement {
    background: var(--color-bg);
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-border);
}
.statement__text {
    font-size: clamp(1.3rem, 1.5vw + 1rem, 1.85rem);
    line-height: 1.45;
    color: var(--color-secondary);
    text-align: center;
    margin: 0;
    max-width: 920px;
    margin-left: auto; margin-right: auto;
    font-weight: 400;
}
.statement__text strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* ============================ SEÇÕES ===================================== */
.section { padding: 6rem 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark {
    background: var(--color-secondary-dark);
    color: rgba(255,255,255,0.85);
}
.section--dark h2,
.section--dark h3 { color: #fff; }

.section__head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 4rem;
}
.section__head--left {
    text-align: left;
    max-width: 880px;
    margin: 0 0 4rem;
}
.section__head--light h2,
.section__head--light .section__title { color: #fff; }
.section__head--light .section__lead,
.section__lead--light { color: rgba(255,255,255,0.78); }

.eyebrow {
    display: inline-block;
    color: var(--color-primary);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.eyebrow--light { color: var(--color-accent); }

.section__title { margin-bottom: 1.25rem; }
.section__lead {
    font-size: var(--fs-lead);
    color: var(--color-text-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}
.section__head--left .section__lead { margin: 0; }

/* ============================ FRENTES (3 frentes na home, sem números) === */
.frentes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 920px) { .frentes-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

.frente {
    background: #fff;
    padding: 2.75rem 2.25rem;
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-primary);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.frente:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--color-accent);
}
.frente__mark {
    width: 36px; height: 4px;
    background: var(--color-accent);
    margin-bottom: 1.5rem;
    display: none;
}
.frente h3 {
    font-size: 1.45rem;
    margin-bottom: 1.1rem;
    line-height: 1.25;
    color: var(--color-secondary);
}
.frente p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}
.frente--feature {
    background: var(--color-secondary);
    border-top-color: var(--color-accent);
    color: #fff;
}
.frente--feature h3 { color: #fff; }
.frente--feature p { color: rgba(255,255,255,0.82); }
.frente--feature:hover { border-top-color: var(--color-accent); }

/* ============================ SCOPE (Capacidade de atendimento) ========== */
.scope__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 920px) { .scope__inner { grid-template-columns: 1fr; gap: 2rem; } }

.scope__copy h2 { line-height: 1.1; }
.scope__list {
    list-style: none; padding: 0; margin: 0;
}
.scope__list li {
    display: flex; flex-direction: column;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}
.scope__list li:last-child { border-bottom: 0; }
.scope__list li span {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: .25rem;
    letter-spacing: -0.015em;
}
.scope__list li em {
    font-style: normal;
    color: var(--color-text-muted);
    font-size: .92rem;
    letter-spacing: 0.02em;
}

/* ============================ UNITS ====================================== */
.units-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 920px) { .units-grid { grid-template-columns: 1fr; } }

.unit {
    padding: 2.5rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.18);
    transition: var(--transition);
}
.unit__role {
    display: inline-block;
    color: var(--color-accent);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.unit__city {
    color: #fff;
    font-size: clamp(2rem, 2.5vw + 1rem, 2.8rem);
    margin: 0 0 1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}
.unit__city em {
    font-style: normal;
    color: var(--color-accent);
    font-size: .55em;
    margin-left: .5rem;
    font-weight: 600;
}
.unit p {
    color: rgba(255,255,255,0.72);
    margin: 0;
    font-size: .98rem;
    line-height: 1.6;
}

/* ============================ ASSETS (cadeias) =========================== */
.assets-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}
.asset {
    padding: 2rem 1.75rem;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    color: var(--color-secondary);
    transition: var(--transition);
    display: flex; flex-direction: column;
    background: #fff;
}
.asset:hover {
    background: var(--color-bg-alt);
    color: var(--color-secondary);
}
.asset__sym {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    width: 40px; height: 40px;
    border: 1.5px solid var(--color-primary);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}
.asset__label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: .35rem;
    letter-spacing: -0.015em;
}
.asset__desc {
    color: var(--color-text-muted);
    font-size: .85rem;
    line-height: 1.5;
}

/* ============================ CLOSING ==================================== */
.closing {
    background: var(--color-secondary);
    color: #fff;
    padding: 6.5rem 0;
    position: relative;
    overflow: hidden;
}
.closing::before {
    content: '';
    position: absolute;
    right: -200px; top: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(232,185,49,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.closing__inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.closing__lead {
    color: rgba(255,255,255,0.65);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.closing__title {
    color: #fff;
    font-size: clamp(2.25rem, 4vw + 1rem, 4rem);
    line-height: 1.1;
    margin: 0 0 2.5rem;
    letter-spacing: -0.03em;
    font-weight: 800;
}
.closing__title br { display: block; }
.closing__actions {
    display: inline-flex;
    gap: 1rem; flex-wrap: wrap;
    justify-content: center;
}

/* ============================ PAGE HERO (interno) ======================== */
.page-hero {
    background: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-secondary) 60%, var(--color-secondary-mid) 100%);
    color: #fff;
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.page-hero--corporate {
    background: linear-gradient(135deg, #081830 0%, #0F2746 50%, #1E3A5F 100%);
}
.page-hero::after {
    content: '';
    position: absolute;
    right: -150px; top: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232,185,49,0.10) 0%, transparent 65%);
    pointer-events: none;
}
.page-hero--small { padding: 4rem 0 3.5rem; }
.page-hero__title {
    color: #fff;
    margin-bottom: 1.5rem;
}
.page-hero__accent {
    color: var(--color-accent);
}
.page-hero__lead {
    color: rgba(255,255,255,0.85);
    font-size: var(--fs-lead);
    max-width: 760px;
    margin: 0;
    line-height: 1.6;
}

/* ============================ PROSE ====================================== */
.prose { font-size: 1.05rem; color: var(--color-text); line-height: 1.8; }
.prose p { margin: 0 0 1.4rem; }
.prose strong { color: var(--color-secondary); font-weight: 700; }
.prose--lead { font-size: 1.15rem; line-height: 1.75; }
.prose--light { color: rgba(255,255,255,0.85); }
.prose--light strong { color: #fff; }

/* ============================ FRENTE-SECTION (na página Sobre) =========== */
.frente-section { padding: 5.5rem 0; }
.frente-section__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 920px) {
    .frente-section__inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
.frente-section__lead h2 {
    font-size: clamp(1.8rem, 2.5vw + 1rem, 2.6rem);
    line-height: 1.15;
    margin: 0;
}
.frente-section__body p {
    font-size: 1.08rem;
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.frente-section__body strong { color: var(--color-secondary); }

/* ============================ QUOTE ====================================== */
.quote {
    border-left: 3px solid var(--color-accent);
    padding: 1.5rem 0 1.5rem 2rem;
    margin: 2.5rem 0;
}
.quote p {
    margin: 0;
    font-size: clamp(1.4rem, 1.5vw + 1rem, 1.85rem);
    color: var(--color-secondary);
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.quote--light p { color: var(--color-accent); }

/* ============================ ESSÊNCIA (Missão / Visão / Princípios) ===== */
.essence {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 1rem 0;
}
@media (max-width: 920px) { .essence { grid-template-columns: 1fr; gap: 2rem; } }
.essence__col {
    border-top: 2px solid var(--color-secondary);
    padding-top: 1.5rem;
}
.essence__col p {
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* ============================ FLOW (página Operações) ==================== */
.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    margin-top: 2.5rem;
}
@media (max-width: 920px) { .flow-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .flow-grid { grid-template-columns: 1fr; } }

.flow-item {
    padding: 2.25rem 1.75rem;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: #fff;
    transition: var(--transition);
}
.flow-item:hover { background: var(--color-bg-alt); }
.flow-item__tag {
    display: inline-block;
    color: var(--color-primary);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: .65rem;
    border-bottom: 1.5px solid var(--color-primary);
}
.flow-item p {
    color: var(--color-text);
    margin: 0;
    font-size: .95rem;
    line-height: 1.6;
}

/* ============================ PRODUTOS (tabela) ========================== */
.cat-nav {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: var(--header-h);
    z-index: 50;
}
.cat-nav__inner {
    display: flex;
    gap: .25rem;
    padding: .5rem 1.75rem;
    overflow-x: auto;
    scrollbar-width: none;
}
.cat-nav__inner::-webkit-scrollbar { display: none; }
.cat-nav a {
    flex-shrink: 0;
    padding: .65rem 1.1rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    white-space: nowrap;
    transition: var(--transition);
}
.cat-nav a:hover { color: var(--color-primary); }

.product-section { padding: 4.5rem 0; border-bottom: 1px solid var(--color-border); }
.product-section:last-of-type { border-bottom: 0; }
.product-section__head {
    display: flex; align-items: center; gap: 1.75rem;
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
}
.product-section__badge {
    flex-shrink: 0;
    width: 80px; height: 80px;
    background: var(--color-secondary);
    color: var(--color-accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.product-section__head h2 { margin: 0 0 .35rem; }
.product-section__head p { margin: 0; color: var(--color-text-muted); max-width: 720px; }

.product-table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--color-border);
}
.product-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}
.product-table th,
.product-table td {
    text-align: left;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}
.product-table thead th {
    background: var(--color-bg-alt);
    color: var(--color-secondary);
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
}
.product-table tbody tr:last-child td { border-bottom: 0; }
.product-table tbody tr:hover { background: var(--color-bg-alt); }
.product-table__action { width: 180px; text-align: right; }

/* ============================ CONTATO ==================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.contact-form-wrap > h2 { margin-bottom: .75rem; }
.contact-form-wrap > p { color: var(--color-text-muted); margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
@media (max-width: 600px) { .contact-form__row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: .88rem;
}
.form-field label span { color: #c63838; }
.form-field input,
.form-field select,
.form-field textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: .9rem 1rem;
    border: 1.5px solid var(--color-border);
    background: #fff;
    color: var(--color-text);
    transition: var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 0;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(15,39,70,0.10);
}
.form-field input.is-invalid,
.form-field textarea.is-invalid { border-color: #c63838; }
.form-field--checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: .65rem;
}
.form-field--checkbox input { width: 18px; height: 18px; margin-top: 3px; }
.form-field--checkbox label { font-weight: 400; color: var(--color-text-muted); font-size: .88rem; line-height: 1.5; }
.contact-form__submit { align-self: flex-start; }
.contact-form__submit.is-loading { pointer-events: none; opacity: .7; }
.contact-form__loading {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    display: none;
    animation: spin .7s linear infinite;
    margin-left: .5rem;
}
.contact-form__submit.is-loading .contact-form__loading { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.contact-form__feedback { font-size: .95rem; }
.contact-form__feedback.is-success { color: var(--color-primary); font-weight: 600; }
.contact-form__feedback.is-error   { color: #c63838; font-weight: 600; }

/* sidebar contato */
.contact-info > h2 { margin-bottom: 1.5rem; }
.contact-info__card {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: #fff;
    border: 1px solid var(--color-border);
    margin-bottom: .75rem;
    color: var(--color-secondary);
    transition: var(--transition);
}
.contact-info__card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    color: var(--color-secondary);
}
.contact-info__card span { display: block; color: var(--color-text-muted); font-size: .82rem; margin-bottom: .15rem; }
.contact-info__card strong { font-size: 1.05rem; }
.contact-info__card--whats {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-color: transparent; color: #fff;
}
.contact-info__card--whats:hover { color: #fff; opacity: .95; }
.contact-info__card--whats span { color: rgba(255,255,255,0.85); }
.contact-info__icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--color-bg-alt);
    color: var(--color-secondary);
    display: flex; align-items: center; justify-content: center;
}
.contact-info__card--whats .contact-info__icon {
    background: rgba(255,255,255,0.2); color: #fff;
}
.contact-info__locations { margin-top: 2rem; }
.contact-info__locations h3 { margin-bottom: 1rem; }
.contact-info__locations ul { list-style: none; padding: 0; margin: 0; }
.contact-info__locations li {
    padding: .85rem 0;
    border-bottom: 1px solid var(--color-border);
    display: flex; align-items: center; gap: 1rem;
}
.contact-info__locations li:last-child { border-bottom: 0; }
.contact-info__loc-tag {
    flex-shrink: 0;
    background: var(--color-secondary);
    color: var(--color-accent);
    font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
    padding: .25rem .65rem;
}
.contact-info__social { margin-top: 2rem; }
.contact-info__social h3 { margin-bottom: 1rem; }
.contact-info__social div { display: flex; gap: .75rem; }
.contact-info__social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: var(--color-bg-alt);
    color: var(--color-secondary);
    transition: var(--transition);
}
.contact-info__social a:hover {
    background: var(--color-secondary); color: #fff;
    transform: translateY(-2px);
}

/* ============================ FOOTER ===================================== */
.site-footer {
    background: var(--color-secondary-dark);
    color: rgba(255,255,255,0.72);
    padding: 5rem 0 2rem;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}
@media (max-width: 920px) { .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer__col h3 {
    color: #fff;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: 1.25rem;
}
.site-footer__logo svg { max-width: 220px; height: auto; }
.site-footer__tagline {
    color: rgba(255,255,255,0.7);
    margin: 1.25rem 0 1.5rem;
    font-size: .95rem;
    max-width: 320px;
    line-height: 1.6;
}
.site-footer__social { display: flex; gap: .65rem; }
.site-footer__social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}
.site-footer__social a:hover { background: var(--color-accent); color: var(--color-secondary); }
.site-footer__menu, .site-footer__addresses, .site-footer__contact {
    list-style: none; padding: 0; margin: 0;
}
.site-footer__menu li, .site-footer__addresses li { padding: .35rem 0; }
.site-footer__menu a { color: rgba(255,255,255,0.72); font-size: .95rem; }
.site-footer__menu a:hover { color: var(--color-accent); }
.site-footer__addresses li {
    color: rgba(255,255,255,0.72);
    font-size: .9rem;
    line-height: 1.5;
}
.site-footer__addresses strong { color: #fff; }
.site-footer__contact li {
    padding: .65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer__contact li:last-child { border: 0; }
.site-footer__label {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: .25rem;
}
.site-footer__contact a { color: #fff; font-weight: 600; font-size: .95rem; }
.site-footer__contact a:hover { color: var(--color-accent); }
.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    color: rgba(255,255,255,0.5);
    font-size: .82rem;
}
.site-footer__bottom p { margin: 0; }

/* ============================ WHATSAPP FLOAT ============================= */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(37,211,102,0.45);
    z-index: 99;
    transition: var(--transition);
}
.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
}
.whatsapp-float__pulse {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s ease-out infinite;
    pointer-events: none;
    z-index: -1;
}
@keyframes pulse {
    0%   { transform: scale(1); opacity: .55; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* ============================ PAGE GENÉRICA ============================== */
.page-content { line-height: 1.8; }
.page-content h2, .page-content h3 { margin-top: 2rem; }

/* ============================ ANIMAÇÕES ================================== */
@media (prefers-reduced-motion: no-preference) {
    .hero__content > * { animation: fadeUp .8s ease both; }
    .hero__content > *:nth-child(1) { animation-delay: .1s; }
    .hero__content > *:nth-child(2) { animation-delay: .25s; }
    .hero__content > *:nth-child(3) { animation-delay: .4s; }
    .hero__content > *:nth-child(4) { animation-delay: .55s; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================ HIEROS EM NÚMEROS (página Sobre) =========== */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
@media (max-width: 920px) { .numbers-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .numbers-grid { grid-template-columns: 1fr; } }

.number-card {
    padding: 2.5rem 1.75rem;
    text-align: center;
    border-radius: var(--radius);
    transition: var(--transition);
}
.number-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.number-card__value {
    display: block;
    font-size: clamp(2.5rem, 3vw + 1rem, 3.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: .85rem;
}
.number-card__value em {
    display: block;
    font-style: normal;
    font-size: 1rem;
    font-weight: 600;
    margin-top: .25rem;
    opacity: .85;
    letter-spacing: 0;
}
.number-card__label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    line-height: 1.4;
    opacity: .9;
}
.number-card--green { background: var(--color-primary); color: #fff; }
.number-card--green .number-card__value { color: var(--color-accent); }
.number-card--navy { background: var(--color-secondary); color: #fff; }
.number-card--navy .number-card__value { color: var(--color-accent); }
.number-card--gold { background: var(--color-accent); color: var(--color-secondary); }
.number-card--gold .number-card__value { color: var(--color-secondary); font-size: 2.5rem; }

/* ============================ 4 PILARES INSTITUCIONAIS ==================== */
.pillars-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 720px) { .pillars-grid-2 { grid-template-columns: 1fr; } }
.pillar-inst {
    padding: 1.75rem 0 1.75rem 1.75rem;
    border-left: 3px solid var(--color-accent);
}
.pillar-inst h3 {
    font-size: 1.25rem;
    margin-bottom: .65rem;
    color: var(--color-secondary);
}
.pillar-inst p {
    color: var(--color-text);
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
}

/* ============================ DIFERENCIAIS OPERACIONAIS (home) ========== */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1080px) { .diff-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .diff-grid { grid-template-columns: 1fr; } }

.diff-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-secondary);
    padding: 2.25rem 1.75rem;
    transition: var(--transition);
}
.diff-card:hover {
    border-top-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.diff-card__num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
}
.diff-card__num em {
    display: inline-block;
    font-style: normal;
    font-size: .9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-left: .35rem;
    letter-spacing: 0;
    vertical-align: 4px;
}
.diff-card h3 {
    font-size: 1.15rem;
    margin-bottom: .75rem;
    color: var(--color-secondary);
    line-height: 1.3;
}
.diff-card p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: .94rem;
    line-height: 1.6;
}
.diff-card p strong { color: var(--color-secondary); font-weight: 700; }

/* ============================ MAPA BAR (página Operações) ================ */
.mapa-bar {
    background: var(--color-bg-cream);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
}
.mapa-bar p {
    margin: 0;
    text-align: center;
    color: var(--color-secondary);
    font-size: .88rem;
    letter-spacing: .02em;
}
.mapa-bar strong { color: var(--color-primary); }

/* ============================ TABELA DE PRODUTOS — colunas adicionais === */
.product-table__intl {
    color: var(--color-text-muted);
    font-style: italic;
    font-size: .92rem;
}
.product-table__spec {
    font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
    font-size: .9rem;
    color: var(--color-secondary);
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* ============================ CONEXÃO DIRETA (página Operações) ========== */
.direct-contact__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 920px;
    margin: 0 auto;
}
@media (max-width: 720px) { .direct-contact__cards { grid-template-columns: 1fr; } }

.direct-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.25rem;
    background: #fff;
    border: 1px solid var(--color-border);
    color: var(--color-secondary);
    transition: var(--transition);
    text-align: left;
}
.direct-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}
.direct-card__icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-bg-alt);
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    border-radius: 50%;
}
.direct-card__label {
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: .5rem;
}
.direct-card__value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.015em;
    line-height: 1.2;
    word-break: break-word;
}
.direct-card__hint {
    font-size: .9rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: auto;
}
.direct-card--whats { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); border-color: transparent; color: #fff; }
.direct-card--whats:hover { color: #fff; opacity: .96; }
.direct-card--whats .direct-card__icon { background: rgba(255,255,255,0.2); color: #fff; }
.direct-card--whats .direct-card__label,
.direct-card--whats .direct-card__hint { color: rgba(255,255,255,0.85); }
.direct-card--whats .direct-card__value { color: #fff; }

.direct-contact__note {
    text-align: center;
    margin: 2.5rem auto 0;
    color: var(--color-text-muted);
    font-size: .95rem;
}
.direct-contact__note span { margin-right: .35rem; }
.direct-contact__note a {
    color: var(--color-primary);
    font-weight: 600;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 1px;
}
.direct-contact__note a:hover { color: var(--color-primary-dark); border-color: var(--color-primary-dark); }

/* ============================ OPERATION FLOW (6 frentes integradas) ===== */
.operation { background: var(--color-bg); }
.operation__flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}
@media (max-width: 920px) { .operation__flow { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .operation__flow { grid-template-columns: 1fr; } }

.operation__line { display: none; }

.op-step {
    position: relative;
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: #fff;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
}
.op-step:hover {
    background: var(--color-bg-alt);
    border-right-color: var(--color-accent);
}
.op-step:hover .op-step__num {
    background: var(--color-accent);
    color: var(--color-secondary);
    border-color: var(--color-accent);
}

.op-step__num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 48px; height: 48px;
    border: 1.5px solid var(--color-secondary);
    color: var(--color-secondary);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    border-radius: 50%;
    transition: var(--transition);
}
.op-step__body { flex: 1; min-width: 0; }
.op-step h3 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
    line-height: 1.3;
    color: var(--color-secondary);
}
.op-step p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: .94rem;
    line-height: 1.6;
}

/* ============================ REDE COMERCIAL (home) ====================== */
.network__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4.5rem;
    align-items: center;
}
@media (max-width: 980px) { .network__inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.network__copy h2 { margin-bottom: 1.25rem; line-height: 1.1; }
.network__lead {
    font-size: 1.08rem;
    color: var(--color-text);
    line-height: 1.75;
    margin: 0 0 2rem;
}
.network__lead strong { color: var(--color-secondary); font-weight: 700; }
.network__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.network__points {
    list-style: none; padding: 0; margin: 0;
    border-left: 1px solid var(--color-border);
}
.network__points li {
    padding: 1.25rem 0 1.25rem 1.75rem;
    position: relative;
}
.network__points li + li { border-top: 1px solid var(--color-border); }
.network__points li::before {
    content: '';
    position: absolute;
    left: -3.5px; top: 1.85rem;
    width: 7px; height: 7px;
    background: var(--color-accent);
    border-radius: 50%;
}
.network__points-tag {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: .35rem;
}
.network__points p {
    margin: 0;
    color: var(--color-text);
    font-size: .98rem;
    line-height: 1.55;
}

/* ============================ PÁGINA REPRESENTANTE ======================= */
.profile-list {
    list-style: none; padding: 0; margin: 0;
    max-width: 880px;
}
.profile-list li {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
    align-items: start;
}
.profile-list li:last-child { border-bottom: 0; }
.profile-list__num {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border: 1.5px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}
.profile-list p {
    margin: 0;
    font-size: 1.08rem;
    color: var(--color-text);
    line-height: 1.65;
}
.profile-list strong { color: var(--color-secondary); font-weight: 700; }

.rep-form-wrap {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) { .rep-form-wrap { padding: 2rem 1.5rem; } }
.rep-form__head { margin-bottom: 2.5rem; }
.rep-form__head h2 { margin: 0 0 .85rem; }
.rep-form__head p { color: var(--color-text-muted); margin: 0; }

.legal-note {
    background: #fff;
    border-left: 3px solid var(--color-accent);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-sm);
}
.legal-note h3 {
    font-size: 1.05rem;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--color-secondary);
}
.legal-note p {
    color: var(--color-text);
    font-size: .95rem;
    line-height: 1.65;
    margin: 0 0 .85rem;
}
.legal-note p:last-child { margin: 0; }
.legal-note__en {
    color: var(--color-text-muted);
    font-size: .85rem !important;
    border-top: 1px solid var(--color-border);
    padding-top: .85rem !important;
    margin-top: .85rem !important;
}

/* ============================ RESPONSIVO MOBILE (< 768px) ================ */
@media (max-width: 768px) {
    /* Container — padding mais apertado */
    .container { padding: 0 1.25rem; }

    /* Hero — tipografia controlada */
    .hero { padding: 4.5rem 0 3.5rem; min-height: 520px; }
    .hero__content { max-width: 100%; }
    .hero__eyebrow {
        font-size: .68rem;
        letter-spacing: .15em;
        padding-left: 0;
        margin-bottom: 1.25rem;
    }
    .hero__eyebrow::before { display: none; }
    .hero__title {
        font-size: clamp(1.9rem, 7vw + 1rem, 3rem);
        line-height: 1.1;
        letter-spacing: -0.02em;
        margin-bottom: 1.25rem;
    }
    .hero__subtitle { font-size: 1rem; line-height: 1.55; margin-bottom: 1.75rem; }
    .hero__actions { gap: .65rem; }
    .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
    .hero__signature { bottom: 1rem; font-size: .65rem; letter-spacing: .2em; }
    .hero__signature span::before,
    .hero__signature span::after { width: 18px; }

    /* Topbar — compacto */
    .topbar__inner { padding: .45rem 1rem; gap: .5rem; }
    .topbar__contact { gap: 1rem; }
    .topbar__contact a { font-size: .72rem; }

    /* Header — logo controlado */
    .site-header__inner { padding: .75rem 1.25rem; min-height: 64px; }
    .site-logo img,
    .site-logo svg,
    .site-logo img.custom-logo { max-height: 44px; }
    :root { --header-h: 64px; }

    /* Statement */
    .statement { padding: 2.75rem 0; }
    .statement__text { font-size: 1.15rem; line-height: 1.4; }

    /* Section heads */
    .section { padding: 3.5rem 0; }
    .section__head { margin-bottom: 2.25rem; }
    .section__title { font-size: clamp(1.5rem, 5vw + 1rem, 2.25rem); }
    .section__lead { font-size: 1rem; line-height: 1.55; }

    /* Operation flow (6 cards) */
    .op-step { padding: 1.65rem 1.25rem; gap: .85rem; }
    .op-step__num { width: 38px; height: 38px; font-size: .85rem; }
    .op-step h3 { font-size: 1.02rem; margin-bottom: .35rem; }
    .op-step p { font-size: .88rem; line-height: 1.55; }

    /* 3 Frentes */
    .frentes-grid { gap: 1rem; }
    .frente { padding: 2rem 1.5rem; }
    .frente h3 { font-size: 1.2rem; }
    .frente p { font-size: .95rem; }

    /* Unidades */
    .unit { padding: 1.75rem 0 0; }
    .unit__role { font-size: .68rem; }
    .unit__city { font-size: 1.65rem; margin-bottom: .65rem; }
    .unit p { font-size: .92rem; }

    /* Assets row (cadeias) */
    .asset { padding: 1.5rem 1.25rem; }
    .asset__label { font-size: 1rem; }

    /* Botões */
    .btn { padding: .8rem 1.3rem; font-size: .92rem; }
    .btn--lg { padding: .95rem 1.5rem; font-size: .98rem; }

    /* Closing */
    .closing { padding: 3.5rem 0; }
    .closing__title { font-size: clamp(1.75rem, 6vw + 1rem, 2.5rem); margin-bottom: 1.5rem; }
    .closing__actions { gap: .65rem; }
    .closing__actions .btn { flex: 1 1 auto; justify-content: center; }

    /* Footer */
    .site-footer { padding: 3rem 0 1.5rem; }
    .site-footer__grid { gap: 1.5rem; }
    .site-footer__bottom { padding-top: 1.25rem; font-size: .78rem; }

    /* Página interna */
    .page-hero { padding: 4rem 0 3rem; }
    .page-hero__title { font-size: clamp(1.85rem, 6vw + 1rem, 3rem); }
    .page-hero__lead { font-size: 1rem; line-height: 1.55; }

    /* Sobre — frente sections */
    .frente-section { padding: 3rem 0; }
    .frente-section__inner { grid-template-columns: 1fr; gap: 1rem; }
    .frente-section__lead h2 { font-size: 1.5rem; }
    .frente-section__body p { font-size: .98rem; }

    /* Hieros em números */
    .number-card { padding: 1.75rem 1.25rem; }
    .number-card__value { font-size: 2.5rem; }
    .number-card__label { font-size: .72rem; }

    /* Pilares 4 institucionais */
    .pillar-inst { padding: 1.25rem 0 1.25rem 1.25rem; }
    .pillar-inst h3 { font-size: 1.15rem; }
    .pillar-inst p { font-size: .95rem; }

    /* Tabela de produtos — scroll horizontal */
    .product-table-wrap { -webkit-overflow-scrolling: touch; }
    .product-section__head { gap: 1rem; }
    .product-section__badge { width: 60px; height: 60px; font-size: 1.4rem; }
    .product-section__head h2 { font-size: 1.4rem; }

    /* Cat-nav (produtos) — sticky scroll */
    .cat-nav__inner { padding: .35rem 1rem; }
    .cat-nav a { padding: .55rem .85rem; font-size: .82rem; }

    /* MAPA bar */
    .mapa-bar p { font-size: .78rem; padding: 0 .5rem; }

    /* Contato — direct cards */
    .direct-card { padding: 1.5rem 1.25rem; }
    .direct-card__value { font-size: 1.1rem; }

    /* Formulário contato */
    .contact-form-wrap > h2 { font-size: 1.5rem; }
    .rep-form-wrap { padding: 1.75rem 1.25rem; }

    /* CTA Band */
    .cta-band { padding: 2.75rem 0; }
    .cta-band h2 { font-size: 1.4rem; }
    .cta-band__inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* Mobile pequeno (< 480px) */
@media (max-width: 480px) {
    .hero__title { font-size: 1.8rem; }
    .hero__eyebrow { font-size: .62rem; letter-spacing: .12em; }
    .container { padding: 0 .9rem; }
    .section__title { font-size: 1.4rem; }
    .closing__title { font-size: 1.6rem; }
    .topbar__contact a { font-size: .68rem; }
    .topbar__contact a:nth-child(2) { display: none; } /* esconde e-mail no celular muito pequeno */
}

/* Garantir que imagens nunca causem overflow horizontal */
html, body { overflow-x: hidden; }
img, svg, video { max-width: 100%; }

/* ============================ MOBILE MENU FIX (z-index + visibilidade) === */
@media (max-width: 980px) {
    /* Hamburger mais visível e fácil de tocar */
    .nav-toggle {
        display: flex !important;
        position: relative;
        z-index: 110;
        background: transparent;
        cursor: pointer;
    }
    .nav-toggle__bar {
        background: var(--color-secondary) !important;
        width: 26px;
        height: 2.5px;
    }

    /* Menu painel — z-index acima de tudo, fundo opaco */
    .primary-menu {
        display: flex !important;
        position: fixed !important;
        inset: var(--header-h) 0 0 0;
        flex-direction: column !important;
        align-items: stretch;
        background: #ffffff !important;
        padding: 1.5rem !important;
        z-index: 105 !important;
        transform: translateX(100%) !important;
        transition: transform .3s cubic-bezier(.4,0,.2,1) !important;
        overflow-y: auto;
        gap: 0;
        box-shadow: -8px 0 24px rgba(0,0,0,0.08);
    }
    .site-nav.is-open .primary-menu {
        transform: translateX(0) !important;
    }

    /* Itens do menu — toque amplo e visual claro */
    .primary-menu li {
        list-style: none;
        margin: 0;
    }
    .primary-menu a {
        display: block;
        padding: 1.1rem 0;
        color: var(--color-secondary);
        font-weight: 600;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--color-border);
        border-radius: 0;
    }
    .primary-menu a::after { display: none !important; }
    .primary-menu .current-menu-item > a,
    .primary-menu .current_page_item > a { color: var(--color-primary); }

    /* CTA "Fale Conosco" — esconder na barra (já tem WhatsApp flutuante) */
    .site-header__cta { display: none !important; }
}
