:root {
    --green: #0b7a43;
    --green-dark: #075630;
    --green-soft: #e8f5ee;
    --ink: #111815;
    --text: #2c3732;
    --muted: #66736d;
    --line: #dfe7e3;
    --soft: #f4f7f5;
    --white: #ffffff;
    --dark: #101613;
    --dark-2: #16201b;
    --shadow: 0 28px 80px rgba(13, 54, 34, .13);
    --shell: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: -60px;
    left: 16px;
    z-index: 3000;
    padding: 10px 14px;
    color: #fff;
    background: var(--ink);
    border-radius: 8px;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 16px;
}

.shell {
    width: min(var(--shell), calc(100% - 40px));
    margin-inline: auto;
}

.kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--green);
    font-size: .874rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

h1,
h2,
p {
    margin-top: 0;
}

h1,
h2 {
    margin-bottom: 24px;
    color: var(--ink);
    line-height: 1.06;
    letter-spacing: -.04em;
}

h1 {
    font-size: clamp(3rem, 6.6vw, 6.2rem);
}

h2 {
    font-size: clamp(2.2rem, 4.4vw, 4.3rem);
}

p {
    color: var(--muted);
    font-size: 1.2075rem;
}

.lead {
    color: var(--text);
    font-size: 1.3rem;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1200;
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled,
.site-header.menu-active {
    background: rgba(255, 255, 255, .96);
    border-color: rgba(11, 122, 67, .1);
    box-shadow: 0 12px 34px rgba(13, 43, 29, .08);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand img {
    width: 280px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav > a:not(.button) {
    color: #2e3934;
    text-decoration: none;
    font-size: 1.058rem;
    font-weight: 750;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible {
    color: var(--green);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.058rem;
    font-weight: 850;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary,
.button-system {
    color: var(--white);
    background: var(--green);
    box-shadow: 0 14px 30px rgba(11, 122, 67, .2);
}

.button-primary:hover,
.button-system:hover {
    background: var(--green-dark);
}

.button-whatsapp {
    color: var(--ink);
    background: var(--white);
    border-color: var(--ink);
}

.button-whatsapp:hover {
    color: var(--white);
    background: var(--ink);
}

.button-full {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 132px 0 72px;
    background: linear-gradient(180deg, #fbfdfc 0%, #ffffff 100%);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 18%, rgba(11, 122, 67, .14), transparent 27%),
        radial-gradient(circle at 8% 84%, rgba(11, 122, 67, .06), transparent 28%);
}

.hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(450px, 1.06fr);
    align-items: center;
    gap: clamp(52px, 8vw, 110px);
}

.hero-text {
    max-width: 700px;
    margin-bottom: 32px;
    font-size: clamp(1.288rem, 2vw, 1.587rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.brand-line {
    margin-top: 28px;
    color: var(--green-dark);
    font-weight: 850;
    letter-spacing: .02em;
}

.hero-visual {
    position: relative;
    padding: 24px 28px 54px 12px;
}

.hero-image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 72px 16px 72px 16px;
    box-shadow: var(--shadow);
    transform: rotate(1.2deg);
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(3, 14, 9, .2));
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-caption {
    position: absolute;
    right: 0;
    bottom: 10px;
    z-index: 2;
    width: min(310px, 72%);
    padding: 18px 22px;
    color: #fff;
    background: rgba(16, 22, 19, .94);
    border-radius: 18px 6px 18px 6px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .2);
}

.hero-caption span,
.robust-card-copy span {
    display: block;
    margin-bottom: 4px;
    color: #83e0ad;
    font-size: .828rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-caption strong,
.robust-card-copy strong {
    font-size: 1rem;
}

.statement {
    padding: 120px 0;
    background: #fff;
}

.statement-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(60px, 9vw, 130px);
    align-items: start;
}

.statement-copy {
    max-width: 700px;
}

.manifesto {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 58px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.manifesto span {
    color: var(--green-dark);
    font-size: clamp(1.3rem, 2.4vw, 2rem);
    font-weight: 900;
    letter-spacing: -.02em;
}

.feature {
    padding: 120px 0;
    overflow: hidden;
}

.feature-light {
    background: var(--soft);
}

.feature-white {
    background: #fff;
}

.feature-dark {
    color: #eef7f2;
    background:
        radial-gradient(circle at 8% 20%, rgba(56, 218, 133, .11), transparent 30%),
        linear-gradient(145deg, var(--dark) 0%, var(--dark-2) 100%);
}

.feature-dark h2 {
    color: #fff;
}

.feature-dark p {
    color: #c4d2cb;
}

.feature-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
    align-items: center;
    gap: clamp(56px, 8vw, 120px);
}

.feature-layout-reverse {
    grid-template-columns: minmax(480px, 1.1fr) minmax(0, .9fr);
}

.feature-copy {
    position: relative;
    z-index: 2;
}

.feature-emphasis {
    margin-top: 30px;
    padding-left: 18px;
    color: var(--ink);
    border-left: 4px solid var(--green);
    font-size: 1.15rem;
    font-weight: 850;
}

.feature-dark .feature-emphasis {
    color: #fff;
    border-color: #63dfa1;
}

.editorial-image {
    position: relative;
    min-height: 540px;
}

.editorial-image img {
    position: absolute;
    inset: 34px 0 0 34px;
    z-index: 2;
    width: calc(100% - 34px);
    height: calc(100% - 34px);
    object-fit: cover;
    border-radius: 16px 56px 16px 56px;
    box-shadow: var(--shadow);
}

.editorial-left img {
    inset: 34px 34px 0 0;
    width: calc(100% - 34px);
}

.image-plate {
    position: absolute;
    inset: 0 34px 34px 0;
    border-radius: 56px 16px 56px 16px;
}

.editorial-left .image-plate {
    inset: 0 0 34px 34px;
}

.image-plate-soft {
    background: linear-gradient(145deg, #dbeae2, #edf5f1);
}

.image-plate-dark {
    background: linear-gradient(145deg, rgba(62, 224, 144, .18), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .08);
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.pill-row span {
    padding: 9px 14px;
    color: var(--green-dark);
    background: var(--green-soft);
    border: 1px solid #c8ead8;
    border-radius: 999px;
    font-size: 1.012rem;
    font-weight: 850;
}

.robust-card {
    position: relative;
    min-height: 610px;
    justify-self: end;
    width: min(100%, 570px);
    overflow: hidden;
    border-radius: 70px 16px 70px 16px;
    box-shadow: var(--shadow);
}

.robust-card img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
}

.robust-card-copy {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 18px 20px;
    color: #fff;
    background: rgba(14, 21, 17, .92);
    border-radius: 18px 6px 18px 6px;
}

.experience {
    padding: 120px 0;
    background: var(--green-soft);
}

.experience-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: clamp(60px, 9vw, 130px);
    align-items: center;
}

.experience-mark {
    display: grid;
    gap: 8px;
    padding: 34px;
    border-left: 6px solid var(--green);
}

.experience-number {
    color: var(--green-dark);
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 950;
    line-height: .9;
    letter-spacing: -.06em;
}

.experience-label {
    max-width: 320px;
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 800;
}

.text-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 850;
}

.text-link::after {
    content: " →";
}

.text-link:hover {
    text-decoration: underline;
}

.closing {
    padding: 128px 0;
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(11, 122, 67, .12), transparent 40%),
        #fff;
}

.closing-inner {
    max-width: 850px;
}

.closing-lead {
    color: var(--green-dark);
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 900;
}

.closing-brand {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
    color: var(--green-dark);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.contact {
    padding: 120px 0;
    color: #fff;
    background: var(--ink);
}

.contact h2 {
    color: #fff;
}

.contact p,
.contact-list span {
    color: #b9c7c0;
}

.contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(55px, 8vw, 115px);
    align-items: start;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 34px;
    font-style: normal;
}

.contact-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 750;
}

.contact-list a:hover {
    color: #6fe1a5;
}

.contact-card {
    padding: clamp(28px, 4vw, 46px);
    color: var(--text);
    background: #fff;
    border-radius: 30px 10px 30px 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.form-row {
    margin-bottom: 18px;
}

.form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-row label {
    display: block;
    margin-bottom: 7px;
    color: #3f4b45;
    font-size: .897rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 13px 14px;
    color: var(--ink);
    background: #fbfdfc;
    border: 1px solid #ccd7d1;
    border-radius: 12px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(11, 122, 67, .11);
}

.form-row textarea {
    resize: vertical;
}

.form-note {
    margin: 12px 0 0;
    text-align: center;
    font-size: .92rem;
}

.form-alert {
    margin-bottom: 20px;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 750;
}

.form-alert.success {
    color: #155d3c;
    background: #e0f6e9;
    border: 1px solid #9ad8b6;
}

.form-alert.error {
    color: #8b1d25;
    background: #fde8e9;
    border: 1px solid #f3a7ac;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    color: #fff;
    background: #149c58;
    border: 2px solid #0c1510;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
    text-decoration: none;
    font-size: .966rem;
    font-weight: 900;
}

.site-footer {
    padding: 68px 0 22px;
    color: #dbe6e1;
    background: #090d0b;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: start;
}

.footer-brand img {
    width: 250px;
    height: auto;
    filter: brightness(1.12);
}

.footer-brand p {
    color: #8fa099;
}

.footer-links,
.footer-actions {
    display: grid;
    gap: 12px;
}

.footer-links a {
    color: #dbe6e1;
    text-decoration: none;
}

.footer-links a:hover {
    color: #6fe1a5;
}

.footer-actions {
    justify-items: end;
}

.footer-upsecure {
    color: #93a59d;
    text-align: right;
    text-decoration: none;
    font-size: .966rem;
}

.footer-upsecure:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 22px;
    color: #7e8e87;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .92rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1000px) {
    .menu-toggle {
        position: relative;
        z-index: 1202;
        display: block;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 1201;
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 22px;
        padding: 100px 32px 40px;
        background: rgba(255, 255, 255, .985);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > a:not(.button) {
        font-size: 1.2rem;
    }

    .hero-layout,
    .statement-grid,
    .feature-layout,
    .feature-layout-reverse,
    .experience-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 126px;
    }

    .hero-layout {
        gap: 50px;
    }

    .hero-visual {
        padding-inline: 0;
    }

    .hero-image-wrap {
        width: min(100%, 760px);
        margin-inline: auto;
        aspect-ratio: 16 / 10;
        transform: none;
    }

    .hero-caption {
        right: 5%;
    }

    .statement-copy {
        max-width: none;
    }

    .feature-layout-reverse .editorial-image {
        order: 2;
    }

    .editorial-image {
        min-height: 500px;
    }

    .robust-card {
        justify-self: stretch;
        width: 100%;
        min-height: 520px;
    }

    .robust-card img {
        min-height: 520px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-actions {
        grid-column: 1 / -1;
        justify-items: start;
    }

    .footer-upsecure {
        text-align: left;
    }
}

@media (max-width: 660px) {
    .shell {
        width: min(100% - 28px, var(--shell));
    }

    .header-inner {
        min-height: 72px;
    }

    .brand img {
        width: 165px;
    }

    .hero,
    .statement,
    .feature,
    .experience,
    .closing,
    .contact {
        padding-block: 78px;
    }

    .hero {
        padding-top: 104px;
    }

    h1 {
        font-size: clamp(2.55rem, 14vw, 4.2rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-image-wrap {
        aspect-ratio: 4 / 5;
        border-radius: 30px 8px 30px 8px;
    }

    .hero-caption {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 24px);
        margin: -28px auto 0;
    }

    .manifesto {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .editorial-image {
        min-height: 360px;
    }

    .editorial-image img,
    .editorial-left img {
        inset: 20px 0 0 20px;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        border-radius: 24px 8px 24px 8px;
    }

    .editorial-left img {
        inset: 20px 20px 0 0;
    }

    .image-plate {
        inset: 0 20px 20px 0;
        border-radius: 24px 8px 24px 8px;
    }

    .editorial-left .image-plate {
        inset: 0 0 20px 20px;
    }

    .robust-card,
    .robust-card img {
        min-height: 430px;
    }

    .robust-card {
        border-radius: 30px 8px 30px 8px;
    }

    .experience-mark {
        padding: 24px;
    }

    .form-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .closing-brand {
        flex-direction: column;
        gap: 2px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-actions {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding-inline: 15px;
    }
}


/* Ajustes v2.1 */
.experience-number-since {
    font-size: clamp(3rem, 5.8vw, 5.8rem);
    line-height: .95;
    letter-spacing: -.045em;
}


html,
body {
    max-width: 100%;
    overflow-x: clip;
}

.hero-copy,
.hero-layout,
.statement-grid,
.feature-layout,
.experience-layout,
.contact-layout {
    min-width: 0;
}

@media (max-width: 660px) {
    .brand img {
        width: 195px;
    }

    .hero {
        padding-top: 116px;
        overflow: visible;
    }

    .hero-copy {
        width: 100%;
        min-width: 0;
    }

    .hero h1 {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
        hyphens: none;
        font-size: clamp(2.28rem, 11.4vw, 3.85rem);
        line-height: 1.04;
        letter-spacing: -.045em;
    }

    .hero-text {
        max-width: 100%;
        font-size: 1.08rem;
        line-height: 1.62;
    }

    .kicker {
        max-width: 100%;
        font-size: .82rem;
        line-height: 1.4;
        white-space: normal;
    }

    .hero-layout {
        width: 100%;
        gap: 42px;
    }

    .hero-visual {
        width: 100%;
        min-width: 0;
    }

    .hero-image-wrap {
        width: 100%;
    }

    .main-nav {
        overflow-y: auto;
    }

    .main-nav > a:not(.button) {
        font-size: 1.38rem;
    }

    .button {
        font-size: 1rem;
    }

    .footer-brand img {
        width: 205px;
    }
}


/* =========================================================
   AJUSTES DA VERSÃO 3
   ========================================================= */

/* Evita que qualquer elemento force largura maior que a tela. */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    min-width: 0;
}

/* A logo maior exige mais altura no cabeçalho desktop. */
.header-inner {
    min-height: 104px;
}

/* Tablets e telas intermediárias. */
@media (max-width: 1000px) {
    .brand img {
        width: 270px;
        max-width: calc(100vw - 110px);
    }

    .header-inner {
        min-height: 94px;
    }
}

/* Correção estrutural do recorte lateral em celulares. */
@media (max-width: 660px) {
    .shell {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
        padding-left: 22px;
        padding-right: 22px;
    }

    .header-inner {
        min-height: 88px;
        gap: 12px;
    }

    .brand {
        display: block;
        max-width: calc(100% - 58px);
        flex: 1 1 auto;
    }

    .brand img {
        width: 235px;
        max-width: 100%;
        height: auto;
    }

    .menu-toggle {
        flex: 0 0 44px;
        margin-left: auto;
    }

    .hero {
        width: 100%;
        padding-top: 124px;
        overflow: hidden;
    }

    .hero-layout,
    .hero-copy,
    .hero-visual,
    .statement-grid,
    .feature-layout,
    .experience-layout,
    .contact-layout {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
    }

    .hero-copy {
        padding-left: 0;
        padding-right: 0;
    }

    .hero h1 {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        overflow-wrap: normal;
        word-break: normal;
        font-size: clamp(2.18rem, 10.6vw, 3.55rem);
        line-height: 1.04;
        letter-spacing: -.042em;
    }

    .hero-text,
    .brand-line,
    .kicker {
        width: 100%;
        max-width: 100%;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .button {
        width: 100%;
        max-width: 100%;
    }

    .hero-visual {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-image-wrap {
        width: 100%;
        max-width: 100%;
    }

    .footer-brand img {
        width: 235px;
        max-width: 100%;
    }
}

/* Telefones estreitos. */
@media (max-width: 390px) {
    .shell {
        padding-left: 20px;
        padding-right: 20px;
    }

    .brand img {
        width: 220px;
    }

    .hero h1 {
        font-size: clamp(2.02rem, 10.2vw, 3.15rem);
    }
}


/* =========================================================
   AJUSTES DA VERSÃO 3.1
   ========================================================= */

.header-inner {
    min-height: 96px;
}

.hero {
    padding-top: 150px;
}

/* Painel textual da seção Robustez: evita repetir imagem. */
.robust-panel {
    display: grid;
    gap: 18px;
    padding: clamp(28px, 4vw, 46px);
    background:
        linear-gradient(145deg, rgba(11, 122, 67, .08), rgba(11, 122, 67, .02)),
        #ffffff;
    border: 1px solid #dce8e1;
    border-radius: 44px 12px 44px 12px;
    box-shadow: var(--shadow);
}

.robust-panel-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 18px;
    align-items: start;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.robust-panel-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.robust-panel-number {
    grid-row: 1 / 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #ffffff;
    background: var(--green);
    border-radius: 16px 5px 16px 5px;
    font-size: .92rem;
    font-weight: 900;
}

.robust-panel-item strong {
    color: var(--ink);
    font-size: 1.22rem;
}

.robust-panel-item p {
    margin: 4px 0 0;
}

@media (max-width: 1000px) {
    .brand img {
        width: 245px;
    }

    .header-inner {
        min-height: 90px;
    }

    .hero {
        padding-top: 136px;
    }
}

@media (max-width: 660px) {
    .brand img {
        width: 210px;
    }

    .header-inner {
        min-height: 82px;
    }

    .hero {
        padding-top: 112px;
    }

    .robust-panel {
        padding: 24px 20px;
        border-radius: 28px 8px 28px 8px;
    }

    .robust-panel-item {
        grid-template-columns: 48px 1fr;
        column-gap: 14px;
    }

    .robust-panel-number {
        width: 44px;
        height: 44px;
    }
}


/* =========================================================
   AJUSTES DA VERSÃO 4
   ========================================================= */

/* Logo mobile maior e alinhada sem competir com o botão do menu. */
@media (max-width: 660px) {
    .header-inner {
        min-height: 94px;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .brand {
        flex: 1 1 auto;
        max-width: calc(100% - 58px);
    }

    .brand img {
        width: 238px;
        max-width: 100%;
    }

    .menu-toggle {
        position: relative;
        z-index: 1302;
        flex: 0 0 44px;
    }

    /* O menu passa a abrir abaixo do cabeçalho, sem esconder itens. */
    .main-nav {
        position: fixed;
        top: 94px;
        right: 0;
        bottom: auto;
        left: 0;
        z-index: 1301;
        max-height: calc(100dvh - 94px);
        overflow-y: auto;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 18px 22px 26px;
        background: rgba(255, 255, 255, .99);
        border-top: 1px solid rgba(11, 122, 67, .10);
        border-bottom: 1px solid rgba(11, 122, 67, .12);
        box-shadow: 0 20px 36px rgba(13, 43, 29, .14);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > a:not(.button) {
        width: 100%;
        padding: 15px 4px;
        border-bottom: 1px solid #e5ece8;
        font-size: 1.18rem;
        line-height: 1.25;
    }

    .main-nav .button-system {
        width: 100%;
        margin-top: 18px;
    }

    .hero {
        padding-top: 126px;
    }
}

@media (max-width: 390px) {
    .brand img {
        width: 220px;
    }

    .main-nav {
        padding-right: 20px;
        padding-left: 20px;
    }
}


/* =========================================================
   UPSRONDA WEBSITE 1.0 — REFINAMENTO COMERCIAL
   ========================================================= */

/* Marca mais presente, sem aumentar a altura do cabeçalho. */
.header-inner {
    min-height: 92px;
}

.brand img {
    width: 282px;
    filter: saturate(1.08) drop-shadow(0 5px 12px rgba(11, 122, 67, .10));
}

/* CTA do cabeçalho menor e mais discreto. */
.main-nav .button-system {
    min-height: 42px;
    padding: 0 18px;
    box-shadow: 0 7px 16px rgba(11, 122, 67, .13);
    font-size: .95rem;
}

/* Menu com peso e hover refinados. */
.main-nav > a:not(.button) {
    position: relative;
    font-weight: 650;
}

.main-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
    transform: scaleX(1);
}

/* Hero mais respirado e alinhado. */
.hero {
    padding-top: 144px;
}

.hero-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
}

.hero-copy .kicker {
    margin-bottom: 24px;
}

.hero-copy h1 {
    max-width: 600px;
    font-size: clamp(2.55rem, 5.6vw, 5.25rem);
    line-height: 1.03;
    letter-spacing: -.04em;
}

.hero-visual {
    transform: translateY(-18px);
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 22px;
}

.hero-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 7px 13px;
    color: var(--green-dark);
    background: var(--green-soft);
    border: 1px solid #cce9da;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 850;
}

.hero-benefits span::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(11, 122, 67, .10);
}

.productivity-line {
    display: grid;
    gap: 0;
    margin: 0 0 28px;
    color: var(--ink);
    line-height: 1.08;
}

.productivity-line strong,
.productivity-line span {
    font-size: clamp(1.3rem, 2.1vw, 1.75rem);
    font-weight: 900;
    letter-spacing: -.025em;
}

.productivity-line span {
    color: var(--green-dark);
}

/* Rodapé institucional em três colunas. */
.site-footer {
    padding-top: 0;
}

.footer-main {
    grid-template-columns: 1fr .65fr 1.15fr;
    padding-top: 48px;
}

.footer-brand img {
    width: 255px;
    opacity: .98;
    filter: brightness(1.22) saturate(1.12) drop-shadow(0 6px 16px rgba(57, 218, 135, .08));
}

.footer-brand p {
    margin-bottom: 4px;
    color: #ffffff;
    font-weight: 800;
}

.footer-brand span {
    color: #8fa099;
    font-size: .92rem;
}

.footer-links strong,
.footer-about > strong {
    color: #ffffff;
    font-size: 1rem;
}

.footer-links {
    gap: 10px;
}

.footer-about {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 12px;
}

.footer-about p {
    max-width: 430px;
    margin: 0;
    color: #9dada6;
    font-size: .96rem;
}

.footer-demo {
    min-height: 43px;
    margin-top: 6px;
    padding: 0 18px;
    color: #ffffff;
    background: var(--green);
    box-shadow: none;
}

.footer-demo:hover {
    background: var(--green-dark);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.footer-legal a {
    color: #9aaba3;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Mobile final. */
@media (max-width: 1000px) {
    .brand img {
        width: 250px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        transform: none;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 660px) {
    .header-inner {
        min-height: 94px;
    }

    .brand img {
        width: 238px;
        max-width: calc(100vw - 88px);
    }

    .hero {
        padding-top: 126px;
    }

    .hero-copy .kicker {
        margin-bottom: 20px;
    }

    .hero-benefits {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 24px;
    }

    .hero-benefits span {
        width: 100%;
        justify-content: flex-start;
    }

    .productivity-line {
        margin-bottom: 24px;
    }

    .main-nav > a:not(.button)::after {
        display: none;
    }

    .main-nav .button-system {
        min-height: 48px;
        width: 100%;
        font-size: 1rem;
    }
.footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-brand img {
        width: 235px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
    }
}


.legal-page {
    min-height: 100vh;
    padding: 80px 0;
    background: var(--soft);
}

.legal-inner {
    max-width: 850px;
    padding: 42px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.legal-inner h1 {
    margin-top: 26px;
    font-size: clamp(2.2rem, 5vw, 4rem);
}
