:root {
    color-scheme: light;
    --pc-text: #153a36;
    --pc-muted: #66757d;
    --pc-line: #e5ebe8;
    --pc-white: #fff;
    --pc-soft: #f6f9f7;
    --pc-purple: #6f63e8;
    --pc-shadow: 0 18px 45px rgba(30, 55, 50, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.commercial-page {
    margin: 0;
    overflow-x: hidden;
    color: var(--pc-text);
    background: var(--pc-page-bg, #fafbfa);
    font-family: var(--pc-font, Manrope, Inter, Arial, sans-serif);
    font-size: var(--pc-base-size, 16px);
    font-weight: var(--pc-text-weight, 400);
    line-height: 1.55;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

.commercial-page a { color: inherit; text-decoration: none; }
.commercial-page img { max-width: 100%; height: auto; }
.commercial-container { width: min(1370px, calc(100% - 64px)); margin: 0 auto; }

.preview-admin-bar {
    min-height: 38px;
    padding: 7px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #fff;
    background: #073b36;
    font-size: 12px;
}
.preview-admin-bar a { color: #83ea59; font-weight: 700; }

.commercial-header {
    position: relative;
    z-index: 50;
    border: 0;
    background: rgba(250, 251, 250, .96);
}

.commercial-nav {
    min-height: 118px;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    align-items: center;
    gap: 48px;
}

.commercial-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    color: var(--pc-primary);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.commercial-brand img {
    width: auto;
    max-width: 180px;
    height: 48px;
    object-fit: contain;
}

.commercial-brand.logo-clara { padding: 0; background: transparent; }
.commercial-brand.logo-clara img { filter: brightness(0) saturate(100%) invert(18%) sepia(19%) saturate(1513%) hue-rotate(122deg) brightness(87%) contrast(94%); }

.commercial-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.commercial-menu-links,
.commercial-menu-actions {
    min-height: 62px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 13px 34px rgba(29, 57, 51, .08);
}

.commercial-menu-links { flex: 0 1 610px; }
.commercial-menu-actions { flex: 0 0 auto; padding-left: 22px; }

.commercial-menu-links > a,
.commercial-login-link {
    min-height: 44px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    color: #173c37;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.commercial-menu-links > a:hover,
.commercial-login-link:hover { background: #f2f7f4; }
.commercial-menu-links svg { width: 14px; height: 14px; stroke-width: 2.4; }
.commercial-login-link svg { width: 21px; height: 21px; }

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pc-line);
    border-radius: 50%;
    color: var(--pc-primary);
    background: #fff;
}

.commercial-button {
    min-height: 50px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--pc-accent);
    border-radius: var(--pc-button-radius);
    color: #123a31;
    background: var(--pc-accent);
    box-shadow: 0 11px 24px rgba(99, 222, 76, .24);
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease;
}
.commercial-button:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(99, 222, 76, .3); }
.commercial-button:focus-visible { outline: 3px solid rgba(111, 99, 232, .2); outline-offset: 3px; }
.commercial-button svg { width: 17px; height: 17px; }
.commercial-button-small { min-height: 44px; padding: 0 27px; margin: 0; }
.commercial-button-secundario { color: var(--pc-primary); border-color: var(--pc-secondary); background: var(--pc-secondary); box-shadow: none; }
.commercial-button-outline { color: var(--pc-primary); background: transparent; box-shadow: none; }

.commercial-hero {
    position: relative;
    min-height: 640px;
    padding: 18px 0 34px;
    overflow: hidden;
    background: #fafbfa;
}

.commercial-hero::before,
.commercial-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 210px;
    height: 78px;
    pointer-events: none;
    opacity: .55;
    border: 1px solid #cbd6d1;
    border-radius: 999px;
}
.commercial-hero::before { top: 145px; left: -95px; }
.commercial-hero::after { top: 250px; right: -82px; }

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(1238px, calc(100% - 64px));
    grid-template-columns: minmax(0, 590px) minmax(480px, 540px);
    justify-content: space-between;
    gap: clamp(50px, 7vw, 110px);
    align-items: center;
}

.hero-centered .hero-copy { text-align: center; }
.hero-copy { width: min(var(--hero-copy-width), 100%); padding: 35px 0 0; }

.commercial-eyebrow {
    position: relative;
    width: fit-content;
    margin-bottom: 31px;
    padding: 8px 17px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--pc-purple);
    box-shadow: 0 8px 18px rgba(111, 99, 232, .18);
    font-size: 12px;
    font-weight: 800;
}
.commercial-eyebrow::after {
    content: "";
    position: absolute;
    right: 34px;
    bottom: -6px;
    border: 7px solid transparent;
    border-top-color: var(--pc-purple);
    border-bottom: 0;
}
.commercial-eyebrow svg { display: none; }

.hero-copy h1 {
    margin: 0;
    color: #173d38;
    font-size: clamp(40px, 3vw, 46px);
    line-height: 1.18;
    font-weight: 450;
    letter-spacing: 0;
}

.hero-copy h1 em {
    display: block;
    color: #173d38;
    font-style: normal;
    font-weight: 800;
}

.hero-subtitle { margin: 18px 0 0; color: #314b47; font-size: 18px; font-weight: 600; }
.hero-description { max-width: 570px; margin: 20px 0 0; color: #69777d; font-size: 14px; line-height: 1.8; }

.hero-benefits {
    width: 100%;
    margin-top: 28px;
    padding: 12px 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 11px 12px;
    border: 1px solid #edf1ef;
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 10px 30px rgba(31, 57, 52, .035);
}
.hero-benefits span { display: inline-flex; align-items: center; gap: 5px; color: #64716f; font-size: 9.5px; font-weight: 600; white-space: nowrap; }
.hero-benefits svg { width: 13px; height: 13px; color: #776cf0; stroke-width: 3; }

.hero-action { width: fit-content; margin-top: 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.hero-action-full, .hero-action-full .commercial-button { width: 100%; }
.hero-action small { color: #738197; font-size: 10.5px; }

.hero-contact { max-width: 575px; margin-top: 29px; }
.hero-contact > label { display: block; margin-bottom: 6px; color: #344861; font-size: 11px; font-weight: 700; }
.hero-contact > div { display: grid; grid-template-columns: 275px 1fr; gap: 18px; }
.hero-contact input,
.hero-contact button { height: 56px; border-radius: 999px; font-family: inherit; }
.hero-contact input { min-width: 0; padding: 0 20px; border: 1px solid #eef1ef; color: var(--pc-text); background: #fff; box-shadow: 0 10px 28px rgba(31, 57, 52, .04); outline: none; font-size: 13px; }
.hero-contact input:focus { border-color: var(--pc-purple); box-shadow: 0 0 0 3px rgba(111, 99, 232, .12); }
.hero-contact button { padding: 0 25px; border: 1px solid var(--pc-accent); color: #173d34; background: var(--pc-accent); box-shadow: 0 12px 24px rgba(99, 222, 76, .22); font-size: 14px; font-weight: 800; cursor: pointer; }
.hero-contact > small { display: block; margin-top: 13px; color: #7d9f78; font-size: 11px; text-align: right; transform: translateX(-72px); }

.hero-visual { position: relative; min-width: 0; margin-top: -24px; isolation: isolate; }
.hero-visual picture, .hero-visual > picture img { width: 100%; display: block; border-radius: var(--hero-image-radius); }
.hero-visual > picture img {
    aspect-ratio: 1 / 1.05;
    object-fit: var(--hero-image-fit);
    object-position: var(--hero-image-position);
    border: 0;
    background: #eef3ef;
    box-shadow: none;
}
.hero-image-overlay { position: absolute; inset: 0; z-index: 1; border-radius: var(--hero-image-radius); background: rgba(7, 59, 54, var(--hero-overlay)); pointer-events: none; }

.floating-card {
    position: absolute;
    z-index: 3;
    min-width: 190px;
    max-width: 230px;
    min-height: 88px;
    padding: 15px 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 18px;
    color: #153a36;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 17px 35px rgba(23, 54, 48, .12);
    backdrop-filter: blur(13px);
}
.floating-card > svg { width: 28px; height: 28px; color: #16a56f; }
.floating-card > img { width: 50px; height: 50px; object-fit: cover; border-radius: 12px; }
.floating-card > span { min-width: 0; display: flex; flex-direction: column; }
.floating-card small { color: #183d38; font-size: 11px; font-weight: 800; }
.floating-card strong { margin-top: 7px; color: #60706d; font-size: 9.5px; line-height: 1.45; white-space: normal; }
.floating-card-1 { top: 45%; left: -12px; width: 205px; }
.floating-card-2 { bottom: 7%; left: -58px; width: 215px; }
.floating-card-3 { right: 20px; bottom: -38px; width: 190px; }
.floating-card-2 > svg { color: #6f63e8; }
.floating-card-3 > svg { color: #ff8f3d; }
.floating-style-escuro { color: #fff; background: rgba(7, 59, 54, .9); }
.floating-style-sucesso { background: rgba(255,255,255,.9); }
.floating-style-destaque { background: #fff9ed; }

.commercial-section { padding: 70px 0; background: var(--section-bg, #fff); }
.section-heading { max-width: 720px; margin-bottom: 32px; }
.section-heading > span, .final-cta-inner > span { display: block; margin-bottom: 7px; color: var(--pc-accent); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.section-heading h2, .final-cta h2 { margin: 0; color: var(--pc-primary); font-size: clamp(30px, 4vw, 48px); line-height: 1.12; font-weight: 750; }
.section-heading p, .final-cta p { margin: 12px 0 0; color: var(--pc-muted); font-size: 15px; }

.integrations-section {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding: 42px 0 34px;
    overflow: hidden;
    border: 0;
    background: #fff;
}
.integrations-section .commercial-container { width: min(1030px, calc(100% - 64px)); }
.integrations-section::before,
.integrations-section::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 115px;
    border-radius: 50%;
    background: #fafbfa;
}
.integrations-section::before { top: -72px; left: -70px; }
.integrations-section::after { right: -100px; bottom: -78px; }
.integration-grid, .integration-faixa { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 22px; }
.integration-card {
    min-width: 0;
    min-height: 70px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.integration-card:hover { transform: translateY(-1px); }
.integration-card > img, .integration-mark { width: 43px; height: 43px; flex: 0 0 43px; object-fit: contain; }
.integration-mark { display: inline-flex; align-items: center; justify-content: center; color: #139b70; background: transparent; font-weight: 800; }
.integration-mark svg { width: 27px; height: 27px; }
.integration-mark strong { font-size: 22px; }
.integration-mark strong span { color: #4dbb9a; font-size: 14px; }
.integration-mark-1 strong { color: #ff6e00; font-size: 23px; }
.integration-mark-2 { color: #9d3342; }
.integration-mark-4 { color: #2c93b9; }
.integration-mark-5 { color: #64465b; }
.integration-mark-6 { color: #67bc3a; transform: rotate(-8deg); }
.integration-card > span:not(.integration-mark) { min-width: 0; display: flex; flex-direction: column; }
.integration-card strong { color: #354b50; font-size: 12px; }
.integration-card small { display: none; }
.integration-card em { display: none; }

.resource-grid { display: grid; grid-template-columns: repeat(var(--resource-columns), minmax(0, 1fr)); gap: 14px; }
.resource-card { min-height: 220px; padding: 22px; display: flex; flex-direction: column; align-items: flex-start; border: 1px solid var(--pc-line); border-radius: min(var(--pc-card-radius), 12px); background: #fff; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.resource-card:hover { border-color: #c9d8d2; box-shadow: var(--pc-shadow); transform: translateY(-2px); }
.resource-card > img { width: 100%; height: 92px; margin-bottom: 17px; object-fit: cover; border-radius: 8px; }
.resource-icon { width: 42px; height: 42px; margin-bottom: 24px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; color: #087e61; background: var(--pc-secondary); }
.resource-icon svg { width: 20px; height: 20px; }
.resource-card h3 { margin: 0; color: var(--pc-primary); font-size: 17px; font-weight: 750; }
.resource-card p { margin: 8px 0 0; color: var(--pc-muted); font-size: 13px; line-height: 1.6; }
.resource-card a { margin-top: auto; padding-top: 18px; display: inline-flex; align-items: center; gap: 6px; color: #087e61; font-size: 12px; font-weight: 750; }
.resource-card a svg { width: 14px; height: 14px; }

.social-proof { padding: 34px 0; border-top: 1px solid var(--pc-line); border-bottom: 1px solid var(--pc-line); background: #fff; }
.social-proof p { margin: 0 0 20px; color: var(--pc-muted); font-size: 11px; font-weight: 700; text-align: center; text-transform: uppercase; }
.social-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 26px; }
.social-logos img { width: auto; height: 34px; object-fit: contain; opacity: var(--logo-opacity); filter: grayscale(1); }
.social-wordmark { color: #41504d; font-size: 18px; font-weight: 800; letter-spacing: 1.5px; opacity: var(--logo-opacity); }
.logos-pequeno img { height: 26px; }
.logos-grande img { height: 48px; }

.final-cta { padding: 70px 0; background: var(--pc-primary); }
.final-cta-inner { max-width: 850px; text-align: center; }
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,.72); }
.final-cta .commercial-button { margin-top: 25px; }
.commercial-footer { padding: 28px 0; border-top: 1px solid var(--pc-line); background: #fff; }
.commercial-footer .commercial-container { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-brand img { width: auto; max-width: 150px; height: 38px; object-fit: contain; }
.commercial-footer .commercial-container > div:last-child { display: flex; flex-direction: column; text-align: right; }
.commercial-footer strong { color: var(--pc-primary); font-size: 12px; }
.commercial-footer span { color: var(--pc-muted); font-size: 10px; }

@media (max-width: 1180px) {
    .commercial-nav { grid-template-columns: 170px minmax(0, 1fr); gap: 18px; }
    .commercial-menu { gap: 10px; }
    .commercial-menu-links > a { padding: 0 11px; }
    .hero-grid { grid-template-columns: minmax(0, .95fr) minmax(430px, 1fr); gap: 54px; }
    .hero-copy h1 { font-size: 43px; }
    .hero-benefits { border-radius: 24px; }
}

@media (max-width: 920px) {
    .commercial-container { width: min(100% - 32px, 760px); }
    .commercial-nav { min-height: 78px; display: flex; justify-content: space-between; }
    .mobile-menu-toggle { display: inline-flex; }
    .commercial-menu {
        position: absolute;
        top: calc(100% + 1px);
        right: 16px;
        left: 16px;
        padding: 10px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        border: 1px solid var(--pc-line);
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--pc-shadow);
    }
    .commercial-menu.is-open { display: flex; }
    .commercial-menu-links, .commercial-menu-actions { min-height: 0; padding: 4px; align-items: stretch; flex-direction: column; border: 0; border-radius: 12px; box-shadow: none; }
    .commercial-menu-links > a, .commercial-login-link, .commercial-button-small { width: 100%; justify-content: flex-start; }
    .commercial-button-small { justify-content: center; }
    .hero-grid { grid-template-columns: 1fr; }
    .commercial-hero { padding-top: 14px; }
    .hero-copy { width: 100%; max-width: 640px; }
    .hero-visual { width: min(100%, 610px); margin: 20px auto 0; }
    .integration-grid, .integration-faixa { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
    .commercial-container { width: min(100% - 24px, 520px); }
    .commercial-brand img { max-width: 140px; height: 38px; }
    .commercial-hero { min-height: 0; padding-bottom: 36px; }
    .commercial-hero::before, .commercial-hero::after { display: none; }
    .commercial-eyebrow { margin-bottom: 20px; }
    .hero-copy h1 { font-size: clamp(35px, 11vw, 48px); }
    .hero-description { font-size: 13px; }
    .hero-benefits { width: 100%; display: grid; grid-template-columns: 1fr 1fr; border-radius: 18px; }
    .hero-contact > div { grid-template-columns: 1fr; gap: 9px; }
    .hero-contact > small { text-align: center; transform: none; }
    .hero-visual > picture img { aspect-ratio: 4 / 5; }
    .floating-card { min-width: 0; min-height: 72px; padding: 12px; }
    .floating-card-1 { top: 46%; left: -5px; width: 165px; }
    .floating-card-2 { bottom: 4%; left: -5px; width: 175px; }
    .floating-card-3 { right: -5px; bottom: -25px; width: 160px; }
    .integration-grid, .integration-faixa { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .integration-card { justify-content: flex-start; }
    .resource-grid { grid-template-columns: 1fr; }
    .commercial-section { padding: 52px 0; }
    .commercial-footer .commercial-container { align-items: flex-start; flex-direction: column; }
    .commercial-footer .commercial-container > div:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .commercial-page *, .commercial-page *::before, .commercial-page *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Landing comercial completa */
.commercial-header { position: sticky; top: 0; padding: 14px 0 4px; background: transparent; }
.commercial-nav { min-height: 70px; padding: 0 18px 0 28px; grid-template-columns: 190px minmax(0, 1fr); gap: 20px; border: 1px solid rgba(255,255,255,.92); border-radius: 999px; background: rgba(255,255,255,.96); box-shadow: 0 16px 38px rgba(25,54,48,.08); }
.commercial-brand img { max-width: 155px; height: 42px; }
.commercial-menu-links, .commercial-menu-actions { min-height: 54px; padding: 4px 8px; border: 0; background: transparent; box-shadow: none; }
.commercial-menu-links { flex-basis: 650px; }
.commercial-menu-links > a, .commercial-login-link { min-height: 40px; padding: 0 14px; font-size: 12px; }
.commercial-button-small { min-height: 42px; }
.section-heading-centered { max-width: 850px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading-centered > span { margin-bottom: 12px; }
.section-heading-centered h2 strong { font-weight: 800; }

.performance-section { padding: 84px 0 32px; overflow: hidden; background: #edf3f2; }
.performance-section .section-heading h2 { font-size: clamp(34px, 4vw, 58px); font-weight: 500; }
.performance-visual { position: relative; width: min(1120px, 88vw); margin: 65px auto -45px; padding: 20px; border: 1px solid rgba(255,255,255,.9); border-radius: 34px 34px 0 0; background: #fff; box-shadow: 0 10px 50px rgba(55,101,88,.16); }
.performance-visual > img { width: 100%; display: block; border-radius: 20px 20px 0 0; }
.performance-float { position: absolute; min-width: 205px; padding: 15px 18px; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(215,231,225,.9); border-radius: 16px; background: rgba(255,255,255,.96); box-shadow: 0 15px 35px rgba(30,66,57,.16); }
.performance-float svg { width: 25px; color: #0a9a71; }
.performance-float span { display: flex; flex-direction: column; }
.performance-float small { color: var(--pc-muted); font-size: 10px; }
.performance-float strong { color: var(--pc-primary); font-size: 13px; }
.performance-float-left { top: 28%; left: -65px; }
.performance-float-right { right: -45px; bottom: 22%; }

.automation-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; background: #073b36; }
.automation-photo { min-height: 600px; overflow: hidden; }
.automation-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.automation-copy { padding: clamp(70px, 8vw, 140px); display: flex; align-items: flex-start; justify-content: center; flex-direction: column; color: #fff; }
.automation-copy > span { margin-bottom: 16px; color: #83ea59; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.automation-copy h2 { max-width: 650px; margin: 0; font-size: clamp(39px, 4vw, 62px); line-height: 1.05; font-weight: 450; }
.automation-copy h2 strong { display: block; color: #83ea59; font-weight: 800; }
.automation-copy p { max-width: 650px; margin: 28px 0; color: rgba(255,255,255,.78); font-size: 17px; }

.flow-section { padding: 100px 0; background: #fff; }
.flow-section .section-heading { margin-bottom: 58px; }
.flow-section .section-heading h2 { font-size: clamp(36px, 4.2vw, 60px); font-weight: 450; }
.flow-grid { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(500px, 1.1fr); gap: 70px; align-items: center; }
.flow-tabs { min-width: 0; }
.flow-tab { width: 100%; padding: 18px 0; display: grid; grid-template-columns: 110px 1fr; gap: 15px; border: 0; border-bottom: 1px solid #dbe5e1; color: #78908a; background: transparent; text-align: left; cursor: pointer; }
.flow-tab span { width: fit-content; padding: 5px 10px; border-radius: 999px; background: #f1f4f3; font-size: 11px; font-weight: 800; }
.flow-tab strong { font-size: 18px; font-weight: 500; }
.flow-tab.is-active { color: #073b36; border-bottom-color: #83ea59; }
.flow-tab.is-active span { color: #073b36; background: #83ea59; }
.flow-panel { display: none; padding: 24px 0 4px; }
.flow-panel.is-active { display: block; }
.flow-panel > svg { width: 30px; color: #0b946f; }
.flow-panel p { margin: 12px 0 18px; color: var(--pc-muted); }
.flow-panel a { display: inline-flex; align-items: center; gap: 8px; color: #725fe9; font-size: 14px; font-weight: 700; }
.flow-panel a svg { width: 16px; }
.flow-visual { position: relative; padding: 22px; border-radius: 30px; background: #eef4f2; }
.flow-visual > img { width: 100%; display: block; border-radius: 19px; box-shadow: 0 18px 50px rgba(37,76,66,.14); }
.flow-mini-card { position: absolute; left: -32px; bottom: 36px; min-width: 210px; padding: 16px; display: flex; align-items: center; gap: 11px; border-radius: 15px; background: #fff; box-shadow: 0 18px 38px rgba(37,76,66,.16); }
.flow-mini-card > svg { color: #0a9a71; }
.flow-mini-card span { display: flex; flex-direction: column; }
.flow-mini-card small { color: var(--pc-muted); font-size: 10px; }
.flow-mini-card strong { font-size: 13px; }

.resource-catalog { padding: 100px 0; color: #fff; background: #073b36 !important; }
.resource-catalog .section-heading h2 { color: #fff; font-size: clamp(36px, 4vw, 58px); font-weight: 450; }
.resource-catalog .section-heading p { color: rgba(255,255,255,.68); }
.resource-tabs { margin: 35px auto 42px; display: flex; justify-content: center; gap: 12px; }
.resource-tabs button { padding: 10px 20px; border: 0; border-bottom: 3px solid transparent; color: rgba(255,255,255,.75); background: transparent; font-size: 15px; font-weight: 800; cursor: pointer; }
.resource-tabs button.is-active { color: #83ea59; border-bottom-color: #83ea59; }
.resource-pill-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.resource-pill-grid .resource-card { min-height: 0; padding: 18px 20px; display: grid; grid-template-columns: 38px 1fr; grid-template-rows: auto auto; column-gap: 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; color: #fff; background: rgba(255,255,255,.08); box-shadow: none; }
.resource-pill-grid .resource-card[hidden] { display: none; }
.resource-pill-grid .resource-icon { width: 38px; height: 38px; margin: 0; grid-row: 1 / 3; color: #83ea59; background: transparent; }
.resource-pill-grid h3 { color: #fff; font-size: 15px; }
.resource-pill-grid p { margin-top: 2px; overflow: hidden; color: rgba(255,255,255,.64); font-size: 11px; white-space: nowrap; text-overflow: ellipsis; }

.integrations-section { padding: 90px 0 78px; background: #e9f0ef; }
.integrations-section .commercial-container { width: min(1370px, calc(100% - 64px)); }
.integration-intro { margin-bottom: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.integration-intro .section-heading { margin: 0; }
.integration-intro h2 { font-size: clamp(35px, 4vw, 56px); font-weight: 500; }
.integration-copy { padding-top: 22px; border-top: 1px solid #cddbd6; }
.integration-copy p { margin: 0 0 23px; color: var(--pc-muted); }
.integration-grid, .integration-faixa { padding: 0; display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 12px; }
.integration-card { min-height: 95px; padding: 14px; border-radius: 999px; background: #fff; }

.testimonials-section { padding: 100px 0; overflow: hidden; background: #edf3f2; }
.testimonial-stars { margin-bottom: 20px; color: #f5a900; text-align: center; letter-spacing: 6px; }
.testimonial-track { margin-top: 50px; padding-bottom: 10px; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(330px, 1fr); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card { min-height: 285px; padding: 28px; scroll-snap-align: start; border: 1px solid #e0e9e6; border-radius: 22px; background: #fff; box-shadow: 0 15px 32px rgba(39,73,65,.07); }
.testimonial-card header { display: flex; align-items: center; gap: 14px; }
.testimonial-card header > img, .testimonial-card header > span { width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center; border: 2px solid #83ea59; border-radius: 50%; object-fit: cover; color: #073b36; background: #eef8f3; font-weight: 800; }
.testimonial-card header div { display: flex; flex-direction: column; }
.testimonial-card header small { color: var(--pc-muted); }
.testimonial-card blockquote { margin: 30px 0 0; color: #294943; font-size: 15px; line-height: 1.7; }
.testimonial-card blockquote::before { content: "“"; margin-right: 8px; color: #83ea59; font-size: 44px; font-weight: 800; line-height: 0; vertical-align: -13px; }
.testimonial-controls { margin-top: 20px; display: flex; gap: 8px; }
.testimonial-controls button { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #dbe6e2; border-radius: 50%; color: #073b36; background: #fff; cursor: pointer; }
.testimonial-controls button:last-child { background: #83ea59; }
.testimonial-controls svg { width: 18px; }

.final-cta { position: relative; padding: 94px 0; background: #fff; }
.commercial-anchor { position: absolute; top: -90px; }
.final-cta-inner { max-width: 1370px; min-height: 420px; padding: 65px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; overflow: hidden; border-radius: 30px; color: #fff; background: #073b36; text-align: left; }
.final-cta-copy { max-width: 650px; }
.final-cta h2 { font-size: clamp(38px, 4vw, 58px); font-weight: 450; }
.final-cta-pattern { position: relative; height: 280px; }
.final-cta-pattern i { position: absolute; right: -110px; width: 90%; height: 76px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; }
.final-cta-pattern i:nth-child(1) { top: 10px; }
.final-cta-pattern i:nth-child(2) { top: 105px; border: 0; background: #83ea59; }
.final-cta-pattern i:nth-child(3) { top: 200px; }

.commercial-footer { padding: 64px 0 28px; background: #f5f6f5; }
.commercial-footer .commercial-container { display: block; }
.footer-lead { padding-bottom: 35px; display: flex; align-items: center; gap: 50px; border-bottom: 1px solid #b9dcae; }
.footer-lead p { margin: 0; color: #385a54; }
.footer-columns { padding: 40px 0; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 35px; }
.footer-columns > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-columns strong { margin-bottom: 7px; font-size: 16px; }
.footer-columns a { color: #31534d; font-size: 13px; }
.footer-columns a:hover { color: #078b66; }
.footer-bottom { padding-top: 22px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #d8e3df; }
.footer-bottom a { display: inline-flex; gap: 7px; align-items: center; color: #078b66; font-size: 12px; font-weight: 800; }
.footer-bottom svg { width: 15px; }

@media (max-width: 920px) {
    .commercial-header { padding: 8px 0; }
    .commercial-nav { border-radius: 20px; }
    .automation-section { grid-template-columns: 1fr; }
    .automation-photo { min-height: 460px; }
    .automation-copy { padding: 70px 32px; }
    .flow-grid, .integration-intro { grid-template-columns: 1fr; gap: 38px; }
    .flow-visual { order: -1; }
    .resource-pill-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .final-cta-inner { grid-template-columns: 1fr; padding: 50px 38px; }
    .final-cta-pattern { display: none; }
}

@media (max-width: 600px) {
    .performance-section, .flow-section, .resource-catalog, .integrations-section, .testimonials-section { padding: 64px 0; }
    .performance-visual { width: 100%; margin-top: 35px; padding: 8px; border-radius: 18px; }
    .performance-float { position: static; margin-top: 10px; min-width: 0; }
    .performance-float-right { justify-content: space-between; }
    .automation-photo { min-height: 380px; }
    .flow-tab { grid-template-columns: 85px 1fr; }
    .flow-visual { padding: 10px; }
    .flow-mini-card { left: 8px; bottom: 8px; }
    .resource-tabs { gap: 0; }
    .resource-tabs button { padding: 9px 11px; font-size: 12px; }
    .resource-pill-grid { grid-template-columns: 1fr; }
    .integration-grid, .integration-faixa { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .testimonial-track { grid-auto-columns: 88%; }
    .final-cta { padding: 55px 12px; }
    .final-cta-inner { min-height: 0; padding: 42px 26px; border-radius: 22px; }
    .footer-lead, .footer-bottom { align-items: flex-start; flex-direction: column; }
    .footer-columns { grid-template-columns: 1fr 1fr; }
}
