﻿/* =========================================================
   MP TECH V2
   STYLE.CSS
   ========================================================= */


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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Inter", sans-serif;
    background: #050608;
    color: #f5f7fa;
    line-height: 1.6;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: #1473ff;
    color: #fff;
}


/* =========================================================
   VARIABLES
   ========================================================= */

:root {

    --blue: #1473ff;
    --blue-light: #4d93ff;
    --blue-dark: #0751c9;

    --black: #050608;
    --black-soft: #080b10;
    --dark: #0b0f15;
    --dark-2: #10151d;

    --white: #f5f7fa;
    --gray: #a4adba;
    --gray-dark: #687280;

    --border: rgba(255, 255, 255, 0.08);
    --border-blue: rgba(20, 115, 255, 0.28);

    --container: 1180px;

    --radius: 18px;

    --shadow:
        0 20px 60px rgba(0, 0, 0, 0.35);

    --transition:
        0.35s cubic-bezier(.2, .8, .2, 1);
}


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

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050608;
}

::-webkit-scrollbar-thumb {
    background: #1b2533;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue);
}


/* =========================================================
   LOADER
   ========================================================= */

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #050608;

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

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    width: min(380px, 80%);
    text-align: center;
}

.loader-logo {
    font-family: "Space Grotesk", sans-serif;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.loader-logo span {
    color: var(--blue);
}

.loader-line {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
    border-radius: 10px;
}

.loader-line span {
    display: block;
    width: 35%;
    height: 100%;
    background: var(--blue);
    animation: loaderProgress 1.5s ease-in-out infinite;
}

.loader-content p {
    margin-top: 16px;
    color: var(--gray-dark);
    font-size: 12px;
    letter-spacing: .08em;
}

@keyframes loaderProgress {

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

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

}


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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    height: 78px;

    border-bottom: 1px solid transparent;

    transition:
        background .35s ease,
        border .35s ease,
        backdrop-filter .35s ease;
}

.header.scrolled {
    background: rgba(5, 6, 8, .82);
    backdrop-filter: blur(18px);
    border-color: var(--border);
}

.navbar {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO */

.logo {
    font-family: "Space Grotesk", sans-serif;

    font-size: 23px;
    font-weight: 800;

    letter-spacing: -1px;

    white-space: nowrap;
}

.logo span {
    color: var(--blue);
}


/* NAV */

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

.nav a {
    position: relative;

    color: #9da6b3;

    font-size: 13px;
    font-weight: 500;

    transition: color .3s ease;
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--blue);

    transition: width .3s ease;
}

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

.nav a:hover::after {
    width: 100%;
}


/* MOBILE MENU */

.menu-mobile {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    background: transparent;

    color: #fff;

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

    cursor: pointer;
}

.menu-mobile svg {
    width: 20px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;

    padding: 0 22px;

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

    border-radius: 10px;

    background: var(--blue);

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

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

.btn svg {
    width: 17px;
}

.btn:hover {
    transform: translateY(-3px);

    background: var(--blue-light);

    box-shadow:
        0 12px 35px rgba(20,115,255,.25);
}

.btn-small {
    min-height: 42px;
    padding: 0 17px;
    font-size: 12px;
}

.btn-outline {
    background: transparent;
    border-color: rgba(255,255,255,.15);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--blue);
    background: rgba(20,115,255,.08);
}

.btn.full {
    width: 100%;
}


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

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding-top: 110px;
    padding-bottom: 80px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(20,115,255,.11),
            transparent 35%
        ),
        #050608;
}


/* GRID */

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: .35;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );
}


/* GLOWS */

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;
}

.glow-1 {
    width: 380px;
    height: 380px;

    background: rgba(20,115,255,.12);

    top: 10%;
    right: 8%;

    animation: glowFloat 8s ease-in-out infinite;
}

.glow-2 {
    width: 260px;
    height: 260px;

    background: rgba(20,115,255,.07);

    bottom: 0;
    left: 15%;

    animation: glowFloat 10s ease-in-out infinite reverse;
}

@keyframes glowFloat {

    0%,
    100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(25px,-25px);
    }

}


/* HERO CONTENT */

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

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(400px, .9fr);

    align-items: center;

    gap: 80px;
}


/* HERO TEXT */

.hero-text {
    max-width: 690px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 8px 13px;

    margin-bottom: 26px;

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

    border-radius: 50px;

    background: rgba(20,115,255,.05);

    color: #8ca9d4;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .12em;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #28d17c;

    box-shadow:
        0 0 12px rgba(40,209,124,.8);

    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 7px rgba(40,209,124,.5);
    }

    50% {
        box-shadow: 0 0 16px rgba(40,209,124,.9);
    }

}


/* HERO H1 */

.hero h1 {
    max-width: 720px;

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

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 700;
}

.gradient-text {
    color: var(--blue);

    display: inline-block;

    min-width: 180px;
}

.hero h1::selection,
.gradient-text::selection {
    background: #fff;
    color: var(--blue);
}


/* HERO P */

.hero-text > p {
    max-width: 620px;

    margin-top: 26px;

    color: var(--gray);

    font-size: 16px;
    line-height: 1.8;
}

.hero-text > p strong {
    color: #dce7f7;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 34px;
}


/* HERO TRUST */

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;

    margin-top: 42px;

    padding-top: 25px;

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item > svg {
    width: 20px;
    color: var(--blue);
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 12px;
    color: #fff;
}

.trust-item span {
    font-size: 10px;
    color: var(--gray-dark);
}


/* =========================================================
   HERO CODE WINDOW
   ========================================================= */

.hero-visual {
    position: relative;

    min-height: 480px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.code-window {
    position: relative;

    width: 100%;
    max-width: 510px;

    overflow: hidden;

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

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            #0d131c,
            #080b10
        );

    box-shadow:
        0 40px 90px rgba(0,0,0,.5),
        0 0 70px rgba(20,115,255,.08);

    transform:
        perspective(1000px)
        rotateY(-4deg)
        rotateX(2deg);

    transition: transform .5s ease;
}

.code-window:hover {
    transform:
        perspective(1000px)
        rotateY(0)
        rotateX(0)
        translateY(-8px);
}

.code-header {
    height: 48px;

    display: flex;
    align-items: center;

    padding: 0 15px;

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

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

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #39414d;
}

.window-title {
    flex: 1;

    text-align: center;

    font-size: 10px;

    color: #687280;
}

.window-icon {
    color: var(--blue);
}

.window-icon svg {
    width: 16px;
}

.code-body {
    padding: 30px 25px 35px;

    min-height: 320px;

    font-family: monospace;

    font-size: 13px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.015),
            transparent
        );
}

.code-line {
    display: flex;
    align-items: center;

    min-height: 31px;

    gap: 8px;
}

.code-number {
    width: 22px;

    color: #3c4552;

    user-select: none;
}

.code-tag {
    color: #5e9fff;
}

.code-property {
    color: #c78bff;
}

.code-string {
    color: #79d49b;
}

.code-white {
    color: #d9e1ec;
}

.indent {
    padding-left: 20px;
}

.indent-2 {
    padding-left: 40px;
}

.cursor {
    display: block;

    width: 7px;
    height: 16px;

    background: var(--blue);

    animation: cursorBlink .9s infinite;
}

@keyframes cursorBlink {

    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }

}


/* FLOATING CARDS */

.floating-card {
    position: absolute;

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

    padding: 12px 15px;

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

    border-radius: 12px;

    background:
        rgba(12,16,23,.88);

    backdrop-filter: blur(12px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.3);

    animation: floatingCard 5s ease-in-out infinite;
}

.floating-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(20,115,255,.1);

    color: var(--blue);
}

.floating-icon svg {
    width: 17px;
}

.floating-card div:last-child {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 11px;
}

.floating-card span {
    color: var(--gray-dark);

    font-size: 9px;
}

.floating-code {
    left: -25px;
    bottom: 40px;
}

.floating-performance {
    right: -25px;
    top: 60px;

    animation-delay: -2s;
}

@keyframes floatingCard {

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

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

}


/* HERO SCROLL */

.hero-scroll {
    position: absolute;

    left: 50%;
    bottom: 25px;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 4px;

    color: #46505d;

    font-size: 8px;

    letter-spacing: .2em;
}

.hero-scroll svg {
    width: 16px;

    animation: scrollArrow 1.5s infinite;
}

@keyframes scrollArrow {

    0%,
    100% {
        transform: translateY(0);
        opacity: .4;
    }

    50% {
        transform: translateY(5px);
        opacity: 1;
    }

}


/* =========================================================
   SECTION
   ========================================================= */

.section {
    padding: 120px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}

.section-heading.center {
    display: block;

    text-align: center;

    max-width: 780px;

    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .16em;
}

.section-tag > span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--blue);

    box-shadow:
        0 0 10px rgba(20,115,255,.8);
}

.section-heading h2,
.section-heading.center h2 {
    margin-top: 15px;

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

    font-size: clamp(34px, 4vw, 53px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.section-heading h2 span,
.section-heading.center h2 span {
    color: var(--blue);
}

.section-heading > p {
    max-width: 430px;

    color: var(--gray);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   NUMBERS
   ========================================================= */

.numbers-section {
    position: relative;

    padding: 35px 0;

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

    background: #07090d;
}

.numbers-grid {
    display: grid;

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

.number-item {
    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;

    text-align: center;

    padding: 10px 25px;
}

.number-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 10px;
    bottom: 10px;

    width: 1px;

    background: var(--border);
}

.number-item strong {
    font-family: "Space Grotesk", sans-serif;

    color: #fff;

    font-size: 28px;

    letter-spacing: -1px;
}

.number-item span {
    margin-top: 3px;

    color: var(--gray-dark);

    font-size: 10px;

    letter-spacing: .03em;
}


/* =========================================================
   PROJECTS
   ========================================================= */

.projects {
    background: #050608;
}


/* FILTERS */

.project-filters {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 30px;
}

.filter-btn {
    padding: 9px 15px;

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

    border-radius: 50px;

    background: transparent;

    color: var(--gray-dark);

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

    cursor: pointer;

    transition:
        color .3s ease,
        background .3s ease,
        border .3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--border-blue);

    background: rgba(20,115,255,.08);

    color: #fff;
}


/* GRID */

.projects-grid {
    display: grid;

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

    gap: 25px;
}


/* CARD */

.project-card {
    overflow: hidden;

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

    border-radius: var(--radius);

    background: #090c11;

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;

    opacity: 1;

    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-7px);

    border-color: rgba(20,115,255,.25);

    box-shadow:
        0 30px 70px rgba(0,0,0,.35);
}

.project-card.hidden {
    display: none;
}


/* PROJECT IMAGE */

.project-image {
    position: relative;

    display: block;

    height: 310px;

    overflow: hidden;

    background: #0d1219;
}

.project-browser {
    position: absolute;

    left: 7%;
    right: 7%;
    top: 8%;

    height: 88%;

    overflow: hidden;

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

    border-radius: 10px 10px 0 0;

    background: #10151d;

    box-shadow:
        0 25px 60px rgba(0,0,0,.45);

    transition:
        transform .5s ease;
}

.project-card:hover .project-browser {
    transform:
        translateY(-6px)
        scale(1.015);
}


/* BROWSER BAR */

.browser-bar {
    height: 32px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 0 10px;

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

    background: #0c1016;

    color: #596371;

    font-size: 7px;
}

.browser-dots {
    display: flex;
    gap: 4px;
}

.browser-dots span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #3a424e;
}


/* PREVIEWS */

.browser-preview {
    position: relative;

    height: calc(100% - 32px);

    overflow: hidden;
}


/* GENTILLE */

.gentille-preview {
    padding: 25px;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(255,255,255,.25),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #3e2728,
            #1d1113
        );
}

.preview-brand {
    font-family: Georgia, serif;

    color: #e9d4bb;

    font-size: 12px;

    letter-spacing: .1em;
}

.preview-title {
    max-width: 180px;

    margin-top: 40px;

    color: #f4e5d3;

    font-family: Georgia, serif;

    font-size: 25px;

    line-height: 1.05;
}

.preview-line {
    width: 120px;
    height: 5px;

    margin-top: 15px;

    border-radius: 10px;

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

.preview-line.short {
    width: 80px;
    margin-top: 6px;
}

.preview-button {
    width: 85px;
    height: 23px;

    margin-top: 20px;

    border-radius: 4px;

    background: #caa77b;
}


/* EXTRUSORA */

.extrusora-preview {
    background:
        linear-gradient(
            120deg,
            #101821,
            #172b3d
        );
}

.industrial-shape {
    position: absolute;

    width: 260px;
    height: 260px;

    right: -80px;
    top: -20px;

    border: 35px solid rgba(20,115,255,.22);

    border-radius: 50%;
}

.industrial-content {
    position: absolute;

    left: 30px;
    top: 45px;

    display: flex;
    flex-direction: column;
}

.industrial-content small {
    color: #77a9e9;

    font-size: 7px;

    letter-spacing: .15em;
}

.industrial-content strong {
    max-width: 170px;

    margin-top: 8px;

    color: #fff;

    font-size: 25px;

    line-height: 1.05;
}

.industrial-content div {
    width: 50px;
    height: 3px;

    margin-top: 18px;

    background: var(--blue);
}


/* ESTÉTICA */

.estetica-preview {
    background:
        linear-gradient(
            135deg,
            #1a1318,
            #33242c
        );
}

.beauty-content {
    position: absolute;

    left: 30px;
    top: 40px;
}

.beauty-content small {
    color: #d5a8bc;

    font-size: 7px;

    letter-spacing: .18em;
}

.beauty-content strong {
    display: block;

    max-width: 200px;

    margin-top: 13px;

    font-family: Georgia, serif;

    font-size: 28px;

    line-height: 1.1;

    color: #f3dce5;
}

.beauty-button {
    display: inline-block;

    margin-top: 22px;

    padding: 8px 12px;

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

    color: #fff;

    font-size: 7px;

    letter-spacing: .1em;
}


/* MADERART */

.maderart-preview {
    padding: 22px;

    background:
        linear-gradient(
            135deg,
            #211a15,
            #3b2a1e
        );
}

.maderart-logo {
    color: #d6c1a4;

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

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .15em;
}

.maderart-title {
    max-width: 220px;

    margin-top: 45px;

    color: #f2e5d5;

    font-family: Georgia, serif;

    font-size: 25px;

    line-height: 1.1;
}

.maderart-button {
    display: inline-block;

    margin-top: 18px;

    padding: 8px 11px;

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

    color: #e5d6c5;

    font-size: 6px;

    letter-spacing: .08em;
}


/* FRUTOS */

.frutos-preview {
    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(20,115,255,.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #101f17,
            #152d20
        );
}

.frutos-logo {
    position: absolute;

    left: 25px;
    top: 22px;

    color: #e5f0e7;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .08em;
}

.frutos-title {
    position: absolute;

    left: 25px;
    top: 70px;

    max-width: 230px;

    color: #fff;

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

    font-size: 26px;

    font-weight: 700;

    line-height: 1.05;
}

.frutos-button {
    position: absolute;

    left: 25px;
    top: 145px;

    padding: 8px 10px;

    border-radius: 3px;

    background: #fff;

    color: #16231b;

    font-size: 6px;
    font-weight: 800;
}


/* SNAKE */

.project-snake {
    background:
        #050b0d;
}

.snake-preview {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background:
        radial-gradient(
            circle,
            rgba(20,115,255,.1),
            transparent 45%
        ),
        #060a0d;
}

.snake-grid {
    position: absolute;
    inset: 0;

    opacity: .3;

    background-image:
        linear-gradient(
            rgba(20,115,255,.15) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(20,115,255,.15) 1px,
            transparent 1px
        );

    background-size: 25px 25px;
}

.snake-title {
    position: absolute;

    left: 25px;
    top: 22px;

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

    font-size: 20px;
    font-weight: 700;

    line-height: 1;
}

.snake-title span {
    color: var(--blue);
}

.snake-text {
    position: absolute;

    left: 25px;
    bottom: 20px;

    color: #596574;

    font-size: 7px;

    letter-spacing: .15em;
}

.snake-game {
    position: absolute;

    left: 50%;
    top: 54%;

    width: 160px;
    height: 100px;

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

.snake-head,
.snake-body,
.food {
    position: absolute;

    width: 13px;
    height: 13px;

    border-radius: 3px;
}

.snake-head {
    left: 75px;
    top: 35px;

    background: var(--blue);

    box-shadow:
        0 0 18px rgba(20,115,255,.6);
}

.snake-1 {
    left: 60px;
    top: 35px;

    background: #1264dd;
}

.snake-2 {
    left: 45px;
    top: 35px;

    background: #0e52b6;
}

.snake-3 {
    left: 30px;
    top: 35px;

    background: #0b428f;
}

.food {
    left: 115px;
    top: 70px;

    background: #fff;

    border-radius: 50%;

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


/* OVERLAY */

.project-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(5,6,8,.7);

    opacity: 0;

    transition: opacity .35s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay span {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 11px 15px;

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

    border-radius: 50px;

    background: rgba(5,6,8,.7);

    backdrop-filter: blur(10px);

    font-size: 11px;
    font-weight: 700;
}

.project-overlay svg {
    width: 15px;

    color: var(--blue);
}


/* PROJECT INFO */

.project-info {
    padding: 24px 25px 27px;
}

.project-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 9px;
}

.project-category {
    color: var(--blue);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .13em;
}

.project-number {
    color: #323a45;

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

    font-size: 20px;
    font-weight: 700;
}

.project-info h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 23px;

    letter-spacing: -.7px;
}

.project-info > p {
    max-width: 550px;

    margin-top: 10px;

    color: var(--gray);

    font-size: 12px;

    line-height: 1.75;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 18px;
}

.project-tech span {
    padding: 5px 8px;

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

    border-radius: 5px;

    color: #7c8795;

    font-size: 8px;

    letter-spacing: .03em;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 21px;

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    transition: color .3s ease;
}

.project-link:hover {
    color: var(--blue);
}

.project-link svg {
    width: 15px;
}


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

.services {
    background:
        #080b10;
}

.services-grid {
    display: grid;

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

    gap: 15px;
}

.service-card {
    position: relative;

    min-height: 260px;

    padding: 27px;

    overflow: hidden;

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

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.025),
            rgba(255,255,255,.005)
        );

    transition:
        transform .35s ease,
        border-color .35s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    border-color: var(--border-blue);
}

.service-number {
    position: absolute;

    right: 20px;
    top: 15px;

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

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

    font-size: 55px;
    font-weight: 800;
}

.service-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

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

    border-radius: 11px;

    background: rgba(20,115,255,.07);

    color: var(--blue);
}

.service-icon svg {
    width: 20px;
}

.service-card h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 18px;

    letter-spacing: -.4px;
}

.service-card p {
    margin-top: 10px;

    color: var(--gray);

    font-size: 11px;

    line-height: 1.75;
}

.service-keyword {
    display: inline-block;

    margin-top: 18px;

    color: #566170;

    font-size: 9px;

    font-weight: 600;
}


/* =========================================================
   TECHNOLOGIES
   ========================================================= */

.technologies {
    background: #050608;
}

.tech-content {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 100px;

    align-items: center;
}

.tech-text {
    max-width: 460px;
}

.tech-text h2 {
    margin-top: 15px;

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

    font-size: clamp(34px,4vw,50px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.tech-text h2 span {
    color: var(--blue);
}

.tech-text > p {
    margin-top: 20px;

    color: var(--gray);

    font-size: 13px;

    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 25px;

    color: #fff;

    font-size: 11px;
    font-weight: 700;
}

.text-link svg {
    width: 15px;

    color: var(--blue);

    transition: transform .3s ease;
}

.text-link:hover svg {
    transform: translateX(5px);
}

.tech-grid {
    display: grid;

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

    gap: 10px;
}

.tech-item {
    min-height: 135px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

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

    border-radius: 13px;

    background: #080b10;

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);

    border-color: var(--border-blue);
}

.tech-icon {
    color: var(--blue);

    margin-bottom: 12px;
}

.tech-icon svg {
    width: 24px;
}

.tech-item strong {
    font-family: "Space Grotesk", sans-serif;

    font-size: 13px;
}

.tech-item > span {
    margin-top: 2px;

    color: var(--gray-dark);

    font-size: 8px;
}


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

.process {
    background: #080b10;
}

.process-timeline {
    position: relative;

    display: grid;

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

    gap: 25px;

    margin-top: 65px;
}

.process-line {
    position: absolute;

    left: 9%;
    right: 9%;
    top: 29px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--blue),
            transparent
        );

    opacity: .35;
}

.process-step {
    position: relative;

    z-index: 2;
}

.process-number {
    position: relative;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

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

    border-radius: 50%;

    background: #080b10;

    color: var(--blue);

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

    font-size: 12px;
    font-weight: 700;
}

.process-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    border-radius: 10px;

    background: rgba(20,115,255,.08);

    color: var(--blue);
}

.process-icon svg {
    width: 18px;
}

.process-info > span {
    color: #586574;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .12em;
}

.process-info h3 {
    margin-top: 7px;

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

    font-size: 19px;
}

.process-info p {
    margin-top: 8px;

    color: var(--gray);

    font-size: 11px;

    line-height: 1.75;
}


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

.about {
    background: #050608;
}

.about-grid {
    display: grid;

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

    gap: 100px;

    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-card {
    width: min(450px,100%);

    overflow: hidden;

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

    border-radius: 15px;

    background: #080c11;

    box-shadow:
        0 30px 80px rgba(0,0,0,.4);
}

.about-card-top {
    height: 42px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding: 0 15px;

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

    background: #0c1118;
}

.terminal-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #3b4551;
}

.terminal-content {
    padding: 28px;

    font-family: monospace;

    font-size: 12px;
}

.terminal-content p {
    min-height: 27px;
}

.terminal-symbol {
    color: var(--blue);

    margin-right: 5px;
}

.terminal-result {
    padding-left: 15px;

    color: #7e8998;
}

.terminal-result.active {
    color: #d6dfeb;
}

.about-text h2 {
    margin-top: 15px;

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

    font-size: clamp(35px,4vw,52px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.about-text h2 span {
    color: var(--blue);
}

.about-text p {
    margin-top: 18px;

    color: var(--gray);

    font-size: 13px;

    line-height: 1.85;
}

.about-highlights {
    display: grid;

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

    gap: 12px;

    margin-top: 28px;

    padding-top: 25px;

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

.about-highlights div {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #a8b1be;

    font-size: 10px;
}

.about-highlights svg {
    width: 15px;

    color: var(--blue);
}


/* =========================================================
   LAB
   ========================================================= */

.lab {
    background: #080b10;
}

.lab-box {
    position: relative;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: center;

    overflow: hidden;

    padding: 65px;

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

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(20,115,255,.09),
            transparent 35%
        ),
        #080b10;
}

.lab-box::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

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

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

.lab-content h2 {
    margin-top: 15px;

    max-width: 550px;

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

    font-size: clamp(32px,4vw,48px);

    line-height: 1.05;

    letter-spacing: -1.8px;
}

.lab-content h2 span {
    color: var(--blue);
}

.lab-content p {
    max-width: 530px;

    margin-top: 20px;

    color: var(--gray);

    font-size: 13px;

    line-height: 1.8;
}

.lab-content .btn {
    margin-top: 28px;
}


/* LAB TERMINAL */

.lab-visual {
    position: relative;

    display: flex;
    justify-content: center;
}

.lab-terminal {
    width: min(430px,100%);

    overflow: hidden;

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

    border-radius: 13px;

    background: #050708;

    box-shadow:
        0 30px 70px rgba(0,0,0,.45);
}

.lab-terminal-header {
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 13px;

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

    color: #596574;

    font-family: monospace;

    font-size: 8px;
}

.lab-terminal-header span:last-child {
    color: var(--blue);
}

.lab-screen {
    position: relative;

    height: 250px;

    overflow: hidden;

    background: #06090b;
}

.lab-grid {
    position: absolute;
    inset: 0;

    opacity: .35;

    background-image:
        linear-gradient(
            rgba(20,115,255,.15) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(20,115,255,.15) 1px,
            transparent 1px
        );

    background-size: 20px 20px;
}

.mini-snake {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 100px;
    height: 20px;

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

.mini-snake span {
    position: absolute;

    width: 18px;
    height: 18px;

    border-radius: 4px;

    background: var(--blue);

    box-shadow:
        0 0 12px rgba(20,115,255,.4);
}

.mini-snake span:nth-child(1) {
    left: 0;
}

.mini-snake span:nth-child(2) {
    left: 20px;
    opacity: .8;
}

.mini-snake span:nth-child(3) {
    left: 40px;
    opacity: .6;
}

.mini-snake span:nth-child(4) {
    left: 60px;
    opacity: .4;
}

.mini-food {
    position: absolute;

    left: 65%;
    top: 65%;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #fff;

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

.score {
    position: absolute;

    top: 15px;
    right: 15px;

    color: #536171;

    font-family: monospace;

    font-size: 8px;
}


/* =========================================================
   LOCAL SEO
   ========================================================= */

.local-seo {
    padding: 90px 0;

    background:
        linear-gradient(
            90deg,
            #050608,
            #080c12,
            #050608
        );

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

.local-seo-content {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 80px;

    align-items: center;
}

.local-seo h2 {
    margin-top: 15px;

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

    font-size: clamp(35px,4vw,50px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.local-seo h2 span {
    color: var(--blue);
}

.local-seo-text p {
    color: var(--gray);

    font-size: 12px;

    line-height: 1.85;
}

.local-seo-text p + p {
    margin-top: 15px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
    background: #050608;
}

.contact-box {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding: 70px 30px;

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

    border-radius: 22px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(20,115,255,.12),
            transparent 45%
        ),
        #080b10;
}

.contact-box::before,
.contact-box::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(20,115,255,.1);
}

.contact-box::before {
    width: 400px;
    height: 400px;
}

.contact-box::after {
    width: 650px;
    height: 650px;
}

.contact-content {
    position: relative;
    z-index: 2;

    max-width: 700px;
}

.contact-content h2 {
    margin-top: 15px;

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

    font-size: clamp(38px,5vw,62px);

    line-height: 1;

    letter-spacing: -2.5px;
}

.contact-content h2 span {
    color: var(--blue);
}

.contact-content p {
    max-width: 570px;

    margin: 20px auto 0;

    color: var(--gray);

    font-size: 13px;

    line-height: 1.8;
}

.contact-btn {
    margin-top: 28px;

    min-width: 210px;
}

.contact-content small {
    display: block;

    margin-top: 15px;

    color: #4e5967;

    font-size: 9px;
}


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

footer {
    padding-top: 70px;

    background: #030405;

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

.footer-content {
    display: grid;

    grid-template-columns:
        1.5fr
        .7fr
        .8fr
        .7fr;

    gap: 50px;

    padding-bottom: 55px;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand p {
    margin-top: 15px;

    color: #606b79;

    font-size: 11px;

    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {
    margin-bottom: 6px;

    color: #fff;

    font-size: 11px;
}

.footer-column a,
.footer-column span {
    color: #596473;

    font-size: 10px;

    transition: color .3s ease;
}

.footer-column a:hover {
    color: var(--blue);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 0;

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

    color: #3f4854;

    font-size: 9px;
}

.footer-bottom span {
    color: #303741;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.whatsapp-float {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

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

    border-radius: 50%;

    background: #1473ff;

    color: #fff;

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

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

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);

    box-shadow:
        0 18px 45px rgba(20,115,255,.3);
}

.whatsapp-float svg {
    width: 23px;
}

.whatsapp-tooltip {
    position: absolute;

    right: 68px;

    top: 50%;

    transform:
        translateY(-50%)
        translateX(10px);

    padding: 7px 10px;

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

    border-radius: 6px;

    background: #0c1016;

    color: #fff;

    white-space: nowrap;

    font-size: 9px;

    opacity: 0;

    pointer-events: none;

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

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;

    transform:
        translateY(-50%)
        translateX(0);
}


/* =========================================================
   ANIMATIONS / REVEAL
   ========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */


/* TABLET */

@media (max-width: 1050px) {

    .nav {
        gap: 17px;
    }

    .nav a {
        font-size: 11px;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-text {
        max-width: 800px;
    }

    .hero-visual {
        min-height: 420px;
    }

    .code-window {
        max-width: 600px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .floating-code {
        left: -10px;
    }

    .floating-performance {
        right: 0;
    }

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

    .tech-content {
        gap: 50px;
    }

    .about-grid {
        gap: 60px;
    }

    .lab-box {
        padding: 50px;
    }

}


/* TABLET SMALL */

@media (max-width: 800px) {

    .header .btn-small {
        display: none;
    }

    .menu-mobile {
        display: flex;
    }

    .nav {
        position: absolute;

        top: 78px;
        left: 20px;
        right: 20px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px;

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

        border-radius: 13px;

        background:
            rgba(8,11,16,.97);

        backdrop-filter: blur(20px);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity .3s ease,
            visibility .3s ease,
            transform .3s ease;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .nav a {
        padding: 13px;

        border-radius: 7px;

        font-size: 12px;
    }

    .nav a:hover {
        background: rgba(255,255,255,.03);
    }

    .nav a::after {
        display: none;
    }

    .section {
        padding: 90px 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 20px;
    }

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

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

        row-gap: 20px;
    }

    .number-item:nth-child(2)::after {
        display: none;
    }

    .number-item:nth-child(3)::after {
        display: block;
    }

    .process-timeline {
        grid-template-columns:
            repeat(2,1fr);

        gap: 45px 30px;
    }

    .process-line {
        display: none;
    }

    .tech-content,
    .about-grid,
    .local-seo-content {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .tech-text {
        max-width: 650px;
    }

    .lab-box {
        grid-template-columns: 1fr;
    }

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

}


/* MOBILE */

@media (max-width: 600px) {

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

    .header {
        height: 70px;
    }

    .nav {
        top: 70px;
    }

    .hero {
        padding-top: 105px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 41px;

        letter-spacing: -2px;
    }

    .gradient-text {
        min-width: 0;
    }

    .hero-text > p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 18px;
    }

    .trust-item {
        flex: 1;
        min-width: 80px;
    }

    .hero-visual {
        min-height: 340px;
    }

    .code-window {
        transform: none;
    }

    .code-window:hover {
        transform: translateY(-4px);
    }

    .code-body {
        padding: 20px 14px;

        font-size: 9px;
    }

    .code-line {
        gap: 5px;

        min-height: 26px;
    }

    .code-number {
        width: 17px;
    }

    .indent {
        padding-left: 8px;
    }

    .indent-2 {
        padding-left: 16px;
    }

    .floating-card {
        transform: scale(.82);
    }

    .floating-code {
        left: -20px;
        bottom: 0;
    }

    .floating-performance {
        right: -20px;
        top: 10px;
    }

    .hero-scroll {
        display: none;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading h2,
    .section-heading.center h2 {
        font-size: 34px;

        letter-spacing: -1.5px;
    }

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

    .number-item {
        padding: 10px 12px;
    }

    .number-item strong {
        font-size: 23px;
    }

    .number-item span {
        font-size: 8px;
    }

    .project-filters {
        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 5px;

        scrollbar-width: none;
    }

    .project-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
    }

    .project-image {
        height: 245px;
    }

    .project-info {
        padding: 20px;
    }

    .project-info h3 {
        font-size: 20px;
    }

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

    .service-card {
        min-height: 230px;
    }

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

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .process-step {
        padding-left: 10px;
    }

    .process-number {
        margin-bottom: 17px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .lab-box {
        padding: 35px 22px;
    }

    .lab-content h2 {
        font-size: 32px;
    }

    .lab-terminal {
        margin-top: 10px;
    }

    .local-seo {
        padding: 70px 0;
    }

    .local-seo-content {
        gap: 30px;
    }

    .contact-box {
        min-height: 420px;

        padding: 50px 20px;
    }

    .contact-content h2 {
        font-size: 38px;

        letter-spacing: -1.7px;
    }

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

        gap: 35px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;

        right: 16px;
        bottom: 16px;
    }

    .whatsapp-tooltip {
        display: none;
    }

}


/* SMALL MOBILE */

@media (max-width: 380px) {

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

    .hero-badge {
        font-size: 8px;
    }

    .hero-trust {
        gap: 10px;
    }

    .trust-item span {
        font-size: 8px;
    }

    .project-image {
        height: 215px;
    }

    .tech-grid {
        gap: 7px;
    }

    .tech-item {
        min-height: 120px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}/* =========================================================
   PROJETO — ALAMINO METAIS
   ========================================================= */

.project-card[data-category="comercial"] .project-preview-alamino {
    background:
        linear-gradient(
            135deg,
            #111111 0%,
            #242424 45%,
            #111111 100%
        );

    position: relative;
    overflow: hidden;
}


/* Brilho metálico */

.project-card[data-category="comercial"]
.project-preview-alamino::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -70px;
    right: -50px;

    background: radial-gradient(
        circle,
        rgba(255,255,255,0.16),
        transparent 70%
    );

    pointer-events: none;

}


/* Linha metálica */

.project-card[data-category="comercial"]
.project-preview-alamino::after {

    content: "";

    position: absolute;

    width: 100%;
    height: 1px;

    left: 0;
    bottom: 32%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.25),
            transparent
        );

    pointer-events: none;

}


/* Conteúdo do preview */

.alamino-preview-content {

    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 30px;

}


/* Nome */

.alamino-preview-content strong {

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

    font-size: 24px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #ffffff;

    margin-bottom: 8px;

}


/* Subtítulo */

.alamino-preview-content span {

    font-family:
        "Inter",
        sans-serif;

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.65);

}


/* Elemento decorativo */

.alamino-metal-line {

    width: 55px;

    height: 3px;

    margin-top: 18px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #777,
            #ffffff,
            #777
        );

}


/* Responsivo */

@media (max-width: 768px) {

    .alamino-preview-content strong {

        font-size: 20px;

    }

}