/* ==========================================================================
   FONTES OFICIAIS PLANCUS CARE
   ========================================================================== */

@font-face {
    font-family: "Elms Sans";
    src: url("../fonts/ElmsSans-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Elms Sans";
    src: url("../fonts/ElmsSans-Italic-VariableFont_wght.ttf") format("truetype");
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Poiret One";
    src: url("../fonts/PoiretOne-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

/* ==========================================================================
   IDENTIDADE
   ========================================================================== */

:root {
    --primary: #284241;
    --primary-2: #2f7571;
    --accent: #8f93ff;
    --surface: #fbfffe;
    --highlight: #d0ff71;

    --text: #284241;
    --muted: rgba(40,66,65,.72);
    --line: rgba(47,117,113,.18);
    --soft: rgba(47,117,113,.055);
    --white: #fbfffe;

    --shadow: 0 16px 40px rgba(40,66,65,.12);
    --shadow-soft: 0 10px 28px rgba(40,66,65,.08);
    --radius: 22px;

    --font-primary: "Elms Sans", Arial, sans-serif;
    --font-brand: "Poiret One", "Elms Sans", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.55;
    background: var(--surface);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 48px 0;
}

.section-kicker {
    display: block;
    color: var(--primary-2);
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 12px;
    font-weight: 700;
}

.section-kicker-center {
    text-align: center;
    margin-bottom: 8px;
}

.section-title {
    margin: 0 0 30px;
    font-family: var(--font-brand);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    letter-spacing: -.01em;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251,255,254,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(47,117,113,.12);
}

.header-inner {
    height: 86px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header .brand {
    width: 190px;
    height: 86px;
    flex: 0 0 190px;
}

.logo-header {
    width: 180px;
    max-width: 180px;
    max-height: 64px;
    height: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
    font-size: 14px;
    font-weight: 580;
}

.main-nav a {
    padding: 30px 0 24px;
    border-bottom: 2px solid transparent;
    color: var(--text);
}

.main-nav a:hover {
    color: var(--primary-2);
}

.main-nav a.active {
    border-color: var(--primary-2);
}

.header-cta {
    margin-left: 12px;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: var(--primary);
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 48px;
    padding: 14px 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 620;
    transition: .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fbfffe;
    background: linear-gradient(135deg, #284241 0%, #2f7571 100%);
    box-shadow: 0 10px 24px rgba(40,66,65,.18);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2f7571 0%, #284241 100%);
}

.btn-outline {
    color: var(--text);
    border-color: rgba(47,117,113,.34);
    background: #fbfffe;
}

.btn-outline:hover {
    color: var(--primary-2);
    border-color: var(--primary-2);
    background: rgba(47,117,113,.045);
}

.btn-light {
    color: var(--primary);
    background: #fbfffe;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    padding: 20px 0 30px;
    background: linear-gradient(180deg, #fbfffe 0%, rgba(143,147,255,.035) 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 22px;
    color: var(--primary-2);
    font-size: 12px;
    font-weight: 500;
}

.breadcrumb span {
    color: rgba(40,66,65,.42);
}

.breadcrumb strong {
    font-weight: 650;
}

.hero-grid {
    display: grid;
    grid-template-columns: 38% 62%;
    align-items: center;
    min-height: 410px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 12px 18px 20px 14px;
}

.eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-2);
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 12px;
    font-weight: 700;
}

.hero h1 {
    margin: 0;
    font-family: var(--font-brand);
    color: var(--text);
    font-size: 64px;
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.015em;
}

.hero h1 em {
    color: var(--primary-2);
    font-style: normal;
}

.title-line {
    width: 34px;
    height: 3px;
    margin: 16px 0;
    background: var(--accent);
}

.hero h2 {
    max-width: 440px;
    margin: 0 0 16px;
    color: var(--primary-2);
    font-size: 20px;
    font-weight: 620;
    line-height: 1.45;
    letter-spacing: -.018em;
}

.hero p {
    max-width: 455px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-visual {
    position: relative;
    height: 410px;
    overflow: hidden;
    border-radius: 0 0 0 90px;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251,255,254,.78) 0%, rgba(251,255,254,.20) 20%, transparent 40%);
    pointer-events: none;
}

/* ==========================================================================
   BENEFÍCIOS
   ========================================================================== */

.benefit-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 16px;
    padding: 24px 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(251,255,254,.92);
    box-shadow: var(--shadow-soft);
}

.benefit-strip article {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 56px;
    padding: 0 18px;
}

.benefit-strip article:not(:last-child) {
    border-right: 1px solid var(--line);
}

.benefit-strip strong {
    font-size: 12px;
    line-height: 1.45;
}

.line-icon {
    color: var(--primary-2);
    font-size: 34px;
    line-height: 1;
}

/* ==========================================================================
   CAPACIDADES
   ========================================================================== */

.capability-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.capability-grid article {
    position: relative;
    padding: 0 20px;
    text-align: center;
}

.capability-grid article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 0;
    bottom: 0;
    width: 1px;
    background: var(--line);
}

.round-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    color: var(--primary-2);
    border: 1px solid var(--line);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(47,117,113,.04), #fbfffe);
    font-size: 36px;
}

.capability-grid h3 {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
}

.capability-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

/* ==========================================================================
   PARA QUEM É
   ========================================================================== */

.audience {
    padding-top: 14px;
}

.audience-panel {
    display: grid;
    grid-template-columns: 35% 42% 23%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fbfffe;
    box-shadow: var(--shadow-soft);
}

.audience-photo {
    min-height: 330px;
}

.audience-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audience-copy {
    padding: 34px 38px;
}

.audience-copy h2 {
    margin: 8px 0 14px;
    font-family: var(--font-brand);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.12;
}

.audience-copy > p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 13px;
}

.check-list {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    font-size: 12px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    color: var(--primary-2);
    border: 1px solid var(--primary-2);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
}

.audience-aside {
    margin: 22px;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(47,117,113,.05), rgba(143,147,255,.035));
}

.audience-aside > strong {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
}

.audience-aside ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.audience-aside li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
}

.audience-aside li span {
    width: 23px;
    color: var(--accent);
    font-size: 21px;
    text-align: center;
}

/* ==========================================================================
   COMO FUNCIONA
   ========================================================================== */

.how {
    padding-top: 26px;
}

.how-panel {
    padding: 34px 26px 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fbfffe;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.steps-grid article {
    position: relative;
    padding: 0 18px;
    text-align: center;
}

.steps-grid article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 17px;
    left: calc(50% + 32px);
    width: calc(100% - 64px);
    border-top: 2px dotted rgba(47,117,113,.70);
}

.step-number {
    position: relative;
    z-index: 2;
    width: 30px;
    height: 30px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    color: #fbfffe;
    border-radius: 50%;
    background: var(--primary-2);
    font-size: 13px;
    font-weight: 800;
}

.step-icon {
    color: var(--primary-2);
    font-size: 37px;
    line-height: 1;
}

.steps-grid h3 {
    margin: 11px 0 7px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 650;
}

.steps-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta-band {
    padding: 0 0 4px;
}

.cta-inner {
    min-height: 176px;
    display: grid;
    grid-template-columns: 43% 25% 32%;
    align-items: center;
    overflow: hidden;
    color: #fbfffe;
    border-radius: 18px;
    background:
        radial-gradient(circle at 67% 0%, rgba(143,147,255,.26), transparent 34%),
        linear-gradient(135deg, #284241 0%, #2f7571 100%);
}

.cta-copy {
    padding: 28px 0 28px 38px;
}

.cta-copy h2 {
    margin: 0 0 10px;
    color: #fbfffe;
    font-family: var(--font-brand);
    font-size: 31px;
    font-weight: 400;
    line-height: 1.15;
}

.cta-copy p {
    max-width: 360px;
    margin: 0;
    color: rgba(251,255,254,.78);
    font-size: 12px;
}

.cta-phone {
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.cta-phone img {
    max-height: 180px;
    object-fit: contain;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding-right: 28px;
}

.text-link {
    color: #fbfffe;
    font-size: 13px;
    font-weight: 650;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    color: #fbfffe;
    padding: 34px 0 16px;
    background:
        radial-gradient(circle at 85% 0%, rgba(143,147,255,.12), transparent 30%),
        linear-gradient(135deg, #284241 0%, #1f3635 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(5, 1fr);
    gap: 28px;
}

.brand-footer {
    width: fit-content;
    padding: 7px 10px;
    border: 1px solid rgba(143,147,255,.16);
    border-radius: 10px;
    background: #fbfffe;
}

.logo-footer {
    display: block;
    width: 160px;
    max-width: 160px;
    height: auto;
    object-fit: contain;
}

.footer-brand p {
    max-width: 225px;
    color: rgba(251,255,254,.72);
    font-size: 11px;
    line-height: 1.7;
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.socials a {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(251,255,254,.20);
    border-radius: 5px;
    font-size: 12px;
}

.site-footer h3 {
    margin: 0 0 12px;
    color: #d0ff71;
    font-size: 13px;
    font-weight: 650;
}

.site-footer .footer-grid > div > a {
    display: block;
    margin: 8px 0;
    color: rgba(251,255,254,.82);
    font-size: 11px;
}

.site-footer .footer-grid > div > a:hover {
    color: #d0ff71;
}

.lgpd-badge {
    margin-top: 24px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(208,255,113,.28);
    border-radius: 10px;
    background: rgba(208,255,113,.05);
    font-size: 11px;
}

.footer-bottom {
    margin-top: 26px;
    color: rgba(251,255,254,.72);
    text-align: center;
    font-size: 11px;
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 1060px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav.is-open {
        position: fixed;
        top: 86px;
        left: 0;
        right: 0;
        z-index: 99;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 24px 28px;
        background: #fbfffe;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open a {
        padding: 14px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

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

    .benefit-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-strip article:nth-child(2) {
        border-right: 0;
    }

    .benefit-strip article:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    .capability-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 34px;
    }

    .capability-grid article:nth-child(3n)::after {
        display: none;
    }

    .audience-panel {
        grid-template-columns: 45% 55%;
    }

    .audience-aside {
        grid-column: 1 / -1;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 34px;
    }

    .steps-grid article:nth-child(3n)::after {
        display: none;
    }

    .cta-inner {
        grid-template-columns: 48% 22% 30%;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .header-inner {
        height: 72px;
    }

    .site-header .brand {
        width: 150px;
        height: 72px;
        flex-basis: 150px;
    }

    .logo-header {
        width: 145px;
        max-width: 145px;
        max-height: 50px;
    }

    .main-nav.is-open {
        top: 72px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .hero-visual {
        height: 300px;
        border-radius: 0 0 0 52px;
    }

    .benefit-strip,
    .capability-grid,
    .audience-panel,
    .steps-grid,
    .cta-inner {
        grid-template-columns: 1fr;
    }

    .benefit-strip article {
        justify-content: flex-start;
        border-right: 0 !important;
        border-bottom: 1px solid var(--line);
        padding: 16px 8px;
        margin: 0 !important;
    }

    .benefit-strip article:last-child {
        border-bottom: 0;
    }

    .capability-grid article {
        padding: 0 15px 28px;
    }

    .capability-grid article:not(:last-child)::after {
        top: auto;
        left: 15%;
        right: 15%;
        bottom: 0;
        width: auto;
        height: 1px;
    }

    .audience-photo {
        min-height: 270px;
    }

    .audience-copy {
        padding: 28px 22px;
    }

    .audience-aside {
        grid-column: auto;
        margin: 0 20px 20px;
    }

    .steps-grid article {
        padding-bottom: 24px;
    }

    .steps-grid article:not(:last-child)::after {
        top: auto;
        left: 20%;
        right: 20%;
        bottom: 0;
        width: auto;
        border-top: 2px dotted rgba(47,117,113,.7);
    }

    .cta-inner {
        text-align: center;
    }

    .cta-copy {
        padding: 30px 24px 10px;
    }

    .cta-copy p {
        margin: 0 auto;
    }

    .cta-phone {
        min-height: 145px;
    }

    .cta-actions {
        padding: 8px 24px 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .logo-footer {
        width: 142px;
        max-width: 142px;
    }
}

/* ==========================================================================
   SOLUÇÃO PROFISSIONAL - VALORIZAÇÃO, JORNADA E EVIDÊNCIAS
   ========================================================================== */

.hero h1 {
    max-width: 600px;
}

.professional-value-card {
    width: 196px;
}

.professional-value-card .clock-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fbfffe;
    background: var(--primary-2);
    font-size: 20px;
    font-weight: 800;
}

.professional-benefits article {
    min-width: 0;
}

.professional-positioning {
    padding-top: 24px;
}

.positioning-panel {
    display: grid;
    grid-template-columns: 46% 54%;
    gap: 54px;
    align-items: center;
    padding: 40px 44px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 10%, rgba(143,147,255,.10), transparent 34%),
        linear-gradient(135deg, rgba(47,117,113,.045), #fbfffe);
    box-shadow: var(--shadow-soft);
}

.positioning-copy h2 {
    margin: 8px 0 16px;
    font-family: var(--font-brand);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.12;
}

.positioning-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.positioning-points {
    display: grid;
    gap: 14px;
}

.positioning-points article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    align-items: start;
    padding: 17px 18px;
    border: 1px solid rgba(47,117,113,.14);
    border-radius: 16px;
    background: rgba(251,255,254,.86);
}

.positioning-points article > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(143,147,255,.13);
    font-size: 12px;
    font-weight: 750;
}

.positioning-points strong {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 14px;
}

.positioning-points p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.journey-proof {
    padding: 58px 0;
    background: rgba(47,117,113,.035);
}

.journey-proof-heading {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.journey-proof-heading > p {
    margin: -10px auto 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.professional-journey {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fbfffe;
    box-shadow: var(--shadow-soft);
}

.professional-journey article {
    position: relative;
    min-width: 0;
    padding: 28px 18px 24px;
    text-align: center;
}

.professional-journey article:not(:last-child) {
    border-right: 1px solid var(--line);
}

.journey-number {
    width: 30px;
    height: 30px;
    margin: 0 auto 11px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fbfffe;
    background: var(--primary-2);
    font-size: 12px;
    font-weight: 800;
}

.journey-icon {
    color: var(--accent);
    font-size: 35px;
    line-height: 1;
}

.professional-journey h3 {
    margin: 12px 0 7px;
    color: var(--primary);
    font-size: 13px;
    line-height: 1.35;
}

.professional-journey p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
}

.value-dual {
    padding-top: 58px;
}

.value-dual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.value-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fbfffe;
    box-shadow: var(--shadow-soft);
}

.value-card-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fbfffe;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    font-size: 27px;
}

.value-card:nth-child(2) .value-card-icon {
    color: var(--primary);
    background: rgba(143,147,255,.17);
}

.value-card h3 {
    margin: 18px 0;
    font-family: var(--font-brand);
    color: var(--primary);
    font-size: 30px;
    font-weight: 400;
}

.value-card .check-list {
    gap: 12px;
}

@media (max-width: 1060px) {
    .positioning-panel {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .professional-journey {
        grid-template-columns: repeat(3, 1fr);
    }

    .professional-journey article:nth-child(3) {
        border-right: 0;
    }

    .professional-journey article:nth-child(-n+3) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 720px) {
    .positioning-panel {
        padding: 28px 22px;
    }

    .positioning-copy h2 {
        font-size: 34px;
    }

    .professional-journey,
    .value-dual-grid {
        grid-template-columns: 1fr;
    }

    .professional-journey article {
        border-right: 0 !important;
        border-bottom: 1px solid var(--line);
    }

    .professional-journey article:last-child {
        border-bottom: 0;
    }

    .hero h1 {
        font-size: 46px;
    }
}

/* ==========================================================================
   SOLUÇÃO OPERAÇÃO
   ========================================================================== */

.operation-card {
    width: 190px;
}

.operation-card .clock-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fbfffe;
    background: var(--primary-2);
    font-size: 20px;
}

.operation-positioning {
    padding-top: 26px;
}

.operation-flow {
    background: rgba(47,117,113,.035);
}

.control-room {
    padding: 64px 0;
}

.control-room-grid {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fbfffe;
    box-shadow: var(--shadow-soft);
}

.control-room-copy {
    padding: 40px;
}

.control-room-copy h2 {
    margin: 9px 0 14px;
    font-family: var(--font-brand);
    color: var(--primary);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.12;
}

.control-room-copy > p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.control-checks {
    gap: 10px;
}

.control-room-visual {
    min-height: 460px;
    height: 100%;
}

.control-room-visual img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.admin-light {
    background:
        radial-gradient(circle at 88% 10%, rgba(143,147,255,.08), transparent 30%),
        linear-gradient(180deg,#fbfffe,rgba(47,117,113,.035));
}

.admin-light-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.admin-light-grid article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fbfffe;
    box-shadow: var(--shadow-soft);
}

.admin-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(143,147,255,.15);
    font-size: 24px;
    font-weight: 700;
}

.admin-light-grid article:nth-child(2) .admin-icon {
    color: #fbfffe;
    background: var(--primary-2);
}

.admin-light-grid h3 {
    margin: 0 0 9px;
    color: var(--primary);
    font-size: 16px;
}

.admin-light-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.admin-boundary {
    margin-top: 22px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    background: rgba(143,147,255,.055);
}

.admin-boundary strong {
    flex: 0 0 auto;
    color: var(--primary);
}

.admin-boundary p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.audit-security {
    padding: 66px 0;
}

.audit-security-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.audit-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fbfffe;
    box-shadow: var(--shadow-soft);
}

.audit-card-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fbfffe;
    background: linear-gradient(135deg,var(--primary),var(--primary-2));
    font-size: 24px;
}

.audit-card:nth-child(2) .audit-card-icon {
    color: var(--primary);
    background: rgba(143,147,255,.17);
}

.audit-card:nth-child(3) .audit-card-icon {
    color: var(--primary);
    background: rgba(208,255,113,.55);
}

.audit-card h3 {
    margin: 18px 0 9px;
    color: var(--primary);
    font-size: 17px;
}

.audit-card > p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.audit-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.audit-card li {
    position: relative;
    padding-left: 19px;
    color: var(--text);
    font-size: 11px;
}

.audit-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-2);
    font-weight: 800;
}

.operation-perspectives {
    padding-top: 40px;
}

@media (max-width:1060px) {
    .control-room-grid {
        grid-template-columns: 1fr;
    }

    .control-room-visual {
        min-height: 340px;
    }

    .control-room-visual img {
        min-height: 340px;
    }

    .admin-light-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .audit-security-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:720px) {
    .control-room-copy {
        padding: 28px 22px;
    }

    .control-room-copy h2 {
        font-size: 34px;
    }

    .admin-light-grid {
        grid-template-columns: 1fr;
    }

    .admin-boundary {
        flex-direction: column;
    }
}

/* ==========================================================================
   SOLUÇÃO OPERACIONAL E ADMINISTRATIVA
   ========================================================================== */

.oa-hero .hero-content {
    padding-right: 28px;
}

.oa-hero-visual {
    border-radius: 0 0 0 92px;
}

.platform-stack-card {
    position: absolute;
    right: 18px;
    bottom: 22px;
    z-index: 6;
    width: 210px;
    padding: 20px;
    border: 1px solid rgba(47,117,113,.16);
    border-radius: 18px;
    background: rgba(251,255,254,.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(40,66,65,.14);
}

.platform-stack-card > span {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.platform-stack-card strong {
    display: block;
    color: var(--primary);
    font-size: 13px;
    line-height: 1.3;
}

.platform-stack-card i {
    display: block;
    width: 1px;
    height: 18px;
    margin: 7px 0 7px 8px;
    background: rgba(47,117,113,.35);
}

.simple-message {
    padding: 48px 0;
}

.simple-message-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 60px;
    align-items: center;
}

.simple-message h2 {
    margin: 8px 0 0;
    font-family: var(--font-brand);
    color: var(--primary);
    font-size: 39px;
    font-weight: 400;
    line-height: 1.12;
}

.simple-message p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.simple-message strong {
    color: var(--primary);
}

.solution-architecture {
    background: rgba(47,117,113,.035);
}

.architecture-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.architecture-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fbfffe;
    box-shadow: var(--shadow-soft);
}

.layer-number {
    position: absolute;
    top: 18px;
    right: 22px;
    color: rgba(40,66,65,.15);
    font-size: 42px;
    font-weight: 800;
}

.layer-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 17px;
    color: #fbfffe;
    background: linear-gradient(135deg,var(--primary),var(--primary-2));
    font-size: 28px;
}

.management-layer .layer-icon {
    color: var(--primary);
    background: rgba(143,147,255,.20);
}

.intelligence-layer .layer-icon {
    color: var(--primary);
    background: rgba(208,255,113,.60);
}

.architecture-card h3 {
    margin: 0 0 8px;
    font-family: var(--font-brand);
    color: var(--primary);
    font-size: 32px;
    font-weight: 400;
}

.architecture-card > p {
    min-height: 54px;
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.architecture-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.architecture-card li {
    position: relative;
    padding-left: 20px;
    color: var(--text);
    font-size: 12px;
}

.architecture-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-2);
    font-weight: 800;
}

.layer-result {
    margin-top: auto;
    padding-top: 22px;
    color: var(--primary-2);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.connected-flow {
    padding: 64px 0;
}

.connected-flow-header {
    max-width: 760px;
    margin-bottom: 34px;
}

.connected-flow-header h2 {
    margin: 8px 0 10px;
    font-family: var(--font-brand);
    color: var(--primary);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
}

.connected-flow-header p {
    margin: 0;
    color: var(--muted);
}

.connected-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 12px;
}

.connected-timeline article {
    min-height: 150px;
    padding: 22px 18px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fbfffe;
    text-align: center;
}

.connected-timeline article > span {
    width: 30px;
    height: 30px;
    margin: 0 auto 11px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fbfffe;
    background: var(--primary-2);
    font-size: 11px;
    font-weight: 800;
}

.connected-timeline strong {
    display: block;
    color: var(--primary);
    font-size: 13px;
}

.connected-timeline p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.45;
}

.connected-timeline > i {
    color: var(--accent);
    font-size: 25px;
    font-style: normal;
}

.platform-modules {
    background:
        radial-gradient(circle at 88% 8%,rgba(143,147,255,.08),transparent 30%),
        linear-gradient(180deg,#fbfffe,rgba(47,117,113,.035));
}

.section-intro {
    max-width: 650px;
    margin: -18px auto 32px;
    color: var(--muted);
    text-align: center;
    font-size: 13px;
}

.module-categories {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.module-categories article {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fbfffe;
    box-shadow: 0 10px 28px rgba(40,66,65,.05);
    transition: .22s ease;
}

.module-categories article:hover {
    transform: translateY(-4px);
    border-color: rgba(143,147,255,.40);
    box-shadow: 0 17px 36px rgba(40,66,65,.09);
}

.module-category-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(143,147,255,.14);
    font-size: 22px;
}

.module-categories article:nth-child(2n) .module-category-icon {
    color: #fbfffe;
    background: var(--primary-2);
}

.module-categories h3 {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 15px;
}

.module-categories p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.management-view {
    padding: 68px 0;
}

.management-view-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fbfffe;
    box-shadow: var(--shadow-soft);
}

.management-view-visual {
    min-height: 480px;
}

.management-view-visual img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.management-view-copy {
    padding: 42px;
}

.management-view-copy h2 {
    margin: 8px 0 15px;
    font-family: var(--font-brand);
    color: var(--primary);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.12;
}

.management-view-copy > p {
    margin: 0 0 23px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.scalable-section {
    padding-top: 32px;
}

.scalable-panel {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 45px;
    align-items: center;
    padding: 40px;
    border-radius: 24px;
    color: #fbfffe;
    background:
        radial-gradient(circle at 80% 10%,rgba(143,147,255,.25),transparent 30%),
        linear-gradient(135deg,#284241,#2f7571);
}

.scalable-copy h2 {
    margin: 8px 0 13px;
    font-family: var(--font-brand);
    color: #fbfffe;
    font-size: 39px;
    font-weight: 400;
    line-height: 1.12;
}

.scalable-copy p {
    margin: 0;
    color: rgba(251,255,254,.76);
    font-size: 13px;
    line-height: 1.7;
}

.scalable-panel .section-kicker {
    color: #d0ff71;
}

.scale-steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}

.scale-steps article {
    min-height: 160px;
    padding: 20px;
    border: 1px solid rgba(251,255,254,.18);
    border-radius: 16px;
    background: rgba(251,255,254,.08);
}

.scale-steps span {
    display: block;
    margin-bottom: 12px;
    color: #d0ff71;
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.scale-steps strong {
    display: block;
    color: #fbfffe;
    font-size: 14px;
}

.scale-steps p {
    margin: 8px 0 0;
    color: rgba(251,255,254,.72);
    font-size: 10px;
    line-height: 1.5;
}

.security-integration {
    padding: 58px 0 66px;
}

.security-integration-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.security-integration-grid article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: #fbfffe;
}

.security-int-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(208,255,113,.55);
    font-size: 22px;
}

.security-integration-grid article:nth-child(2) .security-int-icon {
    background: rgba(143,147,255,.16);
}

.security-integration-grid article:nth-child(3) .security-int-icon {
    color: #fbfffe;
    background: var(--primary-2);
}

.security-integration-grid h3 {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 16px;
}

.security-integration-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

@media(max-width:1060px) {
    .simple-message-grid,
    .scalable-panel,
    .management-view-grid {
        grid-template-columns: 1fr;
    }

    .architecture-grid {
        grid-template-columns: 1fr;
    }

    .architecture-card {
        min-height: auto;
    }

    .connected-timeline {
        grid-template-columns: 1fr;
    }

    .connected-timeline > i {
        transform: rotate(90deg);
        text-align: center;
    }

    .module-categories {
        grid-template-columns: repeat(2,1fr);
    }

    .management-view-visual,
    .management-view-visual img {
        min-height: 340px;
    }
}

@media(max-width:720px) {
    .simple-message-grid {
        gap: 22px;
    }

    .simple-message h2,
    .connected-flow-header h2,
    .management-view-copy h2,
    .scalable-copy h2 {
        font-size: 33px;
    }

    .module-categories,
    .scale-steps,
    .security-integration-grid {
        grid-template-columns: 1fr;
    }

    .management-view-copy,
    .scalable-panel {
        padding: 28px 22px;
    }

    .platform-stack-card {
        width: 172px;
        padding: 15px;
    }
}

