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

:root {
    --orange: #ff7900;
    --orange2: #ff9635;

    --black: #080b0e;
    --dark: #0d1216;
    --dark2: #11171c;
    --card: #12191f;

    --line: rgba(255,255,255,.11);

    --white: #fff;
    --muted: #a8afb5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
}

ul {
    list-style: none;
}

.container {
    width: min(94%, 1400px);
    margin: auto;
}


/* =========================
   HEADER
========================= */

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;

    background: rgba(15,17,23,.85);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255,255,255,.05);
}

header .container {
    display: flex;
    align-items: center;
    height: 60px;
}

.logo img {
    width: 200px;
    margin-right: 50px;
}

nav {
    margin-left: auto;
    margin-right: 25px;
}

nav ul {
    display: flex;
    gap: 25px;
}

nav a {
    position: relative;
    color: #fff;
    transition: .3s;
}

nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition: width .25s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #fff;
}

.btn-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 8px 14px;

    background: transparent;
    color: #fff;

    border: 2px solid var(--orange);
    border-radius: 6px;

    font-weight: 600;

    transition: .3s ease;
}

.btn-header:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.menu-btn {
    display: none;

    background: transparent;
    border: 0;

    color: #fff;
    font-size: 22px;

    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 590px;
    padding-top: 70px;

    position: relative;
    overflow: hidden;

    background: #090d10;
}

.hero-bg {
    position: absolute;
    inset: 70px 0 0;

    background:
        url("../img/bg.png") right center / cover no-repeat;
}



.hero-content {
    min-height: 520px;

    position: relative;

    display: flex;
    align-items: center;
}

.hero-copy {
    width: 50%;

    padding: 55px 0 45px;

    position: relative;
    z-index: 2;
}

.eyebrow {
    display: block;

    color: var(--orange);

    font-size: 11px;
    font-weight: 600;

    margin-bottom: 13px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.08;

    letter-spacing: -1px;

    margin-bottom: 13px;

    font-weight: 700;
}

.hero h1 span {
    color: var(--orange);
}

.hero-copy > p {
    max-width: 510px;

    color: #c3c7ca;

    font-size: 12px;
    line-height: 1.65;

    margin-bottom: 25px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4,1fr);

    max-width: 600px;

    gap: 8px;

    margin-bottom: 25px;
}

.hero-feature {
    min-height: 72px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
}

.hero-feature i {
    color: var(--orange);

    font-size: 23px;

    margin-bottom: 7px;
}

.hero-feature span {
    font-size: 9px;
    line-height: 1.35;

    color: #d5d8da;
}

.hero-buttons {
    display: flex;
    gap: 10px;
}

.btn-primary,
.btn-outline {
    height: 37px;

    padding: 0 16px;

    border-radius: 5px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    font-size: 10px;
    font-weight: 700;

    transition: .25s;
}

.btn-primary {
    background: var(--orange);
    border: 1px solid var(--orange);
}

.btn-outline {
    border: 1px solid var(--orange);
    background: rgba(0,0,0,.25);
}

.btn-primary:hover,
.btn-outline:hover {
    background: var(--orange2);
    transform: translateY(-2px);
}


/* =========================
   DIFERENCIAIS
========================= */

.diferenciais {
    background: #10161a;

    border-top: 1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.diferenciais-grid {
    min-height: 140px;

    display: grid;
    grid-template-columns: 1.2fr repeat(4,1fr);
}

.diferenciais-intro {
    padding: 25px 28px 20px 0;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.section-label {
    font-size: 10px;

    color: #fff;

    font-weight: 700;

    text-transform: uppercase;
}

.diferenciais-intro h2 {
    font-size: 17px;
    line-height: 1.15;

    margin: 3px 0 8px;
}

.diferenciais-intro h2::after {
    content: "";

    display: block;

    width: 38px;
    height: 2px;

    background: var(--orange);

    margin-top: 5px;
}

.diferenciais-intro p {
    max-width: 260px;

    color: var(--muted);

    font-size: 9px;
    line-height: 1.65;
}

.diferencial-item {
    padding: 20px 18px;

    border-left: 1px solid var(--line);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
}

.diferencial-item i {
    color: var(--orange);

    font-size: 25px;

    margin-bottom: 8px;
}

.diferencial-item h3 {
    font-size: 11px;

    margin-bottom: 7px;
}

.diferencial-item p {
    color: var(--muted);

    font-size: 8px;
    line-height: 1.55;

    max-width: 190px;
}


/* =========================
   TÍTULOS
========================= */

.section-heading {
    text-align: center;

    margin-bottom: 25px;
}

.section-heading span {
    color: var(--orange);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;
}

.section-heading h2 {
    font-size: 23px;
    line-height: 1.2;

    margin-top: 5px;

    font-weight: 600;
}


/* =========================
   SERVIÇOS
========================= */

.servicos {
    padding: 42px 0 48px;

    background: #0d1216;
}

.service-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 10px;
}

.service-card {

    position: relative;
    min-height: 160px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 6px;

    background: #11171c;
}

.service-card > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: .46;

    transition: .4s;
}

.service-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(8,12,15,.24),
            rgba(8,12,15,.94)
        );
}

.service-card:hover > img {
    transform: scale(1.06);
    opacity: .6;
}

.service-content {
    position: relative;
    z-index: 2;

    height: 100%;
    min-height: 160px;

    padding: 14px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-icon {
    color: var(--orange);

    font-size: 21px;

    margin-bottom: 7px;
}

.service-content h3 {
    font-size: 11px;

    margin-bottom: 7px;
}

.service-content p {
    color: #b8bec2;

    font-size: 8px;
    line-height: 1.55;

    max-width: 220px;
}

.service-content a {
    margin-top: auto;

    color: var(--orange);

    font-size: 9px;
    font-weight: 600;

    display: flex;
    align-items: center;

    gap: 5px;
}


/* =========================
   PROCESSO
========================= */

.processo {
    padding: 38px 0 42px;

    background: #0b1014;
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(5,1fr);

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 6px;

    overflow: visible;
}

.process-step {
    position: relative;

    min-height: 105px;

    padding: 20px 15px 12px;

    border-right: 1px solid rgba(255,255,255,.12);

    text-align: left;
}

.process-step:last-child {
    border-right: 0;
}

.process-number {
    position: absolute;

    left: 50%;
    top: -19px;

    transform: translateX(-50%);

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--orange);

    border-radius: 50%;

    background: #0b1014;

    color: #fff;

    font-size: 10px;
    font-weight: 600;
}

.process-step > i {
    color: var(--orange);

    font-size: 18px;

    margin-bottom: 7px;
}

.process-step h3 {
    font-size: 10px;

    margin-bottom: 5px;
}

.process-step p {
    color: var(--muted);

    font-size: 7px;
    line-height: 1.55;
}


/* =========================
   BLOG
========================= */

.blog {
    padding: 40px 0 50px;

    background: #0d1216;
}

.blog-title-row {
    display: flex;

    align-items: end;
    justify-content: space-between;

    margin-bottom: 18px;
}

.section-heading.left {
    text-align: left;

    margin-bottom: 0;
}

.all-posts {
    color: var(--orange);

    font-size: 9px;
    font-weight: 600;

    margin-bottom: 4px;
}

.blog-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 10px;
}

.post {
    overflow: hidden;

    background: #12191f;

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 6px;
}

.post img {
    width: 100%;
    height: 270px;

    object-fit: cover;
}

.post-content {
    padding: 12px;
}

.post-content small {
    color: #7f878c;

    font-size: 7px;
}

.post h3 {
    font-size: 11px;
    line-height: 1.35;

    margin: 7px 0;
}

.post p {
    min-height: 38px;

    color: var(--muted);

    font-size: 8px;
    line-height: 1.5;
}

.post a {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: var(--orange);

    font-size: 8px;
    font-weight: 600;

    margin-top: 8px;
}


/* =========================
   CONTATO
========================= */

.contato {
    padding: 24px 0;

    background: #090e12;
}

.contato-box {
    min-height: 135px;

    padding: 18px;

    display: grid;

    grid-template-columns: 1.1fr 1.9fr;

    gap: 18px;

    align-items: center;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 6px;

    background: #0d1318;
}

.contato-intro h2 {
    font-size: 14px;
    line-height: 1.4;

    margin-bottom: 8px;
}

.contato-intro p {
    color: var(--muted);

    font-size: 8px;
}

.contato-cards {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 10px;
}

.contact-card {
    min-height: 88px;

    padding: 12px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 5px;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    transition: .25s;
}

.contact-card:hover {
    border-color: var(--orange);

    transform: translateY(-2px);
}

.contact-card > i {
    color: var(--orange);

    font-size: 24px;

    margin-top: 3px;
}

.contact-card div {
    display: flex;

    flex-direction: column;
}

.contact-card span {
    font-size: 9px;

    color: #d9dcde;

    margin-bottom: 3px;
}

.contact-card strong {
    color: var(--orange);

    font-size: 9px;

    margin-bottom: 7px;
}

.contact-card small {
    display: inline-block;

    color: #8d959a;

    font-size: 7px;

    border: 1px solid rgba(255,255,255,.10);

    padding: 4px 7px;

    border-radius: 3px;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #070b0e;

    padding-top: 28px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1.25fr 1.25fr;

    gap: 45px;

    padding-bottom: 25px;
}

.footer-brand img {
    width: 145px;

    margin-bottom: 10px;
}

.footer-grid p,
.footer-grid li {
    color: #8f979c;

    font-size: 8px;
    line-height: 1.65;

    margin-bottom: 7px;
}

.footer-brand p {
    max-width: 260px;
}

.footer-grid h4 {
    color: #fff;

    font-size: 9px;

    margin-bottom: 12px;
}

.footer-grid a:hover {
    color: var(--orange);
}

.footer-grid li i {
    color: #9da4a8;

    width: 15px;
}

.social {
    display: flex;

    gap: 8px;

    margin-top: 10px;
}

.social a {
    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 4px;

    color: #9da4a8;

    font-size: 10px;
}

.social a:hover {
    color: #fff;

    border-color: var(--orange);

    background: var(--orange);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,.08);
}

.copyright .container {
    min-height: 40px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.copyright span,
.copyright a {
    color: #656d72;

    font-size: 7px;
}

.copyright div {
    display: flex;

    gap: 20px;
}


/* =========================
   RESPONSIVO
========================= */

@media(max-width:1100px) {

    nav ul {
        gap: 20px;
    }

    .hero-copy {
        width: 58%;
    }

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

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

    .diferenciais-intro {
        grid-column: span 2;
    }

    .diferencial-item:nth-child(2) {
        border-left: 0;
    }

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

    .process-step:nth-child(3) {
        border-right: 0;
    }

    .process-step:nth-child(n+4) {
        border-top: 1px solid var(--line);
    }

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


@media(max-width:768px) {

    header,
    .header-inner {
        height: 62px;
    }

    .logo img {
        width: 130px;
        margin-right: 0;
    }

    nav {
        display: none;

        position: absolute;

        top: 62px;
        left: 0;
        right: 0;

        margin: 0;

        background: #080b0e;

        border-top: 1px solid var(--line);
    }

    nav.open {
        display: block;
    }

    nav ul {
        flex-direction: column;

        gap: 0;

        padding: 15px;
    }

    nav li {
        width: 100%;
    }

    nav a {
        display: block;

        padding: 12px;
    }

    .btn-header {
        display: none;
    }

    .menu-btn {
        display: block;

        margin-left: auto;
    }


    /* HERO */

    .hero {
        min-height: 690px;

        padding-top: 62px;
    }

    .hero-bg {
        inset: 62px 0 0;

        background:
            linear-gradient(
                180deg,
                rgba(7,10,13,.93) 0%,
                rgba(7,10,13,.82) 45%,
                rgba(7,10,13,.96) 100%
            ),
            url("../img/bg.png") center / cover no-repeat;
    }

    .hero-bg::after {
        display: none;
    }

    .hero-content {
        min-height: 628px;
    }

    .hero-copy {
        width: 100%;

        text-align: center;
    }

    .hero-copy > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;

        flex-wrap: wrap;
    }


    /* GRIDS */

    .diferenciais-grid,
    .service-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .diferenciais-intro {
        grid-column: auto;
    }

    .diferencial-item {
        border-left: 0;

        border-top: 1px solid var(--line);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        border-right: 0;

        border-bottom: 1px solid var(--line);
    }

    .process-step:last-child {
        border-bottom: 0;
    }


    /* BLOG */

    .blog-title-row {
        align-items: flex-start;

        gap: 15px;

        flex-direction: column;
    }


    /* CONTATO */

    .contato-box {
        grid-template-columns: 1fr;
    }

    .contato-cards {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .copyright .container {
        padding: 12px 0;

        align-items: flex-start;

        flex-direction: column;
    }
}


@media(max-width:480px) {

    .container {
        width: 92%;
    }

    .hero h1 {
        font-size: 34px;
    }

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

    .hero-buttons > * {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}