:root {
    --blue: #17456a;
    --blue-dark: #0b2d46;
    --blue-light: #edf3f7;

    --black: #11181e;
    --gray: #68747d;
    --light: #f5f7f8;

    --white: #ffffff;
    --border: #e1e6e9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--black);
    background: white;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

img {
    display: block;
    width: 100%;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 82px;

    z-index: 1000;

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(0,0,0,.06);
}

.nav {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 30px;
}

.logo {
    display: flex;
    flex-direction: column;

    font-family: "Manrope", sans-serif;

    line-height: .9;
}

.logo strong {
    color: var(--blue);

    font-size: 25px;
    font-weight: 800;
}

.logo span {
    color: var(--black);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;

    margin-top: 4px;
}

.logo small {
    color: #89949b;

    font-size: 6px;

    letter-spacing: 2px;

    margin-top: 6px;
}

.menu {
    margin-left: auto;

    display: flex;

    gap: 30px;
}

.menu a {
    color: #4d5860;

    font-size: 13px;
    font-weight: 600;

    transition: .25s;
}

.menu a:hover {
    color: var(--blue);
}

.header-btn {
    padding: 12px 18px;

    background: var(--blue);
    color: white;

    border-radius: 7px;

    font-size: 12px;
    font-weight: 700;

    transition: .3s;
}

.header-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.menu-btn {
    display: none;

    border: 0;
    background: transparent;

    font-size: 25px;
}


/* HERO */

.hero {
    min-height: 760px;

    position: relative;

    display: flex;
    align-items: center;

    color: white;

    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,20,30,.94),
            rgba(5,20,30,.58),
            rgba(5,20,30,.12)
        ),
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2200&q=90")
        center/cover;
}

.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 80px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #d2e0e8;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;

    margin-bottom: 25px;
}

.hero-label span {
    width: 30px;
    height: 1px;

    background: #d2e0e8;
}

.hero h1 {
    max-width: 800px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(52px, 7vw, 88px);

    line-height: .96;

    letter-spacing: -4px;

    margin-bottom: 25px;
}

.hero h1 em {
    font-style: normal;

    color: #9fc1d8;
}

.hero p {
    max-width: 550px;

    color: #dce5ea;

    font-size: 17px;

    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    padding: 15px 20px;

    border-radius: 7px;

    font-size: 13px;
    font-weight: 700;

    transition: .3s;
}

.btn-main {
    background: white;

    color: var(--blue);
}

.btn-main:hover {
    transform: translateY(-3px);
}

.btn-ghost {
    color: white;

    border: 1px solid rgba(255,255,255,.4);
}

.btn-ghost:hover {
    background: white;
    color: var(--blue);
}

.hero-bottom {
    display: flex;

    gap: 50px;

    margin-top: 85px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.2);
}

.hero-bottom div {
    display: flex;

    align-items: center;

    gap: 12px;
}

.hero-bottom strong {
    color: #9fc1d8;

    font-size: 11px;
}

.hero-bottom span {
    color: #d6e0e5;

    font-size: 10px;

    line-height: 1.3;
}


/* GERAL */

.section {
    padding: 110px 0;
}

.tag {
    display: block;

    color: var(--blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 18px;
}

.tag.light {
    color: #bdd1df;
}

.section-top {
    display: flex;

    justify-content: space-between;
    align-items: end;

    gap: 50px;

    margin-bottom: 55px;
}

.section-top h2,
.about-text h2,
.center-title h2,
.contact-info h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(38px,5vw,58px);

    line-height: 1.05;

    letter-spacing: -3px;
}

.section-top h2 span,
.about-text h2 span,
.center-title h2 span {
    color: var(--blue);
}

.section-top > p {
    max-width: 380px;

    color: var(--gray);

    font-size: 14px;
}


/* SERVIÇOS */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 16px;
}

.service-card {
    position: relative;

    min-height: 285px;

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 12px;

    overflow: hidden;

    transition: .35s;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 20px 50px rgba(20,50,70,.1);
}

.service-card.featured {
    color: white;

    background: var(--blue);

    border-color: var(--blue);
}

.number {
    position: absolute;

    right: 25px;
    top: 25px;

    color: #aab7bf;

    font-size: 10px;
    font-weight: 800;
}

.featured .number {
    color: #91aec1;
}

.icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin-bottom: 38px;

    background: var(--blue-light);

    color: var(--blue);

    border-radius: 8px;

    font-size: 23px;
}

.featured .icon {
    background: rgba(255,255,255,.12);

    color: white;
}

.service-card h3 {
    font-family: "Manrope", sans-serif;

    font-size: 20px;

    margin-bottom: 9px;
}

.service-card p {
    color: var(--gray);

    font-size: 13px;

    max-width: 290px;

    margin-bottom: 22px;
}

.featured p {
    color: #d4e1e8;
}

.service-card a {
    color: var(--blue);

    font-size: 12px;
    font-weight: 800;
}

.featured a {
    color: white;
}


/* BANNER */

.banner {
    padding: 75px 0;

    background: var(--blue-dark);

    color: white;
}

.banner-content {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

.banner h2 {
    max-width: 700px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(35px,5vw,55px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.circle-btn {
    width: 125px;
    height: 125px;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    border: 1px solid rgba(255,255,255,.3);

    border-radius: 50%;

    color: white;

    font-size: 11px;
    font-weight: 700;

    transition: .4s;
}

.circle-btn:hover {
    background: white;
    color: var(--blue);

    transform: rotate(-8deg);
}


/* PROJETOS */

.projects {
    background: var(--light);
}

.project-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr;

    gap: 15px;
}

.project {
    position: relative;

    height: 310px;

    overflow: hidden;

    border-radius: 12px;
}

.project-big {
    grid-row: span 2;

    height: 635px;
}

.project img {
    height: 100%;

    object-fit: cover;

    transition: .6s;
}

.project:hover img {
    transform: scale(1.06);
}

.project::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        transparent 40%,
        rgba(0,0,0,.78)
    );
}

.project-info {
    position: absolute;

    left: 27px;
    bottom: 25px;

    z-index: 2;

    color: white;
}

.project-info span {
    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}

.project-info h3 {
    font-family: "Manrope", sans-serif;

    font-size: 21px;
}


/* SOBRE */

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.about-photo {
    position: relative;

    height: 600px;

    overflow: hidden;

    border-radius: 12px;
}

.about-photo img {
    height: 100%;

    object-fit: cover;
}

.about-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    padding: 17px 22px;

    background: white;

    border-radius: 8px;

    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.about-badge strong {
    display: block;

    color: var(--blue);

    font-family: "Manrope", sans-serif;

    font-size: 20px;
}

.about-badge span {
    display: block;

    color: var(--gray);

    font-size: 7px;

    letter-spacing: 2px;
}

.about-text p {
    color: var(--gray);

    font-size: 15px;

    margin-bottom: 17px;
}

.text-link {
    display: inline-block;

    color: var(--blue);

    font-size: 13px;
    font-weight: 800;

    margin-top: 15px;

    border-bottom: 1px solid var(--blue);
}


/* PROCESS */

.process {
    background: var(--light);
}

.center-title {
    max-width: 700px;

    text-align: center;

    margin: auto auto 60px;
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    border-top: 1px solid var(--border);
}

.process-item {
    padding: 30px 25px;

    border-right: 1px solid var(--border);
}

.process-item:last-child {
    border-right: 0;
}

.process-item > span {
    color: var(--blue);

    font-size: 11px;
    font-weight: 800;
}

.process-item h3 {
    font-family: "Manrope", sans-serif;

    font-size: 18px;

    margin: 35px 0 10px;
}

.process-item p {
    color: var(--gray);

    font-size: 13px;
}


/* CTA */

.cta {
    padding: 120px 20px;

    text-align: center;

    background: linear-gradient(
        120deg,
        #0b2d46,
        #174e76
    );

    color: white;
}

.cta .container {
    max-width: 750px;
}

.cta h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(42px,6vw,70px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 20px;
}

.cta p {
    color: #d4e1e8;

    font-size: 15px;

    margin-bottom: 30px;
}

.white {
    background: white;

    color: var(--blue);
}

.white:hover {
    transform: translateY(-3px);
}


/* CONTATO */

.contact-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 90px;
}

.contact-info > p {
    max-width: 430px;

    color: var(--gray);

    margin-top: 25px;
}

.contact-list {
    margin-top: 40px;

    border-top: 1px solid var(--border);
}

.contact-list a {
    display: block;

    padding: 20px 0;

    border-bottom: 1px solid var(--border);
}

.contact-list small {
    display: block;

    color: #8a959d;

    font-size: 9px;

    letter-spacing: 2px;
}

.contact-list strong {
    display: block;

    color: var(--blue);

    font-size: 17px;

    margin-top: 3px;
}


/* FORM */

.form {
    padding: 38px;

    border: 1px solid var(--border);

    border-radius: 12px;

    box-shadow: 0 20px 55px rgba(0,0,0,.06);
}

.form-title span {
    color: var(--blue);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.form-title h3 {
    font-family: "Manrope", sans-serif;

    font-size: 27px;

    margin: 5px 0 30px;
}

.form label {
    display: block;

    color: #475159;

    font-size: 11px;
    font-weight: 700;

    margin-bottom: 17px;
}

.form input,
.form select,
.form textarea {
    width: 100%;

    display: block;

    margin-top: 7px;

    padding: 14px;

    border: 1px solid #dce1e4;

    border-radius: 6px;

    outline: none;

    font-size: 13px;

    resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: var(--blue);
}

.form-btn {
    width: 100%;

    padding: 16px;

    border: 0;

    border-radius: 7px;

    background: var(--blue);

    color: white;

    font-size: 13px;
    font-weight: 800;

    transition: .3s;
}

.form-btn:hover {
    background: var(--blue-dark);

    transform: translateY(-2px);
}


/* WHATSAPP */

.whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    z-index: 999;

    border-radius: 50%;

    background: #25d366;

    color: white;

    font-size: 23px;

    box-shadow: 0 10px 30px rgba(0,0,0,.2);

    transition: .3s;
}

.whatsapp:hover {
    transform: scale(1.1);
}


/* FOOTER */

.footer {
    background: #0b141c;

    color: white;
}

.footer-main {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;

    padding: 70px 0;
}

.footer-brand p {
    color: #7e8b94;

    max-width: 260px;

    font-size: 13px;

    margin-top: 18px;
}

.footer-links h4 {
    font-size: 12px;

    margin-bottom: 18px;
}

.footer-links a {
    display: block;

    color: #89959d;

    font-size: 12px;

    margin-bottom: 10px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding: 20px 0;

    border-top: 1px solid rgba(255,255,255,.08);

    color: #68747d;

    font-size: 10px;
}

.footer-bottom .container {
    display: flex;

    justify-content: space-between;
}


/* TABLET */

@media(max-width:900px) {

    .menu {
        position: absolute;

        top: 82px;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        padding: 25px;

        background: white;

        box-shadow: 0 15px 30px rgba(0,0,0,.08);
    }

    .menu.active {
        display: flex;
    }

    .menu-btn {
        display: block;

        margin-left: auto;
    }

    .header-btn {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .process-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}


/* CELULAR */

@media(max-width:600px) {

    .header {
        height: 72px;
    }

    .hero {
        min-height: 690px;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-bottom {
        gap: 20px;

        margin-top: 60px;
    }

    .hero-bottom span {
        font-size: 8px;
    }

    .section {
        padding: 80px 0;
    }

    .section-top {
        display: block;
    }

    .section-top > p {
        margin-top: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .banner-content {
        display: block;
    }

    .circle-btn {
        margin-top: 30px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-big {
        grid-row: auto;

        height: 350px;
    }

    .project {
        height: 280px;
    }

    .about-photo {
        height: 420px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        border-right: 0;
    }

    .form {
        padding: 23px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;

        gap: 7px;
    }

    .whatsapp {
        right: 16px;
        bottom: 16px;
    }
}