/* =========================================
   VARIÁVEIS
========================================= */

:root {

    --primary: #e87524;
    --primary-dark: #c85d13;

    --navy: #102a43;
    --navy-light: #193b5a;

    --background: #f5f7f8;
    --white: #ffffff;

    --text: #182b3a;
    --muted: #667785;

    --border: #dfe5e9;

    --blueprint: #dce8ef;

    --shadow:
        0 20px 50px rgba(16, 42, 67, .10);

    --radius: 20px;

    --container: 1120px;
}


/* =========================================
   RESET
========================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


html {

    scroll-behavior: smooth;
}


body {

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    color: var(--text);

    background:
        var(--background);

    line-height: 1.6;
}


a {

    text-decoration: none;

    color: inherit;
}


button,
input,
select,
textarea {

    font-family: inherit;
}


/* =========================================
   CONTAINER
========================================= */

.container {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin-inline: auto;
}


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

.header {

    position: absolute;

    width: 100%;

    top: 0;
    left: 0;

    z-index: 100;

    padding: 20px 0;
}


.nav {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.logo {

    display: flex;

    align-items: center;

    gap: 10px;
}


.logo-symbol {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    background:
        var(--navy);

    color: white;

    border-radius: 8px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: .8rem;

    font-weight: 700;

    letter-spacing: -.05em;
}


.logo-text {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-weight: 700;

    font-size: .95rem;

    line-height: 1.1;
}


.logo-text small {

    display: block;

    font-family:
        "DM Sans",
        sans-serif;

    color: var(--muted);

    font-size: .63rem;

    font-weight: 500;

    margin-top: 3px;
}


.nav-menu {

    display: flex;

    align-items: center;

    gap: 28px;

    color: #526775;

    font-size: .88rem;
}


.nav-menu a {

    transition:
        color .2s ease;
}


.nav-menu a:hover {

    color: var(--primary);
}


.btn {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    padding: 14px 22px;

    border: none;

    border-radius: 9px;

    background:
        var(--primary);

    color: white;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}


.btn:hover {

    background:
        var(--primary-dark);

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(232,117,36,.20);
}


.btn-small {

    padding: 10px 16px;

    border-radius: 7px;

    font-size: .8rem;
}


.btn-outline {

    background:
        transparent;

    color:
        var(--navy);

    border:
        1px solid
        rgba(16,42,67,.2);

    box-shadow: none;
}


.btn-outline:hover {

    background:
        white;

    color:
        var(--primary);
}


.menu-toggle {

    display: none;

    border: none;

    background: none;

    color: var(--navy);

    font-size: 1.5rem;

    cursor: pointer;
}


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

.hero {

    min-height: 730px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    background:

        linear-gradient(
            120deg,
            #f3f6f8,
            #ffffff 65%,
            #edf2f5
        );
}


.hero-grid {

    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    gap: 70px;

    align-items: center;

    padding-top: 65px;

    position: relative;

    z-index: 1;
}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 12px;

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

    background: white;

    color: var(--navy);

    font-size: .72rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .05em;

    margin-bottom: 20px;
}


.eyebrow-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--primary);
}


.hero h1 {

    max-width: 680px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            2.8rem,
            5vw,
            4.7rem
        );

    line-height: 1.02;

    letter-spacing: -.055em;

    margin-bottom: 24px;
}


.hero h1 span {

    display: block;

    color:
        var(--primary);
}


.hero p {

    max-width: 570px;

    color:
        var(--muted);

    font-size: 1.05rem;

    margin-bottom: 30px;
}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


.hero-trust {

    display: flex;

    gap: 35px;

    margin-top: 42px;

    padding-top: 23px;

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


.hero-trust div {

    display: flex;

    flex-direction: column;
}


.hero-trust strong {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.05rem;
}


.hero-trust span {

    color:
        var(--muted);

    font-size: .72rem;
}


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

.hero-visual {

    height: 510px;

    position: relative;

    overflow: hidden;

    background:
        var(--navy);

    border-radius: 18px;

    box-shadow:
        var(--shadow);
}


.technical-grid {

    position: absolute;

    inset: 0;

    opacity: .25;

    background-image:

        linear-gradient(
            rgba(255,255,255,.08)
            1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.08)
            1px,
            transparent 1px
        );

    background-size:
        35px 35px;
}


.gear {

    position: absolute;

    color:
        rgba(255,255,255,.08);

    font-size: 18rem;

    line-height: 1;
}


.gear-large {

    right: -45px;

    top: 45px;
}


.gear-small {

    left: 25px;

    bottom: -35px;

    font-size: 9rem;

    color:
        rgba(232,117,36,.16);
}


.technical-card {

    position: absolute;

    left: 45px;

    top: 100px;

    padding: 25px;

    width: 230px;

    background:
        rgba(255,255,255,.96);

    border-left:
        4px solid
        var(--primary);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.15);
}


.card-label {

    display: block;

    color:
        var(--muted);

    font-size: .65rem;

    font-weight: 800;

    letter-spacing: .12em;

    margin-bottom: 8px;
}


.technical-card strong {

    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    color:
        var(--navy);

    font-size: 1.5rem;
}


.technical-card span:last-child {

    display: block;

    color:
        var(--muted);

    font-size: .7rem;

    margin-top: 8px;
}


.line {

    height: 2px;

    width: 70px;

    background:
        var(--primary);

    margin-top: 12px;
}


.measurement {

    position: absolute;

    right: 40px;

    bottom: 50px;

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,.7);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: .7rem;
}


.measurement div {

    width: 130px;

    height: 1px;

    background:
        rgba(255,255,255,.5);

    position: relative;
}


.measurement div::before,
.measurement div::after {

    content: "";

    position: absolute;

    width: 1px;

    height: 8px;

    top: -4px;

    background:
        rgba(255,255,255,.5);
}


.measurement div::before {

    left: 0;
}


.measurement div::after {

    right: 0;
}


/* =========================================
   SECTIONS
========================================= */

.section {

    padding:
        100px 0;
}


.section-header {

    max-width: 680px;

    margin-bottom: 45px;
}


.section-label {

    display: block;

    color:
        var(--primary);

    font-family:
        "Space Grotesk",
        sans-serif;

    text-transform: uppercase;

    letter-spacing: .12em;

    font-size: .68rem;

    font-weight: 700;

    margin-bottom: 10px;
}


.section-header h2,
.about-content h2,
.contact-info h2 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            2rem,
            4vw,
            3.1rem
        );

    line-height: 1.08;

    letter-spacing: -.045em;

    margin-bottom: 15px;
}


.section-header p,
.contact-info > p {

    color:
        var(--muted);

    font-size: .95rem;
}


/* =========================================
   SERVICES
========================================= */

.services {

    background:
        white;
}


.service-grid {

    display: grid;

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

    gap: 20px;
}


.service-card {

    position: relative;

    padding: 32px;

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

    background:
        white;

    border-radius:
        var(--radius);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.service-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow);
}


.service-number {

    position: absolute;

    right: 25px;
    top: 22px;

    font-family:
        "Space Grotesk",
        sans-serif;

    color:
        #d9e1e6;

    font-size: 1.3rem;

    font-weight: 700;
}


.service-icon {

    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        #eef3f6;

    color:
        var(--primary);

    font-size: 1.35rem;

    margin-bottom: 22px;
}


.service-card h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.15rem;

    margin-bottom: 10px;
}


.service-card p {

    color:
        var(--muted);

    font-size: .87rem;

    margin-bottom: 23px;
}


.service-card a {

    display: flex;

    justify-content: space-between;

    color:
        var(--navy);

    font-size: .78rem;

    font-weight: 800;
}


.service-card a span {

    color:
        var(--primary);

    font-size: 1rem;
}


/* =========================================
   ABOUT
========================================= */

.about {

    background:
        var(--background);
}


.about-grid {

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap: 80px;

    align-items: center;
}


.about-visual {

    position: relative;
}


.blueprint {

    min-height: 450px;

    position: relative;

    overflow: hidden;

    background:
        #173b58;

    border-radius: 18px;

    border:
        1px solid
        #29506e;

    color:
        rgba(255,255,255,.55);
}


.blueprint::before {

    content: "";

    position: absolute;

    inset: 25px;

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

    background-image:

        linear-gradient(
            rgba(255,255,255,.05)
            1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.05)
            1px,
            transparent 1px
        );

    background-size:
        25px 25px;
}


.blueprint-title {

    position: absolute;

    left: 40px;

    top: 35px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: .7rem;

    letter-spacing: .15em;

    color:
        #9bb8c9;
}


.blueprint-circle {

    position: absolute;

    width: 210px;
    height: 210px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

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

    border-radius: 50%;
}


.blueprint-circle::before,
.blueprint-circle::after {

    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

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

    border-radius: 50%;
}


.blueprint-circle::before {

    width: 130px;
    height: 130px;
}


.blueprint-circle::after {

    width: 45px;
    height: 45px;
}


.blueprint-line {

    position: absolute;

    background:
        rgba(232,117,36,.7);
}


.line-one {

    width: 270px;

    height: 1px;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%);
}


.line-two {

    width: 1px;

    height: 270px;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%);
}


.blueprint-label {

    position: absolute;

    left: calc(50% + 115px);

    top: 50%;

    color:
        var(--primary);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: .7rem;
}


.label-two {

    left: 50%;

    top: calc(50% + 145px);

    transform:
        translateX(-50%);
}


.about-badge {

    position: absolute;

    right: -25px;

    bottom: 25px;

    padding: 18px 20px;

    background:
        var(--primary);

    color: white;

    border-radius: 10px;

    box-shadow:
        var(--shadow);
}


.about-badge strong {

    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.3rem;
}


.about-badge span {

    font-size: .65rem;

    opacity: .8;
}


.about-content p {

    color:
        var(--muted);

    font-size: .93rem;

    margin-bottom: 17px;
}


.about-features {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;

    margin-top: 30px;
}


.about-features > div {

    display: flex;

    gap: 10px;

    align-items: flex-start;
}


.feature-icon {

    width: 27px;
    height: 27px;

    display: grid;

    place-items: center;

    border-radius: 5px;

    background:
        #fff1e8;

    color:
        var(--primary);

    font-size: .7rem;

    flex-shrink: 0;
}


.about-features strong,
.about-features span:last-child {

    display: block;
}


.about-features strong {

    font-size: .82rem;
}


.about-features span:last-child {

    color:
        var(--muted);

    font-size: .7rem;
}


/* =========================================
   PROCESS
========================================= */

.process {

    background:
        white;
}


.process-grid {

    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr auto 1fr;

    align-items: start;

    gap: 18px;
}


.process-item {

    min-width: 0;
}


.process-number {

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    background:
        var(--navy);

    color: white;

    border-radius: 7px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: .75rem;

    margin-bottom: 18px;
}


.process-item h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: .98rem;

    margin-bottom: 8px;
}


.process-item p {

    color:
        var(--muted);

    font-size: .78rem;
}


.process-line {

    width: 35px;

    height: 1px;

    margin-top: 24px;

    background:
        var(--border);
}


/* =========================================
   CTA
========================================= */

.cta {

    padding:
        75px 0;

    background:
        var(--navy);

    color: white;
}


.cta-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;
}


.cta .section-label {

    color:
        var(--primary);
}


.cta h2 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            2rem,
            4vw,
            3rem
        );

    line-height: 1.05;

    letter-spacing: -.04em;

    margin-bottom: 12px;
}


.cta p {

    max-width: 570px;

    color:
        #aebfc9;

    font-size: .9rem;
}


.btn-light {

    flex-shrink: 0;

    background:
        white;

    color:
        var(--navy);
}


.btn-light:hover {

    background:
        #f2f5f6;

    color:
        var(--navy);
}


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

.contact {

    background:
        var(--background);
}


.contact-grid {

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap: 80px;

    align-items: start;
}


.contact-info > p {

    max-width: 500px;

    margin-bottom: 30px;
}


.contact-details {

    display: grid;

    gap: 20px;

    margin-bottom: 30px;
}


.contact-item {

    display: flex;

    gap: 12px;

    align-items: flex-start;
}


.contact-icon {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    background:
        white;

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

    color:
        var(--primary);

    border-radius: 8px;

    flex-shrink: 0;
}


.contact-item strong,
.contact-item span {

    display: block;
}


.contact-item strong {

    font-size: .82rem;
}


.contact-item span {

    color:
        var(--muted);

    font-size: .8rem;
}


.whatsapp-button {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 13px 18px;

    background:
        #25d366;

    color: white;

    border-radius: 8px;

    font-size: .82rem;

    font-weight: 800;
}


/* =========================================
   FORM
========================================= */

.form-wrapper {

    padding: 32px;

    background:
        white;

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

    border-radius:
        var(--radius);

    box-shadow:
        0 15px 40px
        rgba(16,42,67,.05);
}


.form-header {

    margin-bottom: 25px;
}


.form-header > span {

    color:
        var(--primary);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: .62rem;

    font-weight: 800;

    letter-spacing: .12em;
}


.form-header h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.6rem;

    line-height: 1.1;

    margin-top: 7px;
}


.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}


.form-group {

    margin-bottom: 17px;
}


.form-group label {

    display: block;

    font-size: .75rem;

    font-weight: 800;

    margin-bottom: 7px;
}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 13px 14px;

    background:
        var(--background);

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

    border-radius: 8px;

    color:
        var(--text);

    outline: none;

    transition:
        border .2s ease;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        var(--primary);

    background:
        white;
}


.form-group textarea {

    resize: vertical;

    min-height: 115px;
}


.form-button {

    width: 100%;
}


.privacy-note {

    display: block;

    text-align: center;

    margin-top: 11px;

    color:
        var(--muted);

    font-size: .65rem;
}


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

footer {

    padding:
        45px 0 20px;

    background:
        #0c2032;

    color:
        #d9e4ea;
}


.footer-content {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 30px;

    padding-bottom: 35px;

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


.footer-logo .logo-symbol {

    background:
        var(--primary);
}


.footer-logo .logo-text {

    color: white;
}


.footer-brand > p {

    color:
        #91a5b2;

    font-size: .75rem;

    margin-top: 12px;
}


.footer-links,
.footer-social {

    display: flex;

    flex-direction: column;

    gap: 9px;

    font-size: .78rem;
}


.footer-links a,
.footer-social a {

    color:
        #9fb0bb;

    transition:
        color .2s ease;
}


.footer-links a:hover,
.footer-social a:hover {

    color:
        white;
}


.copyright {

    padding-top: 20px;

    text-align: center;

    color:
        #718693;

    font-size: .65rem;
}


/* =========================================
   ANIMAÇÃO
========================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}


.reveal.active {

    opacity: 1;

    transform:
        translateY(0);
}


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

@media (max-width: 1000px) {

    .hero-grid {

        grid-template-columns:
            1fr;
    }


    .hero-visual {

        display: none;
    }


    .hero {

        min-height: 680px;
    }


    .about-grid,
    .contact-grid {

        grid-template-columns:
            1fr;

        gap: 50px;
    }


    .process-grid {

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

        gap: 35px;
    }


    .process-line {

        display: none;
    }

}


@media (max-width: 760px) {

    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }


    .nav-menu {

        position: absolute;

        top: 72px;

        left: 14px;
        right: 14px;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

        padding: 20px;

        background:
            white;

        border-radius: 12px;

        box-shadow:
            var(--shadow);
    }


    .nav-menu.active {

        display: flex;
    }


    .nav > .btn-small {

        display: none;
    }


    .menu-toggle {

        display: block;
    }


    .hero {

        min-height: 700px;
    }


    .hero h1 {

        font-size:
            2.75rem;
    }


    .hero-trust {

        gap: 20px;

        flex-wrap: wrap;
    }


    .section {

        padding:
            75px 0;
    }


    .service-grid {

        grid-template-columns:
            1fr;
    }


    .about-features {

        grid-template-columns:
            1fr;
    }


    .process-grid {

        grid-template-columns:
            1fr;
    }


    .cta-content {

        flex-direction:
            column;

        align-items:
            flex-start;
    }


    .form-row {

        grid-template-columns:
            1fr;

        gap: 0;
    }


    .form-wrapper {

        padding:
            22px;
    }


    .footer-content {

        grid-template-columns:
            1fr;

        text-align:
            center;
    }


    .footer-links,
    .footer-social {

        align-items:
            center;
    }

}


@media (max-width: 450px) {

    .hero h1 {

        font-size:
            2.45rem;
    }


    .hero-buttons {

        flex-direction:
            column;
    }


    .hero-buttons .btn {

        width:
            100%;
    }


    .hero-trust {

        display:
            grid;

        grid-template-columns:
            1fr 1fr;
    }


    .about-badge {

        right:
            10px;
    }

}