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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f8fc;
    color: #101828;
    position:relative;
    overflow-x:hidden;
}

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

.container {
    width: 92%;
    max-width: 1180px;
    margin: auto;
}

.topo {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e8edf5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #075eea;
}

.logo span {
    color: #101828;
}

.nav nav {
    display: flex;
    gap: 24px;
}

.nav nav a {
    font-size: 14px;
    color: #344054;
    font-weight: 600;
    padding: 28px 0;
    transition: .25s;
}

.nav nav a:hover,
.nav nav a.ativo {
    color: #075eea;
}

.nav nav a.ativo {
    border-bottom: 3px solid #075eea;
}

.btn-contato,
.btn-primario {
    background: linear-gradient(135deg, #075eea, #003fc2);
    color: #fff;
    padding: 13px 24px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(7,94,234,.25);
    transition: .25s;
}

.btn-contato:hover,
.btn-primario:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(7,94,234,.35);
}

.btn-secundario {
    background: #fff;
    border: 1px solid #d0d7e2;
    color: #101828;
    padding: 13px 24px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    transition: .25s;
}

.btn-secundario:hover {
    border-color: #075eea;
    color: #075eea;
    transform: translateY(-2px);
}

.hero {
    padding: 82px 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 45%, rgba(230,239,251,.72) 100%),
        radial-gradient(circle at 80% 20%, #bcd4ff, transparent 35%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    align-items: center;
    gap: 48px;
}

.tag {
    display: inline-block;
    background: #eef5ff;
    color: #075eea;
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.05;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
}

.hero h1 strong {
    color: #075eea;
}

.hero p {
    color: #667085;
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 30px;
    font-size: 16px;
}

.botoes {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-imagem {
    height: 430px;
    position: relative;
    background:
        linear-gradient(135deg, rgba(6,24,51,.12), rgba(7,94,234,.18)),
        url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 0 80px;
    box-shadow: 0 35px 90px rgba(16,24,40,.22);
    overflow: hidden;
}

.monitor {
    position: absolute;
    right: 45px;
    top: 55px;
    width: 470px;
    height: 275px;
    background: #101828;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 35px 70px rgba(0,0,0,.38);
}

.janela {
    height: 100%;
    background: linear-gradient(135deg, #061833, #111827);
    border-radius: 12px;
    color: #fff;
    padding: 30px;
}

.barra {
    width: 100px;
    height: 6px;
    background: #1d68ff;
    border-radius: 20px;
    margin-bottom: 28px;
}

.janela h3 {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.janela p {
    color: #cbd5e1;
    font-size: 13px;
    margin-bottom: 22px;
}

.mini-cards {
    display: flex;
    gap: 10px;
}

.mini-cards div {
    background: #fff;
    color: #101828;
    padding: 12px;
    border-radius: 9px;
    font-size: 12px;
    flex: 1;
    font-weight: 700;
}

.servicos {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.card-servico {
    background: #fff;
    border: 1px solid #e5eaf2;
    padding: 26px 18px;
    border-radius: 16px;
    min-height: 175px;
    transition: .25s;
    text-decoration:none;
    display:block;
    cursor:pointer;
}

.card-servico:hover,
.card-projeto:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(16,24,40,.10);
    border-color: #cfe0ff;
}

.icone {
    font-size: 28px;
    margin-bottom: 16px;
}

.card-servico h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.card-servico p {
    font-size: 13px;
    color: #667085;
    line-height: 1.55;
}

.projetos {
    margin-top: 54px;
}

.titulo-linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.titulo-linha h2 {
    font-size: 28px;
}

.titulo-linha a {
    color: #075eea;
    font-weight: 800;
    font-size: 14px;
}

.grid-projetos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.card-projeto {
    background: #fff;
    border: 1px solid #e5eaf2;
    border-radius: 18px;
    overflow: hidden;
    transition: .25s;
}

.thumb {
    height: 155px;
    background:
        linear-gradient(135deg, rgba(6,24,51,.75), rgba(7,94,234,.35)),
        url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.card-projeto h3 {
    font-size: 16px;
    padding: 18px 18px 8px;
}

.card-projeto h3 span {
    color: #075eea;
    font-size: 12px;
}

.card-projeto p {
    font-size: 13px;
    color: #667085;
    line-height: 1.55;
    padding: 0 18px 16px;
}

.tags {
    display: flex;
    gap: 8px;
    padding: 0 18px 18px;
    flex-wrap: wrap;
}

.tags span {
    background: #eef5ff;
    color: #075eea;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 30px;
}

.metricas {
    margin-top: 42px;
    background: linear-gradient(135deg, #07152e, #0b234d);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    color: #fff;
    padding: 32px;
    box-shadow: 0 25px 55px rgba(7,21,46,.22);
}

.metricas div {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.12);
}

.metricas div:last-child {
    border-right: none;
}

.metricas strong {
    display: block;
    font-size: 32px;
    color: #60a5fa;
}

.metricas span {
    display: block;
    font-size: 13px;
    color: #cbd5e1;
    margin-top: 6px;
}

.newsletter {
    margin-top: 46px;
    margin-bottom: 54px;
    background: #eef5ff;
    border-radius: 22px;
    padding: 38px;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 38px;
    align-items: center;
}

.news-img {
    height: 215px;
    background:
        linear-gradient(135deg, rgba(7,94,234,.18), rgba(6,24,51,.28)),
        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.newsletter span {
    color: #075eea;
    font-weight: 900;
    font-size: 14px;
}

.newsletter h2 {
    font-size: 29px;
    margin: 8px 0 22px;
    max-width: 650px;
}

.newsletter form {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.newsletter input {
    height: 50px;
    border: 1px solid #d0d7e2;
    border-radius: 10px;
    padding: 0 15px;
    flex: 1;
    outline: none;
}

.newsletter input:focus {
    border-color: #075eea;
    box-shadow: 0 0 0 4px rgba(7,94,234,.10);
}

.newsletter button {
    border: none;
    background: linear-gradient(135deg, #075eea, #003fc2);
    color: #fff;
    padding: 0 26px;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
}

.newsletter small {
    color: #667085;
}

.footer {
    background: #fff;
    border-top: 1px solid #e8edf5;
    padding: 46px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
    gap: 30px;
}

.footer p,
.footer a {
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}

.footer h4 {
    margin-bottom: 14px;
    font-size: 15px;
}

.footer a {
    display: block;
    margin-bottom: 8px;
}

.footer a:hover {
    color: #075eea;
}

.social {
    color: #075eea;
    letter-spacing: 8px;
}

.pagina-interna {
    padding: 80px 0;
}

.pagina-interna h1 {
    font-size: 44px;
    margin-bottom: 18px;
}

.pagina-interna p {
    color: #667085;
    line-height: 1.8;
    max-width: 820px;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 26px;
    box-shadow: 0 15px 35px rgba(34,197,94,.35);
    z-index: 200;
}

@media (max-width: 1000px) {
    .nav nav {
        display: none;
    }

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

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

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

    .metricas {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .metricas div {
        border-right: none;
    }

    .monitor {
        width: 82%;
        right: 9%;
    }
}

@media (max-width: 600px) {
    .nav {
        height: 68px;
    }

    .btn-contato {
        padding: 10px 16px;
        font-size: 13px;
    }

    .hero {
        padding: 56px 0;
    }

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

    .servicos,
    .grid-projetos,
    .metricas {
        grid-template-columns: 1fr;
    }

    .newsletter form {
        flex-direction: column;
    }

    .hero-imagem {
        height: 330px;
        border-radius: 24px;
    }

    .monitor {
        width: 92%;
        right: 4%;
        top: 35px;
    }

    .janela {
        padding: 22px;
    }

    .newsletter {
        padding: 24px;
    }

    .newsletter h2 {
        font-size: 24px;
    }
}

.menu-mobile-btn {
    display: none;
    background: #075eea;
    color: #ffffff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 22px;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .menu-mobile-btn {
        display: block;
    }

    .nav {
        position: relative;
    }

    .nav nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #ffffff;
        border: 1px solid #e8edf5;
        border-radius: 0 0 18px 18px;
        padding: 18px;
        box-shadow: 0 20px 45px rgba(16,24,40,.12);
        z-index: 999;
    }

    .nav nav.aberto {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .nav nav a {
        padding: 14px 12px;
        border-radius: 10px;
    }

    .nav nav a.ativo {
        border-bottom: none;
        background: #eef5ff;
    }
}

.contato-page {
    padding-top: 70px;
    padding-bottom: 70px;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: start;
}

.contato-info h1 {
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.contato-info > p {
    color: #667085;
    line-height: 1.8;
    margin-bottom: 28px;
}

.contato-card {
    background: #ffffff;
    border: 1px solid #e5eaf2;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 14px;
}

.contato-card strong {
    color: #075eea;
    display: block;
    margin-bottom: 6px;
}

.contato-card p {
    margin: 0;
    color: #667085;
}

.contato-form-box {
    background: #ffffff;
    border: 1px solid #e5eaf2;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 25px 60px rgba(16,24,40,.08);
}

.contato-form-box h2 {
    margin-bottom: 20px;
    font-size: 26px;
}

.form-contato label {
    display: block;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 8px;
    color: #344054;
}

.form-contato input,
.form-contato textarea {
    width: 100%;
    border: 1px solid #d0d7e2;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
    font-size: 14px;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
}

.form-contato textarea {
    min-height: 140px;
    resize: vertical;
}

.form-contato input:focus,
.form-contato textarea:focus {
    border-color: #075eea;
    box-shadow: 0 0 0 4px rgba(7,94,234,.10);
}

.form-contato button {
    width: 100%;
    border: none;
    background: linear-gradient(135deg, #075eea, #003fc2);
    color: #ffffff;
    height: 50px;
    border-radius: 10px;
    font-weight: 900;
    cursor: pointer;
    font-size: 15px;
}

.alerta {
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 700;
}

.alerta.sucesso {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.alerta.erro {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 900px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }

    .contato-info h1 {
        font-size: 34px;
    }
}

.sobre-home {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 50px;
    align-items: center;
}

.sobre-img {
    height: 480px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(6,24,51,.2), rgba(7,94,234,.18)),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    box-shadow: 0 35px 80px rgba(16,24,40,.15);
}

.sobre-texto h2 {
    font-size: 42px;
    line-height: 1.15;
    margin: 14px 0 20px;
}

.sobre-texto p {
    color: #667085;
    line-height: 1.8;
    margin-bottom: 30px;
}

.sobre-topicos {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.topico {
    background: #ffffff;
    border: 1px solid #e5eaf2;
    border-radius: 16px;
    padding: 20px;
    transition: .25s;
}

.topico:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(16,24,40,.08);
}

.topico strong {
    display: block;
    margin-bottom: 6px;
    color: #075eea;
}

.topico span {
    color: #667085;
    font-size: 14px;
}

.tecnologias {
    margin-top: 90px;
}

.titulo-centro {
    text-align: center;
    margin-bottom: 34px;
}

.titulo-centro h2 {
    font-size: 38px;
    margin-top: 10px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.tech-card {
    background: #ffffff;
    border: 1px solid #e5eaf2;
    border-radius: 18px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    transition: .25s;
    cursor: pointer;
}

.tech-card:hover {
    background: linear-gradient(135deg, #075eea, #003fc2);
    color: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(7,94,234,.25);
}

.cta-final {
    margin-top: 90px;
    margin-bottom: 80px;
}

.cta-box {
    background:
        linear-gradient(135deg, rgba(6,24,51,.96), rgba(7,94,234,.88)),
        url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 70px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.15);
}

.cta-box * {
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    font-size: 46px;
    max-width: 850px;
    margin: 18px auto;
    line-height: 1.15;
}

.cta-box p {
    max-width: 700px;
    margin: auto;
    color: #dbeafe;
    line-height: 1.8;
    margin-bottom: 28px;
}

@media (max-width: 1000px) {

    .sobre-home {
        grid-template-columns: 1fr;
    }

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

    .cta-box {
        padding: 50px 30px;
    }

    .cta-box h2 {
        font-size: 34px;
    }

}

@media (max-width: 600px) {

    .sobre-texto h2 {
        font-size: 32px;
    }

    .titulo-centro h2 {
        font-size: 30px;
    }

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

    .cta-box h2 {
        font-size: 28px;
    }

    .sobre-img {
        height: 340px;
    }

}

.btn-card {
    display:inline-block;
    background:#075eea;
    color:#ffffff;
    padding:10px 14px;
    border-radius:9px;
    font-size:13px;
    font-weight:800;
}

.btn-card:hover {
    background:#003fc2;
}

.artigo-page {
    max-width: 920px;
}

.artigo-img {
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    margin: 30px 0;
    box-shadow: 0 25px 60px rgba(16,24,40,.12);
}

.artigo-conteudo {
    background: #ffffff;
    border: 1px solid #e5eaf2;
    border-radius: 22px;
    padding: 34px;
    color: #344054;
    line-height: 1.9;
    font-size: 17px;
}

@media (max-width: 600px) {
    .artigo-img {
        height: 260px;
    }

    .artigo-conteudo {
        padding: 24px;
        font-size: 15px;
    }
}

.hero-premium{
    position:relative;
    overflow:hidden;
}

.hero-premium::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,
        rgba(7,94,234,.22),
        transparent 70%);
    top:-250px;
    right:-200px;
    z-index:0;
    animation:floatGlow 7s ease-in-out infinite;
}

.hero-premium::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,
        rgba(0,212,255,.15),
        transparent 70%);
    bottom:-200px;
    left:-180px;
    z-index:0;
    animation:floatGlow2 9s ease-in-out infinite;
}

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

.monitor{
    position:relative;
}

.monitor::before{
    content:'';
    position:absolute;
    inset:-15px;
    border-radius:34px;
    background:linear-gradient(
        135deg,
        rgba(7,94,234,.45),
        rgba(0,212,255,.15)
    );
    filter:blur(30px);
    z-index:-1;
    opacity:.9;
}

.monitor{
    animation:floatMonitor 6s ease-in-out infinite;
}

@keyframes floatMonitor{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes floatGlow{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(30px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes floatGlow2{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }
}

.hero h1{
    animation:fadeHero 1s ease;
}

.hero p{
    animation:fadeHero 1.4s ease;
}

.botoes{
    animation:fadeHero 1.8s ease;
}

@keyframes fadeHero{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid #d0d7e2;
    background: #ffffff;
    color: #101828;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    transition: .25s;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    border-color: #075eea;
}

/* DARK MODE */

body.dark-mode {
    background: #07111f;
    color: #f8fafc;
}

body.dark-mode .topo,
body.dark-mode .footer,
body.dark-mode .card-servico,
body.dark-mode .card-projeto,
body.dark-mode .contato-form-box,
body.dark-mode .contato-card,
body.dark-mode .topico,
body.dark-mode .tech-card,
body.dark-mode .artigo-conteudo {
    background: #0f1b2d;
    border-color: #1e2f4a;
    color: #f8fafc;
}

body.dark-mode .logo span,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
    color: #f8fafc;
}

body.dark-mode p,
body.dark-mode .card-servico p,
body.dark-mode .card-projeto p,
body.dark-mode .footer p,
body.dark-mode .footer a,
body.dark-mode .contato-card p,
body.dark-mode .topico span,
body.dark-mode .pagina-interna p {
    color: #cbd5e1;
}

body.dark-mode .hero {
    background:
        linear-gradient(90deg, rgba(7,17,31,.98) 0%, rgba(7,17,31,.92) 45%, rgba(15,27,45,.78) 100%),
        radial-gradient(circle at 80% 20%, rgba(7,94,234,.35), transparent 35%);
}

body.dark-mode .newsletter {
    background: #0f1b2d;
    border: 1px solid #1e2f4a;
}

body.dark-mode .theme-toggle {
    background: #15243a;
    color: #f8fafc;
    border-color: #1e2f4a;
}

body.dark-mode .nav nav a {
    color: #cbd5e1;
}

body.dark-mode .nav nav a:hover,
body.dark-mode .nav nav a.ativo {
    color: #60a5fa;
}

body.dark-mode .btn-secundario {
    background: #0f1b2d;
    color: #f8fafc;
    border-color: #1e2f4a;
}

body.dark-mode input,
body.dark-mode textarea {
    background: #07111f;
    color: #f8fafc;
    border-color: #1e2f4a;
}

body.dark-mode .texto {
    background: #07111f;
    color: #cbd5e1;
    border-color: #1e2f4a;
}

.menu-mobile{
    width:50px;
    height:50px;
    border:none;
    background:#ffffff;
    border-radius:14px;
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(16,24,40,.08);
}

.menu-mobile span{
    width:24px;
    height:2px;
    background:#101828;
    border-radius:20px;
    transition:.3s;
}

body.dark-mode .menu-mobile{
    background:#15243a;
}

body.dark-mode .menu-mobile span{
    background:#ffffff;
}

@media(max-width:900px){

    .menu-mobile{
        display:flex;
    }

    .nav nav{
        position:fixed;
        top:0;
        right:-100%;
        width:320px;
        height:100vh;
        background:#ffffff;
        display:flex;
        flex-direction:column;
        padding:120px 30px 30px;
        gap:18px;
        transition:.4s;
        z-index:999;
        box-shadow:-10px 0 40px rgba(0,0,0,.12);
    }

    body.dark-mode .nav nav{
        background:#07111f;
    }

    .nav nav.aberto{
        right:0;
    }

    .nav nav a{
        font-size:18px;
        padding:12px 0;
    }

    .btn-contato{
        display:none;
    }
}

#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s ease;
}

body.dark-mode #preloader {
    background: #07111f;
}

#preloader.oculto {
    opacity: 0;
    visibility: hidden;
}

.loader-box {
    text-align: center;
}

.loader-logo {
    font-size: 32px;
    font-weight: 900;
    color: #075eea;
    margin-bottom: 18px;
}

.loader-logo span {
    color: #101828;
}

body.dark-mode .loader-logo span {
    color: #ffffff;
}

.loader-bar {
    width: 220px;
    height: 6px;
    background: #e5eaf2;
    border-radius: 100px;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, #075eea, #60a5fa);
    border-radius: 100px;
    animation: loaderMove 1.1s ease-in-out infinite;
}

@keyframes loaderMove {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(260%);
    }
}

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:1s cubic-bezier(.2,.65,.2,1);
}

.reveal.ativo{
    opacity:1;
    transform:translateY(0);
}

.cursor-glow{
    position:fixed;
    width:320px;
    height:320px;
    background:radial-gradient(
        circle,
        rgba(7,94,234,.18),
        transparent 70%
    );
    pointer-events:none;
    z-index:1;
    transform:translate(-50%,-50%);
    mix-blend-mode:screen;
    transition:
        left .08s linear,
        top .08s linear;
}

body.dark-mode .cursor-glow{
    background:radial-gradient(
        circle,
        rgba(96,165,250,.16),
        transparent 70%
    );
}

.tech-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
    gap:16px;
    margin-top:40px;
}

.tech-card{
    background:#ffffff;
    border:1px solid #e5eaf2;
    border-radius:20px;
    padding:20px 10px;
    text-align:center;
    transition:.3s;
    position:relative;
    overflow:hidden;
}

.tech-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(7,94,234,.05),
        transparent
    );
    opacity:0;
    transition:.3s;
}

.tech-card:hover{
    transform:translateY(-6px);
    border-color:#075eea;
    box-shadow:0 18px 40px rgba(7,94,234,.12);
}

.tech-card:hover::before{
    opacity:1;
}

.tech-icon{
    font-size:34px;
    margin-bottom:12px;
}

.tech-card span{
    display:block;
    font-size:14px;
    font-weight:800;
    color:#344054;
}

body.dark-mode .tech-card{
    background:#0f1b2d;
    border-color:#1e2f4a;
}

body.dark-mode .tech-card span{
    color:#f8fafc;
}

.card-servico h3{
    color:#101828;
}

.card-servico p{
    color:#667085;
}

body.dark-mode .card-servico h3{
    color:#f8fafc;
}

body.dark-mode .card-servico p{
    color:#cbd5e1;
}

/* =========================
   MOBILE PREMIUM
========================= */

@media (max-width: 768px) {

    .container {
        width: 90%;
    }

    .nav {
        height: 68px;
    }

    .logo {
        font-size: 21px;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding: 48px 0 36px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .botoes {
        flex-direction: column;
        width: 100%;
    }

    .btn-primario,
    .btn-secundario {
        width: 100%;
        text-align: center;
    }

    .hero-imagem {
        height: 300px;
        border-radius: 24px;
    }

    .monitor {
        width: 90%;
        height: auto;
        min-height: 230px;
        right: 5%;
        top: 34px;
    }

    .janela h3 {
        font-size: 21px;
    }

    .mini-cards {
        flex-direction: column;
    }

    .servicos,
    .grid-projetos,
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card-servico {
        min-height: auto;
        padding: 22px;
    }

    .card-projeto .thumb,
    .thumb {
        height: 190px;
    }

    .metricas {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .metricas div {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.12);
        padding: 18px 0;
    }

    .metricas div:last-child {
        border-bottom: none;
    }

    .newsletter {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter input,
    .newsletter button {
        width: 100%;
    }

    .sobre-home {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 55px;
    }

    .sobre-img {
        height: 300px;
        border-radius: 22px;
    }

    .sobre-texto h2,
    .titulo-centro h2,
    .newsletter h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .cta-box {
        padding: 42px 24px;
        border-radius: 22px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

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

    .pagina-interna {
        padding: 56px 0 34px;
    }

    .pagina-interna h1 {
        font-size: 34px;
        line-height: 1.15;
    }

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

    .contato-form-box {
        padding: 24px;
    }

    .artigo-img {
        height: 240px;
    }

    .artigo-conteudo {
        padding: 22px;
        font-size: 15px;
    }

    .cursor-glow {
        display: none;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
        font-size: 23px;
    }
}

@media (max-width: 480px) {

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

    .tag {
        font-size: 12px;
        padding: 7px 12px;
    }

    .menu-mobile {
        width: 44px;
        height: 44px;
    }

    .nav nav {
        width: 86%;
    }

    .card-projeto h3,
    .card-servico h3 {
        font-size: 17px;
    }

    .tech-card {
        padding: 18px 10px;
    }

    .tech-icon {
        font-size: 30px;
    }
}

.breadcrumb{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:30px;
    font-size:14px;
    color:#667085;
}

.breadcrumb a{
    color:#667085;
    text-decoration:none;
    transition:.25s;
}

.breadcrumb a:hover{
    color:#075eea;
}

.breadcrumb strong{
    color:#101828;
}

body.dark-mode .breadcrumb{
    color:#94a3b8;
}

body.dark-mode .breadcrumb a{
    color:#94a3b8;
}

body.dark-mode .breadcrumb strong{
    color:#ffffff;
}