:root {
    --green-dark: #083b2f;
    --green-deep: #052e26;
    --green: #18785d;
    --green-light: #44c89e;
    --green-soft: #e8f6f0;

    --white: #ffffff;
    --background: #f6f8f7;
    --background-soft: #eef3f1;

    --text: #12231d;
    --text-soft: #5d6d66;
    --border: #dce6e1;

    --shadow: 0 18px 50px rgba(12, 52, 40, 0.08);
    --container: 1180px;
    --header-height: 78px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background: var(--background);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

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

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--green-dark);
    border-radius: 8px;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    flex: 0 0 28px;
    width: 28px;
    height: 2px;
    content: "";
    background: var(--green-light);
}

/* Header */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.site-header.scrolled {
    border-color: var(--border);
    box-shadow: 0 10px 35px rgba(18, 55, 44, 0.07);
}

.header-content {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

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

.brand img {
    width: auto;
    max-height: 58px;
}

.main-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.main-menu a {
    color: #35463f;
    font-size: 0.83rem;
    font-weight: 650;
}

.main-menu a:hover,
.main-menu a:focus-visible {
    color: var(--green);
}

.menu-cta {
    padding: 11px 16px;
    color: var(--white) !important;
    background: var(--green);
    border-radius: 9px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--green-dark);
    transition:
        transform 180ms ease,
        opacity 180ms ease;
}

/* Hero */

.hero {
    padding-top: calc(var(--header-height) + 65px);
    background:
        linear-gradient(
            110deg,
            #f7faf8 0%,
            #eff6f2 58%,
            #e4f1eb 100%
        );
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 56px;
    min-height: 590px;
    align-items: center;
}

.hero-content {
    min-width: 0;
    padding: 55px 0;
}

.hero-slider {
    position: relative;
    min-height: 265px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transform: translateY(15px);
    transition:
        opacity 420ms ease,
        transform 420ms ease;
}

.hero-slide.active {
    position: relative;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.hero-slide h1,
.hero-slide h2 {
    max-width: 700px;
    margin-bottom: 22px;
    color: var(--green-dark);
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 760;
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.hero-slide h2 {
    font-size: clamp(2.3rem, 4.8vw, 4.1rem);
}

.hero-slide p {
    max-width: 650px;
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    min-height: 49px;
    padding: 13px 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 750;
    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--green);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--green-dark);
}

.button-secondary,
.button-outline {
    color: var(--green-dark);
    border-color: #a9c5ba;
    background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
    border-color: var(--green);
    background: var(--green-soft);
}

.hero-dots {
    display: flex;
    gap: 8px;
    margin-top: 28px;
}

.hero-dot {
    width: 28px;
    height: 4px;
    padding: 0;
    cursor: pointer;
    border: 0;
    background: #c8d9d2;
    border-radius: 20px;
    transition:
        width 180ms ease,
        background 180ms ease;
}

.hero-dot.active {
    width: 48px;
    background: var(--green);
}

.hero-visual {
    min-width: 0;
}

.hero-image {
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--green-dark);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.hero-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 73% center;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
    overflow: hidden;
    background: var(--green-dark);
    border-radius: 12px 12px 0 0;
}

.trust-bar article {
    min-height: 105px;
    padding: 24px;
}

.trust-bar article + article {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-bar strong,
.trust-bar span {
    display: block;
}

.trust-bar strong {
    margin-bottom: 5px;
    color: var(--white);
    font-size: 0.9rem;
}

.trust-bar span {
    color: #bcd4cb;
    font-size: 0.76rem;
}

/* Sections */

.section {
    padding: 105px 0;
}

.section-light {
    background: var(--white);
}

.section-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 65px;
    align-items: end;
    margin-bottom: 48px;
}

.section-heading.centered {
    display: block;
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading h2,
.team-layout h2,
.contact-layout h2 {
    color: var(--green-dark);
    font-size: clamp(2rem, 4vw, 3.65rem);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.section-heading > p {
    color: var(--text-soft);
    line-height: 1.8;
}

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

.service-card {
    min-height: 290px;
    padding: 28px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 12px;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.service-card:hover {
    border-color: #9bc7b6;
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.service-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
    color: var(--green);
    background: var(--green-soft);
    border-radius: 12px;
    font-size: 0.76rem;
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 13px;
    color: var(--green-dark);
    font-size: 1.2rem;
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.7;
}

.service-card a {
    color: var(--green);
    font-size: 0.83rem;
    font-weight: 750;
}

.section-challenge {
    background: var(--background-soft);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.challenges-grid article {
    padding: 32px 22px;
}

.challenges-grid article + article {
    border-left: 1px solid var(--border);
}

.challenges-grid span {
    display: inline-flex;
    width: 35px;
    height: 35px;
    margin-bottom: 27px;
    align-items: center;
    justify-content: center;
    color: var(--green);
    border: 1px solid #b9d4c9;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 800;
}

.challenges-grid h3 {
    margin-bottom: 9px;
    color: var(--green-dark);
    font-size: 1rem;
}

.challenges-grid p {
    color: var(--text-soft);
    font-size: 0.8rem;
}

.center-action {
    margin-top: 38px;
    text-align: center;
}

.section-method {
    background: var(--white);
}

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

.method-grid article {
    position: relative;
    padding: 30px 24px;
    text-align: center;
}

.method-grid article + article::before {
    position: absolute;
    top: 49px;
    left: -50%;
    width: 100%;
    height: 1px;
    content: "";
    background: var(--border);
}

.method-grid span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 23px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-weight: 800;
}

.method-grid h3 {
    margin-bottom: 9px;
    color: var(--green-dark);
    font-size: 0.98rem;
}

.method-grid p {
    color: var(--text-soft);
    font-size: 0.8rem;
}

.section-results {
    background: var(--background);
}

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

.results-grid article {
    padding: 27px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 12px;
}

.results-grid strong {
    display: block;
    margin-bottom: 10px;
    color: var(--green-dark);
}

.results-grid p {
    color: var(--text-soft);
    font-size: 0.84rem;
}

.section-team {
    background: var(--white);
}

.team-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.team-layout > div:first-child > p:last-child {
    margin-top: 22px;
    color: var(--text-soft);
    line-height: 1.8;
}

.team-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.team-areas span {
    padding: 18px;
    color: var(--green-dark);
    border: 1px solid var(--border);
    background: var(--background);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
}

.section-contact {
    color: var(--white);
    background: var(--green-dark);
}

.section-contact .eyebrow {
    color: var(--green-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.contact-layout h2 {
    color: var(--white);
}

.contact-layout > div:first-child > p:last-child {
    max-width: 620px;
    margin-top: 20px;
    color: #c4d9d1;
}

.contact-box {
    display: grid;
    gap: 12px;
}

.contact-box a {
    padding: 21px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 11px;
}

.contact-box a:hover,
.contact-box a:focus-visible {
    background: rgba(255, 255, 255, 0.11);
}

.contact-box span,
.contact-box strong {
    display: block;
}

.contact-box span {
    margin-bottom: 4px;
    color: #9fc1b4;
    font-size: 0.72rem;
    text-transform: uppercase;
}

.contact-box strong {
    overflow-wrap: anywhere;
    font-size: 0.91rem;
}

/* Footer */

.site-footer {
    padding: 50px 0;
    color: #c5d9d1;
    background: var(--green-deep);
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr 0.5fr 0.7fr;
    gap: 55px;
    align-items: end;
}

.footer-layout img {
    width: auto;
    max-height: 55px;
    margin-bottom: 15px;
}

.footer-layout > div:first-child p {
    max-width: 420px;
    font-size: 0.82rem;
}

.footer-layout nav {
    display: grid;
    gap: 7px;
}

.footer-layout nav a {
    font-size: 0.82rem;
}

.footer-copy {
    font-size: 0.75rem;
    text-align: right;
}

:focus-visible {
    outline: 2px solid var(--green-light);
    outline-offset: 4px;
}

/* Responsive */

@media (max-width: 960px) {
    .main-menu {
        gap: 15px;
    }

    .main-menu a {
        font-size: 0.76rem;
    }

    .hero-layout {
        gap: 36px;
    }

    .hero-image > img {
        object-position: 76% center;
    }

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

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

    .challenges-grid article {
        border-bottom: 1px solid var(--border);
    }

    .challenges-grid article + article {
        border-left: 0;
    }

    .challenges-grid article:nth-child(even) {
        border-left: 1px solid var(--border);
    }

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

    .method-grid article + article::before {
        display: none;
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 72px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-menu {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        padding: 24px 20px;
        flex-direction: column;
        gap: 5px;
        align-items: stretch;
        background: var(--white);
        transform: translateX(100%);
        transition: transform 230ms ease;
    }

    .main-menu.open {
        transform: translateX(0);
    }

    .main-menu a {
        padding: 13px;
        border-bottom: 1px solid var(--border);
        font-size: 0.95rem;
    }

    .menu-cta {
        margin-top: 15px;
        text-align: center;
    }

    .hero {
        padding-top: calc(var(--header-height) + 34px);
    }

    .hero-layout,
    .section-heading,
    .team-layout,
    .contact-layout,
    .footer-layout {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        gap: 34px;
        padding-bottom: 55px;
    }

    .hero-content {
        padding: 30px 0 0;
    }

    .hero-slider {
        min-height: 340px;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-image {
        aspect-ratio: 16 / 10;
        border-radius: 16px;
    }

    .hero-image > img {
        object-position: 72% center;
    }

    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
        border-radius: 0;
    }

    .trust-bar article:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 0;
    }

    .trust-bar article:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        gap: 20px;
    }

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

    .footer-copy {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand img {
        max-height: 54px;
    }

    .hero-slider {
        min-height: 390px;
    }

    .hero-slide h1,
    .hero-slide h2 {
        font-size: clamp(2.3rem, 12.5vw, 3.25rem);
    }

    .hero-slide p {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero-image {
        aspect-ratio: 4 / 3;
    }

    .hero-image > img {
        object-position: 70% center;
    }

    .trust-bar {
        grid-template-columns: 1fr;
    }

    .trust-bar article + article,
    .trust-bar article:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 0;
    }

    .services-grid,
    .challenges-grid,
    .method-grid,
    .results-grid,
    .team-areas {
        grid-template-columns: 1fr;
    }

    .challenges-grid article:nth-child(even) {
        border-left: 0;
    }

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

    .service-icon {
        margin-bottom: 32px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}


/* Sprint 1 — Sobre e diferenciais */
.section-about { background: var(--white); }
.about-layout { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(330px,.7fr); gap:90px; align-items:center; }
.about-content h2 { max-width:760px; margin-bottom:28px; color:var(--green-dark); font-size:clamp(2.1rem,4.2vw,3.8rem); letter-spacing:-.045em; line-height:1.07; }
.about-content p { max-width:740px; margin-bottom:19px; color:var(--text-soft); line-height:1.82; }
.about-content .about-lead { color:var(--text); font-size:1.14rem; line-height:1.7; }
.about-link { display:inline-flex; gap:10px; margin-top:10px; align-items:center; color:var(--green); font-size:.9rem; font-weight:750; }
.about-link span { transition:transform 180ms ease; }
.about-link:hover span,.about-link:focus-visible span { transform:translateX(5px); }
.about-indicators { display:grid; overflow:hidden; border:1px solid var(--border); background:var(--background); border-radius:16px; box-shadow:var(--shadow); }
.about-indicators article { padding:30px; }
.about-indicators article + article { border-top:1px solid var(--border); }
.about-indicators strong,.about-indicators span { display:block; }
.about-indicators strong { margin-bottom:8px; color:var(--green-dark); font-size:1.35rem; line-height:1.2; }
.about-indicators article:first-child strong { color:var(--green); font-size:2.6rem; letter-spacing:-.05em; }
.about-indicators span { color:var(--text-soft); font-size:.85rem; line-height:1.65; }
.section-differentials { background:var(--background-soft); }
.differentials-heading { margin-bottom:52px; }
.differentials-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.differentials-grid article { padding:34px 26px; }
.differentials-grid article + article { border-left:1px solid var(--border); }
.differentials-grid span { display:inline-flex; width:38px; height:38px; margin-bottom:34px; align-items:center; justify-content:center; color:var(--green); border:1px solid #b9d4c9; border-radius:50%; font-size:.73rem; font-weight:800; }
.differentials-grid h3 { margin-bottom:12px; color:var(--green-dark); font-size:1.03rem; }
.differentials-grid p { color:var(--text-soft); font-size:.84rem; line-height:1.72; }

/* Sprint 2 — Treinamentos */
.section-training { background:var(--white); }
.training-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:50px; }
.training-grid article { padding:30px; border:1px solid var(--border); border-radius:14px; background:var(--white); transition:transform .2s,box-shadow .2s,border-color .2s; }
.training-grid article:hover { transform:translateY(-4px); box-shadow:var(--shadow); border-color:#9bc7b6; }
.training-grid h3 { margin-bottom:15px; color:var(--green-dark); font-size:1.15rem; }
.training-grid p { color:var(--text-soft); line-height:1.75; font-size:.9rem; }
.training-highlight { background:var(--green-dark)!important; color:var(--white); border-color:var(--green-dark)!important; }
.training-highlight strong { display:block; margin-bottom:18px; font-size:1.2rem; }
.training-highlight ul { display:grid; gap:12px; list-style:none; }
.training-highlight li { position:relative; padding-left:22px; color:#dcebe5; }
.training-highlight li::before { position:absolute; left:0; content:"✓"; color:var(--green-light); font-weight:800; }

/* Sprint 3 — Contato institucional */
.section-contact { color:var(--white); background:radial-gradient(circle at right center,rgba(68,200,158,.13),transparent 38%),var(--green-dark); }
.section-contact .eyebrow { color:var(--green-light); }
.contact-layout { display:grid; grid-template-columns:minmax(0,1.08fr) minmax(360px,.82fr); gap:80px; align-items:center; }
.contact-layout h2 { max-width:740px; color:var(--white); }
.contact-intro > p:last-of-type { max-width:650px; margin-top:22px; color:#c4d9d1; line-height:1.8; }
.contact-primary-button { margin-top:30px; color:var(--green-dark); background:var(--green-light); }
.contact-primary-button:hover,.contact-primary-button:focus-visible { background:#65d8b3; }
.contact-panel { display:grid; overflow:hidden; border:1px solid rgba(255,255,255,.17); background:rgba(255,255,255,.06); border-radius:16px; backdrop-filter:blur(10px); }
.contact-item { display:block; padding:24px; transition:background 180ms ease; }
.contact-item + .contact-item,.contact-company { border-top:1px solid rgba(255,255,255,.13); }
a.contact-item:hover,a.contact-item:focus-visible { background:rgba(255,255,255,.09); }
.contact-item span,.contact-item strong,.contact-company span,.contact-company strong { display:block; }
.contact-item span,.contact-company span { margin-bottom:5px; color:#9fc1b4; font-size:.72rem; font-weight:750; letter-spacing:.08em; text-transform:uppercase; }
.contact-item strong { overflow-wrap:anywhere; color:var(--white); font-size:1rem; }
.contact-company { padding:20px 24px; background:rgba(0,0,0,.08); }
.contact-company strong { color:#c4d9d1; font-size:.84rem; }

@media (max-width:960px) {
    .about-layout { gap:55px; }
    .differentials-grid { grid-template-columns:repeat(2,1fr); }
    .differentials-grid article:nth-child(even) { border-left:1px solid var(--border); }
    .differentials-grid article:nth-child(n+3) { border-top:1px solid var(--border); }
    .differentials-grid article:nth-child(3) { border-left:0; }
    .training-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:820px) {
    .about-layout,.contact-layout { grid-template-columns:1fr; gap:45px; }
    .about-indicators { box-shadow:none; }
}
@media (max-width:560px) {
    .about-content h2 { font-size:clamp(2rem,10.5vw,2.8rem); }
    .about-indicators article { padding:25px; }
    .differentials-grid,.training-grid { grid-template-columns:1fr; }
    .differentials-grid article + article,.differentials-grid article:nth-child(even),.differentials-grid article:nth-child(3) { border-top:1px solid var(--border); border-left:0; }
    .contact-primary-button { width:100%; }
    .contact-item,.contact-company { padding-inline:20px; }
}

/* ESG-0001 — Sprint 4: rodapé institucional */

.site-footer {
    padding: 0;
    color: #c5d9d1;
    background: var(--green-deep);
}

.footer-main {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(170px, 0.5fr)
        minmax(280px, 0.8fr);
    gap: 80px;
    padding-top: 68px;
    padding-bottom: 58px;
    align-items: start;
}

.footer-brand img {
    width: auto;
    max-height: 70px;
    margin-bottom: 22px;
}

.footer-brand p {
    max-width: 430px;
    margin-bottom: 12px;
    color: #d1e2dc;
    font-size: 0.92rem;
    line-height: 1.75;
}

.footer-brand > span {
    display: block;
    color: #8fb3a6;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.footer-navigation,
.footer-contact {
    display: grid;
    align-content: start;
}

.footer-navigation > strong,
.footer-contact > strong {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-navigation {
    gap: 11px;
}

.footer-navigation a {
    width: fit-content;
    color: #c5d9d1;
    font-size: 0.86rem;
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.footer-navigation a:hover,
.footer-navigation a:focus-visible {
    color: var(--green-light);
    transform: translateX(4px);
}

.footer-contact {
    gap: 17px;
}

.footer-contact a,
.footer-contact p {
    overflow-wrap: anywhere;
    color: var(--white);
    font-size: 0.87rem;
    line-height: 1.55;
}

.footer-contact a {
    transition: color 180ms ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: var(--green-light);
}

.footer-contact span {
    display: block;
    margin-bottom: 3px;
    color: #8fb3a6;
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.09);
}

.footer-bottom-content {
    display: flex;
    min-height: 68px;
    gap: 25px;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-content p {
    color: #9fbcb1;
    font-size: 0.74rem;
}

/* Transição mais limpa entre contato e rodapé */

.section-contact {
    padding-bottom: 95px;
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 55px;
    }

    .footer-contact {
        grid-column: 1 / -1;
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
}

@media (max-width: 620px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-top: 52px;
        padding-bottom: 45px;
    }

    .footer-brand img {
        max-height: 68px;
    }

    .footer-navigation,
    .footer-contact {
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom-content {
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
        flex-direction: column;
        gap: 7px;
        align-items: flex-start;
    }

    .footer-bottom-content p {
        line-height: 1.55;
    }
}

/* Sprint 8.1 — CTA da seção de treinamentos */

.training-home-action {
    margin-top: 42px;
    text-align: center;
}

@media (max-width: 560px) {
    .training-home-action .button {
        width: 100%;
    }
}

/* =========================================================
   EngSafe V2 — Correção do enquadramento do Hero
   ========================================================= */

.hero-image {
    aspect-ratio: 3 / 2;
}

.hero-image > img {
    object-fit: cover;
    object-position: center center;
}

@media (max-width: 900px) {
    .hero-image {
        aspect-ratio: 3 / 2;
    }

    .hero-image > img {
        object-position: center center;
    }
}

@media (max-width: 680px) {
    .hero-image {
        aspect-ratio: 4 / 3;
    }

    .hero-image > img {
        object-position: center center;
    }
}
