/* ===== Design tokens (mesma paleta do projeto Astro) ===== */
      :root {
        --evolue-green: #2e9e4f;
        --evolue-green-dark: #1f7a3c;
        --evolue-orange: #f39c12;
        --brand-navy: #2b2a5e; /* azul-marinho do logo (wordmark) */
        --brand-navy-dark: #1f1e47;
        --brand-gradient: linear-gradient(95deg, var(--evolue-orange) 0%, var(--evolue-green) 100%);
        --ink-900: #1a2230;
        --text: #1f2933;
        --text-muted: #5f6b7a;
        --line: #e3e8ef;
        --surface-soft: #f4f7fb;
        --surface-tint: #eef3f8;
        --font-body: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        --font-head: 'Barlow Condensed', var(--font-body);
        --fs-hero: clamp(2.4rem, 5vw, 4rem);
        --fs-h2: clamp(1.8rem, 3.5vw, 2.8rem);
        --fs-lead: clamp(1.05rem, 1.6vw, 1.25rem);
        --container: 1200px;
        --gutter: clamp(1.25rem, 4vw, 3rem);
        --radius: 14px;
        --radius-pill: 999px;
        --shadow-sm: 0 2px 8px rgba(26, 34, 48, 0.06);
        --shadow-md: 0 12px 32px rgba(26, 34, 48, 0.1);
        --header-h: 76px;
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        margin: 0;
        font-family: var(--font-body);
        font-size: 1.0625rem;
        line-height: 1.6;
        color: var(--text);
        background: #fff;
        -webkit-font-smoothing: antialiased;
      }
      h1,
      h2,
      h3,
      h4 {
        font-family: var(--font-head);
        font-weight: 600;
        line-height: 1.08;
        letter-spacing: 0.01em;
        color: var(--ink-900);
        margin: 0 0 0.5em;
      }
      p {
        margin: 0 0 1rem;
      }
      a {
        color: var(--evolue-orange);
        text-decoration: none;
      }
      a:hover {
        text-decoration: underline;
      }
      .container {
        width: 100%;
        max-width: var(--container);
        margin-inline: auto;
        padding-inline: var(--gutter);
      }
      .section {
        padding-block: clamp(3.5rem, 8vw, 6.5rem);
      }
      .section--soft {
        background: var(--surface-soft);
      }
      .section--dark {
        background: var(--ink-900);
        color: rgba(255, 255, 255, 0.86);
      }
      .section--dark h2,
      .section--dark h3 {
        color: #fff;
      }
      .eyebrow {
        font-family: var(--font-head);
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--evolue-orange);
        margin-bottom: 0.75rem;
        display: inline-block;
      }
      .section--dark .eyebrow {
        color: var(--evolue-orange);
      }
      .lead {
        font-size: var(--fs-lead);
        color: var(--text-muted);
        max-width: 60ch;
      }
      .section--dark .lead {
        color: rgba(255, 255, 255, 0.78);
      }
      /* Botões */
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: var(--font-head);
        font-weight: 600;
        font-size: 1.05rem;
        letter-spacing: 0.02em;
        padding: 0.8rem 1.6rem;
        border-radius: var(--radius-pill);
        border: 2px solid transparent;
        cursor: pointer;
        transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
      }
      .btn:hover {
        text-decoration: none;
        transform: translateY(-1px);
      }
      .btn--primary {
        background: var(--evolue-green);
        color: #fff;
        box-shadow: var(--shadow-sm);
      }
      .btn--primary:hover {
        background: var(--evolue-green-dark);
        box-shadow: var(--shadow-md);
      }
      .btn--ghost {
        background: transparent;
        color: var(--ink-900);
        border-color: var(--line);
      }
      .btn--ghost:hover {
        border-color: var(--evolue-green);
        color: var(--evolue-orange);
      }
      .btn--on-dark {
        background: #fff;
        color: var(--ink-900);
      }
      .btn--navy {
        background: var(--brand-navy);
        color: #fff;
        box-shadow: var(--shadow-sm);
      }
      .btn--navy:hover {
        background: var(--brand-navy-dark);
        box-shadow: var(--shadow-md);
      }
      /* Logo em imagem */
      .logo__img {
        height: 36px;
        width: auto;
        display: block;
      }
      .logo__img--light {
        filter: brightness(0) invert(1);
      }
      /* Header */
      .site-header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: saturate(180%) blur(10px);
        border-bottom: 1px solid var(--line);
      }
      .site-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        height: var(--header-h);
      }
      .logo {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        text-decoration: none;
      }
      .logo__word {
        font-family: var(--font-head);
        font-weight: 700;
        font-size: 1.6rem;
        color: var(--ink-900);
      }
      .site-nav {
        display: flex;
        gap: 1.6rem;
        margin-inline: auto;
        align-items: center;
      }
      .site-nav a,
      .nav-trigger {
        color: var(--text);
        font-weight: 500;
        font-size: 0.98rem;
      }
      .site-nav a:hover,
      .nav-trigger:hover {
        color: var(--evolue-orange);
        text-decoration: none;
      }
      .nav-trigger {
        background: none;
        border: 0;
        padding: 0;
        cursor: pointer;
        font-family: inherit;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
      }
      .nav-trigger.is-active {
        color: var(--evolue-orange);
      }
      .nav-pill__caret {
        width: 9px;
        height: 9px;
        transition: transform 0.18s ease;
      }
      .nav-trigger.is-active .nav-pill__caret {
        transform: rotate(180deg);
      }
      /* Mega menu */
      .mega {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 26px 40px -22px rgba(20, 34, 48, 0.3);
        padding-block: 1.6rem 2.2rem;
      }
      .mega[hidden] {
        display: none;
      }
      .mega__cols {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
      }
      .mega-col {
        border: 1px solid var(--line);
        border-radius: 14px;
        overflow: hidden;
      }
      .mega-col__img {
        display: block;
        width: 100%;
        height: auto;
      }
      .mega-col ul {
        list-style: none;
        margin: 0;
        padding: 0.6rem 0.9rem 1rem;
        display: grid;
        gap: 0.1rem;
      }
      .mega-item {
        display: block;
        padding: 0.5rem 0.6rem;
        border-radius: 8px;
        color: var(--ink-900);
        font-weight: 500;
        font-size: 0.95rem;
      }
      .mega-item:hover {
        background: var(--surface-tint);
        text-decoration: none;
        color: var(--evolue-orange);
      }
      .site-header__cta {
        display: flex;
        gap: 0.6rem;
      }
      .site-header__cta .btn {
        padding: 0.55rem 1.1rem;
        font-size: 0.95rem;
      }
      /* Botão hambúrguer + menu mobile (escondidos no desktop) */
      .nav-toggle {
        display: none;
        background: none;
        border: 0;
        cursor: pointer;
        color: var(--ink-900);
        padding: 0.25rem;
        line-height: 0;
      }
      .nav-toggle svg {
        width: 28px;
        height: 28px;
      }
      .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 22px 32px -18px rgba(20, 34, 48, 0.35);
        padding: 0.25rem var(--gutter) 1.25rem;
      }
      .mobile-menu[hidden] {
        display: none;
      }
      .mobile-menu {
        max-height: calc(100vh - 62px);
        overflow-y: auto;
      }
      .mobile-menu nav {
        display: flex;
        flex-direction: column;
      }
      .mobile-menu__grp {
        font-family: var(--font-head);
        font-weight: 700;
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--evolue-orange);
        margin: 1rem 0 0.1rem;
      }
      .mobile-menu a {
        padding: 0.9rem 0.25rem;
        border-bottom: 1px solid var(--line);
        color: var(--ink-900);
        font-weight: 500;
        font-size: 1.02rem;
      }
      .mobile-menu a.btn {
        border-bottom: 0;
        color: #fff;
        margin-top: 1rem;
        justify-content: center;
      }
      /* Hero - imagem de fundo full-bleed, texto sobreposto (headline esq. / sub+botão dir.) */
      .hero {
        position: relative;
        background-color: #eceff6;
        background-image: url('img/sec1-home-nova.jpg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: auto 100%;
        min-height: 720px;
        display: flex;
        align-items: center;
      }
      /* véu claro nas laterais para garantir leitura do texto sobre a foto */
      .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          rgba(236, 239, 246, 0.96) 0%,
          rgba(236, 239, 246, 0.7) 22%,
          rgba(236, 239, 246, 0) 42%,
          rgba(236, 239, 246, 0) 60%,
          rgba(236, 239, 246, 0.72) 80%,
          rgba(236, 239, 246, 0.96) 100%
        );
        pointer-events: none;
      }
      .hero__inner {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 1760px;
        margin-inline: auto;
        padding-inline: clamp(1.5rem, 4vw, 3.5rem);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
      }
      .hero__left {
        width: 34%;
        max-width: 500px;
      }
      .hero__right {
        width: 30%;
        max-width: 440px;
        text-align: left;
      }
      .hero__left h1 {
        font-family: var(--font-head);
        font-weight: 400;
        font-size: clamp(2.1rem, 3.6vw, 3.4rem);
        line-height: 1.1;
        letter-spacing: 0.005em;
        color: #2f3a4a;
      }
      .hero__right p {
        font-size: 1.1rem;
        color: #3f4a5a;
        line-height: 1.6;
        margin-bottom: 1.8rem;
      }
      /* Sections */
      .section-head {
        max-width: 780px;
        margin-bottom: 3rem;
      }
      .section--dark .section-head {
        margin-inline: auto;
        text-align: center;
      }
      .section-head--center {
        max-width: 820px;
        margin-inline: auto;
        text-align: center;
      }
      .section-head--center .lead {
        margin-inline: auto;
      }
      .section-head--center h2 {
        text-transform: uppercase;
        letter-spacing: 0.01em;
        color: #2f3a4a;
      }
      .eyebrow--orange {
        color: var(--evolue-orange);
      }
      .cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
      }
      .card {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 2rem;
        box-shadow: var(--shadow-sm);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }
      .card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
      }
      .card__icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: var(--brand-gradient);
        margin-bottom: 1.2rem;
      }
      .card__link {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        font-family: var(--font-head);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        font-size: 0.85rem;
        color: var(--ink-700);
      }
      .card__link span {
        color: var(--evolue-orange);
        transition: transform 0.2s ease;
      }
      .card__link:hover {
        text-decoration: none;
        color: var(--ink-900);
      }
      .card__link:hover span {
        transform: translateX(4px);
      }
      /* Seção Pilares: título, mapa e cards sem moldura */
      .pilares-title {
        font-family: var(--font-head);
        font-weight: 400;
        font-size: clamp(1.9rem, 3.2vw, 2.6rem);
        color: #2f3a4a;
      }
      .pilares-map {
        margin: 1.5rem auto 3.5rem;
        max-width: 1080px;
        text-align: center;
      }
      .pilares-map img {
        width: 100%;
        height: auto;
      }
      .cards--plain {
        gap: 2.5rem;
      }
      .cards--plain .card {
        background: none;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
      }
      .cards--plain .card:hover {
        transform: none;
        box-shadow: none;
      }
      .card__ico {
        color: #2f3a4a;
        margin-bottom: 1.2rem;
      }
      .card__ico svg {
        width: 46px;
        height: 46px;
      }
      .cards--plain .card h3 {
        font-family: var(--font-head);
        font-weight: 500;
        font-size: 1.35rem;
        margin-bottom: 0.7rem;
      }
      .cards--plain .card p {
        color: var(--text-muted);
        margin-bottom: 1.3rem;
      }
      .card--dark {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.78);
      }
      .card--dark h3 {
        border-left: 3px solid var(--evolue-orange);
        padding-left: 0.7rem;
      }
      .section-cta {
        margin-top: 2.5rem;
        text-align: center;
      }
      /* Seção 3 - Impacto: foto full-bleed + cards de vidro */
      .impacto {
        position: relative;
        background-color: #d9dde3;
        background-image: url('img/sec3-home.jpg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        min-height: 680px;
      }
      .impacto__inner {
        position: relative;
        max-width: 1340px;
        min-height: 680px;
        margin-inline: auto;
        padding-inline: var(--gutter);
      }
      .stat {
        position: absolute;
        min-width: 230px;
        padding: 1.4rem 1.9rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.16);
        backdrop-filter: blur(12px) saturate(140%);
        -webkit-backdrop-filter: blur(12px) saturate(140%);
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 8px 30px rgba(26, 34, 48, 0.12);
      }
      .stat__num {
        font-family: var(--font-head);
        font-weight: 300;
        font-size: clamp(2.8rem, 4.5vw, 3.8rem);
        line-height: 1;
        color: #2b3340;
      }
      .stat__label {
        margin-top: 0.4rem;
        font-size: 1.05rem;
        color: #3a4452;
        line-height: 1.3;
      }
      .stat--1 {
        left: 1%;
        top: 28%;
      }
      .stat--2 {
        right: 3%;
        top: 16%;
      }
      .stat--3 {
        right: 3%;
        top: 56%;
      }
      /* Seção 5 - NR-01: foto full-bleed, headline esq. (branca) / texto+botão dir. */
      .nrsec {
        position: relative;
        background-color: #2b3138;
        background-image: url('img/sec5-home.jpg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        min-height: 540px;
        display: flex;
        align-items: center;
      }
      .nrsec::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          rgba(16, 21, 30, 0.62) 0%,
          rgba(16, 21, 30, 0.38) 34%,
          rgba(16, 21, 30, 0.08) 52%,
          rgba(16, 21, 30, 0) 68%
        );
        pointer-events: none;
      }
      .nrsec__inner {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 1340px;
        margin-inline: auto;
        padding-inline: var(--gutter);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
      }
      .nrsec__left {
        width: 46%;
        max-width: 560px;
      }
      .nrsec__right {
        width: 28%;
        max-width: 360px;
      }
      .nrsec__eyebrow {
        display: inline-block;
        font-family: var(--font-head);
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 0.8rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 1rem;
      }
      .nrsec__left h2 {
        font-family: var(--font-head);
        font-weight: 400;
        text-transform: uppercase;
        font-size: clamp(2.2rem, 4vw, 3.3rem);
        line-height: 1.06;
        letter-spacing: 0.01em;
        color: #fff;
      }
      .nrsec__right p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #2f3a4a;
        margin-bottom: 1.5rem;
      }
      /* Seção 6 - Clientes e selos */
      .clientes__head {
        text-align: center;
        max-width: 900px;
        margin: 0 auto 2.5rem;
      }
      .clientes__head h2 {
        font-family: var(--font-head);
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        color: #2f3a4a;
        font-size: clamp(1.6rem, 3vw, 2.3rem);
      }
      .carousel {
        position: relative;
        overflow: hidden;
      }
      .carousel__track {
        display: flex;
        width: max-content;
        animation: logos-marquee 32s linear infinite;
      }
      .carousel:hover .carousel__track {
        animation-play-state: paused;
      }
      @keyframes logos-marquee {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }
      .logo-card {
        flex: 0 0 auto;
        width: clamp(160px, 18vw, 220px);
        margin-right: 1.25rem;
        border-radius: 10px;
        overflow: hidden;
        background: #eaeaea;
      }
      .logo-card img {
        width: 100%;
        height: auto;
        display: block;
      }
      .clientes__bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
        margin-top: 3.5rem;
        flex-wrap: wrap;
      }
      .clientes__tagline {
        font-weight: 400;
        font-size: clamp(1.3rem, 2vw, 1.7rem);
        line-height: 1.3;
        color: #2f3a4a;
        max-width: 420px;
        margin: 0;
      }
      .badges {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
      }
      .badges img {
        height: 104px;
        width: auto;
        border-radius: 12px;
        display: block;
      }
      /* Seção 7 - Formulário */
      .form-head {
        max-width: 760px;
        margin: 0 auto 2.75rem;
        text-align: center;
      }
      .form-head h2 {
        font-family: var(--font-head);
        font-weight: 500;
        font-size: clamp(1.8rem, 3.2vw, 2.6rem);
        color: #3a4452;
        margin-bottom: 0.6rem;
      }
      .form-head .lead {
        margin-inline: auto;
        color: var(--text-muted);
      }
      .form-wrap {
        max-width: 900px;
        margin-inline: auto;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: clamp(1.5rem, 4vw, 3rem);
        box-shadow: var(--shadow-md);
      }
      .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.4rem 1.5rem;
      }
      .field {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }
      .field--full {
        grid-column: 1 / -1;
      }
      .field label {
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--ink-900);
      }
      .field .req {
        color: #e2433b;
      }
      .field input {
        padding: 0.85rem 1rem;
        border: 1px solid var(--line);
        border-radius: 10px;
        font-family: inherit;
        font-size: 1rem;
        color: var(--text);
        background: #fff;
      }
      .field input::placeholder {
        color: #aab2bd;
      }
      .field input:focus {
        outline: none;
        border-color: var(--evolue-green);
        box-shadow: 0 0 0 3px rgba(46, 158, 79, 0.15);
      }
      .form-block {
        grid-column: 1 / -1;
        border: 0;
        padding: 0;
        margin: 0.5rem 0 0;
      }
      .form-block > p {
        font-weight: 600;
        color: var(--ink-900);
        margin-bottom: 0.85rem;
      }
      .check-list {
        display: grid;
        gap: 0.6rem;
      }
      .check {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        color: var(--text);
        font-size: 0.98rem;
        cursor: pointer;
      }
      .check input {
        width: 17px;
        height: 17px;
        accent-color: var(--evolue-green);
      }
      .form-submit {
        grid-column: 1 / -1;
        margin-top: 0.75rem;
      }
      .form-submit button {
        width: 100%;
        border: 0;
        cursor: pointer;
        font-family: var(--font-head);
        font-weight: 600;
        font-size: 1.1rem;
        letter-spacing: 0.02em;
        color: #fff;
        background: var(--brand-navy);
        padding: 1.05rem;
        border-radius: 10px;
        transition: background 0.2s ease;
      }
      .form-submit button:hover {
        background: var(--brand-navy-dark);
      }
      .form-submit button[disabled] {
        opacity: 0.6;
        cursor: default;
      }
      .hp-field {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        opacity: 0;
      }
      .form-status {
        margin: 0.9rem 0 0;
        text-align: center;
        font-weight: 600;
      }
      .form-status[hidden] {
        display: none;
      }
      .form-status.is-ok {
        color: var(--evolue-green-dark);
      }
      .form-status.is-err {
        color: #d23b32;
      }
      .nr01 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
      }
      .nr01 > div {
        max-width: 640px;
      }
      .nr01__badge {
        font-family: var(--font-head);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        background: var(--evolue-orange);
        color: #fff;
        padding: 0.6rem 1.2rem;
        border-radius: var(--radius-pill);
        white-space: nowrap;
      }
      /* Footer */
      .site-footer {
        background: #191b4d;
        color: rgba(255, 255, 255, 0.7);
        padding-block: 4rem 1.5rem;
        font-size: 0.9rem;
      }
      .site-footer__grid {
        display: grid;
        grid-template-columns: 1.5fr repeat(4, 1fr);
        gap: 2rem;
      }
      .site-footer__brand p {
        margin-top: 1rem;
        max-width: 34ch;
        line-height: 1.6;
      }
      .site-footer .logo__word {
        color: #fff;
      }
      .site-footer__social {
        display: flex;
        gap: 0.6rem;
        margin: 1.25rem 0;
      }
      .site-footer__social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        display: grid;
        place-items: center;
        color: #fff;
      }
      .site-footer__social a:hover {
        background: var(--evolue-orange);
      }
      .site-footer__social svg {
        width: 18px;
        height: 18px;
      }
      .site-footer__sublabel {
        display: block;
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 600;
        margin: 1.25rem 0 0.6rem;
      }
      .lgpd-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.35rem 0.9rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-pill);
        font-size: 0.78rem;
        letter-spacing: 0.06em;
      }
      .site-footer__col h4 {
        font-size: 0.78rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--evolue-orange);
        margin-bottom: 1rem;
      }
      .site-footer__col ul {
        list-style: none;
        margin: 0 0 0.5rem;
        padding: 0;
        display: grid;
        gap: 0.55rem;
      }
      .site-footer__col a {
        color: rgba(255, 255, 255, 0.7);
      }
      .site-footer__col a:hover {
        color: #fff;
      }
      .tag-vigor {
        display: inline-block;
        margin-left: 0.4rem;
        background: var(--evolue-orange);
        color: #1a2230;
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        padding: 0.12rem 0.4rem;
        border-radius: 4px;
        text-transform: uppercase;
        vertical-align: middle;
      }
      .contact-item {
        margin-bottom: 1rem;
      }
      .contact-label {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.7rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--evolue-orange);
        margin-bottom: 0.25rem;
      }
      .contact-label svg {
        width: 15px;
        height: 15px;
        flex: none;
      }
      .site-footer__contact strong {
        color: rgba(255, 255, 255, 0.95);
        font-weight: 600;
        font-size: 0.95rem;
      }
      .site-footer__contact small {
        display: block;
        color: rgba(255, 255, 255, 0.5);
      }
      .site-footer__contact a {
        color: inherit;
      }
      .site-footer__hours {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.7);
      }
      .site-footer__bottom {
        margin-top: 1.5rem;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        flex-wrap: wrap;
        font-size: 0.8rem;
      }
      .site-footer__bottom a {
        color: rgba(255, 255, 255, 0.7);
      }
      .site-footer__bottom a:hover {
        color: #fff;
      }
      .site-footer__ams {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.6);
      }
      .site-footer__ams img {
        height: 26px;
        width: auto;
      }
      .wa-float {
        position: fixed;
        right: 22px;
        bottom: 22px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #25d366;
        color: #fff;
        display: grid;
        place-items: center;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        z-index: 60;
      }
      .wa-float:hover {
        background: #1ebe57;
        text-decoration: none;
      }
      .wa-float svg {
        width: 30px;
        height: 30px;
      }
      @media (max-width: 900px) {
        /* Header → hambúrguer */
        .site-nav,
        .site-header__cta {
          display: none;
        }
        .nav-toggle {
          display: inline-flex;
          align-items: center;
        }
        .mega {
          display: none;
        }

        /* Hero: foto como banner no topo, texto abaixo */
        .hero {
          min-height: auto;
          background-size: contain;
          background-position: top center;
          padding-top: 46vw;
          padding-bottom: 2.25rem;
        }
        .hero::before {
          background: none;
        }
        .hero__inner {
          flex-direction: column;
          align-items: flex-start;
          padding-block: 0;
          gap: 0.9rem;
        }
        .hero__left,
        .hero__right {
          width: 100%;
          max-width: none;
          text-align: left;
        }

        /* Pilares */
        .cards {
          grid-template-columns: 1fr;
        }

        /* NR-01: empilha sobre a foto escurecida */
        .nrsec {
          min-height: 0;
        }
        .nrsec::before {
          background: rgba(16, 21, 30, 0.62);
        }
        .nrsec__inner {
          flex-direction: column;
          align-items: flex-start;
          padding-block: 2.5rem;
          gap: 1.2rem;
        }
        .nrsec__left,
        .nrsec__right {
          width: 100%;
          max-width: none;
        }
        .nrsec__right p {
          color: rgba(255, 255, 255, 0.92);
        }

        /* Impacto: foto banner no topo + cards empilhados */
        .impacto {
          min-height: 0;
          background-size: contain;
          background-position: top center;
          padding-top: 56vw;
          padding-bottom: 2.25rem;
        }
        .impacto__inner {
          position: static;
          min-height: 0;
          display: flex;
          flex-direction: column;
          gap: 1rem;
          padding-block: 0;
        }
        .stat {
          position: static;
          width: 100%;
          min-width: 0;
          left: auto;
          right: auto;
          top: auto;
          background: rgba(255, 255, 255, 0.8);
        }

        /* Formulário */
        .form-grid {
          grid-template-columns: 1fr;
        }

        /* Clientes */
        .clientes__bottom {
          flex-direction: column;
          align-items: flex-start;
          gap: 1.5rem;
        }
        .badges {
          width: 100%;
        }
        .badges img {
          height: auto;
          width: 100%;
          max-width: 380px;
        }

        /* Rodapé */
        .site-footer {
          padding-block: 3rem 1.5rem;
        }
        .site-footer__grid {
          grid-template-columns: 1fr 1fr;
          gap: 1.75rem 1.5rem;
        }
        .site-footer__brand {
          grid-column: 1 / -1;
        }
      }

      @media (max-width: 560px) {
        .site-footer__grid {
          grid-template-columns: 1fr;
        }
        .stat__num {
          font-size: 2.5rem;
        }
        .wa-float {
          right: 16px;
          bottom: 16px;
          width: 50px;
          height: 50px;
        }
      }

/* ===== Páginas internas: triagem (roteador) ===== */
.triagem {
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  padding-block: 3rem;
  background-image: radial-gradient(120% 120% at 50% 0%, #fff 0%, var(--surface-tint) 70%);
}
.triagem__hero {
  text-align: center;
  max-width: 1000px;
  margin-inline: auto;
  width: 100%;
}
.triagem__hero h1 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  color: #2f3a4a;
}
.triagem__hero > p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin: 0.7rem auto 0;
  max-width: 560px;
}
.triagem__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.75rem;
  text-align: left;
}
.tri-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.9rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.tri-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--evolue-green);
}
.tri-card h2 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink-900);
  margin: 0;
}
.tri-card p {
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}
.tri-card__cta {
  font-weight: 600;
  color: var(--brand-navy);
  margin-top: 0.4rem;
}
.triagem__wa {
  margin-top: 2.25rem;
}
.triagem__wa p {
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}
@media (max-width: 900px) {
  .triagem {
    min-height: 0;
    padding-block: 2.5rem;
  }
  .triagem__cards {
    grid-template-columns: 1fr;
  }
}


/* ===== Landing pages internas (Medicina do Trabalho etc.) ===== */
.lp-hero { background-image: radial-gradient(120% 120% at 80% 0%, #fff 0%, var(--surface-tint) 65%); padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.lp-hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.lp-hero h1 { font-family: var(--font-head); font-weight: 500; font-size: clamp(2.1rem, 4vw, 3.4rem); line-height: 1.07; color: #2f3a4a; }
.lp-hero .lead { margin-top: 1rem; }
.lp-hero__cta { margin-top: 1.6rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }
.proof-strip { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; margin-top: 1.6rem; font-size: 0.9rem; color: var(--text-muted); }
.proof-strip span { display: inline-flex; align-items: center; gap: 0.45rem; }
.proof-strip span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--evolue-orange); flex: none; }
.lp-form { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-md); }
.lp-form h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; color: var(--ink-900); margin: 0 0 1.1rem; }
.lp-form .field { margin-bottom: 1rem; }
.lp-narr { max-width: 780px; }
.lp-narr h2 { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.55rem, 2.8vw, 2.1rem); line-height: 1.12; color: #2f3a4a; margin: 0 0 0.7rem; }
.lp-anchor { display: inline-block; margin-top: 1.1rem; font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; color: var(--brand-navy); }
.unit-cards, .modelos { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.unit-card, .modelo-card { border: 1px solid var(--line); border-radius: 16px; padding: 1.8rem; background: #fff; box-shadow: var(--shadow-sm); }
.unit-card h3, .modelo-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; color: var(--ink-900); margin: 0 0 0.5rem; }
.unit-card p, .modelo-card p { color: var(--text-muted); margin: 0; }
.func-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.func-list span { background: var(--surface-tint); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.45rem 0.95rem; font-size: 0.88rem; color: var(--ink-900); }
.lp-cta { text-align: center; }
.lp-cta .lp-narr { margin-inline: auto; }
.lp-cta .lp-form { max-width: 560px; margin: 2rem auto 0; text-align: left; }
@media (max-width: 900px) { .lp-hero__grid, .unit-cards, .modelos { grid-template-columns: 1fr; } }

/* ===== Páginas de conteúdo (Saúde Mental etc.) ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.step { border: 1px solid var(--line); border-radius: 14px; padding: 1.4rem; background: #fff; box-shadow: var(--shadow-sm); }
.step__n { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--evolue-orange); color: #fff; font-family: var(--font-head); font-weight: 700; margin-bottom: 0.7rem; }
.step h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--ink-900); margin: 0 0 0.35rem; }
.step p { color: var(--text-muted); margin: 0; font-size: 0.92rem; }
.chain { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; margin-top: 1.6rem; }
.chain span { background: var(--surface-tint); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.5rem 1rem; font-weight: 600; color: var(--ink-900); font-size: 0.9rem; }
.chain i { color: var(--evolue-orange); font-style: normal; font-weight: 700; }
.callout { background: var(--surface-tint); border-left: 4px solid var(--evolue-orange); border-radius: 0 12px 12px 0; padding: 1.2rem 1.4rem; margin-top: 1.4rem; color: var(--ink-900); }
.callout strong { color: var(--brand-navy); }
.mock-panel { margin-top: 1.6rem; border: 1px dashed var(--line); border-radius: 14px; padding: 2.5rem 1.5rem; text-align: center; color: var(--text-muted); background: var(--surface-tint); font-size: 0.9rem; }

/* ===== Utilidades grid/números ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.bignums { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 1rem; }
.bignums div { min-width: 170px; }
.bignums strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--evolue-orange); line-height: 1; }
.bignums span { color: var(--text-muted); font-size: 0.95rem; }
.field select { padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 1rem; color: var(--text); background: #fff; width: 100%; }

/* ===== Destaque + FAQ ===== */
.modelo-card--hl { border-color: var(--evolue-orange); box-shadow: var(--shadow-md); background: linear-gradient(180deg, #fff 0%, var(--surface-tint) 100%); }
.faq { max-width: 820px; margin-inline: auto; }
.faq__head { text-align: center; margin-bottom: 1.8rem; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: #fff; margin-bottom: 12px; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, border-color .2s ease; }
.faq-item[open] { border-color: rgba(243, 156, 18, 0.45); box-shadow: var(--shadow-md); }
.faq-item summary { cursor: pointer; padding: 1.15rem 1.3rem; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--ink-900); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; width: 30px; height: 30px; flex: none; display: grid; place-items: center; border-radius: 50%; background: rgba(243, 156, 18, 0.12); color: var(--evolue-orange); font-size: 1.35rem; line-height: 1; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item__a { padding: 0 1.3rem 1.25rem; color: var(--text-muted); }

/* boxes só com traçado (sec 6 ginástica) */
.trace-list { display: grid; gap: 14px; }
.trace-box { border: 1.5px dashed var(--line); border-radius: 14px; padding: 18px 20px; transition: border-color .2s ease, background .2s ease; }
.trace-box:hover { border-color: var(--evolue-orange); background: rgba(243, 156, 18, 0.04); }
.trace-box strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--brand-navy); margin-bottom: 4px; }
.trace-box span { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

/* ===== Absenteísmo - imagem do software + badges de dados ===== */
.abs-shot { position: relative; }
.abs-shot > img { width: 100%; height: auto; display: block; border-radius: 16px; border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(20, 24, 56, 0.18); }
.abs-badge { position: absolute; z-index: 2; background: #fff; border-radius: 14px; padding: 12px 16px; box-shadow: 0 16px 36px rgba(20, 24, 56, 0.17); display: flex; flex-direction: column; gap: 2px; animation: absFloat 4.5s ease-in-out infinite; }
.abs-badge strong { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; line-height: 1; color: var(--brand-navy); }
.abs-badge span { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.01em; }
.abs-badge--tl { top: -18px; left: -18px; }
.abs-badge--br { bottom: -18px; right: -18px; animation-delay: 2.2s; }
@keyframes absFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (max-width: 600px) { .abs-badge--tl { top: -12px; left: 6px; } .abs-badge--br { bottom: -12px; right: 6px; } .abs-badge strong { font-size: 1.15rem; } }

/* ===== Ambulatório - seção em 3 colunas (texto | imagem | texto) ===== */
.amb-trio { display: grid; grid-template-columns: 1fr 1.05fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.amb-trio .lp-narr { text-align: left; max-width: none; margin: 0; }
.amb-trio .lp-narr h2 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
.amb-trio__img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 18px; box-shadow: 0 20px 50px rgba(20, 24, 56, 0.16); }
@media (max-width: 900px) {
  .amb-trio { grid-template-columns: 1fr; }
  .amb-trio__img { order: -1; }
}

/* ===== Ajustes finos por página ===== */
/* Ginástica Laboral - parágrafos menores nas seções */
.gl-page .section .lead { font-size: 0.95rem; line-height: 1.6; }
.lp-sm .section .lead { font-size: 0.95rem; line-height: 1.6; }
.ergo-row { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 980px) { .ergo-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .ergo-row { grid-template-columns: repeat(2, 1fr); } }
/* Campanhas/SIPAT - hero mais alto */
.hero-banner--tall { padding-block: clamp(7rem, 16vw, 12rem); min-height: 820px; display: grid; align-items: center; }
@media (max-width: 760px) { .hero-banner--tall { min-height: 640px; } }
/* Ambulatório - seção em 3 colunas com texto mais compacto */
.amb-trio .lp-narr h2 { line-height: 1.1; }
.amb-trio .lead { font-size: 0.9rem; line-height: 1.5; }
/* Medicina do Trabalho - parágrafos menores + grid de funções mais colunado */
.mdt-page .section .lead { font-size: 0.95rem; line-height: 1.6; }
.func-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 1.6rem; }
.func-grid .modelo-card { text-align: center; padding: 1.3rem 1rem; }
.func-grid .modelo-card__ico { margin-inline: auto; margin-bottom: 0.7rem; }
.func-grid .modelo-card h3 { font-size: 1rem; }
@media (max-width: 760px) { .func-grid { grid-template-columns: repeat(2, 1fr); } }
/* proof-strip legível sobre hero escuro + subheadline menor na Medicina */
.hero-banner .proof-strip { color: rgba(255, 255, 255, 0.88); }
.mdt-page .hero-banner .lead { font-size: 0.97rem; }

/* ===== Tecnologia - caixas de indicadores ===== */
.tech-ind { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 1.3rem 0 0.6rem; }
.tech-ind__b { display: flex; align-items: center; gap: 11px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 13px; padding: 13px 15px; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--brand-navy); transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.tech-ind__b svg { width: 21px; height: 21px; color: var(--evolue-orange); flex: none; }
.tech-ind__b:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--evolue-orange); }
@media (max-width: 520px) { .tech-ind { grid-template-columns: 1fr; } }

/* ===== Faixa de credibilidade (home2) - cards glass flutuando sobre foto ===== */
.cred2 { padding: clamp(3rem, 6vw, 5rem) 0 0; }
.cred2 .numbers-head { text-align: center; }
.cred2__photo {
  position: relative;
  margin-top: 2.4rem;
  min-height: 820px;
  background-size: cover;
  background-position: center;
  touch-action: none;
}

.cred-card {
  position: absolute;
  z-index: 1;
  width: 270px;
  background: linear-gradient(140deg, rgba(255,255,255,0.62), rgba(255,255,255,0.4));
  backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  padding: 26px 30px;
  box-shadow: 0 10px 30px rgba(20, 24, 56, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  cursor: grab;
  user-select: none;
  transition: box-shadow 0.3s, transform 0.2s;
}
.cred-card.is-dragging { cursor: grabbing; transition: none; animation: none !important; box-shadow: 0 28px 60px rgba(20, 24, 56, 0.3); z-index: 5; }
.cred-card .stat__num { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: #1f2933; }
.cred-card__u { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: #1f2933; margin-left: 4px; }
.cred-card__l { display: block; font-size: 0.95rem; color: #4b5563; margin-top: 9px; }
.cred-card:hover { box-shadow: 0 22px 50px rgba(20, 24, 56, 0.2); z-index: 4; }
.cred-card.is-counted { animation: credPulse 2.6s ease-in-out infinite; }
@keyframes credPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}
@media (prefers-reduced-motion: reduce) { .cred-card.is-counted { animation: none; } }

/* distribuição organizada nas laterais */
.cred2--p1 { top: 13%; left: 5%; }
.cred2--p2 { top: 60%; left: 5%; }
.cred2--p3 { top: 11%; right: 5%; }
.cred2--p4 { top: 43%; right: 5%; }
.cred2--p5 { top: 73%; right: 5%; }

@media (max-width: 1040px) {
  .cred2__photo { min-height: 0; padding: 40px var(--gutter); display: flex; flex-direction: column; gap: 18px; touch-action: auto; }
  .cred2__photo::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.5); }
  .cred-card { position: relative; z-index: 1; width: 100%; max-width: 420px; margin-inline: auto; top: auto; left: auto; right: auto; bottom: auto; transform: none !important; cursor: default; }
}

/* ===== Ciclo de Saúde (jornada interligada) ===== */
.jrny__head { max-width: 820px; margin-bottom: 2.6rem; }
.jrny__head h2 { margin: 0.4rem 0 0.8rem; font-size: clamp(2.1rem, 4.4vw, 3.2rem); line-height: 1.08; }
.jrny__legend { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.2rem; }
.jrny__leg { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.jrny__leg::before { content: ''; width: 12px; height: 12px; border-radius: 50%; flex: none; }
.jrny__leg--colab::before { background: var(--evolue-orange); }
.jrny__leg--emp::before { background: #2f86d8; }
.jrny__leg--line::before { width: 26px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--evolue-orange), #2f86d8); }

.jrny__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}
/* linha que interliga as colunas (atrás dos dots) */
.jrny__line {
  position: absolute;
  left: 4%; right: 4%;
  top: calc(50% - 26px);
  height: 3px;
  background: linear-gradient(90deg, rgba(243,156,18,0.5), rgba(47,134,216,0.5), rgba(243,156,18,0.5));
  background-size: 220% 100%;
  border-radius: 2px;
  z-index: 0;
  animation: jrnyFlow 6s linear infinite;
}
@keyframes jrnyFlow { to { background-position: -220% 0; } }

.jr-col {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr auto 1fr auto;
  justify-items: center;
  gap: 0;
  text-decoration: none;
  text-align: center;
}
.jr-card {
  width: 100%;
  border-radius: 18px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  border: 1.5px solid transparent;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s, border-color 0.3s;
}
.jr-card__t { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; line-height: 1.05; }
.jr-card__d { font-size: 0.88rem; line-height: 1.3; }
.jr-card--top { background: rgba(243,156,18,0.16); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px); border-color: rgba(243,156,18,0.4); box-shadow: inset 0 1px 0 rgba(255,255,255,0.55), 0 8px 24px rgba(243,156,18,0.12); color: #8a5a12; }
.jr-card--top .jr-card__d { color: #a06a1c; }
.jr-card--bot { background: rgba(47,134,216,0.15); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px); border-color: rgba(47,134,216,0.4); box-shadow: inset 0 1px 0 rgba(255,255,255,0.55), 0 8px 24px rgba(47,134,216,0.12); color: #14457e; }
.jr-card--bot .jr-card__d { color: #2566a8; }

.jr-dot { width: 14px; height: 14px; border-radius: 50%; background: #9aa1ac; border: 3px solid #fff; margin: 20px 0 44px; transition: transform 0.3s, background 0.3s, box-shadow 0.3s; box-shadow: 0 0 0 0 rgba(243,156,18,0); }
.jr-stage { position: relative; z-index: 3; margin-top: -16px; align-self: center; font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.02em; color: #fff; background: var(--brand-navy); padding: 6px 16px; border-radius: 999px; box-shadow: 0 8px 18px rgba(20,24,56,0.25); transition: background 0.3s, transform 0.3s; }

/* hover: a coluna inteira reage */
.jr-col:hover .jr-card--top { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(243,156,18,0.28); border-color: var(--evolue-orange); }
.jr-col:hover .jr-card--bot { transform: translateY(8px); box-shadow: 0 18px 40px rgba(47,134,216,0.28); border-color: #2f86d8; }
.jr-col:hover .jr-dot { transform: scale(1.5); background: var(--evolue-orange); box-shadow: 0 0 0 8px rgba(243,156,18,0.18); }
.jr-col:hover .jr-stage { background: var(--evolue-orange); transform: scale(1.06); }

@media (max-width: 900px) {
  .jrny__track { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .jrny__line { display: none; }
  .jr-dot { margin: 10px 0; }
}
@media (max-width: 520px) { .jrny__track { grid-template-columns: 1fr; } }

/* ===== Ciclo (timeline circular / marcos) ===== */
.cyc { background: #f4f5f7; }
.cyc__head { max-width: 760px; margin-bottom: 2.6rem; }
.cyc__head h2 { margin: 0.4rem 0 0.8rem; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; }
.cyc__head { text-align: center; margin-inline: auto; }

/* timeline horizontal em zigue-zague */
.tl { margin-top: 2rem; display: flex; flex-direction: column; gap: 2px; }
.tl__cta { display: flex; justify-content: center; margin-top: 2.4rem; }
.tl__group {
  align-self: center;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.86rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.tl__group::before { content: ''; width: 11px; height: 11px; border-radius: 50%; }
.tl__group--top { color: var(--evolue-orange); }
.tl__group--top::before { background: var(--evolue-orange); }
.tl__group--bot { color: #2f86d8; }
.tl__group--bot::before { background: #2f86d8; }

.tl__items {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  min-height: 330px;
  align-items: center;
}
/* linha da trilha em ondas (animada) */
.tl__items::before {
  content: '';
  position: absolute;
  left: 6%; right: 6%; top: 50%;
  transform: translateY(-50%);
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='22' viewBox='0 0 120 22'%3E%3Cpath d='M0 11 Q 15 1 30 11 T 60 11 T 90 11 T 120 11' fill='none' stroke='%23c4cad6' stroke-width='2.5'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 120px 22px;
  opacity: 0.9;
  animation: tlWave 7s linear infinite;
}
@keyframes tlWave { to { background-position-x: 120px; } }
.tl__item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
  text-decoration: none;
}
.tl__node {
  grid-row: 2;
  position: relative;
  width: 116px; height: 116px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(20,24,56,0.10);
  transition: transform 0.4s cubic-bezier(.34,1.4,.5,1), border-color 0.3s, box-shadow 0.3s;
}
.tl__disc {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--c);
  display: grid;
  place-items: center;
  transition: transform 0.4s cubic-bezier(.34,1.4,.5,1);
}
.tl__disc svg { width: 34px; height: 34px; color: #fff; transform-origin: center; }
.tl__stage {
  position: absolute;
  bottom: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand-navy); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.02em; padding: 4px 12px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 14px rgba(20,24,56,0.22); transition: background 0.3s;
}
.tl__body { display: flex; flex-direction: column; gap: 2px; max-width: 200px; padding: 0 6px; }
.tl__body--top { grid-row: 1; align-self: end; margin-bottom: 30px; }
.tl__body--bot { grid-row: 3; align-self: start; margin-top: 30px; }
.tl__tag { font-style: normal; font-weight: 700; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 5px; }
.tl__tag::before { content: ''; width: 8px; height: 8px; border-radius: 50%; }
.tl__tag--colab { color: var(--evolue-orange); }
.tl__tag--colab::before { background: var(--evolue-orange); }
.tl__tag--emp { color: #2f86d8; }
.tl__tag--emp::before { background: #2f86d8; }
.tl__body strong { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--brand-navy); line-height: 1.08; margin-top: 2px; }
.tl__body span { font-size: 0.84rem; color: var(--text-muted); line-height: 1.4; }

.tl__item:hover .tl__node, .tl__item:focus-visible .tl__node {
  transform: scale(1.16) translateY(-3px);
  border-color: var(--c);
  box-shadow: 0 22px 46px rgba(20,24,56,0.22);
}
.tl__item:hover .tl__disc, .tl__item:focus-visible .tl__disc { transform: scale(1.1); }
.tl__item:hover .tl__disc svg, .tl__item:focus-visible .tl__disc svg { animation: tlWiggle 0.85s ease-in-out infinite; }
.tl__item:hover .tl__stage, .tl__item:focus-visible .tl__stage { background: var(--c); }
@keyframes tlWiggle {
  0%, 100% { transform: rotate(0) translateY(0) scale(1); }
  20% { transform: rotate(-9deg) translateY(-2px) scale(1.08); }
  50% { transform: rotate(0) translateY(-3px) scale(1.12); }
  80% { transform: rotate(9deg) translateY(-2px) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .tl__items::before { animation: none; }
  .tl__item:hover .tl__disc svg, .tl__item:focus-visible .tl__disc svg { animation: none; }
}

@media (max-width: 820px) {
  .tl__items { grid-template-columns: 1fr; min-height: 0; gap: 30px; margin-top: 0.5rem; }
  .tl__items::before { left: 57px; right: auto; top: 24px; bottom: 24px; width: 22px; height: auto; transform: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='120' viewBox='0 0 22 120'%3E%3Cpath d='M11 0 Q 1 15 11 30 T 11 60 T 11 90 T 11 120' fill='none' stroke='%23c4cad6' stroke-width='2.5'/%3E%3C/svg%3E");
    background-repeat: repeat-y; background-size: 22px 120px; animation: tlWaveV 7s linear infinite; }
  .tl__item { grid-template-rows: none; grid-template-columns: 116px 1fr; grid-template-areas: "node top" "node bot"; justify-items: start; text-align: left; column-gap: 16px; row-gap: 4px; align-items: center; }
  .tl__node { grid-area: node; align-self: center; }
  .tl__stage { bottom: -13px; }
  .tl__body { max-width: none; padding: 2px 0; }
  .tl__body--top { grid-area: top; align-self: end; }
  .tl__body--bot { grid-area: bot; align-self: start; }
}
@keyframes tlWaveV { to { background-position-y: 120px; } }

/* ===== Stepflow - blocos que sobem (carrossel vertical) ===== */
.stepflow { margin-top: 2.2rem; }
.stepflow__tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 1.8rem; }
.stepflow__tab { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 9px 16px; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--text-muted); cursor: pointer; transition: border-color .2s, color .2s, box-shadow .2s; }
.stepflow__tab span { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--surface-tint); color: var(--brand-navy); font-size: 0.8rem; }
.stepflow__tab.is-active { border-color: var(--evolue-orange); color: var(--brand-navy); box-shadow: var(--shadow-sm); }
.stepflow__tab.is-active span { background: var(--evolue-orange); color: #fff; }
.stepflow__stage { position: relative; min-height: clamp(400px, 56vh, 520px); }
.stepflow__panel { position: absolute; inset: 0; min-height: clamp(400px, 56vh, 520px); opacity: 0; transform: translateY(52px); transition: opacity .55s ease, transform .55s ease; pointer-events: none; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-md); padding: clamp(2rem, 5vw, 4rem); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.stepflow__panel.is-active { position: relative; opacity: 1; transform: none; pointer-events: auto; }
.stepflow__side { display: flex; flex-direction: column; gap: 1rem; }
.stepflow__title { display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem; }
.stepflow__ico { flex: none; width: 58px; height: 58px; border-radius: 15px; background: rgba(243, 156, 18, 0.12); display: grid; place-items: center; }
.stepflow__ico svg { width: 30px; height: 30px; color: var(--evolue-orange); }
.stepflow__panel h3 { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.95rem, 4vw, 3rem); line-height: 1.1; color: var(--brand-navy); margin: 0; }
.stepflow__panel p { color: var(--text-muted); margin: 0; font-size: 1.02rem; line-height: 1.7; }
@media (max-width: 760px) { .stepflow__panel { grid-template-columns: 1fr; gap: 1.2rem; } .stepflow__stage { min-height: 460px; } }
.stepflow__nav { display: flex; justify-content: center; gap: 12px; margin-top: 1.4rem; }
.stepflow__nav button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 1.3rem; line-height: 1; color: var(--brand-navy); transition: border-color .2s, color .2s; }
.stepflow__nav button:hover { border-color: var(--evolue-orange); color: var(--evolue-orange); }
@media (prefers-reduced-motion: reduce) { .stepflow__panel { transition: opacity .3s ease; transform: none; } }

/* ===== Efeito de movimento (reveal ao rolar) ===== */
[data-reveal] > * { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
[data-reveal].is-in > * { opacity: 1; transform: none; }
[data-reveal].is-in > *:nth-child(2) { transition-delay: 0.08s; }
[data-reveal].is-in > *:nth-child(3) { transition-delay: 0.16s; }
[data-reveal].is-in > *:nth-child(4) { transition-delay: 0.24s; }
[data-reveal].is-in > *:nth-child(5) { transition-delay: 0.32s; }
[data-reveal].is-in > *:nth-child(6) { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] > * { opacity: 1; transform: none; transition: none; } }

/* ===== Calculadora + faixa tecnologia ===== */
.calc { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; margin-top: 2rem; box-shadow: var(--shadow-md); }
.calc__inputs { padding: clamp(1.5rem, 3vw, 2.25rem); background: #fff; }
.calc__results { padding: clamp(1.5rem, 3vw, 2.25rem); background: var(--brand-navy); color: #fff; }
.calc__field { margin-bottom: 1.5rem; }
.calc__field label { display: flex; justify-content: space-between; gap: 1rem; font-weight: 600; color: var(--ink-900); margin-bottom: 0.5rem; }
.calc__field output { color: var(--evolue-orange); font-family: var(--font-head); font-weight: 600; }
.calc__field input[type='range'] { width: 100%; accent-color: var(--evolue-green); }
.calc__field small { color: var(--text-muted); font-size: 0.8rem; }
.calc__fap { background: var(--surface-tint); border: 1px solid var(--line); border-radius: 10px; padding: 0.9rem 1rem; font-weight: 600; color: var(--ink-900); }
.calc__fap small { display: block; font-weight: 400; color: var(--text-muted); margin-top: 0.2rem; }
.calc__row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.calc__row strong { font-weight: 600; }
.calc__total { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-top: 1.1rem; }
.calc__total strong { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.25rem, 2.5vw, 1.7rem); color: #fff; }
.calc__results .btn { width: 100%; justify-content: center; margin-top: 1.3rem; }
.calc__note { font-size: 0.74rem; color: rgba(255, 255, 255, 0.6); margin-top: 0.9rem; }
.diferencial { background: var(--brand-navy); color: #fff; border-radius: 18px; padding: clamp(1.5rem, 3vw, 2.25rem); margin-top: 1.5rem; }
.diferencial h3 { font-family: var(--font-head); color: #fff; font-size: 1.3rem; margin: 0.2rem 0 0.6rem; }
.diferencial p { color: rgba(255, 255, 255, 0.85); }
.diferencial .eyebrow { color: var(--evolue-orange); }
.diferencial .func-list span { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.22); color: #fff; }
.persona { display: inline-block; margin-top: 0.9rem; font-size: 0.78rem; font-weight: 600; color: var(--brand-navy); background: var(--surface-tint); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.3rem 0.85rem; }
.modelo-card ul { margin: 0.9rem 0 0; padding-left: 1.1rem; color: var(--text-muted); }
.modelo-card li { margin-bottom: 0.35rem; }
.modelo-card--hl ul { color: var(--text-muted); }
.modelo-card .eyebrow { display: block; margin-bottom: 0.3rem; }
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }

/* ===== Rede credenciada ===== */
.modelo-card > img { width: 100%; border-radius: 12px; display: block; margin-bottom: 0.9rem; }
.lp-hero__grid img.lp-hero__photo { width: 100%; max-width: 460px; border-radius: 18px; display: block; margin-inline: auto; box-shadow: var(--shadow-md); }

/* ===== Rede: mapa + números ===== */
.rede-map { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.rede-map__img { width: 100%; height: auto; display: block; }
.numbers-head { max-width: 820px; margin: 0 auto 0.5rem; text-align: center; }
.numbers-head h2 { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.55rem, 2.8vw, 2.1rem); line-height: 1.12; color: #2f3a4a; margin: 0; }
.numbers-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(2rem, 5vw, 4.5rem); margin-top: 2.5rem; }
.numstat { max-width: 260px; text-align: center; }
.numstat__v { font-family: var(--font-head); font-weight: 300; font-size: clamp(3rem, 6vw, 4.8rem); color: #3a4452; line-height: 1; display: inline-flex; align-items: baseline; gap: 0.12em; }
.numstat__v i { font-style: normal; font-size: 0.4em; font-weight: 400; }
.numstat__v small { font-size: 0.3em; font-weight: 400; letter-spacing: 0.03em; }
.numstat__l { display: block; margin-top: 0.9rem; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); line-height: 1.4; }
@media (max-width: 900px) { .rede-map { grid-template-columns: 1fr; } }

/* ===== Cards com ícone + unidades (rede) ===== */
.modelo-card__ico { color: #4a5568; margin-bottom: 0.9rem; }
.modelo-card__ico svg { width: 40px; height: 40px; }
.units-head { max-width: 760px; margin: 0 auto; text-align: center; }
.units-head h2 { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.55rem, 2.8vw, 2.1rem); color: #2f3a4a; margin: 0 0 0.6rem; }
.units-head .lead { margin-inline: auto; }
.unit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); gap: 2rem; justify-content: center; margin-top: 2.25rem; }
.unit { text-align: center; }
.unit img { width: 100%; border-radius: 18px; display: block; box-shadow: var(--shadow-md); }
.unit h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; color: var(--ink-900); margin: 1.1rem 0 0.2rem; }
.unit__loc { color: var(--text-muted); }
.unit-checks { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; margin-top: 2.5rem; }
.unit-check { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--ink-900); font-size: 0.95rem; }
.unit-check svg { width: 26px; height: 26px; color: var(--brand-navy); flex: none; }
@media (max-width: 720px) { .unit-grid { grid-template-columns: 1fr; } }

/* ===== Polish Gestão de Saúde Corporativa (lp-page) ===== */
.lp-page .section { padding-block: clamp(3rem, 6vw, 5rem); }
.lp-page .lp-narr { max-width: none; text-align: center; }
.lp-page .lp-narr > .eyebrow, .lp-page .lp-narr > h2, .lp-page .lp-narr > .lead { max-width: 760px; margin-inline: auto; }
.lp-page .lp-narr > h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.lp-page .lp-narr > .lead { color: var(--text-muted); }
.lp-page .callout { margin-inline: auto; max-width: 820px; text-align: left; }
.lp-page .lp-anchor { display: block; text-align: center; margin-top: 1.5rem; }
.lp-page .grid-2, .lp-page .grid-3, .lp-page .grid-4, .lp-page .steps { margin-top: 2.5rem; }
/* cards dinâmicos + ícone */
.lp-page .modelo-card { text-align: left; transition: transform .2s ease, box-shadow .2s ease; }
.lp-page .modelo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lp-page .modelo-card::before {
  content: '';
  display: block;
  width: 46px; height: 46px;
  border-radius: 12px;
  margin-bottom: 1.1rem;
  background-color: rgba(243, 156, 18, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f39c12'%3E%3Cpath d='M12 2.6c.7 5 2.8 7.1 7.8 7.8-5 .7-7.1 2.8-7.8 7.8-.7-5-2.8-7.1-7.8-7.8 5-.7 7.1-2.8 7.8-7.8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 24px;
}
.lp-page .modelo-card:has(.eyebrow)::before,
.lp-page .modelo-card:has(.modelo-card__ico)::before,
.lp-page .modelo-card:has(img)::before { display: none; }
.lp-page .step { transition: transform .2s ease, box-shadow .2s ease; }
.lp-page .step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ===== Seções editoriais (split) - lp-page ===== */
.lp-page .split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.lp-page .split .lp-narr { text-align: left; max-width: none; }
.lp-page .split .lp-narr > .eyebrow, .lp-page .split .lp-narr > h2, .lp-page .split .lp-narr > .lead { margin-inline: 0; max-width: 580px; }
.lp-page .split--rev .split__art { order: -1; }
.lp-page .split__art { position: relative; overflow: hidden; border-radius: 22px; min-height: 300px; display: grid; place-items: center; background: linear-gradient(135deg, var(--brand-navy), #3a3a72); box-shadow: var(--shadow-md); }
.lp-page .split__art--orange { background: linear-gradient(135deg, #f39c12, #d97b06); }
.lp-page .split__art--green { background: linear-gradient(135deg, #2e9e4f, #1f7a3c); }
.lp-page .split__art::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.16) 2px, transparent 2.5px); background-size: 24px 24px; }
.lp-page .split__art svg { position: relative; width: 84px; height: 84px; color: rgba(255,255,255,0.92); }
.lp-page .lp-narr > h2 { position: relative; }
@media (max-width: 820px) {
  .lp-page .split { grid-template-columns: 1fr; }
  .lp-page .split--rev .split__art { order: 0; }
  .lp-page .split__art { min-height: 190px; }
}

/* ===== NR-01 banner + faixas ===== */
.hero-banner { background-size: cover; background-position: center; padding-block: clamp(3rem, 7vw, 5rem); }
.hero-banner__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 3rem); align-items: center; max-width: 1280px; margin-inline: auto; padding-inline: var(--gutter); }
.hero-banner h1 { font-family: var(--font-head); font-weight: 500; font-size: clamp(2.1rem, 4vw, 3.2rem); line-height: 1.08; color: #fff; }
.hero-banner .lead { color: rgba(255,255,255,0.92); }
.hero-banner .eyebrow { color: #ffd9a8; }
.lp-form--nr { background: rgba(22, 28, 64, 0.5); backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%); border: 1px solid rgba(255,255,255,0.28); border-radius: 24px; color: #fff; }
.lp-form--nr h3 { color: #fff; }
.lp-form--nr .field label, .lp-form--nr .form-block > p, .lp-form--nr .check { color: #fff; }
.lp-form--nr .field input, .lp-form--nr .field select { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); color: #fff; }
.lp-form--nr .field input::placeholder { color: rgba(255,255,255,0.6); }
.lp-form--nr .field select option { color: #1a2230; }
.lp-form--nr .check input { accent-color: var(--evolue-orange); }
.lp-form--nr .form-submit button { background: var(--evolue-orange); }
.lp-form--nr .form-submit button:hover { background: #d97b06; }
.bandsec { background-size: cover; background-position: center; background-repeat: no-repeat; color: #fff; padding-block: clamp(3.75rem, 7vw, 6.5rem); }
.bandsec .lp-narr h2, .bandsec .lp-narr .lead, .bandsec p { color: #fff; }
.bandsec .callout { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); color: #fff; }
.bandsec .unit-check, .bandsec .unit-check svg { color: #fff; }
@media (max-width: 900px) { .hero-banner__grid { grid-template-columns: 1fr; } }

/* ===== NR-01 obrigações (4 cards) ===== */
.obrig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2rem; }
.obrig-item { padding: 1.6rem; border-radius: 14px; border: 1.5px solid var(--line); }
.obrig-item--fill { background: var(--brand-navy); color: #fff; border-color: rgba(255,255,255,0.18); }
.obrig-item__ico { margin-bottom: 1.4rem; line-height: 0; }
.obrig-item__ico svg { width: 42px; height: 42px; }
.obrig-item--fill .obrig-item__ico svg { color: var(--evolue-orange); }
.obrig-item--plain .obrig-item__ico svg { color: #9aa3af; }
.obrig-item p { margin: 0; font-weight: 500; line-height: 1.4; }
.obrig-item--fill p { color: #fff; }
.obrig-item--plain p { color: var(--text-muted); }
@media (max-width: 900px) { .obrig-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .obrig-grid { grid-template-columns: 1fr; } }

/* ===== NR-01 seções 3-5 ===== */
.btn--orange { background: var(--evolue-orange); color: #fff; }
.btn--orange:hover { background: #d97b06; color: #fff; }
.risk-box { border: 2px solid var(--evolue-orange); border-radius: 28px; padding: clamp(1.5rem, 4vw, 2.75rem); margin-top: 1.75rem; }
.risk-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.risk-it__ico { line-height: 0; margin-bottom: 0.9rem; }
.risk-it__ico svg { width: 34px; height: 34px; color: var(--evolue-orange); }
.risk-it p { margin: 0; color: #fff; font-size: 0.95rem; line-height: 1.4; }
@media (max-width: 900px) { .risk-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .risk-grid { grid-template-columns: 1fr; } }

.pgr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.pgr-card { padding: 1.8rem; border-radius: 16px; min-height: 160px; display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; }
.pgr-card--fill { background: var(--evolue-orange); color: #fff; }
.pgr-card--light { background: var(--surface-tint); color: var(--ink-900); border: 1.5px solid var(--line); }
.pgr-card__ico svg { width: 42px; height: 42px; }
.pgr-card--fill .pgr-card__ico svg { color: rgba(0,0,0,0.5); }
.pgr-card--light .pgr-card__ico svg { color: #5b6573; }
.pgr-card h3 { margin: 0; font-size: 1.1rem; font-weight: 600; }
.pgr-card--fill h3 { color: #fff; }
@media (max-width: 820px) { .pgr-grid { grid-template-columns: 1fr; } }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2rem; }
.team-card { background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; padding: 1.6rem; }
.team-card__ico { line-height: 0; margin-bottom: 1rem; }
.team-card__ico svg { width: 42px; height: 42px; color: #fff; }
.team-card p { margin: 0; color: #fff; font-size: 0.92rem; line-height: 1.45; }
.team-card strong { display: block; margin-bottom: 0.3rem; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }

/* ===== NR-01 form compacto ===== */
.lp-form--nr { padding: clamp(1.2rem, 2.4vw, 1.7rem); }
.lp-form--nr .form-grid { gap: 0.7rem 1.1rem; }
.lp-form--nr .field { gap: 0.3rem; }
.lp-form--nr .field input, .lp-form--nr .field select { padding: 0.6rem 0.85rem; }
.lp-form--nr .form-block { margin-top: 0.2rem; }
.lp-form--nr .form-block > p { margin-bottom: 0.5rem; }
.lp-form--nr .check-list { gap: 0.4rem; }
.lp-form--nr .check { font-size: 0.92rem; }
.lp-form--nr .form-submit { margin-top: 0.5rem; }
.lp-form--nr .form-submit button { padding: 0.8rem; }

/* ===== Resultados (vídeo/cases/roi) ===== */
.video-wrap { max-width: 880px; margin: 1.75rem auto 0; }
.video-embed { position: relative; padding-top: 56.25%; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-client { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 1.25rem; color: var(--text-muted); font-size: 0.9rem; }
.video-client img { height: 34px; width: auto; }
.case { margin-top: 2.5rem; }
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.case-txt h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; color: var(--ink-900); margin: 0.3rem 0 0.8rem; }
.case-txt p { margin: 0 0 0.8rem; color: var(--text); }
.case-txt p b { color: var(--ink-900); }
.roi-card { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.roi-card__head { padding: 1rem 1.5rem; border-bottom: 1px solid var(--line); font-family: var(--font-head); font-weight: 600; color: var(--ink-900); }
.roi-card__body { display: flex; gap: 1.5rem; align-items: center; padding: 1.5rem; }
.roi-card__art { flex: 0 0 150px; align-self: stretch; min-height: 180px; border: 1px solid var(--line); border-radius: 12px; display: grid; place-items: center; padding: 0.75rem; background-image: linear-gradient(rgba(20,34,48,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(20,34,48,0.07) 1px, transparent 1px); background-size: 14px 14px; }
.roi-card__art svg { width: 100%; max-width: 110px; height: auto; color: var(--brand-navy); }
.roi-card__pre { color: var(--text-muted); font-size: 0.95rem; }
.roi-card__num { display: block; font-family: var(--font-head); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.3rem); color: #2f3a4a; line-height: 1.05; margin: 0.1rem 0; }
.roi-card__txt p { margin: 0.6rem 0 0; color: var(--text-muted); font-size: 0.95rem; }
.roi-card__txt b { color: var(--ink-900); }
@media (max-width: 820px) {
  .case-grid { grid-template-columns: 1fr; }
  .case-grid--rev .case-roi { order: 0; }
  .case-grid--rev .case-txt { order: -1; }
  .roi-card__body { flex-direction: column; align-items: flex-start; }
}

.eyebrow-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600; color: var(--ink-900); background: #fff; margin-bottom: 1rem; }
.eyebrow-pill svg { color: var(--brand-navy); }

.impacto-ico { color: #5b6573; margin-bottom: 1rem; line-height: 0; }
.impacto-ico svg { width: 46px; height: 46px; }
.modelo-card p b { color: var(--ink-900); }

/* ===== Resultados cases (barras) ===== */
.case-title { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.4rem, 2.6vw, 1.8rem); color: var(--ink-900); margin: 0 0 1.3rem; line-height: 1.15; }
.case-setor { display: block; font-family: var(--font-body); font-weight: 400; font-size: 1rem; color: var(--text-muted); margin-top: 0.25rem; }
.case-block { padding-left: 0.95rem; border-left: 3px solid; margin-bottom: 1.2rem; }
.case-block:last-child { margin-bottom: 0; }
.case-block h4 { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; margin: 0 0 0.4rem; color: var(--ink-900); }
.case-block p { margin: 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }
.case-block--risco { border-color: #e2433b; }
.case-block--gov { border-color: var(--brand-navy); }

/* ===== Sobre hero (full-bleed) ===== */
.sobre-hero { background-color: #eef2f8; background-image: url('img/sobre-hero.jpg'); background-size: cover; background-position: right center; background-repeat: no-repeat; min-height: 720px; display: flex; align-items: center; }
.sobre-hero__text { max-width: 560px; }
.sobre-hero h1 { font-family: var(--font-head); font-weight: 500; font-size: clamp(2.2rem, 4.2vw, 3.5rem); line-height: 1.08; color: #2f3a4a; margin: 0; }
.sobre-hero .lead { margin-top: 1rem; }
.sobre-hero .btn { margin-top: 1.5rem; }
@media (max-width: 900px) {
  .sobre-hero { background-image: url('img/sobre-hero-mobile.jpg'); background-position: center bottom; align-items: flex-start; min-height: 90vh; padding-top: 2.5rem; }
  .sobre-hero__text { max-width: none; }
}

/* ===== Bloco imagem + texto (Sobre) ===== */
.split-img { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split-img__media img { width: 100%; max-width: 560px; height: auto; display: block; margin-inline: auto; }
.split-img .lp-narr { text-align: left; max-width: none; margin: 0; }
@media (max-width: 900px) { .split-img { grid-template-columns: 1fr; } .split-img__media { order: -1; } }

/* ===== Carrossel de diretores ===== */
.dir-carousel { margin-top: 2rem; }
.dir-nav { display: flex; gap: 0.6rem; justify-content: flex-end; margin-bottom: 1rem; }
.dir-nav button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 1.3rem; line-height: 1; color: var(--ink-900); display: grid; place-items: center; transition: color 0.2s, border-color 0.2s; }
.dir-nav button:hover { color: var(--evolue-orange); border-color: var(--evolue-green); }
.dir-track { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 0.5rem; }
.dir-track::-webkit-scrollbar { display: none; }
.dir-card { flex: 0 0 300px; scroll-snap-align: start; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.dir-card__photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: top center; display: block; background: linear-gradient(135deg, #e7ebf1, #d4dae3); }
.dir-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.dir-ph { display: grid; place-items: center; color: #b3bcc8; }
.dir-ph svg { width: 42%; height: 42%; }
.dir-card__body { padding: 1.25rem 1.4rem 1.6rem; }
.dir-card__role { color: var(--evolue-orange); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.dir-card__name { font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; color: var(--ink-900); margin: 0.2rem 0 0.6rem; }
.dir-card__bio { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; margin: 0; }
@media (max-width: 900px) { .dir-card { flex-basis: 80%; } }

/* ===== Página de Vagas ===== */
.vagas-hero {
  background: linear-gradient(90deg, rgba(244, 247, 251, 0.96) 0%, rgba(244, 247, 251, 0.78) 30%, rgba(244, 247, 251, 0.2) 50%, rgba(244, 247, 251, 0) 64%), url('img/vagas-hero.jpg') center right / cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.vagas-hero__text { max-width: 620px; }
.vagas-hero__text h1 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.12;
  color: #54606b;
  margin: 0;
}
@media (max-width: 760px) {
  .vagas-hero { min-height: 440px; background-position: 74% center; }
  .vagas-hero__text h1 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }
}

.vagas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.vaga-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vaga-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vaga-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--evolue-orange);
  background: rgba(46, 158, 79, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}
.vaga-card h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--ink-900); margin: 0.2rem 0 0; }
.vaga-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.5; margin: 0; flex: 1; }
.vaga-card .btn { margin-top: 0.5rem; }

/* Modal de candidatura */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal__overlay { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.55); backdrop-filter: blur(2px); }
.modal__panel {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  background: none;
  border: 0;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}
.modal__panel h3 { font-family: var(--font-head); margin: 0.4rem 0 0.2rem; font-size: 1.55rem; color: var(--ink-900); }
.modal__sub { color: var(--text-muted); font-size: 0.92rem; margin: 0 0 1rem; }
.vaga-form { display: flex; flex-direction: column; gap: 0.7rem; }
.vaga-form label { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.82rem; font-weight: 600; color: var(--ink-900); }
.vaga-form input, .vaga-form textarea {
  font: inherit;
  font-weight: 400;
  padding: 0.6rem 0.75rem;
  border: 1px solid #d8dee7;
  border-radius: 9px;
  background: var(--surface-soft);
}
.vaga-form input:focus, .vaga-form textarea:focus { outline: none; border-color: var(--evolue-green); background: #fff; }
.vaga-form .btn { margin-top: 0.4rem; width: 100%; }
.vaga-form .form-status { font-size: 0.88rem; margin: 0.4rem 0 0; }
.vaga-form .form-status.is-ok { color: var(--evolue-green-dark); }
.vaga-form .form-status.is-err { color: #c0392b; }
.vaga-hint { font-weight: 400; color: var(--text-muted); }
.vaga-cv { border: 1px solid #d8dee7; border-radius: 10px; padding: 0.6rem 0.9rem 0.9rem; margin: 0.2rem 0; display: flex; flex-direction: column; gap: 0.45rem; }
.vaga-cv legend { font-size: 0.82rem; font-weight: 600; color: var(--ink-900); padding: 0 0.4rem; }
.vaga-cv__opt { font-size: 0.82rem; font-weight: 600; color: var(--ink-900); display: flex; flex-direction: column; gap: 0.3rem; }
.vaga-cv__or { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; text-align: center; }
.vaga-cv input[type="file"] { font: inherit; font-weight: 400; font-size: 0.85rem; padding: 0.4rem; border: 1px dashed #c4ccd8; border-radius: 8px; background: var(--surface-soft); cursor: pointer; }
.vaga-cv input[type="file"]::file-selector-button { font: inherit; font-size: 0.8rem; margin-right: 0.6rem; padding: 0.35rem 0.7rem; border: 0; border-radius: 6px; background: var(--brand-navy); color: #fff; cursor: pointer; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 1100;
  background: var(--evolue-green-dark);
  color: #fff;
  padding: 0.85rem 1.3rem;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  font-size: 0.92rem;
  font-weight: 500;
  max-width: 90vw;
  animation: toastIn 0.3s ease;
}
.toast--out { opacity: 0; transition: opacity 0.6s ease; }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ===== Página Fale com a Evolue ===== */
.contato-hero {
  background: linear-gradient(90deg, rgba(20, 24, 56, 0.92) 0%, rgba(20, 24, 56, 0.72) 34%, rgba(20, 24, 56, 0.25) 56%, rgba(20, 24, 56, 0.05) 72%), url('img/contato-hero.jpg') center right / cover no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.contato-hero__text { max-width: 600px; color: #fff; }
.contato-hero__text h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.08; color: #fff; margin: 0.4rem 0 0.8rem; }
.contato-hero__text .lead { color: rgba(255, 255, 255, 0.88); margin: 0; }
@media (max-width: 760px) {
  .contato-hero { min-height: 420px; background-position: 70% center; }
}

/* Canais de contato */
.channels-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 1060px) { .channels-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .channels-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .channels-grid { grid-template-columns: 1fr; } }

.channel-card {
  background: #fff;
  border: 1.5px solid rgba(23, 27, 73, 0.08);
  border-radius: 18px;
  padding: 28px 22px 24px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(23, 27, 73, 0.04);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.channel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, rgba(23, 27, 73, 0.15));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.channel-card:hover::before { transform: scaleX(1); }
.channel-card:hover { border-color: rgba(23, 27, 73, 0.18); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(23, 27, 73, 0.1); }
.channel-card.whatsapp { --card-accent: #25d366; }
.channel-card.phone-bsb { --card-accent: #3b82f6; }
.channel-card.phone-br { --card-accent: #6366f1; }
.channel-card.email-card { --card-accent: #f59e0b; }
.channel-card.sac-card { --card-accent: #ef4444; }

.channel-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--card-accent, rgba(23, 27, 73, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.channel-card:hover .channel-icon { transform: scale(1.08) rotate(-3deg); }
.channel-icon svg { width: 22px; height: 22px; color: #fff; fill: none; stroke: currentColor; }
.channel-icon.filled svg { fill: currentColor; stroke: none; }

.channel-info { flex: 1; }
.channel-info h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin: 0 0 5px; letter-spacing: -0.01em; color: #525252; }
.channel-info p { font-size: 13px; font-weight: 400; color: var(--text-muted); line-height: 1.5; margin: 0 0 10px; }
.channel-data { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: #525252; letter-spacing: 0.01em; word-break: break-word; }
.channel-data-sub { font-size: 11.5px; font-weight: 500; color: var(--gray-soft, #8b95a5); margin-top: 3px; letter-spacing: 0.02em; }

.channel-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gray-soft, #8b95a5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 10px;
  transition: color 0.2s;
}
.channel-card:hover .channel-arrow { color: var(--brand-navy); }
.channel-arrow svg { width: 13px; height: 13px; transition: transform 0.2s; }
.channel-card:hover .channel-arrow svg { transform: translateX(4px); }

.address-card {
  max-width: 600px;
  margin: 40px auto 0;
  background: var(--surface-soft);
  border: 1px solid rgba(23, 27, 73, 0.06);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.address-pin { width: 42px; height: 42px; border-radius: 11px; background: rgba(239, 68, 68, 0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.address-pin svg { width: 20px; height: 20px; color: #ef4444; }
.address-info h4 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: #525252; margin: 0 0 6px; }
.address-info p { font-size: 13.5px; font-weight: 400; color: var(--text-muted); line-height: 1.6; margin: 0; }

.hours-strip { text-align: center; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(23, 27, 73, 0.06); }
.hours-strip p { font-size: 14px; color: var(--gray-soft, #8b95a5); font-weight: 400; }
.hours-strip strong { color: var(--text-muted); font-weight: 600; }

/* ===== Feature split com cards flutuantes (Saúde Mental sec 2/3) ===== */
.mh-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.mh-feature--rev .mh-feature__text { order: 2; }
.mh-feature--rev .mh-feature__visual { order: 1; }
.mh-feature__text h2 { margin: 0.5rem 0 1rem; }
.mh-feature__text .hl { color: var(--evolue-orange); }
.mh-page .step__n { background: var(--evolue-orange); }
.mh-feature__text .lead { margin-bottom: 1.1rem; }
.mh-feature__text .lp-hero__cta { margin-top: 1.4rem; }
.mh-highlight {
  border-left: 3px solid var(--evolue-orange);
  background: var(--surface-soft);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.97rem;
  color: var(--text-muted);
  margin: 0 0 0.4rem;
}
.mh-highlight strong { color: var(--brand-navy); }
.mh-list { list-style: none; margin: 0 0 0.4rem; padding: 0; display: grid; gap: 0.55rem; }
.mh-list li { position: relative; padding-left: 1.7rem; font-size: 0.98rem; color: var(--text); line-height: 1.45; }
.mh-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.45em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--evolue-orange);
}

/* ===== Bento grid (Saúde Mental - integração/alcance/resultado) ===== */
.bento {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "a b c" "d b e";
  grid-auto-rows: minmax(210px, 1fr);
  gap: 18px;
}
.bento__tile {
  border-radius: 22px;
  padding: 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  position: relative;
}
.bento__tile--tall { justify-content: center; }
.bento__tile--light { background: var(--surface-tint); color: var(--text); }
.bento__tile--light p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; margin: 0; }
.bento__tile--navy { background: linear-gradient(155deg, #2b2a5e 0%, #1f1e47 100%); color: #fff; }
.bento__tile--green { background: linear-gradient(155deg, #2b2a5e 0%, #1f1e47 100%); color: #fff; }
.bento__tile--navy p, .bento__tile--green p { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.55; margin: 0; }
.bento__tile--navy::after, .bento__tile--green::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  top: -50px; right: -50px;
}
.bento__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--evolue-orange);
}
.bento__tile--navy .bento__label, .bento__tile--green .bento__label { color: rgba(255,255,255,0.7); }
.bento__tile--tall h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.15;
  color: #fff;
  margin: 0.1rem 0 0.3rem;
}
.bento__stat {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1;
  color: #fff;
}
.bento__statlabel { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: rgba(255,255,255,0.92); margin-bottom: 0.2rem; }
.bento__chain { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 0.9rem; position: relative; z-index: 1; }
.bento__chain span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 5px 11px;
  border-radius: 999px;
}
.bento__chain i { color: var(--evolue-orange); font-style: normal; font-weight: 700; }

@media (max-width: 820px) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-areas: "b" "a" "c" "d" "e";
    grid-auto-rows: minmax(160px, auto);
  }
}

.mh-feature__visual { position: relative; min-height: 380px; }
.mh-feature__visual::before {
  content: '';
  position: absolute;
  width: 56%; height: 68%;
  border-radius: 32px;
  background: var(--surface-tint);
  top: -16px; right: -16px;
  z-index: 0;
}
.mh-feature--rev .mh-feature__visual::before { right: auto; left: -16px; }
.mh-visual {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 380px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.mh-visual::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, transparent 70%);
  top: -60px; right: -60px;
}
.mh-visual__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.mh-visual--shot { background: var(--surface-tint); }
.mh-visual--shot .mh-visual__img { object-fit: contain; padding: 20px; }
.mh-feature__visual--plain { min-height: 0; }
.mh-feature__visual--plain::before { display: none; }
.mh-shot { width: 100%; height: auto; display: block; border-radius: 14px; }

/* ===== Campanhas/SIPAT - ícones personalizados nos cards ===== */
.camp-page .modelo-card__ico {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: rgba(243, 156, 18, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.camp-page .modelo-card__ico svg { width: 24px; height: 24px; color: var(--evolue-orange); }

/* ===== Números centralizados (sec 4) ===== */
.bignums--center { justify-content: center; text-align: center; gap: clamp(2rem, 7vw, 5.5rem); margin-top: 2.6rem; }
.bignums--center div { min-width: 0; }
.bignums--center strong { font-size: clamp(3rem, 7vw, 5rem); color: var(--evolue-orange); }
.bignums--center span { font-size: 1.05rem; }

/* ===== Calendário anual (sec 6) - chips dinâmicos ===== */
.cal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 2.4rem; }
@media (max-width: 860px) { .cal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cal-grid { grid-template-columns: 1fr; } }
.cal-chip {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 20px 22px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  outline: none;
}
.cal-chip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--c, var(--evolue-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.cal-chip:hover, .cal-chip:focus-visible { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--c, var(--evolue-orange)); }
.cal-chip:hover::before, .cal-chip:focus-visible::before { transform: scaleX(1); }
.cal-chip:active { transform: translateY(-1px) scale(0.985); }
.cal-chip__mes {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.08rem;
  color: var(--ink-900); line-height: 1.15;
}
.cal-chip__mes::before { content: ''; width: 11px; height: 11px; border-radius: 50%; background: var(--c, var(--evolue-orange)); flex: none; }
.cal-chip__tema { display: block; margin-top: 6px; padding-left: 20px; color: var(--text-muted); font-size: 0.92rem; }
.mh-visual--navy { background: linear-gradient(150deg, #2b2a5e 0%, #1f1e47 100%); }
.mh-visual--green { background: linear-gradient(150deg, #2e9e4f 0%, #1f7a3c 100%); }
.mh-visual svg { width: 42%; max-width: 150px; color: rgba(255,255,255,0.92); position: relative; z-index: 1; }

.mh-badge {
  position: absolute;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 18px 42px rgba(20, 24, 56, 0.18);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 150px;
  max-width: 215px;
}
.mh-badge--a { top: 26px; left: -22px; }
.mh-badge--b { bottom: 26px; right: -22px; }
.mh-feature--rev .mh-badge--a { left: auto; right: -22px; }
.mh-feature--rev .mh-badge--b { right: auto; left: -22px; }
.mh-badge__label { font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--evolue-orange); }
.mh-badge__value { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; line-height: 1.1; color: var(--brand-navy); }
.mh-badge__sub { font-size: 11.5px; color: var(--text-muted); line-height: 1.35; }

@media (max-width: 820px) {
  .mh-feature { grid-template-columns: 1fr; gap: 2.5rem; }
  .mh-feature--rev .mh-feature__text { order: 0; }
  .mh-feature--rev .mh-feature__visual { order: 0; }
  .mh-feature__visual { min-height: 320px; margin-top: 0.5rem; }
  .mh-visual { min-height: 300px; }
  .mh-badge--a { left: 10px; }
  .mh-badge--b { right: 10px; }
  .mh-feature--rev .mh-badge--a { right: 10px; left: auto; }
  .mh-feature--rev .mh-badge--b { left: 10px; right: auto; }
}

/* ===== Resultados v2 - depoimentos, cases destaque, link ===== */
.depo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 2.5rem); margin-top: 2.5rem; }
.depo-card { margin: 0; }
.depo-card figcaption { display: flex; align-items: baseline; gap: 0.6rem; margin-top: 1rem; }
.depo-card figcaption strong { font-family: var(--font-head); font-weight: 600; color: var(--ink-900); }
.depo-card figcaption span { color: var(--text-muted); font-size: 0.9rem; }
@media (max-width: 820px) { .depo-grid { grid-template-columns: 1fr; } }

.case-hl { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 2.5rem; }
.case-hl__card { background: linear-gradient(160deg, var(--brand-navy) 0%, #3a3a72 100%); color: #fff; border-radius: 20px; padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--shadow-md); }
.case-hl__num { display: block; font-family: var(--font-head); font-weight: 600; font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1; color: #fff; }
.case-hl__card p { margin: 0.9rem 0 1.3rem; color: rgba(255,255,255,0.88); font-size: 1.02rem; line-height: 1.5; }
.case-hl__card p b { color: #fff; }
.case-hl__brand { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--evolue-orange); border-top: 1px solid rgba(255,255,255,0.2); padding-top: 0.9rem; }
@media (max-width: 760px) { .case-hl { grid-template-columns: 1fr; } }

.link-arrow { font-family: var(--font-head); font-weight: 600; color: var(--evolue-orange); text-decoration: none; border-bottom: 1px solid rgba(243,156,18,0.4); padding-bottom: 2px; transition: border-color 0.2s; }
.link-arrow:hover { border-color: var(--evolue-orange); }

/* ===== Sobre v2 - registro healthtech ===== */
.about-hero { padding-block: clamp(4rem, 9vw, 7rem); background: #fff; }
.about-hero .container { max-width: 940px; }
.about-hero__h1 { font-family: var(--font-head); font-weight: 400; font-size: clamp(1.9rem, 4.2vw, 3rem); line-height: 1.12; color: var(--ink-900); margin: 0.6rem 0 1.4rem; }
.about-hero__aff { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.2; color: var(--ink-900); margin: 0 0 1.4rem; }
.about-hero__aff em { font-style: normal; color: var(--evolue-orange); }
.about-master { font-family: var(--font-head); font-weight: 400; font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.25; color: var(--ink-900); max-width: 860px; margin: 2.4rem 0 0; }
.about-master strong { display: block; color: var(--evolue-orange); font-weight: 600; margin-top: 0.3rem; }
.about-turn { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.3rem, 2.6vw, 1.8rem); color: var(--ink-900); margin: 1.4rem 0; }
.cred-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.cred-chips span { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--surface-tint); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.55rem 1.1rem; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--brand-navy); }
.cred-chips span::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--evolue-orange); flex: none; }
.about-recon { margin-top: 2.6rem; }
.ams-band { max-width: 760px; margin-inline: auto; text-align: center; }
.ams-band h3 { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--ink-900); margin: 0.4rem 0 0.7rem; }
.ams-band p { color: var(--text-muted); margin: 0; line-height: 1.6; }
.dir-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 1.8rem); margin-top: 2rem; }
.dir-band__card { text-align: center; }
.dir-band__photo { aspect-ratio: 1 / 1; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 1rem; }
.dir-band__photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(100%); transition: filter 0.35s ease; }
.dir-band__card:hover .dir-band__photo img { filter: grayscale(0%); }
.dir-band__card h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--ink-900); margin: 0 0 0.2rem; }
.dir-band__card span { color: var(--text-muted); font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; }
@media (max-width: 760px) { .dir-band { grid-template-columns: 1fr 1fr; } }
.about-close { text-align: center; margin-top: 3.2rem; }
.about-close__line { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.4rem, 3.2vw, 2.2rem); line-height: 1.25; color: var(--ink-900); max-width: 720px; margin: 0 auto 1.6rem; }

/* ===== Fale com a Evolue v2 ===== */
.client-strip { background: var(--surface-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-block: 1rem; }
.client-strip p { margin: 0; text-align: center; color: var(--text-muted); font-size: 0.98rem; }
.client-strip strong { color: var(--brand-navy); font-weight: 600; }
.channel-card--hero { flex-direction: row; align-items: center; gap: 22px; padding: 30px 30px; margin-bottom: 1.25rem; border-color: rgba(37,211,102,0.4); background: linear-gradient(120deg, #f4fff8, #ffffff 70%); }
.channel-card--hero::before { height: 4px; transform: scaleX(1); }
.channel-card--hero .channel-icon { width: 60px; height: 60px; }
.channel-card--hero .channel-icon svg { width: 30px; height: 30px; }
.channel-card--hero .channel-info h3 { font-size: 22px; }
.channel-card--hero .channel-info p { font-size: 15px; margin-bottom: 0; }
.channel-card--hero .channel-arrow { margin-top: 0; padding-top: 0; }
@media (max-width: 640px) { .channel-card--hero { flex-direction: column; align-items: flex-start; gap: 14px; } }
.channels-grid--pair { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .channels-grid--pair { grid-template-columns: 1fr; } }
.channel-card--muted { opacity: 0.92; }
.channel-card--muted .channel-info h3 { font-size: 15px; }

.sol-cards { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1040px) { .sol-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .sol-cards { grid-template-columns: 1fr; } }
.sol-card { display: flex; flex-direction: column; text-decoration: none; }
.sol-card h3 { font-size: 1.15rem; }
.sol-card p { flex: 1; }
.sol-card__link { margin-top: 1.1rem; font-family: var(--font-head); font-weight: 600; color: var(--evolue-orange); }

/* ===== Vagas v2 - quadro de vagas, áreas, processo ===== */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 2.2rem; }
.area-card { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s, border-color .25s; }
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--evolue-orange); }
.area-card__ico { width: 38px; height: 38px; flex: none; display: grid; place-items: center; border-radius: 10px; background: rgba(243,156,18,0.12); }
.area-card__ico svg { width: 20px; height: 20px; color: var(--evolue-orange); }
.area-card h3 { margin: 0; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; line-height: 1.25; color: var(--brand-navy); }
@media (max-width: 900px) { .area-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .area-grid { grid-template-columns: 1fr; } }

.job-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem; margin-top: 1.6rem; }
.job-filters select { font: inherit; font-size: 0.95rem; padding: 0.65rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-pill); background: #fff; color: var(--ink-900); min-width: 200px; cursor: pointer; }
.job-filters select:focus { outline: none; border-color: var(--evolue-orange); }
.job-count { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; margin-left: auto; }
.jobs-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.8rem; }
@media (max-width: 980px) { .jobs-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .jobs-list { grid-template-columns: 1fr; } }
.job-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.job-card__area { align-self: flex-start; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--evolue-orange); background: rgba(243,156,18,0.1); border-radius: var(--radius-pill); padding: 0.3rem 0.7rem; margin-bottom: 0.8rem; }
.job-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; color: var(--ink-900); margin: 0 0 0.6rem; }
.job-card__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.8rem; }
.job-card__meta span { font-size: 0.78rem; color: var(--text-muted); background: var(--surface-soft); border: 1px solid var(--line); border-radius: 6px; padding: 0.22rem 0.55rem; }
.job-card__meta .job-card__loc { color: var(--brand-navy); font-weight: 600; }
.job-card p { flex: 1; color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; margin: 0 0 1.1rem; }
.job-card .btn { align-self: flex-start; }
.job-empty { margin-top: 1.6rem; padding: 1.4rem 1.6rem; border: 1px dashed var(--line); border-radius: 14px; background: #fff; color: var(--text-muted); text-align: center; }
.job-reforco { margin-top: 1.6rem; text-align: center; color: var(--text-muted); }

.proc-steps { list-style: none; margin: 2.2rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; counter-reset: none; }
.proc-steps li { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.6rem; box-shadow: var(--shadow-sm); position: relative; }
.proc-steps__n { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--brand-navy); color: #fff; font-family: var(--font-head); font-weight: 600; margin-bottom: 0.9rem; }
.proc-steps h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--ink-900); margin: 0 0 0.4rem; }
.proc-steps p { margin: 0; color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; }
@media (max-width: 860px) { .proc-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .proc-steps { grid-template-columns: 1fr; } }

.depo-people { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.6rem; box-shadow: var(--shadow-sm); }
.depo-people__avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-navy), #3a3a72); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; margin-bottom: 1rem; }
.depo-people blockquote { margin: 0 0 1rem; color: var(--text-muted); font-style: italic; }
.depo-people figcaption strong { display: block; font-family: var(--font-head); color: var(--ink-900); }
.depo-people figcaption span { color: var(--text-muted); font-size: 0.85rem; }

/* Vagas - form do modal expandido */
.vaga-form select { font: inherit; font-weight: 400; font-size: 0.9rem; padding: 0.55rem 0.7rem; border: 1px solid #d8dee7; border-radius: 8px; background: #fff; color: var(--ink-900); }
.vaga-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
@media (max-width: 480px) { .vaga-form__row { grid-template-columns: 1fr; } }
.vaga-consent { flex-direction: row !important; align-items: flex-start; gap: 0.5rem !important; font-weight: 400 !important; font-size: 0.8rem !important; color: var(--text-muted) !important; line-height: 1.4; }
.vaga-consent input { width: auto; margin-top: 2px; accent-color: var(--evolue-orange); }
.vaga-consent a { color: var(--evolue-orange); }

/* ===== Sobre v3 - diagramação editorial + fontes menores ===== */
.about-hero__sub { font-size: 0.98rem; line-height: 1.6; color: var(--text-muted); max-width: 560px; margin: 0; }
.about-page .container { max-width: 1100px; }
.about-block { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(1.8rem, 5vw, 4.5rem); align-items: start; }
.about-block__head { margin: 0; }
.about-block__head .eyebrow { display: block; margin-bottom: 0.55rem; }
.about-block__head h2 { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.45rem, 2.6vw, 2rem); line-height: 1.16; color: var(--ink-900); margin: 0; }
.about-block__body { max-width: 60ch; }
.about-block__body p { font-size: 0.94rem; line-height: 1.75; color: var(--text-muted); margin: 0 0 1.05rem; }
.about-block__body p:last-child { margin-bottom: 0; }
.about-block__body .cred-chips, .about-block__body .func-list { margin-top: 1.5rem; }
.about-360 { color: var(--evolue-orange); }
@media (max-width: 860px) {
  .about-block { grid-template-columns: 1fr; gap: 1rem; }
  .about-block__head h2 { font-size: 1.4rem; }
}
/* destaques recalibrados, mais sóbrios */
.about-master { font-family: var(--font-head); font-weight: 400; font-size: clamp(1.3rem, 2.6vw, 1.85rem); line-height: 1.3; color: var(--ink-900); max-width: 820px; margin: 2.6rem auto 0; text-align: center; padding-top: 2rem; border-top: 1px solid var(--line); }
.about-master strong { display: block; color: var(--evolue-orange); font-weight: 600; margin-top: 0.35rem; }
.about-turn { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.15rem, 2.2vw, 1.5rem); color: var(--brand-navy); margin: 1.3rem 0; padding-left: 1rem; border-left: 3px solid var(--evolue-orange); }
.about-page .numbers-row { justify-content: space-between; gap: clamp(1.2rem, 3vw, 2.5rem); margin-top: 2.8rem; }
.about-page .numstat__v { font-size: clamp(2.4rem, 4.5vw, 3.4rem); }

/* ===== Resultados v3 - hero alto, números grandes, diferencial interativo, reconhecimento ===== */
.res-hero.hero-banner--tall { min-height: 640px; }
@media (max-width: 760px){ .res-hero.hero-banner--tall { min-height: 560px; } }

/* números maiores + leve realce ao contar */
.numbers-row--xl { gap: clamp(2rem, 5vw, 5rem); }
.res-page .numstat__v { font-size: clamp(3.2rem, 7vw, 5.8rem); font-weight: 300; color: var(--brand-navy); transition: color .4s ease; }
.res-page .numstat__v.is-counting { color: var(--evolue-orange); }
.res-page .numstat { transition: transform .3s ease; }
.res-page .numstat:hover { transform: translateY(-5px); }
.res-page .numstat:hover .numstat__v { color: var(--evolue-orange); }

/* O diferencial - boxes de dados que flutuam */
.diff-viz { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; min-height: 320px; align-content: center; }
.diff-card { background: linear-gradient(150deg, rgba(255,255,255,0.95), rgba(247,249,252,0.9)); border: 1px solid var(--line); border-radius: 16px; padding: 1.1rem 1.2rem; box-shadow: 0 14px 34px rgba(20,24,56,0.1); display: flex; flex-direction: column; gap: 0.5rem; animation: diffFloat 6s ease-in-out infinite; transition: transform .3s ease, box-shadow .3s ease; }
.diff-card:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 22px 48px rgba(20,24,56,0.18); }
.diff-card--a { animation-delay: 0s; }
.diff-card--b { animation-delay: 1.2s; transform: translateY(14px); }
.diff-card--c { animation-delay: .6s; }
.diff-card--d { animation-delay: 1.8s; transform: translateY(14px); }
.diff-card__top { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.diff-card__label { font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; color: var(--text-muted); }
.diff-card__trend { font-size: 0.72rem; line-height: 1; }
.diff-card__trend--up { color: var(--evolue-green); }
.diff-card__trend--down { color: #c0392b; }
.diff-card__val { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--brand-navy); line-height: 1; }
.diff-card__sub { font-size: 0.74rem; color: var(--text-muted); }
.diff-bar { display: block; height: 7px; border-radius: 99px; background: rgba(20,24,56,0.08); overflow: hidden; }
.diff-bar i { display: block; height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--evolue-orange), #f6b352); animation: diffFill 1.8s cubic-bezier(.22,1,.36,1) forwards; animation-delay: .3s; }
.diff-bar--down i { background: linear-gradient(90deg, #6c7a93, #aab4c6); }
@keyframes diffFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.diff-card--b, .diff-card--d { } /* baseline offset handled inline above via transform; float overrides */
@keyframes diffFill { from { width: 0; } to { width: var(--w); } }
@media (prefers-reduced-motion: reduce) { .diff-card { animation: none; } .diff-bar i { animation: none; width: var(--w); } }
@media (max-width: 900px) { .diff-viz { margin-top: 1.5rem; } }
@media (max-width: 420px) { .diff-viz { grid-template-columns: 1fr; } }

/* Reconhecimento - imagem de um lado, texto do outro, imagem maior */
.recon-split__media { background: linear-gradient(160deg, #fff, var(--surface-soft)); border: 1px solid var(--line); border-radius: 22px; padding: clamp(2rem, 5vw, 3.5rem); display: grid; place-items: center; box-shadow: var(--shadow-md); }
.recon-split__media img { width: 100%; max-width: 360px; height: auto; }
@media (max-width: 820px) { .recon-split { grid-template-columns: 1fr; } .recon-split__media { order: -1; } }

/* ===== Vagas v3 - hero em cor, trilha de crescimento, harmonia, botões ===== */
.vagas-hero .eyebrow { display: inline-block; margin-bottom: 0.5rem; }
.vagas-hero__sub { font-size: 0.98rem; line-height: 1.62; color: #5b6573; max-width: 540px; margin: 0.9rem 0 0; }
.vagas-hero .lp-hero__cta { margin-top: 1.7rem; }

/* harmonia tipográfica da página */
.vagas-page .lp-narr h2 { font-size: clamp(1.45rem, 2.7vw, 2rem); line-height: 1.18; }
.vagas-page .numbers-head h2 { font-size: clamp(1.5rem, 2.8vw, 2.05rem); }
.func-list--lg span { padding: 0.6rem 1.15rem; font-size: 0.92rem; }

/* botões mais legíveis na página */
.vagas-page .btn--ghost { border-color: rgba(20,24,56,0.3); color: var(--brand-navy); background: rgba(255,255,255,0.65); }
.vagas-page .btn--ghost:hover { border-color: var(--brand-navy); color: #fff; background: var(--brand-navy); }

/* Crescimento - trilha interativa */
.grow-hint { font-size: 0.8rem; color: var(--text-muted); font-style: italic; margin: 0.9rem 0 0; }
.grow-track { display: flex; flex-direction: column; gap: 1.1rem; }
.grow-step { position: relative; display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.1rem; box-shadow: var(--shadow-sm); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.grow-step:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: var(--evolue-orange); }
.grow-step:not(:last-child)::after { content: ''; position: absolute; left: calc(1.1rem + 20px); top: calc(1rem + 42px); width: 2px; height: 1.1rem; background: var(--line); }
.grow-step__dot { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-navy); color: #fff; transition: background .28s ease, transform .28s ease; }
.grow-step:hover .grow-step__dot { background: var(--evolue-orange); transform: scale(1.08) rotate(-3deg); }
.grow-step__dot svg { width: 20px; height: 20px; }
.grow-step__c h4 { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink-900); margin: 0 0 0.25rem; }
.grow-step__c p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.45; }

/* ===== Sobre v4 - hero com cor de fundo, caixa mais fechada, subheadline menor ===== */
.about-hero { background: linear-gradient(170deg, #eef1f8 0%, #f6f8fc 100%); border-bottom: 1px solid var(--line); }
.about-page .about-hero .container { max-width: 720px; }
.about-hero__h1 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); }
.about-hero__aff { font-size: clamp(1.2rem, 2.3vw, 1.6rem); }
.about-hero__sub { font-size: 0.92rem; }

/* ===== Resultados v4 - segunda seção: números em uma única linha ===== */
.res-page .numbers-row--xl { display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: flex-start; gap: clamp(0.6rem, 2vw, 2rem); }
.res-page .numbers-row--xl .numstat { flex: 1 1 0; max-width: none; min-width: 0; position: relative; padding-inline: clamp(0.4rem, 1.2vw, 1rem); }
.res-page .numbers-row--xl .numstat + .numstat::before { content: ''; position: absolute; left: 0; top: 8%; height: 60%; width: 1px; background: var(--line); }
.res-page .numbers-row--xl .numstat__v { font-size: clamp(1.6rem, 3.4vw, 3rem); white-space: nowrap; }
.res-page .numbers-row--xl .numstat__l { font-size: 0.72rem; }
@media (max-width: 760px) {
  .res-page .numbers-row--xl { flex-wrap: wrap; justify-content: center; gap: 1.6rem; }
  .res-page .numbers-row--xl .numstat { flex: 0 0 40%; }
  .res-page .numbers-row--xl .numstat + .numstat::before { display: none; }
}

/* ===== numbers-row em uma única linha (genérico) ===== */
.numbers-row--line { display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: flex-start; gap: clamp(0.6rem, 2vw, 2rem); }
.numbers-row--line .numstat { flex: 1 1 0; max-width: none; min-width: 0; position: relative; padding-inline: clamp(0.4rem, 1.2vw, 1rem); }
.numbers-row--line .numstat + .numstat::before { content: ''; position: absolute; left: 0; top: 8%; height: 60%; width: 1px; background: var(--line); }
.numbers-row--line .numstat__v { font-size: clamp(1.6rem, 3.4vw, 3rem); white-space: nowrap; }
.numbers-row--line .numstat__l { font-size: 0.72rem; }
@media (max-width: 760px) {
  .numbers-row--line { flex-wrap: wrap; justify-content: center; gap: 1.6rem; }
  .numbers-row--line .numstat { flex: 0 0 40%; }
  .numbers-row--line .numstat + .numstat::before { display: none; }
}

/* ===== Governança - blocos animados (sec4) + botões centralizados (sec5) ===== */
.ev-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.ev-block { display: flex; align-items: center; gap: 0.7rem; background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 0.85rem 1rem; box-shadow: var(--shadow-sm); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--brand-navy); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.ev-block:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--evolue-orange); }
.ev-block__ico { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 9px; background: rgba(243,156,18,0.12); transition: background .28s ease, transform .28s ease; }
.ev-block:hover .ev-block__ico { background: var(--evolue-orange); transform: scale(1.08); }
.ev-block__ico svg { width: 18px; height: 18px; color: var(--evolue-orange); transition: color .28s ease; }
.ev-block:hover .ev-block__ico svg { color: #fff; }
@media (max-width: 520px) { .ev-blocks { grid-template-columns: 1fr; } }
.gov-page .lp-hero__cta { justify-content: center; }

/* ===== Rede Credenciada v2 ===== */
.rede-page .hero__left .eyebrow { display: inline-block; margin-bottom: 0.7rem; }
.rede-page .hero .lp-hero__cta { margin-top: 1.4rem; }
.lp-note { max-width: 760px; margin: 1.8rem auto 0; text-align: center; color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* dimensão da rede */
.net-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 2.2rem; }
.net-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.6rem 1.3rem; box-shadow: var(--shadow-sm); text-align: center; transition: transform .28s ease, box-shadow .28s ease; }
.net-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.net-card__v { display: block; font-family: var(--font-head); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--brand-navy); line-height: 1; }
.net-card__v--txt { font-size: clamp(1.2rem, 2.4vw, 1.6rem); color: var(--evolue-orange); }
.net-card__l { display: block; margin-top: 0.7rem; font-size: 0.82rem; color: var(--text-muted); line-height: 1.45; }
.net-card__ico { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 13px; background: rgba(243,156,18,0.12); margin-bottom: 0.4rem; }
.net-card__ico svg { width: 26px; height: 26px; color: var(--evolue-orange); }
.net-card--dna { background: linear-gradient(160deg, #fff, var(--surface-tint)); border-color: rgba(243,156,18,0.5); }
@media (max-width: 900px) { .net-stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .net-stats { grid-template-columns: 1fr; } }

/* simulador de cobertura */
.cov { max-width: 760px; margin: 2rem auto 0; }
.cov__bar { display: flex; gap: 0.7rem; }
.cov__bar input { flex: 1; font: inherit; padding: 0.9rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius-pill); background: #fff; }
.cov__bar input:focus { outline: none; border-color: var(--evolue-orange); }
.cov__bar .btn { white-space: nowrap; }
.cov__result { margin-top: 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.6rem; box-shadow: var(--shadow-md); animation: covIn .35s ease; }
@keyframes covIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.cov__headline { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--ink-900); margin: 0 0 1rem; }
.cov__card { border: 1px solid var(--line); border-radius: 13px; padding: 1.1rem 1.2rem; background: var(--surface-soft); display: flex; flex-direction: column; gap: 0.3rem; }
.cov__card--mobile { border-color: rgba(243,156,18,0.5); background: linear-gradient(150deg, #fff, var(--surface-tint)); }
.cov__card-tag { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--evolue-orange); }
.cov__card strong { font-family: var(--font-head); color: var(--ink-900); }
.cov__card span { color: var(--text-muted); font-size: 0.9rem; }
.cov__note { margin: 1.1rem 0 0; color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; }
.cov__demo { text-align: center; margin: 1rem 0 0; font-size: 0.8rem; color: var(--text-muted); font-style: italic; }

/* steps 5 colunas */
.proc-steps--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1000px) { .proc-steps--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .proc-steps--5 { grid-template-columns: 1fr 1fr; } }

/* virada do padrão de qualidade */
.rede-turn { margin-top: 2rem; background: linear-gradient(150deg, var(--brand-navy), #3a3a72); color: #fff; border-radius: 20px; padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow-md); }
.rede-turn p { margin: 0; font-size: 1.05rem; line-height: 1.6; color: rgba(255,255,255,0.92); max-width: 880px; }
.rede-turn strong { color: #fff; }
.rede-msg { font-family: var(--font-head); font-weight: 600; color: var(--ink-900); margin: 1.3rem 0 0; }
.concierge-art { min-height: 260px; }

/* ===== Landing pages de campanha - triagem ===== */
.triage { gap: 1.6rem; }
.triage-card { display: flex; flex-direction: column; align-items: flex-start; gap: 0.55rem; text-decoration: none; background: #fff; border: 1.5px solid var(--line); border-radius: 18px; padding: 2rem; box-shadow: var(--shadow-sm); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.triage-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--evolue-orange); }
.triage-card__ico { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: rgba(243,156,18,0.12); transition: background .28s ease, transform .28s ease; }
.triage-card:hover .triage-card__ico { background: var(--evolue-orange); transform: scale(1.06); }
.triage-card__ico svg { width: 28px; height: 28px; color: var(--evolue-orange); transition: color .28s ease; }
.triage-card:hover .triage-card__ico svg { color: #fff; }
.triage-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; color: var(--ink-900); margin: 0.4rem 0 0; }
.triage-card p { color: var(--text-muted); margin: 0; flex: 1; }
.triage-card__cta { font-family: var(--font-head); font-weight: 600; color: var(--evolue-orange); margin-top: 0.9rem; }
.triage-proof { text-align: center; margin: 2.2rem 0 0; color: var(--text-muted); font-weight: 600; }
.triage-help { text-align: center; margin: 0.9rem 0 0; color: var(--text-muted); }
.triage-help a { color: var(--evolue-orange); font-weight: 600; }
.ponto-hook { max-width: 720px; margin-inline: auto; text-align: center; }
.ponto-hook .lead { margin-inline: auto; }

/* ===== Números em linha - proporção maior ===== */
.numbers-row--line .numstat__v { font-size: clamp(2rem, 4.2vw, 3.6rem); }
.numbers-row--line .numstat__l { font-size: 0.78rem; }

/* ===== Hub de links internos (não público) ===== */
.lh-groups { margin-top: 2.4rem; display: flex; flex-direction: column; gap: 2.2rem; }
.lh-group__head h2 { font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; color: var(--ink-900); margin: 0 0 0.2rem; }
.lh-group__head p { color: var(--text-muted); font-size: 0.9rem; margin: 0 0 1rem; }
.lh-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.lh-item { display: flex; align-items: center; gap: 1rem; justify-content: space-between; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.2rem; box-shadow: var(--shadow-sm); transition: border-color .2s, box-shadow .2s; }
.lh-item:hover { border-color: var(--evolue-orange); box-shadow: var(--shadow-md); }
.lh-item__main h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--ink-900); margin: 0 0 0.15rem; }
.lh-item__main p { color: var(--text-muted); font-size: 0.86rem; margin: 0 0 0.3rem; }
.lh-url { font-family: monospace; font-size: 0.82rem; color: var(--brand-navy); text-decoration: none; word-break: break-all; }
.lh-url:hover { color: var(--evolue-orange); }
.lh-item__act { display: flex; align-items: center; gap: 0.5rem; flex: none; }
.lh-item__act .btn { padding: 0.5rem 0.9rem; font-size: 0.85rem; }
.lh-copy { font: inherit; font-size: 0.8rem; font-weight: 600; color: var(--brand-navy); background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.45rem 0.85rem; cursor: pointer; transition: background .2s, color .2s; }
.lh-copy:hover { background: #eef1f8; }
.lh-copy.is-ok { background: var(--evolue-green); color: #fff; border-color: var(--evolue-green); }
@media (max-width: 620px) { .lh-item { flex-direction: column; align-items: flex-start; } }

/* ===== Home - hero com imagem no fundo da seção, texto sobre as pessoas, cards ao redor ===== */
.hero--databg { position: relative; min-height: clamp(780px, 92vh, 1020px); background-size: cover; background-position: center 82%; background-repeat: no-repeat; display: block; }
/* véu claro no topo p/ leitura do texto sobre a foto */
.hero--databg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(236,239,246,0.95) 0%, rgba(236,239,246,0.78) 26%, rgba(236,239,246,0.25) 46%, rgba(236,239,246,0) 62%); pointer-events: none; z-index: 0; }
.hero--databg .container { position: relative; z-index: 1; padding-top: clamp(2.2rem, 6vw, 4rem); }
.hs-head { max-width: 860px; margin: 0 auto; text-align: center; }
.hs-head .eyebrow { display: inline-block; margin-bottom: 0.7rem; }
.hs-head h1 { font-family: var(--font-head); font-weight: 500; font-size: clamp(2.1rem, 4.4vw, 3.5rem); line-height: 1.08; color: #2f3a4a; margin: 0; }
.hs-head p { font-size: 1.05rem; color: #3f4a5a; line-height: 1.6; margin: 1.1rem auto 1.6rem; max-width: 660px; }
.hero-cards { position: absolute; inset: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 1500px; padding-inline: clamp(1.5rem, 4vw, 3.5rem); z-index: 2; pointer-events: none; }
.hdc { position: absolute; pointer-events: auto; width: max-content; max-width: 180px; display: flex; flex-direction: column; gap: 0.1rem; background: linear-gradient(140deg, rgba(255,255,255,0.9), rgba(255,255,255,0.66)); backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%); border: 1px solid rgba(255,255,255,0.85); border-radius: 16px; padding: 0.85rem 1.05rem; box-shadow: 0 16px 42px rgba(20,24,56,0.18); animation: hdcFloat 7s ease-in-out infinite; transition: transform .3s ease, box-shadow .3s ease; }
.hdc:hover { transform: translateY(-7px) scale(1.05); box-shadow: 0 26px 58px rgba(20,24,56,0.26); }
.hdc__ico { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: rgba(243,156,18,0.16); margin-bottom: 0.3rem; }
.hdc__ico svg { width: 17px; height: 17px; color: var(--evolue-orange); }
.hdc__v { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.4rem, 2.1vw, 1.9rem); color: var(--brand-navy); line-height: 1; }
.hdc__l { font-size: 0.76rem; color: var(--text-muted); line-height: 1.3; }
/* cards ao redor das pessoas (metade inferior da seção) */
.hdc--1 { top: 46%; left: 1%; animation-delay: 0s; }
.hdc--2 { top: 44%; right: 2%; animation-delay: 1.1s; }
.hdc--3 { bottom: 8%; left: 6%; animation-delay: .5s; }
.hdc--4 { top: 66%; right: 7%; animation-delay: 1.7s; }
.hdc--5 { bottom: 9%; right: 30%; animation-delay: .9s; }
@keyframes hdcFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@media (prefers-reduced-motion: reduce) { .hdc { animation: none; } }
@media (max-width: 1080px) { .hdc { max-width: 150px; padding: 0.65rem 0.8rem; } }
@media (max-width: 860px) {
  .hero--databg { min-height: 56vh; padding: 1.6rem 0 2.4rem; background-position: center 72%; display: flex; flex-direction: column; }
  .hero--databg::before { background: linear-gradient(180deg, rgba(236,239,246,0.97) 0%, rgba(236,239,246,0.82) 32%, rgba(236,239,246,0.5) 58%, rgba(236,239,246,0.92) 100%); }
  .hs-head { text-align: center; }
  .hs-head p { font-size: 0.95rem; margin-bottom: 1.1rem; }
  .hero-cards { position: static; transform: none; margin-top: auto; padding-top: 1.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; padding-inline: clamp(1rem, 4vw, 2.2rem); }
  .hdc { position: static; max-width: none; width: auto; animation: none; display: grid; grid-template-columns: auto 1fr; grid-template-areas: "ico val" "ico lab"; column-gap: 0.6rem; row-gap: 0.05rem; align-items: center; padding: 0.7rem 0.8rem; background: linear-gradient(140deg, rgba(255,255,255,0.97), rgba(255,255,255,0.88)); }
  .hdc__ico { grid-area: ico; margin-bottom: 0; }
  .hdc__v { grid-area: val; font-size: 1.25rem; }
  .hdc__l { grid-area: lab; font-size: 0.72rem; }
  .hdc--5 { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .hero--databg { min-height: 60vh; }
  .hero-cards { grid-template-columns: 1fr; }
  .hdc--5 { grid-column: auto; }
}

/* ===== Medicina do Trabalho Brasília - coluna única legível (sem arte lateral) ===== */
.lp-readable { max-width: 860px; }
.lp-readable .lp-narr { max-width: none; margin-inline: 0; text-align: left; }
.lp-readable .lp-narr h2 { max-width: 720px; }
.lp-readable .lp-narr .lead { max-width: 760px; }
.lp-readable .unit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 1.4rem; }
@media (max-width: 700px) { .lp-readable .unit-cards { grid-template-columns: 1fr; } }

/* ===== /agendamento - portal da clínica (página oculta) ===== */
.agd-body { background: var(--surface-soft); }
.agd-topbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.8rem clamp(1rem, 4vw, 2rem); background: #fff; border-bottom: 1px solid var(--line); }
.agd-topbar .logo__img { height: 30px; }
.agd-topbar__wa { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--evolue-green-dark, #1f7a3d); text-decoration: none; }
.agd-topbar__wa svg { width: 18px; height: 18px; }
.agd-hero { background-size: cover; background-position: center; min-height: clamp(300px, 42vh, 440px); display: flex; align-items: flex-end; }
.agd-hero__inner { max-width: 620px; padding: clamp(1.5rem, 5vw, 3rem) clamp(1.2rem, 5vw, 2.5rem); color: #fff; }
.agd-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(8px); color: #fff; padding: 0.35rem 0.85rem; border-radius: var(--radius-pill); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.02em; }
.agd-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--evolue-orange); animation: hdcFloat 2.4s ease-in-out infinite; }
.agd-hero__inner h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.7rem, 5vw, 2.6rem); line-height: 1.14; color: #fff; margin: 0.9rem 0 0.5rem; }
.agd-hero__inner h1 span { color: var(--evolue-orange); }
.agd-hero__inner p { color: rgba(255,255,255,0.82); font-size: 0.95rem; margin: 0; max-width: 420px; }
.agd-wrap { max-width: 560px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 1.5rem) 3rem; margin-top: -1.5rem; position: relative; z-index: 2; }
.agd-actions { display: flex; flex-direction: column; gap: 0.8rem; }
.agd-action { width: 100%; display: flex; align-items: center; gap: 1rem; text-align: left; padding: 1.15rem 1.2rem; border-radius: 18px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-md); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.agd-action:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(20,24,56,0.16); border-color: rgba(243,156,18,0.4); }
.agd-action--primary { background: linear-gradient(150deg, var(--brand-navy), #3a3a72); border-color: transparent; }
.agd-action__ico { width: 48px; height: 48px; flex: none; display: grid; place-items: center; border-radius: 14px; background: var(--evolue-orange); color: #fff; }
.agd-action__ico svg { width: 24px; height: 24px; }
.agd-action__ico--soft { background: rgba(43,42,94,0.08); color: var(--brand-navy); }
.agd-action__txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.15rem; }
.agd-action__txt strong { font-family: var(--font-head); font-size: 1rem; color: var(--ink-900); }
.agd-action__txt span { font-size: 0.82rem; color: var(--text-muted); }
.agd-action--primary .agd-action__txt strong { color: #fff; }
.agd-action--primary .agd-action__txt span { color: rgba(255,255,255,0.7); }
.agd-action__arr { width: 20px; height: 20px; flex: none; color: var(--text-muted); }
.agd-action--primary .agd-action__arr { color: rgba(255,255,255,0.6); }
.agd-info { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1rem; }
.agd-info__card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.2rem; box-shadow: var(--shadow-sm); }
.agd-info__ico { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: rgba(43,42,94,0.08); color: var(--brand-navy); margin-bottom: 0.7rem; }
.agd-info__ico--orange { background: rgba(243,156,18,0.14); color: var(--evolue-orange); }
.agd-info__ico svg { width: 19px; height: 19px; }
.agd-info__card strong { display: block; font-family: var(--font-head); font-size: 0.9rem; color: var(--ink-900); margin-bottom: 0.2rem; }
.agd-info__card p { margin: 0; font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.agd-contact { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.2rem; box-shadow: var(--shadow-sm); margin-top: 0.8rem; }
.agd-contact__label { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-900); }
.agd-contact__links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.7rem; }
.agd-contact__links a { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); text-decoration: none; }
.agd-contact__links a:hover { color: var(--brand-navy); }
.agd-contact__links svg { width: 15px; height: 15px; }
.agd-foot { text-align: center; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 2rem; }

/* ===== /agendamento - fluxo em etapas ===== */
.agd-flow { position: fixed; inset: 0; z-index: 1200; background: var(--surface-soft); overflow-y: auto; }
.agd-flow__top { display: flex; align-items: center; gap: 1rem; padding: 0.8rem clamp(1rem, 4vw, 2rem); background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 2; }
.agd-flow__top .logo__img { height: 28px; }
.agd-flow__close { width: 38px; height: 38px; border: 1px solid var(--line); background: #fff; border-radius: 10px; font-size: 1.5rem; line-height: 1; color: var(--text-muted); cursor: pointer; }
.agd-flow__inner { max-width: 560px; margin: 0 auto; padding: 1.4rem clamp(1rem, 4vw, 1.5rem) 3rem; }
.agd-steps { list-style: none; display: flex; gap: 0.3rem; padding: 0; margin: 0 0 1.6rem; }
.agd-steps li { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.35rem; font-size: 0.68rem; font-weight: 600; color: var(--text-muted); text-align: center; position: relative; }
.agd-steps li span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #fff; border: 1.5px solid var(--line); color: var(--text-muted); font-family: var(--font-head); }
.agd-steps li.is-current span { background: var(--brand-navy); border-color: var(--brand-navy); color: #fff; }
.agd-steps li.is-done span { background: var(--evolue-green); border-color: var(--evolue-green); color: #fff; }
.agd-steps li.is-current { color: var(--brand-navy); }
.agd-panel { display: none; animation: covIn .3s ease; }
.agd-panel.is-active { display: block; }
.agd-panel h2 { font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; color: var(--ink-900); margin: 0 0 0.2rem; }
.agd-panel__sub { color: var(--text-muted); font-size: 0.9rem; margin: 0 0 1.2rem; }
.agd-svc-list { display: flex; flex-direction: column; gap: 0.6rem; }
.agd-svc { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; text-align: left; padding: 1rem 1.1rem; border: 1.5px solid var(--line); border-radius: 14px; background: #fff; cursor: pointer; transition: border-color .2s, box-shadow .2s, transform .15s; }
.agd-svc:hover { border-color: rgba(243,156,18,0.5); }
.agd-svc.is-on { border-color: var(--evolue-orange); box-shadow: 0 0 0 3px rgba(243,156,18,0.15); }
.agd-svc__name { font-family: var(--font-head); font-weight: 600; color: var(--ink-900); font-size: 0.95rem; }
.agd-svc__price { font-family: var(--font-head); font-weight: 700; color: var(--brand-navy); white-space: nowrap; }
.agd-add { display: flex; align-items: center; gap: 0.55rem; margin-top: 1rem; font-size: 0.9rem; color: var(--ink-900); }
.agd-add input { width: 18px; height: 18px; accent-color: var(--evolue-orange); }
.agd-add em { font-style: normal; color: var(--text-muted); }
.agd-note { font-size: 0.8rem; color: var(--text-muted); margin: 0.6rem 0 0; }
.agd-flow__nav { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-top: 1.6rem; }
.agd-flow__nav .btn { min-width: 120px; }
.agd-summary { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.1rem 1.2rem; margin-bottom: 1rem; }
.agd-summary__row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; padding: 0.35rem 0; border-bottom: 1px dashed var(--line); }
.agd-summary__row span:first-child { color: var(--text-muted); }
.agd-summary__row span:last-child { color: var(--ink-900); font-weight: 500; text-align: right; }
.agd-summary__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 0.7rem; padding-top: 0.7rem; }
.agd-summary__total span { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.agd-summary__total strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--evolue-orange); }

/* ===== /agendamento v2 - briefing PF (hero, trust, unidades, abas, complementares, confirmação) ===== */
.agd-hero--lg { min-height: clamp(480px, 72vh, 640px); }
.agd-cta { margin-top: 1.4rem; font-size: 1.02rem; padding: 0.9rem 1.8rem; }
.agd-trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.3rem; margin-top: 1.4rem; }
.agd-trust span { display: inline-flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.82); font-size: 0.78rem; }
.agd-trust svg { width: 15px; height: 15px; color: var(--evolue-orange); }
.agd-reslink { display: inline-block; margin-top: 1.3rem; background: none; border: 0; color: rgba(255,255,255,0.7); font-size: 0.85rem; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; padding: 0; }
.agd-reslink:hover { color: #fff; }

/* unidades */
.agd-units { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.agd-unit { text-align: left; background: #fff; border: 1.5px solid var(--line); border-radius: 16px; padding: 1.2rem; cursor: pointer; display: flex; flex-direction: column; gap: 0.3rem; transition: border-color .2s, box-shadow .2s; }
.agd-unit:hover { border-color: rgba(243,156,18,0.5); }
.agd-unit.is-on { border-color: var(--evolue-orange); box-shadow: 0 0 0 3px rgba(243,156,18,0.15); }
.agd-unit strong { font-family: var(--font-head); font-size: 1.05rem; color: var(--ink-900); }
.agd-unit span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }
.agd-unit__h { color: var(--brand-navy) !important; font-weight: 600; margin-top: 0.2rem; }
@media (max-width: 520px) { .agd-units { grid-template-columns: 1fr; } }

/* abas de serviço */
.agd-tabs { display: flex; gap: 0.4rem; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.25rem; margin-bottom: 1.1rem; }
.agd-tab { flex: 1; border: 0; background: none; border-radius: var(--radius-pill); padding: 0.55rem 0.8rem; font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--text-muted); cursor: pointer; }
.agd-tab.is-on { background: var(--brand-navy); color: #fff; }
.agd-tabpanel { display: none; }
.agd-tabpanel.is-active { display: block; }
.agd-note--soft { background: rgba(43,42,94,0.05); border-radius: 10px; padding: 0.6rem 0.8rem; }
.agd-inline-tab { border: 0; background: none; color: var(--evolue-orange); font: inherit; font-weight: 600; cursor: pointer; padding: 0; text-decoration: underline; }
.agd-help { margin-top: 0.8rem; }
.agd-help summary { cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--brand-navy); }
.agd-help p { font-size: 0.85rem; color: var(--text-muted); margin: 0.5rem 0 0; line-height: 1.5; }

.agd-svc__main { display: flex; flex-direction: column; gap: 0.15rem; }
.agd-svc__desc { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; }
.agd-svc--locked { opacity: 0.7; cursor: not-allowed; background: var(--surface-soft); }
.agd-svc__lock { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; }

/* complementares */
.agd-comp-list { display: flex; flex-direction: column; gap: 0.3rem; max-height: 360px; overflow-y: auto; padding-right: 0.2rem; }
.agd-comp { display: flex; align-items: center; gap: 0.7rem; padding: 0.7rem 0.85rem; border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer; }
.agd-comp:hover { border-color: rgba(243,156,18,0.4); }
.agd-comp input { width: 18px; height: 18px; accent-color: var(--evolue-orange); flex: none; }
.agd-comp__name { flex: 1; font-size: 0.88rem; color: var(--ink-900); }
.agd-comp__price { font-family: var(--font-head); font-weight: 600; color: var(--brand-navy); font-size: 0.88rem; }
.agd-flow__nav--stack { flex-direction: column; align-items: stretch; gap: 0.6rem; }
.agd-flow__nav--stack .btn { width: 100%; min-width: 0; }
.agd-backlink { color: var(--text-muted); }

/* confirmação + B2B */
.agd-confirm { text-align: center; }
.agd-confirm__ico { width: 64px; height: 64px; margin: 0 auto 1rem; display: grid; place-items: center; border-radius: 50%; background: rgba(46,158,79,0.12); color: var(--evolue-green); }
.agd-confirm__ico svg { width: 34px; height: 34px; }
.agd-confirm .agd-summary { text-align: left; }
.agd-confirm__list { text-align: left; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.agd-confirm__list p { margin: 0; font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.agd-confirm__list strong { color: var(--ink-900); }
.agd-b2b { text-align: left; margin-top: 1.6rem; background: linear-gradient(150deg, var(--brand-navy), #3a3a72); color: #fff; border-radius: 18px; padding: 1.4rem; }
.agd-b2b strong { display: block; font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 0.5rem; }
.agd-b2b p { color: rgba(255,255,255,0.85); font-size: 0.88rem; line-height: 1.55; margin: 0 0 1rem; }
.agd-b2b .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.agd-b2b .btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* ===== /agendamento - calendário + blocos de horário ===== */
.agd-cal { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1rem 1.1rem 1.2rem; box-shadow: var(--shadow-sm); }
.agd-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.8rem; }
.agd-cal__title { font-family: var(--font-head); font-weight: 600; color: var(--ink-900); font-size: 1rem; text-transform: capitalize; }
.agd-cal__nav { width: 34px; height: 34px; border: 1px solid var(--line); background: #fff; border-radius: 9px; font-size: 1.2rem; line-height: 1; color: var(--brand-navy); cursor: pointer; }
.agd-cal__nav:hover { border-color: var(--evolue-orange); color: var(--evolue-orange); }
.agd-cal__nav:disabled { opacity: 0.35; cursor: not-allowed; }
.agd-cal__week { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 4px; }
.agd-cal__week span { text-align: center; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text-muted); }
.agd-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.agd-cal__cell { aspect-ratio: 1 / 1; border: 1px solid transparent; border-radius: 10px; background: var(--surface-soft); color: var(--ink-900); font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; cursor: pointer; transition: background .15s, border-color .15s, color .15s; }
.agd-cal__cell:hover:not(:disabled) { border-color: var(--evolue-orange); }
.agd-cal__cell.is-empty { background: none; border: 0; cursor: default; }
.agd-cal__cell.is-off { background: none; color: #c4ccd8; cursor: not-allowed; }
.agd-cal__cell.is-on { background: var(--brand-navy); color: #fff; border-color: var(--brand-navy); }
.agd-slots { margin-top: 1.2rem; }
.agd-slots__label { font-family: var(--font-head); font-weight: 600; color: var(--ink-900); font-size: 0.9rem; margin: 0 0 0.6rem; }
.agd-slots__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 0.5rem; }
.agd-slot { padding: 0.7rem 0.4rem; border: 1.5px solid var(--line); border-radius: 11px; background: #fff; font-family: var(--font-head); font-weight: 600; color: var(--brand-navy); cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
.agd-slot:hover { border-color: var(--evolue-orange); }
.agd-slot.is-on { background: var(--evolue-orange); border-color: var(--evolue-orange); color: #fff; }
.agd-slots__empty { grid-column: 1 / -1; color: var(--text-muted); font-size: 0.88rem; margin: 0; }

/* home2 - cards da hero em modo "rótulo de solução" (sem números) */
.hero-cards--labels .hdc__v { font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.1; }

/* ===== Sobre v5 - hero padrão, números maiores, selos, diretoria sofisticada ===== */
.about-hero2 .eyebrow { color: #ffd9a8; }
.about-hero2 h1 { font-weight: 500; }
.about-hero2__aff { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.2rem, 2.4vw, 1.7rem); color: #fff; margin-top: 0.6rem; }
.about-hero2__aff em { font-style: normal; color: var(--evolue-orange); }

/* número de capítulo nas seções narrativas */
.about-block__head { position: relative; }
.about-block__num { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; color: var(--surface-tint); -webkit-text-stroke: 1px rgba(43,42,94,0.16); margin-bottom: 0.6rem; }
@media (max-width: 860px) { .about-block__num { font-size: 2.2rem; margin-bottom: 0.2rem; } }

/* números maiores */
.about-page .numbers-row { gap: clamp(1.4rem, 4vw, 3rem); }
.about-page .numstat__v { font-size: clamp(3rem, 6vw, 4.6rem); font-weight: 300; color: var(--brand-navy); }
.about-page .numstat__l { font-size: 0.8rem; }

/* selos de reconhecimento em cards */
.seal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 680px; }
.seal-card { display: flex; align-items: center; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.1rem 1.3rem; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.seal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.seal-card__img { width: 78px; flex: none; display: grid; place-items: center; }
.seal-card__img img { max-width: 100%; max-height: 56px; width: auto; }
.seal-card__txt strong { display: block; font-family: var(--font-head); font-weight: 600; color: var(--ink-900); font-size: 1rem; }
.seal-card__txt span { font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 560px) { .seal-grid { grid-template-columns: 1fr; } }

/* diretoria sofisticada */
.dir-band__card { margin: 0; }
.dir-band__photo { position: relative; aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); }
.dir-band__photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(100%) contrast(1.02); transition: filter .4s ease, transform .5s ease; }
.dir-band__card:hover .dir-band__photo img { filter: grayscale(0%); transform: scale(1.04); }
.dir-band__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,25,60,0.55), transparent 45%); opacity: 0; transition: opacity .4s ease; }
.dir-band__card:hover .dir-band__photo::after { opacity: 1; }
.dir-band__role { position: absolute; left: 12px; bottom: 12px; z-index: 1; font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; background: var(--evolue-orange); border-radius: var(--radius-pill); padding: 0.28rem 0.7rem; }
.dir-band__card figcaption { padding: 0.9rem 0.2rem 0; }
.dir-band__card figcaption h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--ink-900); margin: 0 0 0.15rem; }
.dir-band__card figcaption span { font-size: 0.85rem; color: var(--text-muted); }

/* ===== Sobre v6 - subheadline fina, blocos 3/4 dinâmicos, selos maiores, diretoria sanfona ===== */
.about-hero2__aff { font-weight: 400; }

/* Bloco 3 - peças → todo */
.todo-viz { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.9rem; margin: 2.2rem 0 1rem; }
.todo-piece { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; min-width: 116px; padding: 1.2rem 1rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--text-muted); transition: transform .3s ease, box-shadow .3s ease; }
.todo-viz[data-reveal].is-in .todo-piece { animation: covIn .5s ease both; }
.todo-piece:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.todo-piece__ico { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: var(--surface-soft); }
.todo-piece__ico svg { width: 22px; height: 22px; color: #9aa3af; }
.todo-piece--whole { background: linear-gradient(150deg, var(--brand-navy), #3a3a72); color: #fff; border-color: transparent; }
.todo-piece--whole .todo-piece__ico { background: rgba(255,255,255,0.16); }
.todo-piece--whole .todo-piece__ico svg { color: var(--evolue-orange); }
.todo-arrow svg { width: 30px; height: 30px; color: var(--evolue-orange); }
@media (max-width: 560px) { .todo-arrow { transform: rotate(90deg); } }

/* Bloco 4 - rigor (faixa navy + cards) */
.about-rigor { background: linear-gradient(135deg, #1c1b3c 0%, #2b2a5e 60%, #3a3886 100%); color: #fff; border-radius: 0; }
.about-rigor .eyebrow { color: #ffd9a8; }
.about-rigor h2 { color: #fff; }
.about-rigor .lead { color: rgba(255,255,255,0.85); }
.rigor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.8rem; }
.rigor-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); border-radius: 16px; padding: 1.5rem; transition: transform .3s ease, background .3s ease; }
.rigor-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.12); }
.rigor-card__ico { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: rgba(243,156,18,0.18); margin-bottom: 1rem; }
.rigor-card__ico svg { width: 24px; height: 24px; color: var(--evolue-orange); }
.rigor-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: #fff; margin: 0 0 0.4rem; }
.rigor-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.5; margin: 0; }
@media (max-width: 820px) { .rigor-grid { grid-template-columns: 1fr; } }

/* selos maiores, abaixo das logos */
.seal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; max-width: 760px; margin: 1rem auto 0; }
.seal-card { padding: 1.5rem 1.8rem; }
.seal-card__img { width: 110px; }
.seal-card__img img { max-height: 76px; }
.seal-card__txt strong { font-size: 1.1rem; }
@media (max-width: 560px) { .seal-grid { grid-template-columns: 1fr; } .seal-card { padding: 1.1rem 1.2rem; } .seal-card__img { width: 84px; } }
.about-recon { margin-top: 2.8rem; }

/* Diretoria - sanfona horizontal (abre/fecha) */
.dir-acc { display: flex; gap: 10px; height: 440px; margin-top: 2rem; }
.dir-acc--split { height: 430px; margin-top: 0; }

/* Construção "features + arte" (ex.: Reputação Brasília) */
.feat-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center; margin-top: 2.6rem; }
.feat-art { display: flex; align-items: center; justify-content: center; }
.feat-art__badge { width: 100%; min-height: 320px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: clamp(2rem, 5vw, 3.2rem); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.1rem; text-align: center; box-shadow: var(--shadow-md); }
.feat-art__badge svg { width: 40px; height: 40px; color: var(--evolue-orange); }
.feat-art__ring { width: 84px; height: 84px; border-radius: 22px; background: rgba(243,156,18,.12); display: grid; place-items: center; }
.feat-art__badge span { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; line-height: 1.3; color: var(--ink-900); max-width: 280px; }
.feat-rows { display: flex; flex-direction: column; gap: 0.9rem; }
.feat-row { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.15rem 1.25rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.feat-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feat-row__ico { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 13px; background: rgba(243,156,18,.12); display: grid; place-items: center; color: var(--evolue-orange); }
.feat-row__ico svg { width: 22px; height: 22px; }
.feat-row h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.32rem; line-height: 1.15; letter-spacing: 0.01em; color: var(--ink-900); margin: 0 0 0.3rem; }
.feat-row p { color: var(--text-muted); margin: 0; font-size: 0.9rem; line-height: 1.5; }
.feat-art__img { width: 100%; max-width: 420px; height: auto; display: block; filter: drop-shadow(0 22px 44px rgba(20,24,56,.16)); }
.feat-art__img { animation: featFloat 5.5s ease-in-out infinite; }
@keyframes featFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 860px) { .feat-split { grid-template-columns: 1fr; } .feat-art { order: -1; } .feat-art__img { max-width: 300px; margin: 0 auto; } }
@media (prefers-reduced-motion: reduce) { .feat-art__img { animation: none; } }
.dir-acc__item { position: relative; flex: 1; min-width: 0; border-radius: 18px; overflow: hidden; cursor: pointer; background-size: cover; background-position: center top; box-shadow: var(--shadow-md); transition: flex .55s cubic-bezier(.22,1,.36,1); outline: none; }
.dir-acc__item.is-open { flex: 4.2; }
.dir-acc__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,20,48,0.82) 0%, rgba(20,20,48,0.15) 50%, rgba(20,20,48,0.25) 100%); transition: opacity .4s ease; }
.dir-acc__item:not(.is-open) { filter: grayscale(40%); }
.dir-acc__tab { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%) rotate(180deg); writing-mode: vertical-rl; z-index: 2; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: #fff; white-space: nowrap; letter-spacing: 0.02em; transition: opacity .3s ease; }
.dir-acc__item.is-open .dir-acc__tab { opacity: 0; }
.dir-acc__content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.6rem; opacity: 0; transform: translateY(10px); transition: opacity .4s ease .15s, transform .4s ease .15s; }
.dir-acc__item.is-open .dir-acc__content { opacity: 1; transform: none; }
.dir-acc__role { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; background: var(--evolue-orange); border-radius: var(--radius-pill); padding: 0.28rem 0.75rem; margin-bottom: 0.6rem; }
.dir-acc__content h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; color: #fff; margin: 0 0 0.2rem; }
.dir-acc__content p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin: 0; }
@media (max-width: 760px) {
  .dir-acc { flex-direction: column; height: auto; }
  .dir-acc__item { height: 92px; }
  .dir-acc__item.is-open { flex: none; height: 320px; }
  .dir-acc__tab { writing-mode: horizontal-tb; transform: translateX(-50%); bottom: auto; top: 50%; margin-top: -10px; }
}

/* ===== Sobre v7 - sec4 centralizada + sec6 números menores ===== */
.about-rigor .lp-narr { max-width: 720px !important; margin-inline: auto; text-align: center; }
.about-rigor .lp-narr .eyebrow, .about-rigor .lp-narr h2, .about-rigor .lp-narr .lead { margin-inline: auto; }
.about-rigor .lead { color: #fff; }
.about-page .numbers-row--line .numstat__v { font-size: clamp(1.5rem, 3vw, 2.5rem); }
.about-page .numbers-row--line .numstat__l { font-size: 0.74rem; }

/* sec4 - garante subheadline branca (vence .lp-page .lp-narr > .lead) */
.about-rigor .lp-narr .lead { color: #fff; }

/* ===== Home - trilha com legenda à esquerda (didática: topo = colaborador, base = empresa) ===== */
.tl--legend { flex-direction: row; align-items: stretch; gap: clamp(0.8rem, 2vw, 1.8rem); }
.tl__legend { flex: none; width: clamp(120px, 13vw, 168px); display: flex; flex-direction: column; justify-content: space-between; padding: 52px 0; }
.tl--legend .tl__group { align-self: flex-start; text-align: left; }
.tl--legend .tl__items { flex: 1; min-width: 0; }
@media (max-width: 900px) {
  .tl--legend { flex-direction: column; }
  .tl__legend { width: auto; flex-direction: row; justify-content: space-between; gap: 1rem; padding: 0 0 0.6rem; }
}

/* ===== Medicina do Trabalho - plataforma com ícones centralizados ===== */
.mdt-plat .lp-narr { text-align: center; max-width: 820px; margin-inline: auto; }
.mdt-plat .lp-narr .eyebrow, .mdt-plat .lp-narr h2, .mdt-plat .lp-narr .lead { margin-inline: auto; }
.mdt-plat .func-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 1.8rem; }
.mdt-plat .func-grid .modelo-card { text-align: center; padding: 1.7rem 1.1rem; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.mdt-plat .func-grid .modelo-card__ico { margin-inline: auto; margin-bottom: 0.9rem; }
.mdt-plat .func-grid .modelo-card h3 { font-size: 1.02rem; margin: 0; }
@media (max-width: 860px) { .mdt-plat .func-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .mdt-plat .func-grid { grid-template-columns: 1fr; } }

/* ===== Mockup de dashboard Evolue 360 (reutilizável) ===== */
.evo-dash { background: linear-gradient(160deg, #eef1f7, #f6f8fc); border: 1px solid var(--line); border-radius: 18px; padding: 1rem; display: flex; flex-direction: column; gap: 0.7rem; box-shadow: 0 20px 50px rgba(20,24,56,.16); }
.evo-dash__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.55rem; }
.ed-stat { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0.65rem 0.7rem; display: flex; flex-direction: column; gap: 1px; }
.ed-stat__lbl { font-size: 0.68rem; color: var(--text-muted); }
.ed-stat strong { font-family: var(--font-head); font-size: 1.45rem; color: var(--ink-900); line-height: 1.05; }
.ed-stat__pct { font-size: 0.7rem; font-weight: 700; }
.ed-stat--g { border-top: 3px solid #2e9e4f; } .ed-stat--g .ed-stat__pct { color: #2e9e4f; }
.ed-stat--o { border-top: 3px solid #e0a526; } .ed-stat--o .ed-stat__pct { color: #e0a526; }
.ed-stat--r { border-top: 3px solid #d8453b; } .ed-stat--r .ed-stat__pct { color: #d8453b; }
.ed-stat--n { border-top: 3px solid #8b95a5; } .ed-stat--n .ed-stat__pct { color: #8b95a5; }
.evo-dash__row { display: grid; grid-template-columns: 1fr 1.25fr; gap: 0.55rem; }
.ed-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0.85rem; display: flex; flex-direction: column; gap: 0.55rem; }
.ed-card__t { font-family: var(--font-head); font-weight: 600; color: var(--ink-900); font-size: 0.82rem; }
.ed-donut { width: 116px; height: 116px; border-radius: 50%; margin: 0.1rem auto; background: conic-gradient(#2e9e4f 0 70%, #e0a526 70% 74%, #d8453b 74% 79%, #cfd6e0 79% 100%); display: grid; place-items: center; position: relative; }
.ed-donut::before { content: ''; position: absolute; width: 68px; height: 68px; border-radius: 50%; background: #fff; }
.ed-donut span { position: relative; font-family: var(--font-head); font-weight: 700; color: #2e9e4f; font-size: 1.05rem; }
.ed-leg { display: flex; flex-wrap: wrap; gap: 0.4rem 0.7rem; justify-content: center; font-size: 0.7rem; color: var(--text-muted); }
.ed-leg i { display: inline-block; width: 9px; height: 9px; border-radius: 2px; margin-right: 4px; vertical-align: middle; }
.ed-leg .d-g { background: #2e9e4f; } .ed-leg .d-o { background: #e0a526; } .ed-leg .d-r { background: #d8453b; }
.ed-bars { display: flex; align-items: flex-end; gap: 5px; height: 116px; }
.ed-bars i { flex: 1; min-width: 0; border-radius: 3px 3px 0 0; height: var(--h); background: linear-gradient(180deg, #e0a526, #d8453b); }
@media (max-width: 560px) { .evo-dash__cards { grid-template-columns: 1fr 1fr; } .evo-dash__row { grid-template-columns: 1fr; } }

/* ===== evo-dash - painel dinâmico (animações ao entrar na viewport) ===== */
@property --ed-sweep { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
/* barras crescem da base */
.evo-dash .ed-bars i { transform-origin: bottom; }
.evo-dash.is-in .ed-bars i { animation: edBarGrow 0.9s cubic-bezier(.22,1,.36,1) both; }
.evo-dash.is-in .ed-bars i:nth-child(1) { animation-delay: 0.30s; }
.evo-dash.is-in .ed-bars i:nth-child(2) { animation-delay: 0.36s; }
.evo-dash.is-in .ed-bars i:nth-child(3) { animation-delay: 0.42s; }
.evo-dash.is-in .ed-bars i:nth-child(4) { animation-delay: 0.48s; }
.evo-dash.is-in .ed-bars i:nth-child(5) { animation-delay: 0.54s; }
.evo-dash.is-in .ed-bars i:nth-child(6) { animation-delay: 0.60s; }
.evo-dash.is-in .ed-bars i:nth-child(7) { animation-delay: 0.66s; }
.evo-dash.is-in .ed-bars i:nth-child(8) { animation-delay: 0.72s; }
@keyframes edBarGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
/* donut: reveal em varredura circular (fallback: visível) */
.ed-donut::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(#fff var(--ed-sweep), rgba(255,255,255,0) 0); pointer-events: none; }
.evo-dash.is-in .ed-donut::after { animation: edDonutWipe 1.1s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes edDonutWipe { from { --ed-sweep: 360deg; } to { --ed-sweep: 0deg; } }
.evo-dash.is-in .ed-donut span { animation: edPulse 2.6s ease-in-out 1.3s infinite; }
@keyframes edPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.09); } }
/* cards de indicador: entrada escalonada (transform only - nunca esconde) */
.evo-dash.is-in .ed-stat { animation: edStatIn 0.55s cubic-bezier(.22,1,.36,1) both; }
.evo-dash.is-in .ed-stat:nth-child(1) { animation-delay: 0.04s; }
.evo-dash.is-in .ed-stat:nth-child(2) { animation-delay: 0.12s; }
.evo-dash.is-in .ed-stat:nth-child(3) { animation-delay: 0.20s; }
.evo-dash.is-in .ed-stat:nth-child(4) { animation-delay: 0.28s; }
@keyframes edStatIn { from { transform: translateY(12px) scale(.96); } to { transform: none; } }

/* ===== Documentações Técnicas - página-pilar ===== */
.doc-thesis { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.35rem, 2.6vw, 1.9rem); line-height: 1.32; color: var(--brand-navy); max-width: 920px; margin: 1rem auto 1.3rem; }
.doc-panel { background: linear-gradient(180deg, var(--surface-tint) 0%, #fff 100%); border: 1px solid var(--line); border-radius: 20px; padding: clamp(1.4rem, 3vw, 2.6rem); box-shadow: 0 20px 50px rgba(20,24,56,.08); }
.doc-panel .grid-3 { margin-top: 1.6rem; }
.doc-tag { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 0.7rem; letter-spacing: .05em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; margin-bottom: 0.6rem; }
.doc-tag--measure { background: rgba(46,158,79,.12); color: #237a3d; }
.doc-tag--inspect { background: rgba(243,156,18,.14); color: #b9750a; }
.doc-tag--neutral { background: rgba(31,38,90,.08); color: var(--brand-navy); }
.lp-page .modelo-card:has(.doc-tag)::before { display: none; }
/* micro-interação: ícone cresce no hover do card */
.camp-page .modelo-card__ico { transition: transform .25s ease, background .25s ease; }
.camp-page .modelo-card:hover .modelo-card__ico { transform: scale(1.08); background: rgba(243,156,18,.2); }
/* Método como timeline horizontal conectada */
.steps--flow { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.steps--flow .step { background: transparent; border: none; box-shadow: none; text-align: center; padding: 0 0.6rem; position: relative; }
.steps--flow .step__n { margin: 0 auto 0.9rem; width: 48px; height: 48px; font-size: 1.15rem; position: relative; z-index: 2; box-shadow: 0 8px 18px rgba(243,156,18,.35); }
.steps--flow .step h3 { text-align: center; }
.steps--flow .step::before { content: ''; position: absolute; top: 24px; left: -50%; width: 100%; height: 2px; background: linear-gradient(90deg, var(--line), var(--evolue-orange)); z-index: 0; }
.steps--flow .step:first-child::before { display: none; }
@media (max-width: 760px) { .steps--flow { grid-template-columns: 1fr; gap: 1.4rem; } .steps--flow .step::before { display: none; } }
.doc-related { border: 1px solid var(--line); border-left: 4px solid var(--brand-navy); border-radius: 16px; background: #fff; padding: clamp(1.4rem, 3vw, 2.3rem); box-shadow: 0 14px 36px rgba(20,24,56,.07); }
.doc-card-label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; letter-spacing: .05em; text-transform: uppercase; color: var(--evolue-orange); margin-bottom: 0.5rem; }
.doc-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.6rem; margin-top: 1.4rem; font-family: var(--font-head); font-weight: 600; color: var(--brand-navy); }
.doc-contacts a { color: var(--brand-navy); }
.doc-contacts span { color: var(--line); }

/* ===== Treinamentos - imagem do catálogo sem box, maior, sangrando à direita ===== */
.trn-catalog { overflow-x: clip; }
.trn-catalog__grid { grid-template-columns: 1fr 1.25fr; }
.trn-catalog__media { position: relative; }
.trn-catalog__media img { width: 122%; max-width: none; height: auto; display: block; mix-blend-mode: multiply; }
@media (max-width: 900px) {
  .trn-catalog__grid { grid-template-columns: 1fr; }
  .trn-catalog__media img { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .evo-dash.is-in .ed-bars i,
  .evo-dash.is-in .ed-stat,
  .evo-dash.is-in .ed-donut span { animation: none; }
  .ed-donut::after { display: none; }
}

/* Fale com a Evolue - soluções em 3 verticais */
.sol-cards--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .sol-cards--3 { grid-template-columns: 1fr; } }

/* ===== /agendamento - landing (desktop + mobile) ===== */
.agd-landing { padding-top: clamp(2rem, 5vw, 3.2rem); }
.agd-how { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; margin-top: 2rem; }
.agd-how__card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.3rem 1.2rem; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.agd-how__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.agd-how__n { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--brand-navy); color: #fff; font-family: var(--font-head); font-weight: 700; margin-bottom: 0.8rem; }
.agd-how__card h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink-900); margin: 0 0 0.25rem; }
.agd-how__card p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }
@media (max-width: 820px) { .agd-how { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .agd-how { grid-template-columns: 1fr; } }
.agd-units--landing { max-width: 860px; margin: 2rem auto 0; }
.agd-info-row { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 1.8rem; }
.agd-info-pill { display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.55rem 1rem; font-size: 0.88rem; color: var(--brand-navy); font-weight: 600; text-decoration: none; }
.agd-info-pill svg { width: 17px; height: 17px; color: var(--evolue-orange); }
.agd-info-pill--plain { color: var(--text-muted); font-weight: 500; }
/* hero centralizado no desktop para não ficar "solto" */
@media (min-width: 821px) { .agd-hero { align-items: center; justify-content: center; text-align: center; } .agd-hero__inner { max-width: 760px; text-align: center; } .agd-hero__inner p { margin-inline: auto; } .agd-trust { justify-content: center; } }

/* Sobre - rigor técnico: linha de exemplo "na prática" */
.rigor-card__ex { display: block; margin-top: 0.7rem; padding-top: 0.7rem; border-top: 1px solid rgba(255,255,255,0.16); font-size: 0.84rem; line-height: 1.45; color: rgba(255,255,255,0.78); }
.rigor-card__ex::first-line { color: #fff; }

/* Sobre - hero: respiro e melhor leitura do texto da 1ª seção */
.about-hero2 { min-height: 560px; align-items: center; }
.about-hero2 .eyebrow { display: inline-block; margin-bottom: 0.6rem; }
.about-hero2 h1 { margin: 0 0 0.9rem; line-height: 1.14; }
.about-hero2 .about-hero2__aff { margin: 0 0 0.8rem; }
.about-hero2 .lead:not(.about-hero2__aff) { font-size: 0.96rem; color: rgba(255,255,255,0.82); max-width: 540px; margin: 0; }
.about-hero2 .lp-hero__cta { margin-top: 1.5rem; }

/* ===== Banner de consentimento de cookies (LGPD) ===== */
.cookie-bar { position: fixed; left: clamp(1rem, 3vw, 1.6rem); right: auto; bottom: clamp(1rem, 3vw, 1.6rem); z-index: 1200; pointer-events: none; opacity: 1; transform: none; animation: cookieBarIn .45s cubic-bezier(.22,1,.36,1); }
@keyframes cookieBarIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.cookie-bar.is-out { opacity: 0; transform: translateY(24px); transition: opacity .3s ease, transform .3s ease; }
.cookie-bar__inner { pointer-events: auto; width: min(380px, calc(100vw - 2rem)); background: var(--brand-navy-dark, #1f1e47); color: #fff; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; box-shadow: 0 18px 50px rgba(15,18,40,.4); padding: 1.2rem 1.3rem; display: flex; flex-direction: column; align-items: stretch; gap: 1rem; }
.cookie-bar__txt { margin: 0; font-size: .9rem; line-height: 1.55; color: rgba(255,255,255,.85); }
.cookie-bar__txt a { color: var(--evolue-orange, #f39c12); text-decoration: underline; font-weight: 600; }
.cookie-bar__actions { display: flex; gap: .6rem; }
.cookie-bar__btn { white-space: nowrap; flex: 1; text-align: center; }
.cookie-bar .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); background: transparent; }
.cookie-bar .btn--ghost:hover { background: rgba(255,255,255,.12); }

/* Perícias - linha de responsável técnico no card */
.peric-rt { display: block; margin-top: 0.9rem; padding-top: 0.8rem; border-top: 1px solid var(--line); font-size: 0.84rem; line-height: 1.45; color: var(--text-muted); }
.peric-rt strong { color: var(--ink-900); }

/* ===== Embed do app de demonstração Evolue 360 (iframe isolado) ===== */
.ev360-embed { margin-top: 1.6rem; }
.ev360-embed-frame { width: 100%; height: clamp(560px, 80vh, 880px); border: 0; border-radius: 18px; box-shadow: 0 24px 60px -20px rgba(46,47,96,.35), 0 8px 20px -12px rgba(46,47,96,.2); background: #f4f4fb; display: block; }
@media (max-width: 760px) { .ev360-embed-frame { height: 72vh; min-height: 520px; } }

/* Medicina Brasília — seções de leitura fixadas à esquerda (bloco encostado à esquerda) */
.mdt-bsb .lp-readable .lp-narr > .eyebrow,
.mdt-bsb .lp-readable .lp-narr > h2,
.mdt-bsb .lp-readable .lp-narr > .lead,
.mdt-bsb .lp-readable .lp-narr > .func-list { margin-inline: 0; }

/* ===== Medicina Brasília — boxes da Jornada no padrão do site (ícone em caixa laranja) ===== */
.mdt-bsb .grid-3 .modelo-card { text-align: left; }
.mdt-bsb .grid-3 .modelo-card__ico { width: 48px; height: 48px; border-radius: 13px; background: rgba(243, 156, 18, 0.12); display: grid; place-items: center; margin-bottom: 1.05rem; }
.mdt-bsb .grid-3 .modelo-card__ico svg { width: 24px; height: 24px; color: var(--evolue-orange); }

/* ===== Demonstração Evolue 360 — moldura de janela (acabamento) ===== */
.ev360-window { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 30px 70px -26px rgba(46,47,96,.42), 0 10px 26px -16px rgba(46,47,96,.24); }
.ev360-window__bar { display: flex; align-items: center; gap: 12px; padding: 11px 16px; background: linear-gradient(180deg, #fbfbfe, #eef0f7); border-bottom: 1px solid var(--line); }
.ev360-window__dots { display: inline-flex; gap: 7px; flex: 0 0 auto; }
.ev360-window__dots i { width: 11px; height: 11px; border-radius: 50%; background: #d7dae6; }
.ev360-window__dots i:nth-child(1) { background: #ef6a5e; }
.ev360-window__dots i:nth-child(2) { background: #f6c343; }
.ev360-window__dots i:nth-child(3) { background: #56c568; }
.ev360-window__url { flex: 1; max-width: 360px; margin: 0 auto; text-align: center; font-size: 12.5px; color: var(--text-muted); background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 5px 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ev360-window__url svg { width: 12px; height: 12px; vertical-align: -1px; margin-right: 6px; opacity: .65; }
.ev360-window .ev360-embed-frame { border-radius: 0; box-shadow: none; border: 0; }
.ev360-cap { display: block; text-align: center; font-size: 0.82rem; color: var(--text-muted); margin-top: 0.9rem; }
@media (max-width: 560px) { .ev360-window__url { font-size: 11px; } }

/* ===== Medicina Brasília — Plano mensal: comparativo avulso x plano ===== */
.plan-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 2.4rem; align-items: stretch; }
.plan-col { border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.5rem, 3vw, 2.1rem); background: #fff; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.plan-col--off { background: var(--surface-soft, #f4f7fb); }
.plan-col--on { border-color: var(--evolue-orange); box-shadow: var(--shadow-md); }
.plan-col__tag { align-self: flex-start; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: var(--radius-pill, 999px); margin-bottom: 0.9rem; }
.plan-col--off .plan-col__tag { background: rgba(120,130,150,.16); color: var(--text-muted); }
.plan-col--on .plan-col__tag { background: var(--evolue-orange); color: #fff; }
.plan-col h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; line-height: 1.15; color: var(--ink-900); margin: 0 0 1.1rem; }
.plan-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.plan-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; line-height: 1.45; color: var(--text-muted); }
.plan-list li svg { width: 19px; height: 19px; flex: none; margin-top: 1px; }
.plan-list--off li svg { color: #c8574e; }
.plan-list--on li { color: var(--ink-900); }
.plan-list--on li svg { color: #2e9d5b; }
.plan-col--on .btn { margin-top: auto; align-self: flex-start; }
.plan-col--on .plan-list { margin-bottom: 1.4rem; }
@media (max-width: 760px) { .plan-compare { grid-template-columns: 1fr; } }
