:root {
    --navy-950: #061746;
    --navy-900: #071b70;
    --blue-700: #0b53c7;
    --cyan-500: #08a8d8;
    --cyan-100: #dff7fc;
    --ink-900: #152037;
    --ink-700: #3e4a5f;
    --ink-500: #697386;
    --line: #dce2e9;
    --surface: #f4f6f8;
    --white: #fff;
    --shell: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--white);
    color: var(--ink-900);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    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 {
    color: inherit;
    font: inherit;
}

.shell {
    width: min(var(--shell), calc(100% - clamp(32px, 6vw, 96px)));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 15px;
    background: var(--white);
    color: var(--navy-900);
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform .18s ease;
}

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

:focus-visible {
    outline: 3px solid #39d3f4;
    outline-offset: 4px;
}

.contact-bar {
    background: var(--navy-950);
    color: #e8efff;
    font-size: .75rem;
}

.contact-bar-inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contact-bar-main,
.utility-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-bar-main > a,
.contact-bar-main > span,
.utility-nav a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
}

.contact-bar-main > a > span,
.contact-bar-main > span > span {
    margin-right: 7px;
    color: #91b1e4;
}

.contact-bar a:hover,
.contact-bar a:focus-visible {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.utility-nav a + a {
    position: relative;
}

.utility-nav a + a::before {
    position: absolute;
    left: -12px;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .24);
    content: "";
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(220, 226, 233, .95);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

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

.brand img {
    width: 192px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(17px, 2vw, 28px);
    color: var(--ink-700);
    font-size: .86rem;
    font-weight: 650;
}

.main-nav > a:not(.header-cta) {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    border-bottom: 2px solid transparent;
}

.main-nav > a:not(.header-cta):hover,
.main-nav > a:not(.header-cta):focus-visible {
    border-bottom-color: var(--cyan-500);
    color: var(--navy-900);
}

.header-cta,
.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: .88rem;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.header-cta,
.button-primary {
    background: var(--blue-700);
    color: var(--white);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
    background: var(--navy-900);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--white);
    cursor: pointer;
}

.menu-toggle > span {
    display: grid;
    width: 21px;
    gap: 5px;
}

.menu-toggle i {
    display: block;
    height: 2px;
    background: var(--navy-900);
    transition: transform .18s ease, opacity .18s ease;
}

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

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

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

.hero {
    position: relative;
    min-height: clamp(520px, 64vh, 660px);
    overflow: hidden;
    background: var(--navy-950);
    color: var(--white);
}

.hero-photo,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-photo {
    object-fit: cover;
    object-position: center 54%;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(3, 14, 46, .92) 0%, rgba(3, 14, 46, .78) 42%, rgba(3, 14, 46, .18) 76%, rgba(3, 14, 46, .08) 100%);
}

.hero-inner {
    position: relative;
    display: flex;
    min-height: clamp(520px, 64vh, 660px);
    align-items: center;
    padding-block: 68px;
}

.hero-copy {
    width: min(620px, 58%);
}

.section-label {
    margin: 0 0 16px;
    color: var(--blue-700);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.35;
    text-transform: uppercase;
}

.hero .section-label {
    color: #8de6f9;
}

.hero h1 {
    max-width: 590px;
    margin: 0;
    font-size: clamp(2.7rem, 4.6vw, 4.15rem);
    font-weight: 760;
    letter-spacing: -.045em;
    line-height: 1.03;
}

.hero-copy > p:not(.section-label):not(.hero-contact) {
    max-width: 560px;
    margin: 22px 0 0;
    color: #e1e8f3;
    font-size: clamp(1rem, 1.25vw, 1.16rem);
    line-height: 1.65;
}

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

.button-light {
    border-color: rgba(255, 255, 255, .72);
    background: rgba(4, 17, 54, .2);
    color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
    border-color: var(--white);
    background: var(--white);
    color: var(--navy-900);
}

.hero-contact {
    margin: 22px 0 0;
    color: #cad5e6;
    font-size: .84rem;
}

.hero-contact a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--white);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.service-strip {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.service-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-strip-inner > div {
    display: flex;
    min-height: 102px;
    flex-direction: column;
    justify-content: center;
    padding: 22px clamp(22px, 3vw, 38px);
    border-left: 1px solid var(--line);
}

.service-strip-inner > div:last-child {
    border-right: 1px solid var(--line);
}

.service-strip strong {
    color: var(--navy-900);
    font-size: .93rem;
}

.service-strip span {
    margin-top: 3px;
    color: var(--ink-500);
    font-size: .78rem;
}

.section {
    padding-block: clamp(76px, 8vw, 112px);
}

.section h2,
.contact h2 {
    max-width: 720px;
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(2rem, 3.3vw, 3.05rem);
    font-weight: 740;
    letter-spacing: -.038em;
    line-height: 1.12;
}

.company-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, .86fr) minmax(460px, 1.14fr);
    gap: clamp(48px, 7vw, 96px);
}

.company-copy > p:not(.section-label) {
    max-width: 590px;
    margin: 20px 0 0;
    color: var(--ink-700);
}

.plain-list {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.plain-list li {
    position: relative;
    padding-left: 20px;
    color: var(--ink-900);
    font-size: .9rem;
    font-weight: 650;
}

.plain-list li::before {
    position: absolute;
    top: .67em;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--cyan-500);
    content: "";
}

.text-link,
.model-content > a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    margin-top: 20px;
    color: var(--blue-700);
    font-size: .87rem;
    font-weight: 750;
    text-decoration: underline;
    text-decoration-color: rgba(11, 83, 199, .35);
    text-underline-offset: 5px;
}

.text-link:hover,
.model-content > a:hover {
    text-decoration-color: currentColor;
}

.company-photo,
.applications-photo {
    margin: 0;
}

.company-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

figcaption,
.image-disclosure {
    margin: 10px 0 0;
    color: var(--ink-500);
    font-size: .7rem;
    line-height: 1.5;
}

.models {
    border-block: 1px solid var(--line);
    background: var(--surface);
}

.section-heading {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
    gap: clamp(36px, 7vw, 100px);
    margin-bottom: 42px;
}

.section-heading > p {
    margin: 0;
    color: var(--ink-700);
}

.model-catalog {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 3px solid var(--navy-900);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.model-item {
    min-width: 0;
    padding: 0 clamp(22px, 2.8vw, 34px) 30px;
    border-left: 1px solid var(--line);
}

.model-item:last-child {
    border-right: 1px solid var(--line);
}

.model-item > img {
    width: calc(100% + (clamp(22px, 2.8vw, 34px) * 2));
    max-width: none;
    height: 230px;
    margin-left: calc(clamp(22px, 2.8vw, 34px) * -1);
    border-bottom: 1px solid var(--line);
    object-fit: cover;
}

.model-content {
    padding-top: 23px;
}

.model-content header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.model-content h3 {
    margin: 0;
    color: var(--navy-900);
    font-size: 1.52rem;
    line-height: 1.2;
}

.model-content header p {
    margin: 0;
    color: var(--ink-500);
    font-size: .74rem;
    text-align: right;
}

.model-content dl {
    margin: 20px 0 0;
}

.model-content dl > div {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid var(--line);
}

.model-content dt {
    color: var(--ink-500);
    font-size: .72rem;
}

.model-content dd {
    margin: 0;
    color: var(--ink-900);
    font-size: .79rem;
    font-weight: 700;
    text-align: right;
}

.applications {
    background: var(--white);
}

.applications-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(470px, 1.08fr) minmax(0, .92fr);
    gap: clamp(48px, 7vw, 96px);
}

.applications-photo img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.applications-copy > p:not(.section-label) {
    max-width: 560px;
    margin: 20px 0 0;
    color: var(--ink-700);
}

.use-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.use-columns h3 {
    margin: 0 0 11px;
    color: var(--navy-900);
    font-size: .92rem;
}

.use-columns ul {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0;
    color: var(--ink-700);
    font-size: .84rem;
    list-style: none;
}

.button-outline {
    margin-top: 27px;
    border-color: var(--navy-900);
    color: var(--navy-900);
}

.button-outline:hover,
.button-outline:focus-visible {
    background: var(--navy-900);
    color: var(--white);
}

.delivery {
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.delivery-heading {
    margin-bottom: 36px;
}

.delivery-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-block: 1px solid var(--line);
    background: var(--white);
}

.delivery-flow > div {
    min-height: 154px;
    padding: 30px clamp(20px, 2.6vw, 32px);
    border-left: 1px solid var(--line);
}

.delivery-flow > div:last-child {
    border-right: 1px solid var(--line);
}

.delivery-flow h3 {
    margin: 0;
    color: var(--navy-900);
    font-size: .96rem;
}

.delivery-flow p {
    margin: 10px 0 0;
    color: var(--ink-500);
    font-size: .82rem;
}

.contact {
    padding-block: clamp(76px, 8vw, 108px);
    background: var(--navy-950);
    color: var(--white);
}

.contact-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr);
    gap: clamp(54px, 9vw, 130px);
}

.section-label-light {
    color: #75dff5;
}

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

.contact-intro > p:not(.section-label) {
    max-width: 470px;
    margin: 19px 0 0;
    color: #c7d3e7;
}

.contact-phone {
    display: flex;
    min-height: 54px;
    align-items: center;
    margin-top: 24px;
    color: var(--white);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    font-weight: 760;
    letter-spacing: -.02em;
}

.contact-phone:hover,
.contact-phone:focus-visible {
    text-decoration: underline;
    text-underline-offset: 6px;
}

.button-cyan {
    margin-top: 22px;
    background: var(--cyan-500);
    color: var(--navy-950);
}

.button-cyan:hover,
.button-cyan:focus-visible {
    background: var(--white);
}

.location-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 3px solid var(--cyan-500);
    background: var(--white);
    color: var(--ink-900);
}

.location-panel > div {
    min-height: 146px;
    padding: 24px 27px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.location-panel > div:nth-child(even) {
    border-right: 0;
}

.location-panel > div:nth-child(3) {
    min-height: auto;
    grid-column: 1 / -1;
    border-right: 0;
}

.location-panel > div > span {
    display: block;
    margin-bottom: 9px;
    color: var(--blue-700);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.location-panel address,
.location-panel p {
    margin: 0;
    font-size: .83rem;
    font-style: normal;
    line-height: 1.65;
}

.location-panel small {
    display: block;
    margin-top: 7px;
    color: var(--ink-500);
    font-size: .65rem;
    line-height: 1.45;
}

.location-links {
    display: flex;
    min-height: auto !important;
    grid-column: 1 / -1;
    gap: 12px;
    padding-block: 18px !important;
}

.location-links a {
    display: inline-flex;
    min-height: 46px;
    flex: 1;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--navy-900);
    color: var(--navy-900);
    font-size: .82rem;
    font-weight: 750;
}

.location-links a:first-child {
    background: var(--navy-900);
    color: var(--white);
}

.location-links a:hover,
.location-links a:focus-visible {
    border-color: var(--blue-700);
    background: var(--blue-700);
    color: var(--white);
}

.site-footer {
    border-top: 1px solid #e4e8ed;
    background: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, 1fr);
    gap: clamp(32px, 5vw, 70px);
    padding-block: 58px 48px;
}

.footer-brand img {
    width: 188px;
    height: 68px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p {
    max-width: 310px;
    margin: 15px 0 0;
    color: var(--ink-500);
    font-size: .78rem;
}

.footer-grid nav,
.footer-contact {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}

.footer-grid strong {
    margin-bottom: 4px;
    color: var(--navy-900);
    font-size: .82rem;
}

.footer-grid nav a,
.footer-contact a,
.footer-contact span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    color: var(--ink-500);
    font-size: .76rem;
}

.footer-grid nav a:hover,
.footer-contact a:hover {
    color: var(--blue-700);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-bottom {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    margin: 0;
    color: var(--ink-500);
    font-size: .67rem;
}

.footer-bottom p:last-child {
    max-width: 590px;
    text-align: right;
}

@media (max-width: 1040px) {
    .contact-bar-main > span {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: 76px;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px max(24px, calc((100% - var(--shell)) / 2));
        border-bottom: 1px solid var(--line);
        background: var(--white);
        box-shadow: 0 18px 36px rgba(6, 23, 70, .12);
    }

    .no-js .main-nav,
    .main-nav.is-open {
        display: flex;
    }

    .main-nav > a:not(.header-cta) {
        min-height: 48px;
        border-bottom: 1px solid var(--line);
    }

    .header-cta {
        margin-block: 12px 4px;
    }

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

    .model-item > img {
        height: 200px;
    }

    .contact-grid {
        grid-template-columns: minmax(0, .7fr) minmax(430px, 1.3fr);
        gap: 48px;
    }

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

@media (max-width: 800px) {
    .contact-bar-inner {
        min-height: 34px;
    }

    .utility-nav a:first-child {
        display: none;
    }

    .utility-nav a + a::before {
        display: none;
    }

    .contact-bar-main > a,
    .utility-nav a {
        min-height: 34px;
    }

    .hero,
    .hero-inner {
        min-height: 560px;
    }

    .hero-photo {
        object-position: 62% center;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(3, 14, 46, .94), rgba(3, 14, 46, .74));
    }

    .hero-copy {
        width: min(620px, 88%);
    }

    .service-strip-inner {
        grid-template-columns: 1fr;
    }

    .service-strip-inner > div,
    .service-strip-inner > div:last-child {
        min-height: 78px;
        padding-block: 15px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .service-strip-inner > div:last-child {
        border-bottom: 0;
    }

    .company-grid,
    .applications-grid,
    .section-heading,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .company-photo {
        max-width: 650px;
    }

    .model-catalog {
        grid-template-columns: 1fr;
    }

    .model-item,
    .model-item:last-child {
        display: grid;
        grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
        padding: 0;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .model-item > img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        min-height: 270px;
        margin: 0;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .model-content {
        padding: 28px;
    }

    .delivery-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .delivery-flow > div:nth-child(2) {
        border-right: 1px solid var(--line);
    }

    .delivery-flow > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .contact-grid {
        gap: 42px;
    }

    .contact-intro {
        max-width: 600px;
    }

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

    .footer-grid > nav:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 560px) {
    .shell {
        width: calc(100% - 32px);
    }

    .contact-bar {
        font-size: .7rem;
    }

    .contact-bar-main span span {
        display: none;
    }

    .brand img {
        width: 158px;
        height: 54px;
    }

    .header-inner {
        min-height: 68px;
    }

    .main-nav {
        top: 68px;
        padding-inline: 16px;
    }

    .hero,
    .hero-inner {
        min-height: 600px;
    }

    .hero-photo {
        object-position: 66% center;
    }

    .hero-inner {
        align-items: flex-end;
        padding-block: 62px;
    }

    .hero-copy {
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(2.3rem, 11.5vw, 3rem);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .section {
        padding-block: 68px;
    }

    .section h2,
    .contact h2 {
        font-size: clamp(1.85rem, 9vw, 2.35rem);
    }

    .section-heading {
        gap: 20px;
        margin-bottom: 30px;
    }

    .company-grid,
    .applications-grid {
        gap: 36px;
    }

    .model-item,
    .model-item:last-child {
        display: block;
    }

    .model-item > img {
        height: 210px;
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .model-content {
        padding: 24px 20px 28px;
    }

    .model-content header {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .model-content header p {
        text-align: left;
    }

    .use-columns,
    .delivery-flow,
    .location-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .use-columns {
        gap: 22px;
    }

    .delivery-flow > div,
    .delivery-flow > div:nth-child(2),
    .delivery-flow > div:last-child {
        min-height: auto;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .delivery-flow > div:last-child {
        border-bottom: 0;
    }

    .location-panel > div,
    .location-panel > div:nth-child(even) {
        min-height: auto;
        border-right: 0;
    }

    .location-links {
        align-items: stretch;
        flex-direction: column;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-grid > nav:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 18px;
    }

    .footer-bottom p:last-child {
        text-align: left;
    }
}

@media (min-width: 1800px) {
    .hero,
    .hero-inner {
        min-height: 690px;
    }
}

@media (min-width: 2200px) {
    :root {
        --shell: 1600px;
    }

    .model-item > img {
        height: 270px;
    }
}

@media (min-width: 3200px) {
    :root {
        --shell: 1840px;
    }

    .model-item > img {
        height: 300px;
    }
}

/* Direção sem fotografias: desenho técnico e catálogo dos modelos informados. */
.hero-technical-layout {
    background:
        linear-gradient(90deg, rgba(6, 23, 70, .98), rgba(7, 27, 112, .94)),
        var(--navy-950);
}

.hero-technical-layout .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(480px, 1.14fr);
    gap: clamp(42px, 7vw, 100px);
}

.hero-technical-layout .hero-copy {
    position: relative;
    z-index: 2;
    width: auto;
}

.hero-blueprint {
    min-width: 0;
    color: #8ee8fa;
}

.hero-blueprint svg {
    width: 100%;
    max-height: 430px;
}

.blueprint-grid {
    fill: none;
    opacity: .08;
    stroke: currentColor;
    stroke-width: 1;
}

.blueprint-container {
    fill: rgba(8, 168, 216, .05);
    stroke: #86e5f7;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.blueprint-measures {
    fill: #bdeff8;
    stroke: #5ecfe6;
    stroke-width: 1.5;
}

.blueprint-measures text {
    font-family: Inter, "Segoe UI", sans-serif;
    font-size: 13px;
    letter-spacing: .08em;
    stroke: none;
    text-anchor: middle;
    text-transform: uppercase;
}

.hero-blueprint > p {
    margin: 4px 0 0;
    color: #acdbea;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.company-types {
    border-top: 3px solid var(--navy-900);
    background: var(--surface);
}

.company-types > p {
    margin: 0;
    padding: 18px 25px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-500);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.company-types > div {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 17px 25px;
    border-bottom: 1px solid var(--line);
}

.company-types strong {
    color: var(--navy-900);
    font-size: 1rem;
}

.company-types span {
    color: var(--ink-500);
    font-size: .8rem;
    text-align: right;
}

.model-catalog-six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.model-catalog-six .model-item,
.model-catalog-six .model-item:last-child {
    display: grid;
    min-height: 300px;
    align-items: center;
    grid-template-columns: minmax(155px, .7fr) minmax(0, 1.3fr);
    gap: clamp(24px, 3vw, 38px);
    padding: 32px clamp(25px, 3vw, 40px);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.model-catalog-six .model-item:nth-child(odd) {
    border-left: 1px solid var(--line);
}

.model-catalog-six .model-content {
    padding: 0;
}

.model-outline {
    position: relative;
    width: 100%;
    height: 112px;
    border: 2px solid var(--navy-900);
    border-top: 5px solid var(--cyan-500);
    background: repeating-linear-gradient(90deg, transparent 0 11px, rgba(7, 27, 112, .11) 11px 13px);
    color: var(--navy-900);
}

.model-outline::before,
.model-outline::after {
    position: absolute;
    top: 0;
    bottom: 0;
    content: "";
}

.model-outline::before {
    left: 8px;
    width: 2px;
    background: currentColor;
    box-shadow: 7px 0 0 currentColor;
}

.model-outline::after {
    right: 0;
    width: 28%;
    border-left: 2px solid currentColor;
    background: linear-gradient(90deg, transparent 48%, currentColor 49%, currentColor 51%, transparent 52%);
}

.model-outline-short {
    width: 72%;
    justify-self: center;
}

.model-outline-high {
    height: 130px;
}

.model-outline > i {
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(7, 27, 112, .16);
}

.model-outline-reefer > span {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 22px;
    width: 43px;
    height: 68px;
    border: 2px solid currentColor;
    background: var(--white);
}

.model-outline-reefer > span::before,
.model-outline-reefer > span::after {
    position: absolute;
    left: 50%;
    border: 1px solid currentColor;
    border-radius: 50%;
    content: "";
    transform: translateX(-50%);
}

.model-outline-reefer > span::before {
    top: 8px;
    width: 21px;
    height: 21px;
}

.model-outline-reefer > span::after {
    bottom: 8px;
    width: 15px;
    height: 15px;
}

.model-outline-custom::after {
    right: 10%;
    width: 18%;
    border: 2px solid currentColor;
    background: transparent;
}

.model-outline-custom > span {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 18%;
    width: 34%;
    height: 44px;
    border: 2px solid currentColor;
    background: rgba(8, 168, 216, .12);
}

.model-description {
    margin: 20px 0 0;
    color: var(--ink-700);
    font-size: .82rem;
    line-height: 1.65;
}

.technical-note {
    margin: 14px 0 0;
    color: var(--ink-500);
    font-size: .69rem;
}

.applications-text-grid {
    grid-template-columns: minmax(0, .78fr) minmax(530px, 1.22fr);
}

.application-directory {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 3px solid var(--navy-900);
}

.application-directory > div {
    display: flex;
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    padding: 18px 23px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.application-directory > div:nth-child(odd) {
    border-left: 1px solid var(--line);
}

.application-directory strong {
    color: var(--navy-900);
    font-size: .9rem;
}

.application-directory span {
    margin-top: 2px;
    color: var(--ink-500);
    font-size: .72rem;
}

@media (max-width: 1040px) {
    .hero-technical-layout .hero-inner {
        grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr);
        gap: 36px;
    }

    .model-catalog-six .model-item,
    .model-catalog-six .model-item:last-child {
        grid-template-columns: 140px minmax(0, 1fr);
        gap: 24px;
        padding: 28px 24px;
    }

    .applications-text-grid {
        grid-template-columns: minmax(0, .7fr) minmax(460px, 1.3fr);
    }
}

@media (max-width: 800px) {
    .hero-technical-layout,
    .hero-technical-layout .hero-inner {
        min-height: auto;
    }

    .hero-technical-layout .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-block: 58px 48px;
    }

    .hero-blueprint {
        width: min(660px, 100%);
    }

    .hero-blueprint svg {
        max-height: 300px;
    }

    .model-catalog-six,
    .applications-text-grid {
        grid-template-columns: 1fr;
    }

    .model-catalog-six .model-item,
    .model-catalog-six .model-item:last-child {
        min-height: 270px;
        grid-template-columns: minmax(180px, .7fr) minmax(0, 1.3fr);
    }
}

@media (max-width: 560px) {
    .hero-technical-layout .hero-inner {
        padding-block: 54px 42px;
    }

    .hero-blueprint svg {
        max-height: 220px;
    }

    .company-types > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .company-types span {
        text-align: left;
    }

    .model-catalog-six .model-item,
    .model-catalog-six .model-item:last-child {
        display: block;
        min-height: 0;
        padding: 27px 20px 30px;
    }

    .model-outline {
        width: 100%;
        max-width: 310px;
        margin: 0 auto 25px;
    }

    .model-outline-short {
        width: 72%;
    }

    .application-directory {
        grid-template-columns: 1fr;
    }

    .application-directory > div,
    .application-directory > div:nth-child(odd) {
        min-height: 76px;
        border-left: 1px solid var(--line);
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (forced-colors: active) {
    .button,
    .header-cta,
    .menu-toggle,
    .model-item,
    .location-panel,
    .location-links a {
        border: 1px solid ButtonText;
    }
}
