:root {
    --bg: #020302;
    --black: #050605;
    --black2: #080a08;
    --panel: #0d100e;
    --panel2: #111511;
    --card: #101111;
    --card2: #151616;
    --text: #f5f7f5;
    --muted: #a7b0aa;
    --soft: #737d76;
    --line: rgba(255, 255, 255, .10);
    --line2: rgba(255, 255, 255, .055);
    --green: #06472a;
    --green2: #0b6f3c;
    --green3: #18b66a;
    --glow: rgba(18, 140, 76, .32);
    --shadow: 0 30px 100px rgba(0, 0, 0, .55);
    --radius: 24px;
    --radius2: 36px;
    --wrap: 1240px;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
p { color: var(--muted); line-height: 1.75; }

h1, h2, h3, h4 {
    margin: 0;
    color: #fff;
    letter-spacing: -.045em;
}

.wrap {
    width: min(var(--wrap), calc(100% - 40px));
    max-width: var(--wrap);
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 120px 0;
}

.black {
    background: linear-gradient(180deg, #030403, #070807);
    border-top: 1px solid var(--line2);
    border-bottom: 1px solid var(--line2);
}

.transparent { background: transparent; }

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.site-bg {
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
        radial-gradient(circle at 72% 15%, rgba(255, 255, 255, .055), transparent 22%),
        radial-gradient(circle at 20% 22%, rgba(11, 111, 60, .12), transparent 26%),
        radial-gradient(circle at 75% 78%, rgba(11, 111, 60, .07), transparent 22%),
        linear-gradient(135deg, #010101, #050605 44%, #020302);
}

.blueprint {
    position: fixed;
    inset: 0;
    z-index: -4;
    opacity: .38;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 80%, transparent);
}

.scan {
    position: fixed;
    inset: -20% 0 auto;
    z-index: -3;
    height: 240px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .04), transparent);
    animation: scan 16s linear infinite;
}

.architecture {
    position: fixed;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    opacity: .22;
    filter: drop-shadow(0 0 18px rgba(11, 111, 60, .2));
    pointer-events: none;
}

.data-line {
    fill: none;
    stroke: rgba(195, 215, 203, .28);
    stroke-width: 1.25;
    stroke-dasharray: 10 14;
    animation: dash 22s linear infinite;
}

.node { fill: #b8c6bd; opacity: .65; }

.node-hot {
    fill: var(--green3);
    opacity: .95;
    animation: nodePulse 2.6s ease-in-out infinite;
}

#site-header, #site-footer { display: block !important; }

.nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(3, 4, 3, .74);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.nav .wrap,
.nav-inner {
    width: min(var(--wrap), calc(100% - 40px));
    max-width: var(--wrap);
    margin-inline: auto;
}

.nav-inner {
    min-height: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.03em;
    font-size: 20px;
}

.brand .logo {
    display: block;
    height: 82px;
    width: auto;
    max-height: 82px;
    object-fit: contain;
}

.footer .logo {
    height: 80px;
    width: auto;
}

.brand span span { color: var(--green3); }

.mark {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--green3), var(--green));
    box-shadow: 0 0 40px var(--glow);
    color: #001b0d;
    font-weight: 950;
    font-size: 15px;
}

.links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #d9dedb;
    font-size: 14px;
}

.links a {
    opacity: .86;
    color: inherit;
    text-decoration: none;
}

.links a:hover { opacity: 1; color: #fff; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu { display: none !important; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    transition: .25s var(--ease);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .07);
}

.btn.primary {
    background: linear-gradient(135deg, var(--green3), var(--green));
    color: #011409;
    border-color: rgba(34, 200, 117, .65);
    box-shadow: 0 0 35px var(--glow);
}

.btn.primary:hover { box-shadow: 0 0 55px rgba(34, 200, 117, .35); }

.hero {
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    padding: 120px 0 105px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 52px;
    align-items: center;
}

.page-hero { padding: 150px 0 70px; }

.page-hero h1 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1;
    letter-spacing: -.07em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green3);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
    margin-bottom: 16px;
}

.eyebrow:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--green3);
    box-shadow: 0 0 18px var(--green3);
}

.h1 {
    font-size: clamp(48px, 7vw, 94px);
    line-height: .96;
    max-width: 850px;
}

h2 {
    font-size: clamp(34px, 4.2vw, 62px);
    line-height: 1.02;
    max-width: 860px;
}

h3 { font-size: 24px; }

.lead {
    font-size: clamp(18px, 2vw, 22px);
    max-width: 690px;
    margin: 26px 0 0;
}

.section-intro {
    font-size: 18px;
    max-width: 780px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.trust-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.trust-row span {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    border-radius: 999px;
    padding: 10px 14px;
    color: #d8ded9;
    font-size: 13px;
}

.workspace {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(16, 20, 17, .86), rgba(5, 7, 5, .78));
    border-radius: var(--radius2);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .08);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
    animation: float 6s ease-in-out infinite;
}

.window-bar {
    height: 56px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
    color: #aeb8b1;
    font-size: 13px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #3b423e;
}

.dot:nth-child(1) { background: #235c3d; }
.dot:nth-child(2) { background: #68726d; }
.dot:nth-child(3) { background: #f2f2f2; }

.workspace-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 14px;
    padding: 16px;
}

.dev-card,
.card,
.quote,
.stat,
.flow-item,
.list-item,
.industry,
.case,
.faq-item,
.stack-item,
.package,
.legal-card {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
    border-radius: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.dev-card {
    padding: 18px;
    min-height: 150px;
}

.dev-card h4 {
    font-size: 14px;
    margin: 0 0 14px;
    color: #dfe5e1;
}

.code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
    line-height: 1.9;
    color: #d7ded9;
}

.green,
.status { color: var(--green3); }
.muted { color: #778179; }

.metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line2);
    padding: 8px 0;
    color: #b7c0ba;
    font-size: 13px;
}

.pipeline {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pipe-step {
    padding: 9px 10px;
    border-radius: 12px;
    background: rgba(34, 200, 117, .09);
    border: 1px solid rgba(34, 200, 117, .25);
    font-size: 12px;
    font-weight: 800;
}

.pipe-line {
    height: 2px;
    min-width: 26px;
    background: linear-gradient(90deg, transparent, var(--green3), transparent);
    animation: flow 1.8s linear infinite;
}

.terminal-line {
    opacity: 0;
    animation: terminal 8s infinite;
}

.terminal-line:nth-child(2) { animation-delay: 1.2s; }
.terminal-line:nth-child(3) { animation-delay: 2.4s; }
.terminal-line:nth-child(4) { animation-delay: 3.6s; }

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 42px;
}

.title-row p {
    max-width: 470px;
    margin: 0;
}

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

.card {
    padding: 28px;
    min-height: 270px;
    transition: .28s var(--ease);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 200, 117, .36);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .35), 0 0 45px rgba(11, 111, 60, .13);
}

.card a {
    color: var(--green3);
    font-weight: 900;
}

.card h3 {
    font-size: 22px;
    letter-spacing: -.03em;
    margin: 20px 0 12px;
}

.card p { color: #aeb5b1; }

.icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(34, 200, 117, .09);
    border: 1px solid rgba(34, 200, 117, .25);
    color: var(--green3);
    font-weight: 950;
    margin-bottom: 22px;
    font-size: 14px;
}

.architecture-panel {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(8, 10, 8, .78), rgba(255, 255, 255, .035));
    border-radius: var(--radius2);
    padding: 52px;
    box-shadow: var(--shadow);
}

.flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.flow-item {
    padding: 22px;
    position: relative;
    min-height: 140px;
}

.flow-item strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
}

.flow-item span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.list {
    display: grid;
    gap: 14px;
}

.list-item { padding: 24px; }

.list-item strong {
    display: block;
    margin-bottom: 4px;
}

.list-item p {
    margin: 8px 0 0;
    color: #aab2ae;
}

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

.stat {
    padding: 28px;
    text-align: center;
}

.stat b {
    font-size: 44px;
    color: #fff;
}

.stat p { margin: 8px 0 0; }

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

.quote { padding: 28px; }
.quote p { font-size: 17px; color: #dfe5e1; }
.quote small { color: var(--green3); font-weight: 800; }

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

.industry {
    padding: 24px;
    min-height: 180px;
}

.industry strong {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
}

.industry span {
    color: var(--muted);
    line-height: 1.55;
    font-size: 14px;
}

.stack {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.stack-item {
    padding: 18px;
    text-align: center;
    color: #dfe5e1;
    font-weight: 850;
}

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

.case { padding: 28px; }

.case .tag {
    display: inline-flex;
    color: var(--green3);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 18px;
}

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

.package { padding: 30px; }

.package ul {
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.package li {
    padding: 9px 0;
    color: var(--muted);
    border-bottom: 1px solid var(--line2);
}

.faq {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.faq-item { padding: 24px; }
.faq-item h3 { font-size: 19px; }
.faq-item p { margin-bottom: 0; }

.legal-content {
    max-width: 900px;
    color: #c7ceca;
}

.legal-content h2 { margin-top: 36px; }

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

.legal-card { padding: 24px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form {
    display: grid;
    gap: 14px;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    background: #080909;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 15px 16px;
    color: white;
}

.form textarea { min-height: 150px; }

.table-panel {
    margin-top: 50px;
    overflow-x: auto;
    border-radius: 24px;
    padding: 30px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .08);
}

.table-panel table {
    width: 100%;
    border-collapse: collapse;
}

.table-panel caption {
    text-align: left;
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--muted);
    font-weight: 600;
}

.table-panel th {
    color: #fff;
    font-size: .95rem;
    padding: 18px;
    border-bottom: 2px solid rgba(255, 255, 255, .12);
}

.table-panel td {
    padding: 18px;
    color: rgba(255, 255, 255, .75);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    vertical-align: top;
}

.table-panel tbody tr:hover { background: rgba(255, 255, 255, .03); }

.cta-big {
    text-align: center;
    padding: 80px 40px;
}

.cta-big h2 { margin: auto; }

.cta-big p {
    margin: 24px auto 32px;
    max-width: 720px;
}

.footer {
    background: #020202;
    border-top: 1px solid rgba(255, 255, 255, .10);
    padding: 70px 0 28px;
    width: 100%;
}

.footer > .wrap {
    width: min(var(--wrap), calc(100% - 40px));
    max-width: var(--wrap);
    margin-inline: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(5, 1fr);
    gap: 28px;
    align-items: start;
    width: 100%;
    margin: 0;
}

.footer .brand { margin: 0 0 18px; }

.footer p {
    color: #a7b0aa;
    line-height: 1.75;
    margin: 0;
    max-width: 260px;
    font-size: 16px;
}

.footer h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #dfe5e1;
    margin: 0 0 16px;
    font-weight: 900;
    line-height: 1.2;
}

.footer a {
    display: block;
    color: #a7b0aa;
    padding: 6px 0;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.45;
}

.footer a:hover { color: #fff; }

.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    color: #68716a;
    font-size: 13px;
    border-top: 1px solid var(--line);
    margin-top: 46px;
    padding-top: 22px;
    width: 100%;
    flex-wrap: wrap;
}

.cookie {
    position: fixed;
    right: 20px;
    bottom: 20px;
    max-width: 420px;
    background: rgba(5, 7, 5, .94);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    z-index: 80;
    box-shadow: var(--shadow);
}

.cookie p {
    font-size: 14px;
    margin: 8px 0 16px;
}

.cookie a {
    color: var(--green3);
    font-weight: 900;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: .8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@keyframes scan {
    from { transform: translateY(-260px); }
    to { transform: translateY(120vh); }
}

@keyframes dash {
    to { stroke-dashoffset: -420; }
}

@keyframes nodePulse {
    50% {
        filter: drop-shadow(0 0 20px var(--green2));
        transform: scale(1.12);
    }
}

@keyframes float {
    50% {
        transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateY(-10px);
    }
}

@keyframes flow {
    50% { opacity: .35; }
}

@keyframes terminal {
    0%, 10% {
        opacity: 0;
        transform: translateY(8px);
    }

    20%, 80% {
        opacity: 1;
        transform: none;
    }

    100% { opacity: .5; }
}

@media (max-width: 1000px) {
    .links,
    .nav-actions .btn:not(.menu) {
        display: none;
    }

    .menu {
        display: inline-flex !important;
    }

    .nav-open .links {
        position: fixed;
        left: 20px;
        right: 20px;
        top: 120px;
        display: grid;
        gap: 10px;
        background: rgba(5, 7, 5, .96);
        border: 1px solid var(--line);
        border-radius: 24px;
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
    }

    .nav-open .links a {
        padding: 10px 0;
    }

    .hero-grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .workspace {
        transform: none;
    }

    .workspace-grid,
    .cards,
    .testimonials,
    .cases,
    .packages,
    .faq {
        grid-template-columns: 1fr;
    }

    .flow,
    .industries,
    .stats,
    .legal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .title-row {
        display: block;
    }

    .title-row p {
        margin-top: 18px;
    }

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

@media (max-width: 768px) {
    .nav-inner {
        min-height: 82px;
        height: 82px;
    }

    .brand .logo {
        height: 56px;
        max-height: 56px;
    }

    .footer .logo {
        height: 46px;
    }

    .hero {
        min-height: calc(100vh - 82px);
        padding: 80px 0;
    }

    .nav-open .links {
        top: 96px;
    }
}

@media (max-width: 600px) {
    .wrap {
        width: min(100% - 28px, var(--wrap));
    }

    .section {
        padding: 78px 0;
    }

    .hero {
        padding: 64px 0;
    }

    .h1 {
        font-size: 44px;
    }

    .flow,
    .industries,
    .stats,
    .stack,
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .architecture-panel {
        padding: 28px;
    }

    .footer {
        padding: 56px 0 24px;
    }

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

    .bottom {
        display: block;
    }

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

    .cookie {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }
}
.whatsapp-float{
    position:fixed;
    left:24px;
    bottom:24px;
    z-index:9999;

    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 18px;

    background:#25D366;
    color:#fff;
    text-decoration:none;

    border-radius:999px;

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

    box-shadow:0 12px 35px rgba(0,0,0,.35);

    transition:.3s ease;
    animation:whatsPulse 2.5s infinite;
}

.whatsapp-float:hover{
    transform:translateY(-4px) scale(1.04);
    box-shadow:0 18px 45px rgba(37,211,102,.45);
}

.whatsapp-float svg{
    width:28px;
    height:28px;
    flex-shrink:0;
}

@keyframes whatsPulse{
    0%,100%{
        box-shadow:0 0 0 0 rgba(37,211,102,.45);
    }
    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }
}

@media (max-width:768px){
    .whatsapp-float{
        left:18px;
        bottom:18px;
        padding:14px;
    }

    .whatsapp-float span{
        display:none;
    }
}