:root {
    --azul: #295E8D;
    --azul-claro: #5E9FD6;
    --branco: #FFFFFF;
    --fundo: #F5F7FA;
    --grafite: #2D3748;
    --cinza: #718096;
    --borda: #E2E8F0;
    --azul-escuro: #214D73;
    --radius: 14px;
    --transition: .28s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--grafite);
    background: var(--branco);
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.btn {
    font-family: 'Manrope', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.035em;
}

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

.text-brand {
    color: var(--azul);
}

.bg-soft {
    background: var(--fundo);
}

.section {
    padding: 100px 0;
}

.section-title {
    max-width: 700px;
    margin-bottom: 52px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 16px;
}

.section-title h2 span {
    color: var(--azul);
}

.section-line {
    width: 58px;
    height: 4px;
    border-radius: 99px;
    background: var(--azul);
    margin-top: 20px;
}

/* Logo */
.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    color: white;
    background: var(--azul);
    border-radius: 11px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 1;
}

.navbar-brand img {
    max-width: 50px;
}

.brand-name {
    font-weight: 800;
    letter-spacing: .035em;
    color: var(--grafite);
    font-size: 1.15rem;
}

.navbar {
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, .8);
}

.navbar .nav-link {
    color: var(--grafite);
    font-weight: 500;
    padding-left: 18px !important;
    padding-right: 18px !important;
}

.navbar .nav-link:hover {
    color: var(--azul);
}

.btn-brand {
    background: var(--azul);
    color: white;
    border: 1px solid var(--azul);
    border-radius: 11px;
    padding: 12px 22px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-brand:hover {
    color: white;
    background: var(--azul-escuro);
    border-color: var(--azul-escuro);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(41, 94, 141, .18);
}

.btn-outline-brand {
    background: white;
    color: var(--azul);
    border: 1px solid var(--azul);
    border-radius: 11px;
    padding: 12px 22px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline-brand:hover {
    color: white;
    background: var(--azul);
}

/* Hero */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: white;
}

.hero:after {
    content: "";
    position: absolute;
    width: 48vw;
    height: 125%;
    right: -15vw;
    top: -12%;
    background: var(--azul);
    transform: skewX(-27deg);
    opacity: .98;
    z-index: 0;
}

.hero:before {
    content: "";
    position: absolute;
    width: 30vw;
    height: 125%;
    right: -8vw;
    top: -12%;
    background: var(--azul-claro);
    transform: skewX(-27deg);
    opacity: .28;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: var(--azul);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .82rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.6rem);
    max-width: 760px;
    margin-bottom: 26px;
}

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

.hero p {
    max-width: 620px;
    color: var(--cinza);
    font-size: 1.2rem;
    margin-bottom: 34px;
}

.hero-brand {
    position: absolute;
    z-index: 2;
    right: 7%;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    text-align: center;
    width: 260px;
}

.hero-brand img {
    max-width: 110px;
    filter: grayscale(1) brightness(4);
}

.hero-brand .big-mark {
    font-family: 'Manrope', sans-serif;
    font-size: 8rem;
    line-height: .8;
    font-weight: 800;
    opacity: .9;
}

.hero-brand strong {
    display: block;
    margin-top: 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    letter-spacing: .12em;
}

.hero-brand small {
    color: #BFD9F0;
    letter-spacing: .08em;
}

/* Cards */
.service-card,
.segment-card,
.reason-card {
    height: 100%;
    background: white;
    border: 1px solid var(--borda);
    border-radius: var(--radius);
    padding: 34px;
    transition: var(--transition);
}

.service-card:hover,
.segment-card:hover,
.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(45, 55, 72, .09);
    border-color: #C9D9E7;
}

.icon-circle {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--azul);
    font-size: 1.35rem;
    margin-bottom: 26px;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.service-card p,
.reason-card p,
.segment-card p {
    color: var(--cinza);
    margin: 0;
}

/* Experience */
.experience-number {
    font-family: 'Manrope', sans-serif;
    color: var(--azul);
    font-size: clamp(5rem, 11vw, 9rem);
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .8;
}

.experience-side {
    border-left: 1px solid var(--borda);
    padding-left: 60px;
    max-width: 410px;
}

/* Segments */
.segment-card {
    padding: 28px;
    text-align: center;
}

.segment-card .icon-circle {
    margin: 0 auto 18px;
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
}

.segment-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Process */
.process {
    position: relative;
}

.process:before {
    content: "";
    position: absolute;
    top: 64px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #D8E3EC;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--azul);
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    border: 7px solid white;
    box-shadow: 0 0 0 1px #D8E3EC;
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-step p {
    color: var(--cinza);
    font-size: .95rem;
}

/* Technology */
.tech-image {
    min-height: 420px;
    border-radius: 22px;
    background: url(../img/safty.png);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.tech-copy {
    padding-right: 50px;
}

/* Portfolio placeholders */
.project-card {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--borda);
    background: white;
    height: 100%;
}

.project-screen {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #EAF2F8, #F5F7FA);
    display: grid;
    place-items: center;
    color: var(--azul);
    font-size: 3rem;
    margin: 0 -15px;
    background-position: center;
    background-size: cover;
}

.project-screen.bg-1 {
    background-image: url(../img/1.png);
}

.project-screen.bg-2 {
    background-image: url(../img/2.png);
}

.project-screen.bg-3 {
    background-image: url(../img/3.png);
}

.project-info {
    padding: 24px;
}

.project-info small {
    color: var(--azul);
    font-weight: 700;
}

.project-info h3 {
    font-size: 1.25rem;
    margin: 8px 0 0;
}

/* Closing */
.closing {
    position: relative;
    overflow: hidden;
    background: white;
    min-height: 620px;
}

.closing-panel {
    background: var(--azul);
    color: white;
    min-height: 620px;
    border-radius: 38px 0 0 38px;
    padding: 70px;
    position: relative;
    overflow: hidden;
}

.closing-panel img {
    max-width: 50px;
    filter: grayscale(1) brightness(3);
}

.closing-panel:after {
    content: " ";
    width: 200px;
    height: 210px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    position: absolute;
    right: 5px;
    bottom: 5px;
    font-family: 'Manrope', sans-serif;
    font-size: 25rem;
    font-weight: 800;
    line-height: 1;
    background-image: url(../img/logo.png);
}

.closing h2 {
    font-size: clamp(2.6rem, 5vw, 5rem);
    max-width: 760px;
}

.closing h2 span {
    color: var(--azul-claro);
}

.contact-list {
    margin-top: 45px;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.contact-item i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .13);
    color: #D8ECFC;
}

.contact-item small {
    display: block;
    color: #BFD9F0;
}

.contact-item strong {
    font-family: 'Manrope', sans-serif;
}

.values {
    border-top: 1px solid var(--borda);
    margin-top: 70px;
    padding-top: 30px;
}

.value-item {
    text-align: center;
    padding: 0 25px;
    border-right: 1px solid var(--borda);
}

.value-item:last-child {
    border-right: 0;
}

.value-item strong {
    display: block;
    color: var(--azul);
    font-family: 'Manrope', sans-serif;
    margin-bottom: 5px;
}

.value-item span {
    color: var(--cinza);
    font-size: .92rem;
}

footer {
    background: var(--grafite);
    color: #CBD5E1;
    padding: 24px 0;
    font-size: .9rem;
}

/* WOW.js */

html, body {
  overflow-x: hidden; 
}
.wow {
    visibility: hidden;
    animation-fill-mode: both !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.animated {
    visibility: visible;
}


