﻿

:root {
    --bg: #ffffff;
    --bg-2: #f6f8fa;
    --panel: #ffffff;
    --panel-2: #f1f4f7;

    --text: #123b5b;
    --text-dark: #0b2c45;
    --muted: #667786;

    --blue: #319dcf;
    --blue-dark: #236a9d;

    --gold: #d9a52a;
    --gold-soft: #efc45a;

    --line: rgba(18, 59, 91, 0.13);

    --shadow: 0 18px 50px rgba(18, 59, 91, 0.10);

    --container: 1200px;

    --ease: cubic-bezier(.22, .61, .36, 1);
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font: inherit;
}




.container {
    width: min(var(--container), calc(100% - 48px));
    margin: auto;
}




.header {
    position: fixed;
    z-index: 1000;

    top: 0;
    left: 0;

    width: 100%;
    height: 86px;

    border-bottom: 1px solid rgba(18, 59, 91, .08);

    transition: .35s;

    background: rgba(255, 255, 255, .92);

    backdrop-filter: blur(14px);
}

.header.scrolled {
    background: rgba(255, 255, 255, .97);

    box-shadow:
        0 8px 30px rgba(18, 59, 91, .08);

    border-color: var(--line);
}

.nav {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 35px;
}

.logo-link {
    display: flex;
    align-items: center;

    width: 105px;

    flex-shrink: 0;
}

.logo {
    width: 88px;
    height: auto;

    display: block;

    filter:
        drop-shadow(
            0 4px 10px rgba(18, 59, 91, .12)
        );
}




.menu {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 31px;

    margin: auto;
}

.menu a {
    font-family: "Orbitron", sans-serif;

    font-size: 10px;

    color: #526575;

    letter-spacing: .3px;

    position: relative;

    padding: 34px 0;

    transition: .25s;
}

.menu a:hover,
.menu a.active {
    color: var(--blue-dark);
}

.menu a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 13px;

    height: 2px;

    background: var(--gold);
}




.header-button {
    border: 1px solid var(--gold);

    padding: 14px 20px;

    color: #9b7214;

    background: #fff;

    font-family: "Orbitron", sans-serif;

    font-size: 9px;

    letter-spacing: 1.4px;

    transition: .3s;

    white-space: nowrap;
}

.header-button span {
    margin-left: 10px;
}

.header-button:hover {
    background: var(--gold);
    color: #fff;
}



.menu-toggle {
    display: none;

    background: none;

    border: 0;

    color: var(--text);

    width: 40px;
    height: 40px;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    background: var(--text);

    margin: 5px auto;

    transition: .3s;
}




.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 120px 0 70px;

    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(49, 157, 207, .10),
            transparent 27%
        ),

        radial-gradient(
            circle at 92% 55%,
            rgba(217, 165, 42, .12),
            transparent 25%
        ),

        #fff;
}




.hero-grid {
    position: absolute;

    inset: 0;

    opacity: .5;

    background-image:
        linear-gradient(
            rgba(18, 59, 91, .035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(18, 59, 91, .035) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            #000,
            transparent 92%
        );
}




.glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    pointer-events: none;

    animation: floatingGlow 8s ease-in-out infinite;
}

.glow-blue {
    width: 360px;
    height: 360px;

    right: 10%;
    top: 30%;

    background:
        radial-gradient(
            circle,
            rgba(49, 157, 207, .12),
            transparent 70%
        );
}

.glow-gold {
    width: 280px;
    height: 280px;

    right: -80px;
    bottom: 5%;

    background:
        radial-gradient(
            circle,
            rgba(217, 165, 42, .15),
            transparent 70%
        );

    animation-delay: -3s;
}

@keyframes floatingGlow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, -25px);
    }
}




.hero-content {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 560px;

    gap: 65px;

    align-items: center;
}




.eyebrow,
.section-number,
.project-category,
.products-header,
.footer-title {
    font-family: "Orbitron", sans-serif;

    letter-spacing: 2px;
}

.eyebrow {
    display: flex;

    align-items: center;

    gap: 11px;

    color: var(--blue-dark);

    font-size: 10px;

    margin-bottom: 31px;
}

.eyebrow span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 14px rgba(217, 165, 42, .55);

    animation: pulseGold 2s infinite;
}

@keyframes pulseGold {

    0% {
        box-shadow:
            0 0 0 0 rgba(217, 165, 42, .45);
    }

    70% {
        box-shadow:
            0 0 0 9px rgba(217, 165, 42, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(217, 165, 42, 0);
    }
}




.hero h1 {
    font-family: "Orbitron", sans-serif;

    font-size: clamp(48px, 6vw, 82px);

    line-height: .99;

    letter-spacing: -3px;

    font-weight: 600;

    color: var(--text-dark);
}

.hero h1 strong {
    color: var(--blue-dark);

    font-weight: 600;
}




.hero-copy > p {
    max-width: 570px;

    margin-top: 35px;

    color: #667786;

    font-size: 15px;

    line-height: 1.9;
}




.hero-actions {
    display: flex;

    gap: 14px;

    margin-top: 29px;
}

.button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    min-height: 55px;

    padding: 0 22px;

    font-family: "Orbitron", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.1px;

    transition: .3s;
}

.button-primary {
    background: var(--gold);

    color: #fff;

    box-shadow:
        0 10px 25px rgba(217, 165, 42, .20);
}

.button-primary:hover {
    background: var(--gold-soft);

    transform: translateY(-2px);

    box-shadow:
        0 15px 35px rgba(217, 165, 42, .28);
}

.button-outline {
    border: 1px solid rgba(18, 59, 91, .18);

    color: var(--text-dark);

    background: #fff;
}

.button-outline:hover {
    border-color: var(--gold);

    color: #9b7214;

    transform: translateY(-2px);
}




.hero-projects {
    width: 100%;

    min-width: 0;
}




.project-topbar {
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #75818d;

    font: 8px "Orbitron", sans-serif;

    letter-spacing: 1.5px;
}

.project-topbar > div:first-child {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #2d8b4a;
}




.status-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #55bd6d;

    box-shadow:
        0 0 9px rgba(85, 189, 109, .45);

    animation: statusBlink 2s infinite;
}

@keyframes statusBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .45;
    }
}




.project-counter {
    color: #71808d;
}

.project-counter span:first-child {
    color: var(--text-dark);
}




.project-stage {
    position: relative;

    height: 540px;

    overflow: hidden;

    border: 1px solid var(--line);

    background: #f4f7f9;

    box-shadow: var(--shadow);

    border-radius: 3px;
}

.project-stage::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 38%,
            rgba(49, 157, 207, .10),
            transparent 38%
        );

    z-index: 0;
}




.project-slide {
    position: absolute;

    inset: 0;

    display: grid;

    grid-template-rows: 310px 1fr;

    opacity: 0;

    transform:
        translateX(80px)
        scale(.985);

    pointer-events: none;

    transition:
        opacity .65s var(--ease),
        transform .65s var(--ease);
}

.project-slide.active {
    opacity: 1;

    transform:
        translateX(0)
        scale(1);

    pointer-events: auto;
}

.project-slide.leaving {
    transform:
        translateX(-80px)
        scale(.985);

    opacity: 0;
}




.project-image-wrap {
    position: relative;

    overflow: hidden;

    background: #e9eef2;
}

.project-image-wrap::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(7, 32, 48, .45)
        );

    pointer-events: none;
}

.project-image-wrap img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

    filter:
        saturate(.95)
        contrast(1.02);

    transition:
        transform 1.2s var(--ease),
        filter .7s ease;
}

.project-slide.active .project-image-wrap img {
    transform: scale(1.045);
}

.project-slide.active:hover .project-image-wrap img {
    transform: scale(1.08);
}




.project-image-wrap::before {
    content: "";

    position: absolute;

    z-index: 3;

    inset: 16px;

    border: 1px solid rgba(217, 165, 42, .65);

    pointer-events: none;

    opacity: 0;

    transition: .5s;
}

.project-slide.active .project-image-wrap::before {
    opacity: 1;
}




.image-label {
    position: absolute;

    z-index: 5;

    left: 22px;
    bottom: 18px;

    font:
        8px "Orbitron",
        sans-serif;

    letter-spacing: 1.8px;

    color: #fff;

    padding: 8px 10px;

    border:
        1px solid
        rgba(255, 255, 255, .45);

    background:
        rgba(18, 59, 91, .72);

    backdrop-filter: blur(6px);

    transition: .4s;
}

.project-slide.active .image-label {
    animation: labelIn .7s var(--ease);
}

@keyframes labelIn {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.project-info {
    position: relative;

    padding: 22px 25px 18px;

    background: #fff;
}

.project-category {
    font-size: 8px;

    color: #9b7214;
}

.project-info h2 {
    font-family: "Orbitron", sans-serif;

    font-size: 22px;

    margin-top: 9px;

    color: var(--text-dark);

    transition: .5s;
}

.project-slide.active .project-info h2 {
    animation:
        projectTextIn
        .7s
        .1s
        both;
}

.project-info p {
    color: #667786;

    font-size: 11px;

    line-height: 1.65;

    max-width: 470px;

    margin-top: 7px;
}

.project-slide.active .project-info p {
    animation:
        projectTextIn
        .7s
        .18s
        both;
}

@keyframes projectTextIn {

    from {
        opacity: 0;

        transform:
            translateY(15px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}




.project-button {
    position: absolute;

    right: 25px;

    bottom: 21px;

    display: inline-flex;

    gap: 13px;

    align-items: center;

    padding: 12px 14px;

    background: var(--gold);

    color: #fff;

    font:
        700 8px
        "Orbitron",
        sans-serif;

    letter-spacing: 1px;

    transition: .25s;

    box-shadow:
        0 8px 20px rgba(217, 165, 42, .18);

    overflow: hidden;
}

.project-button::before {
    content: "";

    position: absolute;

    inset: 0;

    background: var(--blue-dark);

    transform: translateX(-100%);

    transition: .35s;

    z-index: -1;
}

.project-button:hover::before {
    transform: translateX(0);
}

.project-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 13px 30px rgba(35, 106, 157, .25);
}

.project-button span {
    font-size: 14px;

    transition: .3s;
}

.project-button:hover span {
    transform: translateX(5px);
}




.project-controls {
    height: 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.project-dots {
    display: flex;

    gap: 6px;
}

.project-dot {
    border: 0;

    width: 22px;

    height: 3px;

    background: #ccd5dc;

    cursor: pointer;

    transition: .3s;
}

.project-dot:hover {
    background: var(--blue);
}

.project-dot.active {
    width: 42px;

    background: var(--gold);
}




.arrows {
    display: flex;

    gap: 7px;
}

.arrows button {
    width: 38px;
    height: 32px;

    border:
        1px solid
        var(--line);

    background: #fff;

    color: var(--text-dark);

    cursor: pointer;

    transition: .25s;
}

.arrows button:hover {
    background: var(--gold);

    color: #fff;

    border-color: var(--gold);

    transform: translateY(-2px);
}




.project-progress {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    height: 3px;

    z-index: 30;

    background: rgba(18, 59, 91, .10);

    overflow: hidden;
}

.project-progress span {
    display: block;

    width: 0;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--gold)
        );
}





.diferenciais {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(49, 157, 207, .14), transparent 34%),
        linear-gradient(135deg, #082d47 0%, #0b3858 100%);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.diferenciais::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 48px 48px;
}

.diferenciais-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.diferencial-card {
    min-width: 0;
    min-height: 210px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border-right: 1px solid rgba(255, 255, 255, .11);
    transition: transform .28s ease, background .28s ease;
}

.diferencial-card:first-child {
    border-left: 1px solid rgba(255, 255, 255, .11);
}

.diferencial-card:hover {
    background: rgba(255, 255, 255, .055);
    transform: translateY(-4px);
}

.diferencial-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(217, 165, 42, .5);
    border-radius: 14px;
    color: var(--gold);
    background: rgba(217, 165, 42, .08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
}

.diferencial-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.diferencial-card h3 {
    margin: 0 0 9px;
    color: #fff;
    font: 600 13px "Orbitron", sans-serif;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.diferencial-card p {
    margin: 0;
    max-width: 260px;
    color: #b9c8d3;
    font-size: 12px;
    line-height: 1.65;
}



.section {
    padding: 130px 0;
}

.about {
    background: #fff;
}

.two-columns {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}

.section-number {
    display: block;

    color: #9b7214;

    font-size: 9px;

    margin-bottom: 25px;
}

.section-heading h2 {
    font:
        600
        clamp(36px, 4vw, 57px)
        / 1.08
        "Orbitron",
        sans-serif;

    letter-spacing: -2px;

    color: var(--text-dark);
}

.section-heading h2 strong {
    color: var(--blue-dark);

    font-weight: 600;
}




.about-text {
    padding-top: 42px;
}

.about-text p {
    color: #667786;

    line-height: 1.9;

    font-size: 14px;

    max-width: 520px;
}

.about-text .lead {
    color: #274861;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 22px;
}

.text-link {
    display: inline-flex;

    gap: 15px;

    color: #9b7214;

    font:
        700 9px
        "Orbitron",
        sans-serif;

    letter-spacing: 1.5px;

    margin-top: 27px;
}

.text-link span {
    transition: .25s;
}

.text-link:hover span {
    transform: translateX(5px);
}




.services {
    background: #f5f7f9;
}

.centered {
    text-align: center;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 60px;
}

.service-card {
    position: relative;

    min-height: 300px;

    padding: 28px;

    border:
        1px solid
        var(--line);

    background: #fff;

    transition: .35s;

    overflow: hidden;

    box-shadow:
        0 8px 25px
        rgba(18, 59, 91, .035);
}

.service-card::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    height: 3px;

    background: var(--gold);

    transform: scaleX(0);

    transform-origin: left;

    transition: .4s;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-index {
    position: absolute;

    right: 20px;
    top: 20px;

    color: #b8c4ce;

    font:
        10px
        "Orbitron",
        sans-serif;
}

.service-icon {
    color: var(--blue-dark);

    font-size: 30px;

    margin-bottom: 48px;

    transition: .3s;
}

.service-card:hover .service-icon {
    color: var(--gold);

    transform:
        rotate(8deg)
        scale(1.1);
}

.service-card h3 {
    font:
        600 18px
        "Orbitron",
        sans-serif;

    color: var(--text-dark);
}

.service-card p {
    font-size: 12px;

    line-height: 1.75;

    color: #667786;

    margin-top: 15px;
}

.service-card a {
    position: absolute;

    bottom: 25px;

    color: #9b7214;

    font:
        700 8px
        "Orbitron",
        sans-serif;

    letter-spacing: 1px;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.service-card a .arrow-icon {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(217,165,42,.11);
    border: 1px solid rgba(217,165,42,.3);
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.service-card a .arrow-icon svg {
    width: 14px;
    height: 14px;
}

.service-card a:hover .arrow-icon {
    transform: translateX(4px);
    background: var(--gold);
    color: #fff;
}




.projects {
    background: #fff;
}

.projects-title-row {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 50px;
}

.projects-title-row > p {
    max-width: 390px;

    color: #667786;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 6px;
}

.gallery-grid {
    margin-top: 60px;

    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr;

    grid-auto-rows: 240px;

    gap: 14px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    border:
        1px solid
        var(--line);

    background: #edf2f5;

    box-shadow:
        0 8px 25px
        rgba(18, 59, 91, .05);
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    filter: saturate(.85);

    transition:
        transform .7s var(--ease),
        filter .7s;
}

.gallery-item:hover img {
    transform: scale(1.05);

    filter: saturate(1);
}

.gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 45%,
            rgba(7, 32, 48, .70)
        );
}

.gallery-item figcaption {
    position: absolute;

    z-index: 2;

    left: 18px;
    bottom: 17px;

    font:
        9px
        "Orbitron",
        sans-serif;

    letter-spacing: 1px;

    color: #fff;
}




.process {
    background: #f5f7f9;
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 65px;
}

.process-item {
    padding: 25px;

    border-top:
        2px solid
        #d8e0e6;

    transition: .3s;
}

.process-item:hover {
    border-top-color: var(--gold);

    transform: translateY(-5px);
}

.process-item span {
    color: #9b7214;

    font:
        10px
        "Orbitron",
        sans-serif;
}

.process-item h3 {
    font:
        600 17px
        "Orbitron",
        sans-serif;

    margin-top: 30px;

    color: var(--text-dark);
}

.process-item p {
    font-size: 12px;

    line-height: 1.8;

    color: #667786;

    margin-top: 12px;
}




.cta {
    padding: 100px 0;

    background:
        linear-gradient(
            120deg,
            #123b5b,
            #236a9d
        );

    position: relative;

    overflow: hidden;
}

.cta::after {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -200px;
    top: -260px;

    border:
        1px solid
        rgba(217, 165, 42, .35);

    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(217, 165, 42, .06),
        0 0 0 140px rgba(217, 165, 42, .035);

    animation:
        ctaRotate
        20s
        linear
        infinite;
}

@keyframes ctaRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;
}

.cta .section-number {
    color: var(--gold-soft);
}

.cta h2 {
    font:
        600
        clamp(38px, 4vw, 58px)
        / 1.08
        "Orbitron",
        sans-serif;

    letter-spacing: -2px;

    color: #fff;
}

.cta h2 strong {
    color: var(--gold-soft);
}

.cta p {
    color: rgba(255, 255, 255, .72);

    font-size: 13px;

    margin-top: 20px;
}

.cta-actions {
    display: flex;

    flex-direction: column;

    gap: 10px;

    min-width: 230px;
}

.button-light {
    border:
        1px solid
        rgba(255, 255, 255, .45);

    color: #fff;
}

.button-light:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: #fff;
}




.footer {
    background: #0b2c45;

    padding: 70px 0 25px;

    border-top:
        4px solid
        var(--gold);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 70px;
}

.footer-logo {
    width: 90px;

    background: #fff;

    padding: 5px;

    border-radius: 3px;
}

.footer-grid p {
    color: #b8c4ce;

    font-size: 11px;

    margin-top: 12px;
}

.footer-grid > div:not(:first-child) {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-title {
    color: var(--gold-soft);

    font-size: 8px;

    margin-bottom: 7px;
}

.footer-grid a {
    color: #d7e0e7;

    font-size: 11px;

    transition: .2s;
}

.footer-grid a:hover {
    color: var(--gold-soft);
}

.copyright {
    margin-top: 55px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255, 255, 255, .12);

    display: flex;

    justify-content: space-between;

    color: #9eb0be;

    font-size: 9px;
}




.whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 999;

    width: 56px;
    height: 56px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #25d366;

    color: #fff;

    font-size: 27px;

    box-shadow:
        0 10px 35px
        rgba(37, 211, 102, .25);

    transition: .3s;

    animation:
        whatsappPulse
        3s
        infinite;
}

.whatsapp:hover {
    transform:
        translateY(-4px)
        scale(1.05);
}

@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 10px 35px
            rgba(37, 211, 102, .25);
    }

    50% {
        box-shadow:
            0 10px 45px
            rgba(37, 211, 102, .45);
    }

    100% {
        box-shadow:
            0 10px 35px
            rgba(37, 211, 102, .25);
    }
}




.reveal {
    opacity: 0;

    transform:
        translateY(28px);

    transition:
        opacity .7s var(--ease),
        transform .7s var(--ease);
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}




@media (max-width: 1050px) {

    .hero-content {
        grid-template-columns:
            1fr 470px;

        gap: 35px;
    }

    .menu {
        gap: 17px;
    }

    .header-button {
        padding: 12px 13px;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .service-card {
        min-height: 260px;
    }
}




@media (max-width: 820px) {

    .header {
        height: 74px;
    }

    .nav {
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;

        order: 3;
    }

    .header-button {
        display: none;
    }

    .menu {
        position: absolute;

        top: 74px;

        left: 24px;
        right: 24px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px 18px;

        background:
            rgba(255, 255, 255, .98);

        border:
            1px solid
            var(--line);

        box-shadow: var(--shadow);

        backdrop-filter: blur(14px);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        transition: .3s;
        
    }

    .menu.open {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }

    .menu a {
        padding: 14px 0;
    }

    .menu a.active::after {
        display: none;
    }

    .hero {
        padding-top: 105px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .eyebrow {
        justify-content: center;
    }

    .hero-copy > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-projects {
        max-width: 620px;

        margin: auto;
    }

    .project-stage {
        height: 510px;
    }

    .numbers-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .numbers-grid > div {
        border-bottom:
            1px solid
            rgba(255, 255, 255, .10);
    }

    .two-columns {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .about-text {
        padding-top: 0;
    }

    .projects-title-row {
        flex-direction: column;

        align-items: flex-start;
    }

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 30px;
    }

    .cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

    .cta-actions {
        width: 100%;

        max-width: 300px;
    }
}




@media (max-width: 560px) {

    .container {
        width:
            min(
                var(--container),
                calc(100% - 30px)
            );
    }

    .logo {
        width: 74px;
    }

    .hero h1 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .project-stage {
        height: 500px;
    }

    .project-slide {
        grid-template-rows:
            250px 1fr;
    }

    .project-info {
        padding: 18px;
    }

    .project-info h2 {
        font-size: 18px;
    }

    .project-info p {
        font-size: 10px;

        max-width: 100%;
    }

    .project-button {
        position: static;

        margin-top: 12px;
    }

    .project-controls {
        height: 48px;
    }

    .numbers-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .numbers-grid > div {
        padding: 22px 12px;
    }

    .numbers strong {
        font-size: 21px;
    }

    .numbers span {
        font-size: 8px;
    }

    .section {
        padding: 90px 0;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 280px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 230px;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-row: span 1;

        grid-column: span 1;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .copyright {
        flex-direction: column;

        gap: 8px;
    }

    .whatsapp {
        width: 50px;
        height: 50px;

        right: 15px;
        bottom: 15px;
    }

}


.hero-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.hero-title h1 {
    display: block;
    width: auto;
    max-width: 500px;
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 55px;
    line-height: 1;
    letter-spacing: -2px;
    word-spacing: 0;
}

.hero-title h1 strong {
    color: var(--blue-dark);
}

.hero-logo {
    width: 150px;
    height: auto;
    flex-shrink: 0;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}


@media (max-width: 820px) {
    .hero-title {
        justify-content: center;
        gap: 24px;
    }

    .hero-logo-box {
        flex: 0 0 auto;
    }

    .hero-logo {
        width: 125px;
    }
}


@media (max-width: 560px) {
    .hero-title {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
    }

    .hero-logo-box {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-logo {
        width: 105px;
        margin: 0 auto;
    }

    .hero-title h1 {
        width: 100%;
        max-width: 100%;
        text-align: center !important;
        font-size: 38px !important;
        line-height: 1.02 !important;
        letter-spacing: -1.5px !important;
        margin: 0;
    }

    .hero-copy > p {
        font-size: 14px;
        line-height: 1.7;
    }
}




.services-grid-five {
    grid-template-columns: repeat(5, 1fr);
}

.services-grid-five .service-card {
    min-height: 330px;
    padding: 24px;
}

.services-grid-five .service-card h3 {
    font-size: 15px;
    line-height: 1.35;
}

.project-category-block {
    padding-top: 90px;
    scroll-margin-top: 95px;
}

.project-category-block + .project-category-block {
    margin-top: 20px;
    border-top: 1px solid var(--line);
}

.project-category-heading {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 32px;
}

.category-kicker {
    display: block;
    margin-bottom: 13px;
    color: #9b7214;
    font: 700 9px "Orbitron", sans-serif;
    letter-spacing: 1.5px;
}

.project-category-heading h3 {
    color: var(--text-dark);
    font: 600 clamp(25px, 3vw, 38px) / 1.15 "Orbitron", sans-serif;
    letter-spacing: -1.2px;
}

.project-category-heading p {
    max-width: 440px;
    color: #667786;
    font-size: 13px;
    line-height: 1.8;
}

.category-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 285px;
    gap: 14px;
}

.portfolio-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #edf2f5;
    box-shadow: 0 8px 25px rgba(18, 59, 91, .055);
}

.portfolio-card-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .65s var(--ease), filter .65s ease;
    filter: saturate(.9) contrast(1.01);
}

.portfolio-card:hover img {
    transform: scale(1.045);
    filter: saturate(1) contrast(1.03);
}

.portfolio-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(7, 32, 48, .82));
    pointer-events: none;
}

.portfolio-card figcaption {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 16px;
    color: #fff;
}

.portfolio-card figcaption strong,
.portfolio-card figcaption span {
    display: block;
}

.portfolio-card figcaption strong {
    font: 600 12px "Orbitron", sans-serif;
    letter-spacing: .35px;
}

.portfolio-card figcaption span {
    margin-top: 5px;
    font-size: 10px;
    color: rgba(255,255,255,.78);
}

.category-gallery-panels .portfolio-card:not(.portfolio-card-featured) img,
.category-gallery-nr12 .portfolio-card:not(.portfolio-card-featured) img {
    object-position: center;
}

.engineering-highlight {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    min-height: 440px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #0b2c45;
    box-shadow: var(--shadow);
}

.engineering-highlight > img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

.engineering-highlight > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px;
}

.engineering-highlight span {
    color: var(--gold-soft);
    font: 700 9px "Orbitron", sans-serif;
    letter-spacing: 1.4px;
}

.engineering-highlight h4 {
    margin-top: 18px;
    color: #fff;
    font: 600 26px / 1.25 "Orbitron", sans-serif;
}

.engineering-highlight p {
    margin-top: 18px;
    color: #c5d1da;
    font-size: 12px;
    line-height: 1.8;
}

#paineis-eletricos .portfolio-card-featured img,
#adequacao-nr12 .portfolio-card-featured img {
    object-position: center;
}

@media (max-width: 1180px) {
    .services-grid-five {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .services-grid-five {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-category-block {
        padding-top: 70px;
    }

    .project-category-heading {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .category-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 250px;
    }

    .portfolio-card-featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .engineering-highlight {
        grid-template-columns: 1fr;
    }

    .engineering-highlight > img {
        min-height: 300px;
        max-height: 390px;
    }

    .engineering-highlight > div {
        padding: 32px;
    }
}

@media (max-width: 560px) {
    .services-grid-five {
        grid-template-columns: 1fr;
    }

    .services-grid-five .service-card {
        min-height: 280px;
    }

    .projects-title-row > p {
        margin-top: 0;
    }

    .project-category-block {
        padding-top: 58px;
    }

    .category-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
        gap: 12px;
    }

    .portfolio-card-featured {
        grid-column: span 1;
    }

    .project-category-heading h3 {
        font-size: 27px;
    }

    .engineering-highlight > img {
        min-height: 240px;
    }

    .engineering-highlight > div {
        padding: 26px 22px;
    }

    .engineering-highlight h4 {
        font-size: 21px;
    }
}



.header-button,
.button,
.project-button,
.text-link,
.arrows button {
    -webkit-tap-highlight-color: transparent;
}

.header-button,
.button,
.project-button {
    border-radius: 7px;
}

.header-button,
.button {
    position: relative;
    overflow: hidden;
}

.header-button::before,
.button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.18) 48%, transparent 75%);
    transform: translateX(-130%);
    transition: transform .55s ease;
    pointer-events: none;
}

.header-button:hover::before,
.button:hover::before {
    transform: translateX(130%);
}

.header-button span,
.button span,
.project-button span,
.text-link span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 27px;
    height: 27px;
    margin-left: 0;
    border-radius: 50%;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-width: 1.5px;
    box-shadow: 0 7px 18px rgba(18,59,91,.08);
}

.header-button span {
    color: #fff;
    background: var(--gold);
    box-shadow: 0 3px 10px rgba(217,165,42,.28);
}

.header-button:hover span {
    color: var(--gold);
    background: #fff;
    transform: translate(2px,-2px);
}

.button {
    gap: 13px;
    border-radius: 8px;
    box-shadow: 0 9px 24px rgba(18,59,91,.10);
}

.button span {
    border: 1px solid rgba(255,255,255,.48);
    background: rgba(255,255,255,.14);
    color: currentColor;
}

.button-primary span {
    background: #fff;
    border-color: #fff;
    color: #9b7214;
    box-shadow: 0 4px 12px rgba(112,75,0,.16);
}

.button-outline span {
    border-color: rgba(18,59,91,.16);
    background: rgba(18,59,91,.05);
    color: var(--text-dark);
}

.button-outline:hover span {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.button-light span {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.48);
    color: #fff;
}

.button:hover span {
    transform: translateX(4px);
}

.project-button {
    gap: 10px;
    padding: 9px 10px 9px 14px;
    isolation: isolate;
}

.project-button::before {
    z-index: -1;
}

.project-button span {
    width: 28px;
    height: 28px;
    background: #fff;
    color: var(--gold);
    box-shadow: 0 4px 12px rgba(0,0,0,.14);
}

.project-button:hover span {
    color: var(--blue-dark);
    transform: translateX(4px);
}

.text-link {
    align-items: center;
    gap: 10px;
    transition: color .25s ease, transform .25s ease;
}

.text-link span {
    width: 26px;
    height: 26px;
    background: rgba(217,165,42,.10);
    border: 1px solid rgba(217,165,42,.34);
    color: #9b7214;
}

.text-link:hover {
    color: var(--blue-dark);
    transform: translateX(2px);
}

.text-link:hover span {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateX(4px);
}

.arrows {
    gap: 10px;
}

.arrows button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1.5px solid rgba(18,59,91,.16);
    border-radius: 50%;
    background: #fff;
    color: var(--blue-dark);
    font-family: "Inter", sans-serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 7px 18px rgba(18,59,91,.10);
    transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.arrows button:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 24px rgba(217,165,42,.28);
}

.arrows button:active {
    transform: translateY(-1px) scale(.98);
}

.arrows button:focus-visible,
.header-button:focus-visible,
.button:focus-visible,
.project-button:focus-visible,
.text-link:focus-visible {
    outline: 3px solid rgba(217,165,42,.28);
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .button,
    .header-button {
        min-height: 52px;
    }

    .button span,
    .header-button span,
    .project-button span {
        width: 30px;
        height: 30px;
        font-size: 17px;
    }

    .arrows button {
        width: 46px;
        height: 46px;
        font-size: 24px;
    }
}



.whatsapp svg {
    width: 29px;
    height: 29px;
    display: block;
}

@media (max-width: 820px) {
    .header-button {
        display: none !important;
    }

    .nav {
        grid-template-columns: auto 1fr auto;
    }

    .logo-link {
        justify-self: start;
    }

    .menu-toggle {
        justify-self: end;
    }
}

@media (max-width: 480px) {
    .whatsapp {
        width: 54px;
        height: 54px;
        right: 18px;
        bottom: 18px;
    }

    .whatsapp svg {
        width: 28px;
        height: 28px;
    }
}



.nr12-content {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 18%, rgba(217,165,42,.09), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    border-top: 1px solid rgba(18,59,91,.08);
}

.nr12-content::before {
    content: "NR-12";
    position: absolute;
    right: -12px;
    top: 26px;
    font-family: "Orbitron", "Inter", sans-serif;
    font-size: clamp(76px, 11vw, 170px);
    font-weight: 800;
    letter-spacing: -.05em;
    color: rgba(18,59,91,.025);
    pointer-events: none;
    user-select: none;
}

.nr12-content-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: clamp(36px, 7vw, 100px);
    align-items: end;
    margin-bottom: 42px;
}

.nr12-content-header > p {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.85;
    max-width: 540px;
}

.nr12-benefits {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.nr12-benefit-card {
    position: relative;
    min-height: 245px;
    padding: 30px;
    overflow: hidden;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(18,59,91,.11);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(18,59,91,.07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.nr12-benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217,165,42,.42);
    box-shadow: 0 18px 42px rgba(18,59,91,.11);
}

.nr12-benefit-index {
    display: block;
    margin-bottom: 30px;
    color: var(--gold);
    font-family: "Orbitron", "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
}

.nr12-benefit-icon {
    position: absolute;
    top: 24px;
    right: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(217,165,42,.12);
    color: var(--gold);
    font-size: 18px;
}

.nr12-benefit-card h3 {
    margin: 0 0 14px;
    color: var(--blue-dark);
    font-family: "Orbitron", "Inter", sans-serif;
    font-size: clamp(18px, 2vw, 23px);
}

.nr12-benefit-card p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}

.nr12-article-box {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 22px;
    background: var(--blue-dark);
    box-shadow: 0 22px 55px rgba(18,59,91,.18);
}

.nr12-article-copy {
    max-width: 760px;
}

.nr12-article-label {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--gold);
    font-family: "Orbitron", "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
}

.nr12-article-copy h3 {
    margin: 0 0 14px;
    color: #fff;
    font-family: "Orbitron", "Inter", sans-serif;
    font-size: clamp(21px, 2.5vw, 32px);
    line-height: 1.3;
}

.nr12-article-copy p {
    margin: 0;
    max-width: 720px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.8;
}

.nr12-article-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-width: 285px;
}

.nr12-article-actions .button {
    width: 100%;
    justify-content: space-between;
    white-space: nowrap;
}

.nr12-contact-button {
    background: #fff;
}

@media (max-width: 980px) {
    .nr12-content-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nr12-content-header > p {
        max-width: 720px;
    }

    .nr12-article-box {
        grid-template-columns: 1fr;
    }

    .nr12-article-actions {
        min-width: 0;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .nr12-article-actions .button {
        width: auto;
        flex: 1 1 280px;
    }
}

@media (max-width: 760px) {
    .nr12-benefits {
        grid-template-columns: 1fr;
    }

    .nr12-benefit-card {
        min-height: 0;
        padding: 26px;
    }

    .nr12-benefit-index {
        margin-bottom: 24px;
    }
}

@media (max-width: 520px) {
    .nr12-content::before {
        top: 60px;
        font-size: 88px;
    }

    .nr12-content-header {
        margin-bottom: 28px;
    }

    .nr12-content-header > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .nr12-benefits {
        gap: 14px;
        margin-bottom: 16px;
    }

    .nr12-benefit-card {
        border-radius: 16px;
    }

    .nr12-article-box {
        gap: 26px;
        padding: 26px 20px;
        border-radius: 18px;
    }

    .nr12-article-copy h3 {
        font-size: 20px;
    }

    .nr12-article-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .nr12-article-actions .button {
        width: 100%;
        min-width: 0;
        white-space: normal;
        text-align: left;
    }
}


.whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp svg {
    position: static;
    width: 28px;
    height: 28px;
    display: block;
    margin: 0;
    flex: 0 0 28px;
    transform: none;
}


.nr12-article-box {
    width: 100%;
    box-sizing: border-box;
    grid-template-columns: minmax(0, 1fr) minmax(285px, 320px);
}

.nr12-article-copy,
.nr12-article-actions {
    min-width: 0;
}

.nr12-contact-button,
.nr12-article-actions .nr12-contact-button {
    background: #ffffff;
    color: var(--blue-dark);
    border: 1px solid rgba(255,255,255,.78);
}

.nr12-contact-button span,
.nr12-article-actions .nr12-contact-button span {
    color: var(--blue-dark);
    background: rgba(18,59,91,.06);
    border-color: rgba(18,59,91,.16);
}

.nr12-contact-button:hover,
.nr12-article-actions .nr12-contact-button:hover {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
}

.nr12-contact-button:hover span,
.nr12-article-actions .nr12-contact-button:hover span {
    color: var(--gold);
    background: #ffffff;
    border-color: #ffffff;
}

@media (max-width: 1100px) {
    .nr12-article-box {
        grid-template-columns: 1fr;
    }

    .nr12-article-actions {
        width: 100%;
        min-width: 0;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .nr12-article-actions .button {
        flex: 1 1 280px;
        min-width: 0;
    }
}

@media (max-width: 620px) {
    .nr12-article-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .nr12-article-actions .button {
        width: 100%;
        white-space: normal;
    }
}



.contact-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(36, 119, 171, .22), transparent 34%),
        radial-gradient(circle at 92% 84%, rgba(217, 165, 42, .13), transparent 30%),
        linear-gradient(130deg, #08283f 0%, #0d3a58 55%, #123f5e 100%);
}

.contact-section::before {
    content: "ESC";
    position: absolute;
    right: -18px;
    top: 24px;
    font: 700 clamp(100px, 18vw, 260px) / 1 "Orbitron", sans-serif;
    letter-spacing: -12px;
    color: rgba(255,255,255,.025);
    pointer-events: none;
}

.contact-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
    gap: clamp(46px, 6vw, 90px);
    align-items: start;
}

.contact-intro {
    padding-top: 18px;
}

.contact-intro .section-number {
    color: var(--gold-soft);
}

.contact-intro h2 {
    margin-top: 18px;
    max-width: 620px;
    font: 600 clamp(38px, 4.6vw, 64px) / 1.08 "Orbitron", sans-serif;
    letter-spacing: -2.8px;
    color: #fff;
}

.contact-intro h2 strong {
    color: var(--gold-soft);
    font-weight: 600;
}

.contact-intro > p {
    max-width: 600px;
    margin-top: 24px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.8;
}

.contact-highlights {
    display: grid;
    gap: 0;
    margin-top: 42px;
    border-top: 1px solid rgba(255,255,255,.11);
}

.contact-highlight {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.11);
}

.contact-highlight > span {
    padding-top: 2px;
    color: var(--gold-soft);
    font: 600 10px "Orbitron", sans-serif;
    letter-spacing: 1px;
}

.contact-highlight strong {
    display: block;
    color: #fff;
    font: 600 13px "Montserrat", sans-serif;
}

.contact-highlight small {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,.56);
    font-size: 11px;
    line-height: 1.6;
}

.contact-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.contact-quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 14px;
    background: rgba(255,255,255,.055);
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.contact-quick-link:hover {
    transform: translateY(-3px);
    border-color: rgba(217,165,42,.5);
    background: rgba(255,255,255,.085);
}

.contact-quick-icon {
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font: 600 15px "Montserrat", sans-serif;
}

.contact-quick-link > span:last-child {
    min-width: 0;
}

.contact-quick-link small,
.contact-quick-link strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-quick-link small {
    margin-bottom: 4px;
    color: rgba(255,255,255,.48);
    font: 600 8px "Orbitron", sans-serif;
    letter-spacing: 1px;
}

.contact-quick-link strong {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

.quote-card {
    position: relative;
    padding: clamp(24px, 3vw, 38px);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 24px;
    background: rgba(248, 251, 253, .98);
    box-shadow: 0 30px 80px rgba(0,0,0,.24);
}

.quote-card::before {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 0;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--gold), #f0c660 55%, transparent);
}

.quote-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #dfe7ec;
}

.quote-kicker {
    display: block;
    margin-bottom: 9px;
    color: #9b7214;
    font: 600 9px "Orbitron", sans-serif;
    letter-spacing: 1.4px;
}

.quote-card-head h3 {
    margin: 0;
    color: var(--text-dark);
    font: 600 clamp(22px, 2.2vw, 30px) / 1.2 "Orbitron", sans-serif;
    letter-spacing: -1px;
}

.quote-badge {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--blue-dark);
    color: var(--gold-soft);
    font: 700 11px "Orbitron", sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(8,40,63,.18);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-field {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field > span {
    color: #405462;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .3px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #d6e0e6;
    border-radius: 11px;
    outline: none;
    background: #fff;
    color: var(--text-dark);
    font: 500 13px "Inter", sans-serif;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-field input,
.form-field select {
    height: 48px;
    padding: 0 14px;
}

.form-field select {
    padding-right: 42px;
    background-image:
        linear-gradient(45deg, transparent 50%, #6c7c88 50%),
        linear-gradient(135deg, #6c7c88 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 21px,
        calc(100% - 15px) 21px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.form-field textarea {
    min-height: 124px;
    resize: vertical;
    padding: 13px 14px;
    line-height: 1.55;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #96a5af;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #2a77a8;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(42,119,168,.10);
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
    border-color: #c94e4e;
    box-shadow: 0 0 0 3px rgba(201,78,78,.08);
}

.form-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid #dfe7ec;
}

.form-footer p {
    margin: 0;
    color: #6d7e89;
    font-size: 9px;
    line-height: 1.55;
}

.form-footer p span {
    color: #15845c;
    font-weight: 800;
}

.quote-submit {
    min-width: 218px;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.form-status {
    min-height: 18px;
    margin-top: 10px;
    color: #b33e3e;
    font-size: 10px;
    font-weight: 600;
}

.service-card,
.portfolio-card,
.nr12-benefit-card,
.quote-card {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
@media (max-width: 1080px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-intro {
        max-width: 760px;
    }

    .quote-card {
        max-width: 820px;
        width: 100%;
    }
}

@media (max-width: 700px) {
    .contact-section {
        padding: 82px 0;
    }

    .contact-intro h2 {
        font-size: clamp(36px, 10vw, 50px);
        letter-spacing: -2px;
    }

    .contact-quick-actions,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field-full {
        grid-column: auto;
    }

    .form-footer {
        grid-template-columns: 1fr;
    }

    .quote-submit {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 460px) {
    .quote-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .quote-card-head {
        gap: 12px;
    }

    .quote-badge {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .contact-quick-actions {
        gap: 9px;
    }
}



@media (max-width: 900px) {
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
    .diferencial-card:nth-child(2) { border-right: 1px solid rgba(255,255,255,.11); }
    .diferencial-card { border-bottom: 1px solid rgba(255,255,255,.11); }
    .diferencial-card:nth-child(n+3) { border-bottom: 0; }
}

@media (max-width: 520px) {
    .diferenciais-grid { grid-template-columns: 1fr; }
    .diferencial-card {
        min-height: auto;
        padding: 28px 22px;
        flex-direction: row;
        align-items: flex-start;
        border-left: 1px solid rgba(255,255,255,.11);
        border-right: 1px solid rgba(255,255,255,.11);
        border-bottom: 1px solid rgba(255,255,255,.11) !important;
    }
    .diferencial-card:last-child { border-bottom: 0 !important; }
    .diferencial-icon { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 12px; }
    .diferencial-icon svg { width: 24px; height: 24px; }
    .diferencial-card h3 { font-size: 11px; }
    .diferencial-card p { font-size: 11px; max-width: none; }
}


.whatsapp svg {
    width: 30px !important;
    height: 30px !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;

    position: static !important;

    transform: translate(0, 0) !important;
    transform-origin: center center !important;
}

@media (max-width: 480px) {
    .whatsapp svg {
        width: 28px !important;
        height: 28px !important;
    }
}


.whatsapp {
    overflow: hidden;
    padding: 0;
    background: #25d366;
}

.whatsapp img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
}


.arrow-icon svg,
.arrows button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-button,
.button,
.project-button {
    border-radius: 999px;
}

.button,
.header-button {
    padding-left: 24px;
    padding-right: 12px;
}

.button-primary {
    background: linear-gradient(135deg, #d39a19, #e5ad25);
    box-shadow: 0 12px 28px rgba(185, 127, 0, .22);
}

.button-primary:hover {
    background: linear-gradient(135deg, #c88f10, #dda51e);
}

.button-outline {
    border-color: rgba(18, 59, 91, .22);
    box-shadow: 0 8px 24px rgba(18, 59, 91, .07);
}

.project-button {
    padding: 9px 10px 9px 17px;
    box-shadow: 0 10px 24px rgba(178, 122, 0, .22);
}

.arrows button {
    width: 50px;
    height: 50px;
    border-color: rgba(18,59,91,.14);
    box-shadow: 0 10px 25px rgba(18,59,91,.11);
}

.arrows button svg {
    width: 20px;
    height: 20px;
}

.quote-logo {
    width: 104px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 7px 13px rgba(18,59,91,.12));
}

.quote-card {
    border-radius: 28px;
    background: rgba(255,255,255,.985);
}

.quote-card-head {
    align-items: center;
}

.quote-card-head h3 {
    max-width: 330px;
}

.form-field input,
.form-field select,
.form-field textarea {
    border-radius: 14px;
    border-color: #d3dfe6;
    background: #fbfcfd;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
    border-color: #abc1ce;
}

.whatsapp {
    display: grid;
    place-items: center;
    overflow: visible;
    color: #fff;
    background: #25d366;
    border: 3px solid #fff;
    box-shadow: 0 14px 35px rgba(13, 82, 50, .28);
}

.whatsapp::before {
    content: "";
    position: absolute;
    inset: -7px;
    z-index: -1;
    border-radius: 50%;
    background: rgba(37, 211, 102, .18);
}

.whatsapp svg {
    width: 31px !important;
    height: 31px !important;
    color: #fff;
}

.whatsapp-mini svg {
    width: 23px;
    height: 23px;
}

@media (max-width: 640px) {
    .quote-logo { width: 82px; }
    .arrows button { width: 48px; height: 48px; }
}


.services {
    background:
        radial-gradient(circle at 8% 10%, rgba(49,157,207,.08), transparent 28%),
        linear-gradient(180deg, #f7f9fb 0%, #eef3f6 100%);
}

.services-grid-five {
    gap: 14px;
}

.services-grid-five .service-card {
    min-height: 345px;
    padding: 30px 26px;
    border: 1px solid rgba(18,59,91,.10);
    border-radius: 20px;
    box-shadow: 0 13px 34px rgba(18,59,91,.055);
}

.services-grid-five .service-card::before {
    left: 24px;
    right: 24px;
    bottom: 0;
    width: auto;
    height: 4px;
    border-radius: 4px 4px 0 0;
}

.services-grid-five .service-card:hover {
    border-color: rgba(35,106,157,.24);
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(18,59,91,.12);
}

.services-grid-five .service-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 42px;
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(35,106,157,.10), rgba(49,157,207,.04));
    border: 1px solid rgba(35,106,157,.15);
    font-size: 25px;
}

.services-grid-five .service-card:nth-child(3) .service-icon,
.services-grid-five .service-card:nth-child(4) .service-icon {
    color: #a97500;
    background: linear-gradient(145deg, rgba(217,165,42,.15), rgba(217,165,42,.05));
    border-color: rgba(217,165,42,.24);
}

.services-grid-five .service-index {
    top: 27px;
    right: 25px;
    padding: 6px 8px;
    border-radius: 7px;
    background: #f1f5f7;
    color: #899aa6;
}

.services-grid-five .service-card h3 {
    min-height: 47px;
    font-size: 16px;
    line-height: 1.42;
}

.services-grid-five .service-card p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.75;
}


.projects-title-row {
    position: relative;
    align-items: center;
    padding: 44px 46px;
    border-radius: 26px;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(8,40,63,.98), rgba(18,66,98,.96));
    box-shadow: 0 22px 55px rgba(18,59,91,.14);
}

.projects-title-row::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -70px;
    top: -115px;
    border-radius: 50%;
    border: 1px solid rgba(217,165,42,.22);
    box-shadow: 0 0 0 36px rgba(217,165,42,.035), 0 0 0 72px rgba(255,255,255,.018);
}

.projects-title-row .section-heading,
.projects-title-row > p {
    position: relative;
    z-index: 1;
}

.projects-title-row .section-heading h2 {
    color: #fff;
    font-size: clamp(34px, 4vw, 54px);
}

.projects-title-row .section-heading h2 strong {
    color: var(--gold-soft);
}

.projects-title-row > p {
    padding-left: 26px;
    border-left: 2px solid var(--gold);
    color: rgba(255,255,255,.72);
    font-size: 13px;
}

.project-category-block {
    padding-top: 92px;
}

.project-category-heading {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(18,59,91,.12);
}

.project-category-heading h3 {
    position: relative;
    padding-left: 19px;
}

.project-category-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: .12em;
    bottom: .12em;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(var(--gold), var(--blue-dark));
}


.contact-quick-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-quick-link {
    min-height: 70px;
    padding: 13px 12px;
}

.contact-quick-icon.instagram-icon {
    color: #fff;
    background: linear-gradient(135deg, #f9ce34, #ee2a7b 52%, #6228d7);
}

.instagram-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.instagram-icon .instagram-dot {
    fill: currentColor;
    stroke: none;
}

.contact-instagram:hover {
    border-color: rgba(238,42,123,.56);
}

@media (max-width: 980px) {
    .contact-quick-actions { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .projects-title-row {
        display: grid;
        padding: 34px 28px;
    }
    .projects-title-row > p {
        max-width: none;
        padding-left: 18px;
    }
    .contact-quick-actions { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .services-grid-five { gap: 12px; }
    .services-grid-five .service-card { min-height: 300px; }
    .projects-title-row { border-radius: 20px; }
}


.project-category-heading > p {
    max-width: 490px;
    margin: 0;
    padding: 16px 18px;
    border-left: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
    background: linear-gradient(90deg, rgba(217,165,42,.09), rgba(246,248,250,.82));
    color: #354f62;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.72;
    letter-spacing: .05px;
}

@media (max-width: 820px) {
    .project-category-heading > p {
        max-width: 620px;
        font-size: 14.5px;
        line-height: 1.7;
    }
}


.hero-projects {
    position: relative;
    padding: 14px;
    border-radius: 28px;
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(18,59,91,.09);
    box-shadow: 0 28px 70px rgba(18,59,91,.12);
    backdrop-filter: blur(12px);
}

.project-topbar {
    height: 70px;
    padding: 0 8px 12px;
}

.project-brand {
    display: flex !important;
    align-items: center;
    gap: 12px !important;
    color: var(--text-dark) !important;
}

.project-brand img {
    width: 58px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(18,59,91,.12));
}

.project-brand > span {
    display: grid;
    gap: 4px;
}

.project-brand strong {
    color: var(--text-dark);
    font: 700 10px "Orbitron", sans-serif;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.project-brand small {
    color: #738491;
    font: 500 9px "Inter", sans-serif;
    letter-spacing: .15px;
}

.project-counter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    border-radius: 999px;
    background: #092f49;
    color: rgba(255,255,255,.62);
    box-shadow: 0 8px 18px rgba(8,40,63,.16);
}

.project-counter span {
    color: #fff !important;
    font: 700 10px "Orbitron", sans-serif;
}

.project-counter span:first-child {
    color: var(--gold-soft) !important;
}

.project-counter small {
    font-size: 9px;
    text-transform: lowercase;
}

.project-stage {
    height: 548px;
    border: 0;
    border-radius: 20px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(18,59,91,.11);
}

.project-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 20;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(18,59,91,.10);
    pointer-events: none;
}

.project-slide {
    grid-template-rows: 320px 1fr;
}

.project-image-wrap::before {
    inset: 17px;
    border-radius: 12px;
    border-color: rgba(239,196,90,.82);
}

.project-image-wrap::after {
    background: linear-gradient(180deg, transparent 45%, rgba(7,32,48,.62));
}

.project-image-wrap img {
    object-position: center;
}

.image-label {
    left: 22px;
    bottom: 18px;
    padding: 9px 13px;
    border: 1px solid rgba(239,196,90,.7);
    border-radius: 999px;
    background: rgba(8,40,63,.82);
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.project-info {
    padding: 24px 27px 22px;
    border-top: 4px solid var(--gold);
    background:
        radial-gradient(circle at 100% 100%, rgba(49,157,207,.08), transparent 34%),
        #fff;
}

.project-category {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 6px;
    background: rgba(217,165,42,.11);
    color: #8e6509;
    font-size: 8px;
}

.project-info h2 {
    margin-top: 10px;
    font-size: 23px;
}

.project-info p {
    max-width: 390px;
    margin-top: 8px;
    color: #4e6474;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.65;
}

.project-controls {
    min-height: 72px;
    height: auto;
    gap: 14px;
    padding: 12px 4px 0;
}

.project-dots {
    flex: 1;
    gap: 7px;
}

.project-dot,
.project-dot.active {
    width: auto;
    height: 38px;
    padding: 0 13px;
    border: 1px solid rgba(18,59,91,.11);
    border-radius: 999px;
    background: #f2f5f7;
    color: #667987;
    cursor: pointer;
    font: 600 8px "Orbitron", sans-serif;
    letter-spacing: .45px;
}

.project-dot:hover {
    border-color: rgba(217,165,42,.48);
    background: rgba(217,165,42,.08);
    color: #8e6509;
}

.project-dot.active {
    border-color: #0c476e;
    background: #0c476e;
    color: #fff;
    box-shadow: 0 8px 18px rgba(12,71,110,.20);
}

.arrows button {
    width: 46px;
    height: 46px;
    background: #fff;
}

.arrows button:last-child {
    border-color: #0c476e;
    background: #0c476e;
    color: #fff;
}

.arrows button:last-child:hover {
    border-color: var(--gold);
    background: var(--gold);
}

@media (max-width: 720px) {
    .hero-projects { padding: 10px; border-radius: 22px; }
    .project-topbar { height: 64px; }
    .project-brand img { width: 50px; }
    .project-brand small { display: none; }
    .project-stage { height: 530px; }
    .project-slide { grid-template-rows: 270px 1fr; }
    .project-info { padding: 20px; }
    .project-info p { font-size: 11.5px; }
    .project-controls { align-items: flex-start; }
    .project-dots { display: grid; grid-template-columns: repeat(2, 1fr); }
    .project-dot, .project-dot.active { width: 100%; padding: 0 8px; }
}

@media (max-width: 420px) {
    .project-brand strong { font-size: 8px; }
    .project-counter { padding: 8px 10px; }
    .project-stage { height: 540px; }
    .project-slide { grid-template-rows: 235px 1fr; }
    .project-info h2 { font-size: 18px; }
    .project-info p { font-size: 11px; }
    .project-controls { display: grid; grid-template-columns: 1fr; }
    .arrows { justify-content: flex-end; }
}

