/* Propósito: faixa com tipografia e cores da referência. */
.purpose {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(115deg, #f0faf5 0%, #fff 44%, #f1f7fc);
    padding: 24px 3.2% 30px;
    border-bottom: 1px solid #e3eee8
}

.purpose:before,
.purpose:after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    right: -28px;
    top: -50px;
    width: 130px;
    height: 240px;
    transform: rotate(-28deg);
    background: linear-gradient(180deg, #00876012, #00a97102)
}

.purpose:after {
    right: 32px;
    width: 22px;
    background: #00976c09
}

.purpose-content {
    max-width: 1900px;
    margin: 0 auto
}

.purpose-heading {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 20px
}

.purpose-heading h2 {
    position: relative;
    margin: 0;
    padding-top: 9px;
    flex-shrink: 0;
    color: #061d64;
    font-size: clamp(26px, 2.3vw, 40px);
    line-height: 1.02;
    letter-spacing: -1.2px
}

.purpose-heading h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #00633d, #00bb79)
}

.purpose-title-small {
    display: block;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 1px
}

.purpose-heading h2 strong {
    color: #00683e;
    font-weight: 900
}

.purpose-title-action {
    font-weight: 900;
    white-space: nowrap
}

.purpose-heading-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #b6d9c9, #dbe7e900);
    margin-top: 24px
}

.purpose-heading-signature {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #183568;
    font-size: 11px;
    letter-spacing: 1.5px;
    margin: 17px 0 0;
    white-space: nowrap
}

.purpose-heading-signature strong {
    color: #087648;
    font-weight: 700
}

.purpose-arrows {
    display: flex;
    gap: 3px;
    margin-left: 14px
}

.purpose-arrows i {
    display: block;
    width: 15px;
    height: 27px;
    clip-path: polygon(0 0, 48% 0, 100% 50%, 48% 100%, 0 100%, 52% 50%);
    background: #b5c5c8
}

.purpose-arrows i:nth-child(2) {
    background: #6e9296
}

.purpose-arrows i:nth-child(3) {
    background: #133c62
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px
}

.purpose-card {
    --purpose-accent: #00663e;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-rows: 54px auto;
    align-content: start;
    column-gap: 15px;
    row-gap: 12px;
    padding: 19px 23px 21px;
    border-radius: 15px;
    background: linear-gradient(120deg, #e9f9ee, #daf2e3);
    border: 1px solid #cce8d7;
    box-shadow: 0 3px 10px #164c3610, inset 0 1px 0 #ffffffd9;
    transition: box-shadow .2s, border-color .2s
}

.purpose-card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 23px;
    width: 43px;
    height: 3px;
    background: var(--purpose-accent);
    border-radius: 0 0 3px 3px
}

.purpose-card:hover {
    box-shadow: 0 5px 16px #164c3618;
    border-color: #afcebc
}

.purpose-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #058955, #005333);
    color: white;
    box-shadow: 0 3px 8px #00663e20, inset 0 1px 2px #ffffff50
}

.purpose-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.8
}

.purpose-card h3 {
    margin: 0;
    align-self: center;
    color: var(--purpose-accent);
    font-size: 23px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.6px
}

.purpose-card h3:after {
    content: "";
    display: block;
    width: 31px;
    height: 3px;
    background: linear-gradient(90deg, var(--purpose-accent), #24bc82);
    margin-top: 7px
}

.purpose-card p {
    grid-column: 1/-1;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #25476a
}

.purpose-card strong {
    font-weight: 700;
    color: var(--purpose-accent)
}

.purpose-card .purpose-values-lead {
    margin-bottom: -6px
}

.purpose-mission {
    --purpose-accent: #07296c;
    background: linear-gradient(120deg, #eff7ff, #deedfc);
    border-color: #cedff0
}

.purpose-mission .purpose-icon {
    background: linear-gradient(145deg, #164e97, #041c59);
    box-shadow: 0 3px 8px #07296c20, inset 0 1px 2px #ffffff50
}

.purpose-mission:hover {
    border-color: #b4c9e0
}

@media(min-width:1700px) {
    .purpose-card p {
        font-size: 14px
    }

    .purpose-grid {
        gap: 20px
    }

    .purpose-heading-signature {
        font-size: 12px
    }
}

@media(max-width:1000px) {
    .purpose-heading {
        gap: 16px
    }

    .purpose-heading-signature {
        font-size: 9px;
        letter-spacing: .6px
    }

    .purpose-arrows {
        margin-left: 5px
    }

    .purpose-arrows i {
        width: 11px;
        height: 22px
    }
}

@media(max-width:900px) {
    .purpose {
        padding: 24px 4%
    }

    .purpose-grid {
        gap: 12px
    }

    .purpose-card {
        padding: 17px;
        grid-template-columns: 44px 1fr;
        grid-template-rows: 44px auto;
        column-gap: 10px
    }

    .purpose-icon {
        width: 44px;
        height: 44px
    }

    .purpose-icon svg {
        width: 27px;
        height: 27px
    }

    .purpose-card h3 {
        font-size: 19px
    }
}

@media(max-width:650px) {
    .purpose {
        padding: 23px 5% 26px
    }

    .purpose-heading {
        gap: 0;
        flex-wrap: wrap;
        margin-bottom: 16px
    }

    .purpose-heading h2 {
        font-size: clamp(24px, 6.3vw, 35px);
        letter-spacing: -.9px
    }

    .purpose-title-small {
        font-size: 14px
    }

    .purpose-heading-signature {
        margin-top: 12px;
        font-size: 9px;
        flex-basis: 100%;
        letter-spacing: 1px
    }

    .purpose-heading-line {
        display: none
    }

    .purpose-arrows {
        margin-left: auto
    }

    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 13px
    }

    .purpose-card {
        padding: 18px 20px;
        row-gap: 10px
    }

    .purpose-card h3 {
        font-size: 22px
    }

    .purpose-card p {
        font-size: 13px;
        line-height: 1.5
    }
}

:root {
    --blue: #061d64;
    --green: #006b49;
    --bright: #00b875;
    --ink: #123878
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px
}

body {
    margin: 0;
    background: #fff;
    color: var(--blue);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased
}

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

button {
    font: inherit;
    color: inherit;
    cursor: pointer
}

svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0
}

.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #00a86b;
    outline-offset: 4px
}

.skip-link {
    position: fixed;
    top: -80px;
    left: 20px;
    padding: 12px;
    background: #fff;
    z-index: 50
}

.skip-link:focus {
    top: 10px
}

.site-header {
    height: 92px;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    padding: 0 6.5%;
    gap: 24px;
    background: transparent
}

.site-header:before {
    content: "";
    position: absolute;
    inset: 0 20% 0 0;
    background: linear-gradient(100deg, #fff 30%, #f2f8fcef);
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
    z-index: -1
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0
}

.brand img {
    display: block;
    width: 195px;
    height: 85px;
    object-fit: contain
}

.brand span {
    border-left: 2px solid #6277bf;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.12;
    font-weight: 700
}

.site-header nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 24px;
    margin-left: auto;
    flex: 1;
    max-width: 670px
}

.site-header nav a,
.site-header nav button {
    border: 0;
    background: none;
    padding: 16px 0;
    position: relative;
    font-size: 16px;
    white-space: nowrap
}

.site-header nav a:hover,
.site-header nav button:hover {
    color: var(--green)
}

.site-header nav .active {
    font-weight: 700
}

.site-header nav .active:after {
    content: "";
    position: absolute;
    bottom: 4px;
    height: 3px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--green), var(--bright))
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid #008359;
    border-radius: 32px;
    padding: 16px 24px;
    background: linear-gradient(160deg, #008e66, #00483e);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    transition: transform .2s, box-shadow .2s
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px #00384a26
}

.header-contact {
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
    margin-left: auto;
    padding: 13px 22px
}

.header-contact svg {
    width: 27px;
    height: 27px
}

.menu-toggle {
    display: none
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 342px
}

.hero-photo {
    position: absolute;
    inset: -92px 0 0 38%;
    z-index: -3;
    background: url('assets/hero-generated.png') center center/cover no-repeat
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 48%;
    background: linear-gradient(120deg, #fff 70%, #f4f8fa);
    clip-path: polygon(0 0, 82% 0, 100% 55%, 82% 100%, 0 100%);
    z-index: -1
}

.hero:after {
    content: "";
    position: absolute;
    left: 0;
    top: -38px;
    width: 66px;
    height: 290px;
    background: linear-gradient(135deg, #82c4c375, #008d6aad);
    clip-path: polygon(0 0, 100% 40%, 67% 53%, 100% 65%, 0 100%, 0 73%, 32% 52%, 0 32%);
    z-index: 0
}

.hero-content {
    width: 46%;
    padding: 22px 0 24px 6.6%;
    position: relative;
    z-index: 2
}

.eyebrow {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--green)
}

.hero .eyebrow {
    display: flex;
    align-items: center;
    gap: 5px
}

.hero .eyebrow:before {
    content: "";
    height: 3px;
    width: 40px;
    background: linear-gradient(90deg, #006346, #05ca85)
}

h1 {
    margin: 0;
    font-size: clamp(36px, 3.75vw, 82px);
    line-height: 1.02;
    letter-spacing: -1.7px;
    font-weight: 900
}

h1 span {
    color: #005b47
}

.hero-lead {
    font-size: clamp(15px, 1.24vw, 26px);
    line-height: 1.2;
    font-weight: 700;
    margin: 10px 0 5px
}

.hero-description {
    font-size: clamp(12px, .92vw, 20px);
    line-height: 1.15;
    margin: 0 0 13px;
    max-width: 650px
}

.hero-actions {
    display: flex;
    gap: 12px;
    align-items: center
}

.hero-actions .button {
    font-size: clamp(10px, .8vw, 17px);
    padding: 14px 20px;
    white-space: nowrap;
    gap: 12px
}

.button-outline {
    background: #ffffffd9;
    border: 1.5px solid #2e4bd4;
    color: var(--blue)
}

.button-outline svg {
    color: #00a66d
}

.hero-quote {
    position: absolute;
    right: 5%;
    top: 11px;
    transform: rotate(-10deg);
    font-family: 'Segoe Print', 'Comic Sans MS', cursive;
    font-style: italic;
    font-size: clamp(23px, 1.8vw, 39px);
    line-height: 1.4;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 5px #06366540;
    margin: 0
}

.hero-quote span {
    display: block;
    height: 22px;
    border-top: 6px solid #00b985;
    border-radius: 60%;
    margin-top: 14px;
    transform: rotate(-4deg)
}

.chevron {
    position: absolute;
    top: -92px;
    bottom: 0;
    width: 200px;
    z-index: -2;
    clip-path: polygon(0 0, 37% 0, 100% 56%, 39% 100%, 0 100%, 61% 56%);
    pointer-events: none
}

.chevron-back {
    left: 37%;
    background: #12598fa6
}

.chevron-front {
    left: 35%;
    background: linear-gradient(130deg, #8bcbd0ce, #d6eeeadb)
}

.pillars {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 17px 7.8%;
    background: linear-gradient(#fff, #eff5fa);
    min-height: 83px
}

.pillar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    position: relative
}

.pillar:after {
    content: "";
    width: 1px;
    height: 40px;
    background: #708bce;
    position: absolute;
    right: 0
}

.pillar svg {
    width: 47px;
    height: 47px;
    color: #086d51
}

.pillar p {
    font-size: 14px;
    margin: 0;
    line-height: 1.3
}

.pillar strong {
    font-size: 15px
}

.signature {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-left: 25px
}

.signature>span {
    font-size: 33px;
    letter-spacing: -9px;
    padding-right: 8px;
    background: linear-gradient(90deg, #b2c0c7, #042558);
    background-clip: text;
    color: transparent
}

.signature p {
    font-size: 13px;
    white-space: nowrap;
    margin: 0
}

.signature i {
    display: block;
    width: 75px;
    height: 4px;
    background: linear-gradient(90deg, #005c43, #00c77c);
    margin-top: 7px
}

.solutions {
    padding: 13px 3.2% 17px
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px
}

.section-heading h2 {
    font-size: 23px;
    margin: 0;
    padding-top: 8px;
    position: relative;
    white-space: nowrap;
    letter-spacing: -.4px
}

.section-heading h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #006a4b, #00c07a)
}

.section-heading>p {
    font-size: 16px;
    line-height: 1.3;
    margin: 8px 0 0
}

.text-link {
    border: 0;
    background: none;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    margin-left: auto;
    padding: 8px 0
}

.text-link:before {
    content: "";
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, #005c43, #00b679)
}

.text-link svg {
    width: 21px
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 9px
}

.service {
    --accent: #006549;
    position: relative;
    isolation: isolate;
    min-height: 240px;
    aspect-ratio: 1/1.03;
    border: 1px solid #e0edf7;
    border-radius: 11px;
    overflow: hidden;
    text-align: left;
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: 60px auto 1fr;
    align-content: start;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
    padding: 7px 10px 48px;
    background: #edf3f5;
    transition: transform .2s, box-shadow .2s
}

.service:nth-child(even) {
    --accent: #052675
}

.service:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--photo) center/cover no-repeat
}

.service:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, #f3f8fa85 0%, #ffffff35 29%, transparent 73%), linear-gradient(90deg, #ffffff80 0%, #ffffff65 53%, transparent 80%)
}

.service-talk {
    --photo: url('assets/palestras-generated.png')
}

.service-sipat {
    --photo: url('assets/sipat-generated.png')
}

.service-training {
    --photo: url('assets/treinamentos-generated.png')
}

.service-audit {
    --photo: url('assets/consultoria-generated.png')
}

.service-mentor {
    --photo: url('assets/mentoria-generated.png')
}

.service-iso {
    --photo: url('assets/iso-generated.png')
}

.service:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px #002c6024
}

.service-icon {
    width: 60px;
    height: 60px;
    padding: 13px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent), color-mix(in srgb, var(--accent), #001c3a 30%));
    color: white;
    stroke-width: 1.65;
    box-shadow: inset 0 0 0 1px #ffffff20
}

.service h3 {
    font-size: clamp(11px, .94vw, 20px);
    text-transform: uppercase;
    line-height: 1.25;
    margin: 0;
    color: var(--accent);
    letter-spacing: -.4px
}

.service h3:after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #00ba7d);
    margin-top: 8px
}

.service p,
.service ul {
    grid-column: 1/-1;
    align-self: start;
    font-size: clamp(11px, .86vw, 18px);
    line-height: 1.25;
    margin: 0;
    max-width: 76%;
    color: #103780;
    text-shadow: 0 0 6px #fff, 0 0 3px #fff
}

.service ul {
    max-width: 100%;
    padding-left: 13px
}

.service li {
    margin-bottom: 3px
}

.round-arrow {
    position: absolute;
    left: 9px;
    bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 30px;
    background: linear-gradient(150deg, color-mix(in srgb, var(--accent), #00a587 15%), var(--accent));
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 21px;
    min-width: 125px;
    box-shadow: 0 2px 5px #00333a20
}

.round-arrow svg {
    height: 20px;
    width: 20px
}

footer {
    position: relative;
    background: linear-gradient(110deg, #05325d, #002a56);
    color: white;
    min-height: 83px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 25px 3.2% 21px;
    border-top: 5px solid #009a68
}

footer:before {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 14px;
    background: #fff;
    border-bottom: 5px solid #009a68;
    border-radius: 0 0 50% 50%
}

.footer-invitation {
    display: flex;
    align-items: center;
    gap: 20px
}

.footer-invitation>svg {
    width: 35px;
    height: 35px;
    stroke-width: 1.5
}

.footer-invitation p {
    font-size: 11px;
    line-height: 1.65;
    margin: 0
}

.footer-invitation strong {
    font-size: 13px;
    font-weight: 500
}

footer>a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    min-height: 30px
}

footer>a:not(.footer-phone) {
    padding-left: 18px;
    border-left: 1px solid #008d75
}

footer a:hover {
    text-decoration: underline
}

footer svg {
    width: 25px;
    height: 25px;
    stroke-width: 1.5
}

.footer-phone strong {
    font-size: 11px;
    white-space: nowrap
}

.footer-phone svg {
    width: 35px;
    height: 35px;
    padding: 6px;
    background: #00b56e;
    border-radius: 50%
}

.social-links {
    display: flex;
    gap: 14px
}

.social-links a {
    display: flex;
    align-items: center
}

.linkedin {
    font-size: 20px;
    line-height: 23px;
    width: 23px;
    text-align: center;
    background: #fff;
    color: #073259;
    border-radius: 3px;
    font-weight: 700
}

dialog {
    width: min(620px, calc(100% - 32px));
    border: 0;
    border-radius: 16px;
    padding: 44px;
    color: var(--ink);
    box-shadow: 0 25px 100px #001c4b40
}

dialog::backdrop {
    background: #001c46a6;
    backdrop-filter: blur(5px)
}

dialog h2 {
    font-size: 30px;
    margin: 15px 0
}

dialog p,
dialog li {
    line-height: 1.65
}

dialog .eyebrow {
    font-size: 11px;
    letter-spacing: 1px
}

dialog .button {
    margin-top: 18px
}

dialog ul {
    padding-left: 20px
}

.dialog-close {
    position: absolute;
    top: 10px;
    right: 15px;
    border: 0;
    background: transparent;
    font-size: 32px
}

.dialog-open {
    overflow: hidden
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 25px 0
}

.client-logos img {
    width: 100%;
    height: 80px;
    object-fit: contain
}

@media(min-width:1700px) {
    .site-header {
        height: 112px;
        gap: 35px
    }

    .brand img {
        width: 250px;
        height: 105px
    }

    .brand span {
        font-size: 19px
    }

    .site-header nav {
        max-width: 840px;
        gap: 36px
    }

    .site-header nav a,
    .site-header nav button {
        font-size: 19px
    }

    .header-contact {
        font-size: 23px;
        padding: 17px 27px
    }

    .header-contact svg {
        width: 32px;
        height: 32px
    }

    .hero {
        min-height: 428px
    }

    .hero-photo {
        top: -112px
    }

    .hero-content {
        padding-top: 37px;
        padding-bottom: 24px
    }

    .hero .eyebrow {
        font-size: 20px;
        margin-bottom: 12px
    }

    .hero .eyebrow:before {
        width: 48px;
        height: 4px
    }

    .hero-lead {
        margin-top: 13px
    }

    .hero-description {
        margin-bottom: 17px
    }

    .hero-actions .button {
        padding: 17px 27px
    }

    .hero-quote {
        top: 8px
    }

    .chevron {
        top: -112px;
        width: 275px
    }

    .hero:after {
        width: 92px;
        height: 350px
    }

    .pillars {
        min-height: 103px;
        padding-top: 20px;
        padding-bottom: 20px;
        gap: 60px
    }

    .pillar {
        gap: 27px
    }

    .pillar svg {
        height: 60px;
        width: 60px
    }

    .pillar p {
        font-size: 18px
    }

    .pillar strong {
        font-size: 20px
    }

    .pillar:after {
        height: 53px
    }

    .signature {
        gap: 30px;
        padding-left: 30px
    }

    .signature>span {
        font-size: 44px
    }

    .signature p {
        font-size: 18px
    }

    .signature i {
        width: 95px;
        height: 5px
    }

    .solutions {
        padding-top: 14px;
        padding-bottom: 16px
    }

    .section-heading {
        gap: 22px;
        margin-bottom: 12px
    }

    .section-heading h2 {
        font-size: 29px
    }

    .section-heading>p {
        font-size: 17px
    }

    .text-link {
        font-size: 13px
    }

    .text-link:before {
        width: 45px
    }

    .solutions-grid {
        gap: 12px
    }

    .service {
        grid-template-columns: 80px 1fr;
        grid-template-rows: 80px auto 1fr;
        column-gap: 14px;
        row-gap: 12px;
        padding: 8px 14px 58px
    }

    .service-icon {
        width: 80px;
        height: 80px;
        padding: 18px
    }

    .service h3 {
        font-size: 18px
    }

    .service p,
    .service ul {
        font-size: 16px
    }

    .round-arrow {
        font-size: 17px;
        padding: 14px 28px;
        left: 12px;
        bottom: 7px;
        min-width: 174px
    }

    .round-arrow svg {
        width: 24px;
        height: 24px
    }

    footer {
        min-height: 112px;
        padding-top: 30px;
        padding-bottom: 26px;
        gap: 25px
    }

    .footer-invitation p {
        font-size: 15px
    }

    .footer-invitation strong {
        font-size: 18px
    }

    .footer-invitation>svg {
        width: 45px;
        height: 45px
    }

    footer>a {
        font-size: 14px
    }

    .footer-phone strong {
        font-size: 15px
    }

    footer svg {
        width: 30px;
        height: 30px
    }

    .footer-phone svg {
        width: 43px;
        height: 43px
    }

    .social-links svg {
        width: 30px;
        height: 30px
    }

    .linkedin {
        font-size: 25px;
        line-height: 29px;
        width: 29px
    }
}

@media(max-width:1250px) {
    .site-header {
        padding: 0 4%;
        gap: 18px
    }

    .brand img {
        width: 175px
    }

    .brand span {
        font-size: 12px;
        padding-left: 12px
    }

    .brand {
        gap: 10px
    }

    .site-header nav {
        gap: 17px
    }

    .site-header nav a,
    .site-header nav button {
        font-size: 12px
    }

    .header-contact {
        font-size: 14px;
        padding: 12px 16px
    }

    .hero-content {
        padding-left: 6%;
        width: 47%
    }

    .hero-actions .button {
        padding: 13px 15px;
        font-size: 10px;
        gap: 7px
    }

    .hero-actions svg {
        width: 20px;
        height: 20px
    }

    .pillars {
        padding-left: 6%;
        padding-right: 6%;
        gap: 25px
    }

    .pillar {
        gap: 14px
    }

    .signature {
        padding-left: 0;
        gap: 17px
    }

    .signature p {
        font-size: 11px
    }

    .section-heading>p {
        font-size: 11px
    }

    .section-heading h2 {
        font-size: 20px
    }

    .text-link {
        font-size: 9px
    }

    .text-link:before {
        width: 20px
    }

    .service {
        grid-template-columns: 46px 1fr;
        grid-template-rows: 48px auto 1fr;
        gap: 8px;
        padding-left: 8px;
        padding-right: 8px
    }

    .service-icon {
        width: 46px;
        height: 46px;
        padding: 10px
    }

    .service h3 {
        font-size: 10px;
        letter-spacing: -.25px
    }

    .service p,
    .service ul {
        font-size: 11px;
        max-width: 85%
    }

    .service ul {
        max-width: 100%
    }

    .round-arrow {
        min-width: 112px;
        font-size: 12px;
        padding: 10px 16px;
        gap: 10px
    }

    footer {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px
    }

    .footer-invitation {
        flex: 1 0 35%
    }

    footer>a {
        font-size: 10px
    }
}

@media(max-width:1000px) {
    .site-header {
        height: 88px;
        background: #fff;
        padding: 0 5%
    }

    .site-header:before {
        display: none
    }

    .brand img {
        height: 75px;
        width: 185px
    }

    .brand span {
        font-size: 13px
    }

    .site-header nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-width: none;
        background: #fff;
        box-shadow: 0 15px 20px #08295415;
        padding: 15px 5%;
        margin: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0
    }

    .site-header nav.open {
        display: flex
    }

    .site-header nav a,
    .site-header nav button {
        font-size: 15px;
        padding: 12px;
        text-align: left
    }

    .site-header nav .active:after {
        display: none
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 10px;
        border: 0;
        background: none;
        order: 3
    }

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: var(--blue)
    }

    .hero {
        min-height: 365px
    }

    .hero-content {
        width: 59%;
        padding-top: 28px;
        padding-left: 5%
    }

    .hero:before {
        width: 64%
    }

    .hero-photo {
        top: 0;
        left: 42%
    }

    .hero h1 {
        font-size: clamp(36px, 4.7vw, 49px)
    }

    .hero-lead {
        font-size: 17px
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 16px
    }

    .hero-actions {
        flex-wrap: wrap;
        gap: 9px
    }

    .hero-actions .button {
        font-size: 11px;
        padding: 12px 15px
    }

    .hero-quote {
        font-size: 23px;
        right: 2%;
        top: 28px
    }

    .chevron {
        top: 0;
        width: 175px
    }

    .chevron-back {
        left: 47%
    }

    .chevron-front {
        left: 43%
    }

    .hero:after {
        display: none
    }

    .pillars {
        gap: 25px;
        padding: 20px 5%
    }

    .pillar p {
        font-size: 13px
    }

    .pillar strong {
        font-size: 14px
    }

    .signature {
        display: none
    }

    .pillar:last-of-type:after {
        display: none
    }

    .section-heading {
        flex-wrap: wrap;
        gap: 12px
    }

    .section-heading h2 {
        font-size: 25px
    }

    .section-heading>p {
        flex: 1;
        font-size: 13px;
        min-width: 240px
    }

    .text-link {
        font-size: 11px;
        margin-left: 0
    }

    .solutions {
        padding: 25px 4%
    }

    .solutions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 13px
    }

    .service {
        min-height: 285px;
        grid-template-columns: 60px 1fr;
        grid-template-rows: 62px auto 1fr;
        gap: 12px;
        padding: 9px 12px 55px
    }

    .service-icon {
        width: 60px;
        height: 60px;
        padding: 13px
    }

    .service h3 {
        font-size: 14px
    }

    .service p,
    .service ul {
        font-size: 14px;
        max-width: 77%
    }

    .service ul {
        max-width: 100%
    }

    .round-arrow {
        padding: 12px 20px;
        font-size: 14px;
        left: 12px;
        bottom: 10px
    }

    footer {
        justify-content: flex-start;
        padding: 26px 4%;
        gap: 22px
    }

    .footer-invitation {
        flex-basis: 100%
    }

    .footer-invitation strong {
        font-size: 16px
    }

    .footer-invitation p {
        font-size: 13px
    }

    footer>a {
        font-size: 12px
    }

    .footer-phone strong {
        font-size: 13px
    }
}

@media(max-width:650px) {
    .site-header {
        height: 84px;
        gap: 10px
    }

    .brand img {
        width: 157px;
        height: 68px
    }

    .brand span {
        font-size: 11px;
        padding-left: 10px
    }

    .header-contact {
        display: none
    }

    .menu-toggle {
        margin-left: auto
    }

    .hero {
        padding-bottom: 235px;
        min-height: 0
    }

    .hero:before {
        display: none
    }

    .hero-content {
        width: 100%;
        padding: 26px 6% 24px;
        background: #fff
    }

    .hero .eyebrow {
        font-size: 13px;
        margin-bottom: 11px
    }

    .hero .eyebrow:before {
        width: 29px
    }

    .hero h1 {
        font-size: clamp(32px, 8.5vw, 55px);
        letter-spacing: -1.3px
    }

    .hero-lead {
        font-size: 17px;
        line-height: 1.25;
        margin-top: 14px
    }

    .hero-lead br {
        display: none
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.35;
        margin-top: 9px;
        margin-bottom: 16px
    }

    .hero-actions {
        display: grid;
        gap: 10px
    }

    .hero-actions .button {
        font-size: 12px;
        padding: 14px 18px
    }

    .hero-photo {
        inset: auto 0 0;
        height: 235px;
        background-position: center
    }

    .hero-quote {
        top: auto;
        bottom: 64px;
        right: 6%;
        font-size: 22px
    }

    .hero-quote span {
        margin-top: 8px;
        height: 10px;
        border-width: 5px
    }

    .chevron {
        top: auto;
        bottom: 0;
        height: 235px;
        width: 90px;
        z-index: -1
    }

    .chevron-front {
        left: -4%;
        background: #90c7c38c
    }

    .chevron-back {
        left: 0;
        background: #10598075
    }

    .pillars {
        gap: 12px;
        padding: 20px 5%;
        align-items: start
    }

    .pillar {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }

    .pillar svg {
        width: 36px;
        height: 36px
    }

    .pillar p,
    .pillar strong {
        font-size: 11px
    }

    .pillar:after {
        right: -6px;
        top: 10px;
        height: 57px
    }

    .pillar:nth-child(3):after {
        display: none
    }

    .solutions {
        padding: 22px 4% 27px
    }

    .section-heading {
        gap: 10px;
        margin-bottom: 15px
    }

    .section-heading h2 {
        font-size: 25px
    }

    .section-heading>p {
        flex-basis: 100%;
        margin: 0;
        font-size: 14px
    }

    .text-link {
        font-size: 10px
    }

    .solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px
    }

    .service {
        min-height: 285px;
        aspect-ratio: auto;
        grid-template-columns: 42px 1fr;
        grid-template-rows: 52px auto 1fr;
        gap: 9px;
        padding: 9px 9px 54px
    }

    .service-icon {
        width: 42px;
        height: 42px;
        padding: 9px
    }

    .service h3 {
        font-size: 10.5px;
        line-height: 1.3;
        letter-spacing: -.3px
    }

    .service h3:after {
        width: 28px;
        height: 2px;
        margin-top: 6px
    }

    .service p,
    .service ul {
        font-size: 12px;
        line-height: 1.3;
        max-width: 94%
    }

    .service ul {
        max-width: 100%;
        padding-left: 12px
    }

    .service:after {
        background-position: 60% center
    }

    .service:before {
        background: linear-gradient(180deg, #fff9 0%, #ffffffb0 50%, transparent 78%)
    }

    .round-arrow {
        left: 8px;
        bottom: 9px;
        min-width: 0;
        padding: 11px 16px;
        font-size: 12px;
        gap: 10px
    }

    .round-arrow svg {
        width: 18px;
        height: 18px
    }

    footer {
        padding: 24px 6%;
        gap: 20px
    }

    .footer-invitation {
        gap: 13px;
        align-items: start
    }

    .footer-invitation strong {
        font-size: 14px
    }

    .footer-invitation p {
        font-size: 12px
    }

    .footer-invitation>svg {
        width: 30px;
        height: 30px
    }

    footer>a:not(.footer-phone) {
        border: 0;
        padding-left: 0
    }

    footer>a {
        max-width: 100%;
        font-size: 11px;
        overflow-wrap: anywhere
    }

    .footer-phone {
        flex-basis: 100%
    }

    .social-links {
        flex-basis: 100%;
        padding-top: 3px;
        gap: 18px
    }

    dialog {
        padding: 38px 24px 27px
    }

    dialog h2 {
        font-size: 25px
    }

    dialog .button {
        font-size: 11px;
        padding: 14px 17px
    }
}

@media(max-width:360px) {
    .brand img {
        width: 140px
    }

    .brand span {
        font-size: 10px
    }

    .service {
        grid-template-columns: 1fr;
        grid-template-rows: 42px 43px auto 1fr;
        min-height: 335px;
        gap: 7px
    }

    .service h3 {
        font-size: 12px
    }

    .service p,
    .service ul {
        font-size: 12px
    }

    .service-icon {
        height: 38px;
        width: 38px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *:before,
    *:after {
        transition: none !important
    }
}
/* Solutions: reference layout, four columns and two rows. */
.solutions { padding: 24px 3.2% 30px; background: #fff; position: relative; overflow: hidden; }
.solutions .section-heading { gap: 28px; margin: 0 0 20px; }
.solutions .section-heading h2 { font-size: clamp(26px, 2.3vw, 40px); color: #00683e; letter-spacing: -1.2px; line-height: 1.02; padding-top: 9px; }
.solutions .section-heading h2 span { color: #061d64; }
.solutions .section-heading h2:before { width: 40px; height: 3px; }
.solutions .section-heading > p { border-left: 1px solid #b6d9c9; padding: 7px 0 7px 20px; margin: 0; color: #25476a; font-size: 16px; line-height: 1.5; font-weight: bold;}
.solutions .solutions-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.solutions .service { --accent: #00663e; min-height: 240px; aspect-ratio: auto; grid-template-columns: 54px 1fr; grid-template-rows: minmax(54px,auto) 1fr; gap: 12px 15px; padding: 19px 20px 21px; border: 1px solid #dce8e4; border-radius: 15px; align-items: center; }
.solutions .service:nth-child(even), .solutions .service-iso { --accent: #07296c; }
.solutions .service.service-leadership { --accent: #ff4b00; --photo: url('assets/hero-generated.png'); }
.solutions .service-risk { --photo: url('assets/proposito-generated.png'); }
.solutions .service:before { background: linear-gradient(90deg,#eaf8f4ed 0%,#edf7f4d9 48%,#edf7f426 100%); }
.solutions .service:nth-child(even):before, .solutions .service-iso:before { background: linear-gradient(90deg,#e5efffed 0%,#e5efffce 48%,#e5efff10 100%); }
.solutions .service.service-leadership:before { background: linear-gradient(90deg,#fff0e6ed 0%,#fff0e6d9 48%,#fff0e610 100%); }
.solutions .service-icon { width: 54px; height: 54px; aspect-ratio: 1; padding: 12px; color: #fff; background: var(--accent); }
.solutions .service h3 { color: var(--blue); font-size: 16px; font-weight: 800; line-height: 1.25; letter-spacing: -.3px; }

.solutions .service h3:after { width: 31px; height: 3px; margin-top: 7px; background: linear-gradient(90deg,var(--accent),#00ad8a); }
.solutions .service:nth-child(even) h3:after, .solutions .service-iso h3:after { background: linear-gradient(90deg,var(--accent),#008cff); }
.solutions .service.service-leadership h3:after { background: linear-gradient(90deg,#ff4b00,#ffad00); }
.solutions .service p, .solutions .service ul { font-size: 16px; font-weight: 400; line-height: 1.5; color: #25476a; max-width: 76%; margin: 0; text-shadow: none; }
.solutions .service ul { max-width: 100%; padding-left: 20px; }
.solutions .service-risk p { max-width: 82%; }
.solutions-bottom { position: relative; display: flex; justify-content: center; align-items: center; padding: 26px 0 0; }
.solutions-contact { display: flex; align-items: center; justify-content: center; gap: 14px; border-radius: 100px; padding: 14px 24px; color: #fff; background: linear-gradient(165deg,#008b57,#004735); font-size: 14px; font-weight: 600; text-decoration: none; }
.solutions-contact svg { width: 28px; height: 28px; flex-shrink: 0; }
.solutions-signature { position: absolute; right: 0; bottom: 20px; color: #183568; font-size: 11px; letter-spacing: 1.5px; }
.solutions-signature:before { content: ''; display: inline-block; vertical-align: middle; width: 32px; height: 4px; margin-right: 10px; background: #00ac72; }
.solutions .service:focus-visible, .solutions-contact:focus-visible { outline: 3px solid #1735ff; outline-offset: 3px; }
@media(max-width:1100px) {
 .solutions-signature { position: static; }
 .solutions-bottom { flex-direction: column; gap: 20px; }
 .solutions .service { aspect-ratio: auto; min-height: 250px; }
}
@media(max-width:800px) {
 .solutions { padding: 28px 4%; }
 .solutions .section-heading { flex-direction: column; align-items: flex-start; gap: 16px; }

 .solutions .section-heading > p { font-size: 13px; padding-left: 12px; }
 .solutions .section-heading > p br { display: none; }
 .solutions .solutions-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
 .solutions .service { padding: 15px; min-height: 240px; gap: 14px 10px; }
 .solutions .service h3 { color: var(--blue); font-size: 16px; }
 
 .solutions .service p, .solutions .service ul, .solutions .service-risk p { font-size: 13px; max-width: 95%; }
}
@media(max-width:480px) {
 .solutions .solutions-grid { grid-template-columns: 1fr; }
 .solutions .service { min-height: 220px; grid-template-columns: 54px 1fr; }
 .solutions .service h3 { color: var(--blue); font-size: 16px; }
 
 .solutions .service p, .solutions .service ul, .solutions .service-risk p { font-size: 13px; max-width: 83%; }
 .solutions-contact { width: 100%; gap: 10px; padding: 16px; font-size: 13px; }
 .solutions-contact svg { width: 28px; height: 28px; }
}
/* Keep the requested orange title across all screen sizes. */
.solutions .service.service-leadership h3 { color: #ff4b00; }

/* Shared typography for the main section titles. */
.purpose-heading h2,
.solutions .section-heading h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(26px, 2.3vw, 40px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -1.2px;
}
@media(max-width:650px) {
    .purpose-heading h2,
    .solutions .section-heading h2 {
        font-size: clamp(24px, 6.3vw, 35px);
        letter-spacing: -.9px;
    }
}
/* Hero introduction and the four commitments. */
.hero .hero-introduction {
    font-size: clamp(14px, 1.15vw, 22px);
    line-height: 1.45;
    font-weight: 400;
    color: var(--blue);
    margin: 18px 0 20px;
    max-width: 650px;
}
.hero-introduction strong { font-weight: 700; }

/* Preserve the original pillar layout with four items. */
.pillars .pillar:last-child:after { display: none; }
@media(max-width:650px) {
    .pillars .pillar:nth-child(3):after { display: block; }
}
/* Equal widths and centered content for all four pillars. */
.pillars {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
}
.pillars .pillar {
    min-width: 0;
    justify-content: center;
    padding-inline: 12px;
}
.pillars .pillar svg { flex-shrink: 0; }
.pillars .pillar:after {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
@media(max-width:650px) {
    .pillars .pillar { justify-content: flex-start; padding-inline: 6px; }
}
/* Icons drawn for each solution, following the supplied reference. */
.solutions .service-icon { stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.solutions .mentor-logo { display: block; width: 150px; max-width: 100%; height: auto; margin-top: 12px; }
/* Keep the round background separate from the drawing viewport. */
.solutions .service-icon {
    display: grid;
    place-items: center;
    padding: 10px;
    overflow: visible;
}
.solutions .service-icon > svg {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* Solution cards are informational, without click interactions. */
.solutions .service { cursor: default; }

.solutions .leadership-logo { display: block; width: 150px; max-width: 100%; height: auto; margin-top: 12px; }
