/* ==========================================================
   IMPACTO DIGITAL
   PORTFÓLIO MURILO SOARES
   DESIGN SYSTEM PREMIUM
========================================================== */


/* ==========================================================
   01. VARIÁVEIS
========================================================== */

:root {
    --color-black: #020306;
    --color-black-soft: #05070d;
    --color-black-light: #0a0d15;

    --color-surface: rgba(255, 255, 255, 0.045);
    --color-surface-hover: rgba(255, 255, 255, 0.075);
    --color-surface-strong: rgba(255, 255, 255, 0.1);

    --color-blue: #2855ff;
    --color-blue-light: #6b8cff;
    --color-blue-soft: #8ca5ff;
    --color-blue-dark: #071e78;

    --color-white: #f7f8fc;
    --color-white-soft: #e7eaf3;

    --color-gray: #959bab;
    --color-gray-light: #c4c9d5;
    --color-gray-dark: #626978;

    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-hover: rgba(107, 140, 255, 0.42);

    --glass-background: rgba(255, 255, 255, 0.045);
    --glass-background-strong: rgba(9, 13, 25, 0.72);

    --shadow-blue:
        0 0 20px rgba(40, 85, 255, 0.16),
        0 0 60px rgba(40, 85, 255, 0.12);

    --shadow-blue-strong:
        0 0 20px rgba(40, 85, 255, 0.3),
        0 0 80px rgba(40, 85, 255, 0.2);

    --shadow-card:
        0 30px 80px rgba(0, 0, 0, 0.35);

    --font-primary:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --container-width: 1320px;
    --container-padding: 32px;

    --header-height: 96px;

    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 32px;
    --radius-extra-large: 48px;
    --radius-pill: 999px;

    --transition-fast: 180ms ease;
    --transition-normal: 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-slow: 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================
   DEPOIMENTOS — PROOF CARDS
========================================================== */

.proof-section {
    position: relative !important;
    overflow: hidden !important;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(40, 85, 255, 0.1),
            transparent 40%
        ) !important;
}


/* GRID */

.proof-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;

    width: 100% !important;
}


/* CARD */

.proof-card {
    position: relative !important;
    isolation: isolate !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;

    min-width: 0 !important;
    min-height: 430px !important;

    padding: clamp(30px, 4vw, 50px) !important;

    overflow: hidden !important;

    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 34px !important;

    color: #ffffff !important;

    background:
        radial-gradient(
            circle at 12% 0%,
            rgba(255, 255, 255, 0.12),
            transparent 29%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(58, 97, 255, 0.22),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(17, 24, 45, 0.88),
            rgba(5, 8, 17, 0.97)
        ) !important;

    box-shadow:
        0 36px 90px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -30px 70px rgba(0, 0, 0, 0.22) !important;

    backdrop-filter: blur(28px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(28px) saturate(150%) !important;

    transition:
        transform 600ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 500ms ease,
        box-shadow 600ms ease !important;
}


/* CARD GRANDE */

.proof-card--featured {
    grid-column: 1 / -1 !important;

    min-height: 500px !important;

    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(255, 255, 255, 0.14),
            transparent 28%
        ),
        radial-gradient(
            circle at 88% 12%,
            rgba(55, 95, 255, 0.34),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            rgba(10, 27, 77, 0.95),
            rgba(4, 8, 19, 0.98)
        ) !important;
}


/* LIQUID */

.proof-card__liquid {
    position: absolute !important;
    top: -180px !important;
    right: -130px !important;
    z-index: -1 !important;

    width: 440px !important;
    height: 440px !important;

    border-radius: 48% 52% 62% 38% / 43% 38% 62% 57% !important;

    pointer-events: none !important;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255, 255, 255, 0.2),
            transparent 22%
        ),
        radial-gradient(
            circle,
            rgba(62, 103, 255, 0.4),
            rgba(38, 68, 190, 0.08) 52%,
            transparent 72%
        ) !important;

    filter: blur(12px) !important;
    opacity: 0.58 !important;

    transform: rotate(-18deg) !important;

    transition:
        transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
        opacity 500ms ease !important;
}

.proof-card::after {
    content: "" !important;

    position: absolute !important;
    top: -60% !important;
    left: -90% !important;
    z-index: 5 !important;

    width: 42% !important;
    height: 220% !important;

    pointer-events: none !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.12),
            transparent
        ) !important;

    transform: rotate(18deg) !important;

    transition:
        left 1000ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}


/* CABEÇALHO */

.proof-card__header {
    position: relative !important;
    z-index: 2 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;

    width: 100% !important;
}

.proof-card__number {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 46px !important;
    height: 32px !important;

    border: 1px solid rgba(125, 154, 255, 0.4) !important;
    border-radius: 999px !important;

    color: rgba(184, 200, 255, 0.96) !important;
    background: rgba(55, 91, 220, 0.13) !important;

    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
}

.proof-card__category {
    color: rgba(255, 255, 255, 0.43) !important;

    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.13em !important;
    text-align: right !important;
    text-transform: uppercase !important;
}


/* DEPOIMENTO CENTRALIZADO */

.proof-card__message {
    position: relative !important;
    z-index: 2 !important;

    align-self: center !important;

    width: 100% !important;
    max-width: 760px !important;

    margin: clamp(55px, 7vw, 90px) auto !important;
    padding: 0 !important;

    border: 0 !important;

    color: rgba(255, 255, 255, 0.91) !important;
    background: transparent !important;

    font-family: inherit !important;
    font-size: clamp(20px, 2vw, 29px) !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    letter-spacing: -0.025em !important;
    text-align: center !important;
}

.proof-card--featured .proof-card__message {
    max-width: 980px !important;

    font-size: clamp(27px, 3vw, 43px) !important;
    line-height: 1.4 !important;
}


/* PERFIL */

.proof-card__profile {
    position: relative !important;
    z-index: 2 !important;

    display: flex !important;
    align-items: center !important;
    gap: 17px !important;

    width: 100% !important;
    padding-top: 24px !important;

    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}


/* FOTO REDONDA */

.proof-card__photo {
    position: relative !important;

    display: block !important;
    flex: 0 0 58px !important;

    width: 58px !important;
    min-width: 58px !important;
    max-width: 58px !important;

    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;

    overflow: hidden !important;

    border: 2px solid rgba(127, 157, 255, 0.72) !important;
    border-radius: 50% !important;

    background: rgba(40, 85, 255, 0.13) !important;

    box-shadow:
        0 0 0 5px rgba(40, 85, 255, 0.06),
        0 0 28px rgba(40, 85, 255, 0.17),
        0 12px 28px rgba(0, 0, 0, 0.3) !important;
}

.proof-card__photo img {
    position: absolute !important;
    inset: 0 !important;

    display: block !important;

    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;

    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 50% !important;

    object-fit: cover !important;
    object-position: center !important;
}


/* IDENTIDADE */

.proof-card__identity {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;

    min-width: 0 !important;
}

.proof-card__identity strong {
    color: #ffffff !important;

    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

.proof-card__identity span {
    color: rgba(255, 255, 255, 0.43) !important;

    font-size: 11px !important;
    line-height: 1.45 !important;
}

.proof-card__quotes {
    margin-left: auto !important;

    color: rgba(112, 145, 255, 0.38) !important;

    font-family: Georgia, serif !important;
    font-size: clamp(58px, 6vw, 88px) !important;
    line-height: 0.65 !important;
}


/* HOVER */

@media (hover: hover) and (pointer: fine) {
    .proof-card:hover {
        border-color: rgba(112, 146, 255, 0.5) !important;

        transform: translateY(-9px) !important;

        box-shadow:
            0 48px 120px rgba(0, 0, 0, 0.5),
            0 0 75px rgba(40, 85, 255, 0.14),
            inset 0 1px 0 rgba(255, 255, 255, 0.19) !important;
    }

    .proof-card:hover .proof-card__liquid {
        opacity: 0.8 !important;

        transform:
            rotate(-8deg)
            scale(1.16) !important;
    }

    .proof-card:hover::after {
        left: 145% !important;
    }
}


/* RESPONSIVO */

@media (max-width: 850px) {
    .proof-grid {
        grid-template-columns: 1fr !important;
    }

    .proof-card--featured {
        grid-column: auto !important;
    }
}

@media (max-width: 600px) {
    .proof-grid {
        gap: 16px !important;
    }

    .proof-card,
    .proof-card--featured {
        min-height: auto !important;
        padding: 25px 21px !important;

        border-radius: 27px !important;
    }

    .proof-card__message,
    .proof-card--featured .proof-card__message {
        margin-block: 48px !important;

        font-size: 19px !important;
        line-height: 1.55 !important;
    }

    .proof-card__photo {
        flex-basis: 50px !important;

        width: 50px !important;
        min-width: 50px !important;
        max-width: 50px !important;

        height: 50px !important;
        min-height: 50px !important;
        max-height: 50px !important;
    }

    .proof-card__quotes {
        display: none !important;
    }
}

/* BOTÃO INSTAGRAM DOS CARDS */

a.insta-card-button {
    position: relative !important;
    z-index: 999 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    width: 180px !important;
    height: 54px !important;
    margin-top: 22px !important;
    padding: 0 18px !important;

    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 999px !important;

    color: #ffffff !important;

    background:
        radial-gradient(
            circle at 25% 15%,
            rgba(255, 255, 255, 0.32),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            rgba(63, 92, 220, 0.55),
            rgba(19, 27, 60, 0.68)
        ) !important;

    box-shadow:
        0 14px 40px rgba(40, 85, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -8px 20px rgba(0, 0, 0, 0.22) !important;

    backdrop-filter: blur(22px) saturate(170%) !important;
    -webkit-backdrop-filter: blur(22px) saturate(170%) !important;

    font-size: 12px !important;
    font-weight: 600 !important;
    text-decoration: none !important;

    cursor: pointer !important;
    pointer-events: auto !important;

    transition:
        transform 300ms ease,
        box-shadow 300ms ease,
        border-color 300ms ease !important;
}

a.insta-card-button:hover {
    transform: translateY(-4px) scale(1.02) !important;

    border-color: rgba(255, 255, 255, 0.5) !important;

    background:
        linear-gradient(
            135deg,
            rgba(64, 93, 230, 0.85),
            rgba(131, 58, 180, 0.75),
            rgba(193, 53, 132, 0.68)
        ) !important;

    box-shadow:
        0 20px 50px rgba(64, 93, 230, 0.35),
        0 0 30px rgba(193, 53, 132, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

a.insta-card-button svg {
    flex-shrink: 0 !important;
}

a.insta-card-button span:last-child {
    margin-left: auto !important;
}

.client-info {
    pointer-events: auto !important;
}

.client-image,
.client-overlay,
.client-card::before,
.client-card::after {
    pointer-events: none !important;
}

/* ==========================================================
   02. RESET
========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body,
h1,
h2,
h3,
p,
ul,
ol {
    margin: 0;
}

ul,
ol {
    padding: 0;
}

ul {
    list-style: none;
}

img,
picture,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

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

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

button {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}


/* ==========================================================
   03. BASE
========================================================== */

html {
    background: var(--color-black);
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(40, 85, 255, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 35%,
            rgba(40, 85, 255, 0.055),
            transparent 24%
        ),
        var(--color-black);
}

body::before {
    content: "";

    position: fixed;
    inset: 0;

    z-index: 9998;
    pointer-events: none;

    opacity: 0.055;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.7'/%3E%3C/svg%3E");
}

body.menu-open {
    overflow: hidden;
}

::selection {
    color: var(--color-white);
    background: rgba(40, 85, 255, 0.75);
}

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

::-webkit-scrollbar-track {
    background: var(--color-black);
}

::-webkit-scrollbar-thumb {
    border: 3px solid var(--color-black);
    border-radius: var(--radius-pill);

    background:
        linear-gradient(
            180deg,
            var(--color-blue),
            var(--color-blue-dark)
        );
}

.container {
    width: min(
        calc(100% - (var(--container-padding) * 2)),
        var(--container-width)
    );

    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: 150px;
}

.skip-link {
    position: fixed;
    top: 16px;
    left: 16px;

    z-index: 10000;

    padding: 12px 18px;

    border-radius: var(--radius-pill);

    color: var(--color-black);
    background: var(--color-white);

    transform: translateY(-150%);
    transition: transform var(--transition-normal);
}

.skip-link:focus {
    transform: translateY(0);
}


/* ==========================================================
   04. ELEMENTOS GERAIS
========================================================== */

.button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-height: 56px;
    padding-inline: 26px;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);

    overflow: hidden;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;

    transition:
        color var(--transition-normal),
        border-color var(--transition-normal),
        background var(--transition-normal),
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}

.button::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 25%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 75%
        );

    transform: translateX(-130%);
    transition: transform 750ms ease;
}

.button:hover::before {
    transform: translateX(130%);
}

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

.button--primary {
    border-color: rgba(107, 140, 255, 0.55);

    color: var(--color-white);

    background:
        linear-gradient(
            135deg,
            rgba(63, 103, 255, 1),
            rgba(25, 61, 215, 1)
        );

    box-shadow:
        0 16px 45px rgba(40, 85, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button--primary:hover {
    box-shadow:
        0 22px 65px rgba(40, 85, 255, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button--large {
    min-height: 68px;
    padding-inline: 34px;

    font-size: 15px;
}

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

    color: var(--color-gray-light);

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

    transition:
        color var(--transition-normal),
        gap var(--transition-normal);
}

.text-link span {
    color: var(--color-blue-light);
}

.text-link:hover {
    gap: 16px;
    color: var(--color-white);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-bottom: 58px;
}

.section-label::after {
    content: "";

    flex: 1;

    height: 1px;

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

.section-label span {
    color: var(--color-blue-light);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.section-label p {
    color: var(--color-gray);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.55fr);
    align-items: end;
    gap: 80px;

    margin-bottom: 76px;
}

.section-heading h2 {
    max-width: 900px;

    font-size: clamp(42px, 5vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 500;
}

.section-heading p {
    max-width: 420px;

    color: var(--color-gray);

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


/* ==========================================================
   05. LOADER
========================================================== */

.loader {
    position: fixed;
    inset: 0;

    z-index: 10001;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at center,
            rgba(40, 85, 255, 0.13),
            transparent 38%
        ),
        var(--color-black);
}

.loader__content {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: min(260px, calc(100% - 48px));
}

.loader__logo {
    display: flex;
    align-items: center;
    gap: 2px;

    margin-bottom: 28px;

    font-size: 58px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.12em;
}

.loader__logo span:last-child {
    color: var(--color-blue-light);
}

.loader__line {
    width: 100%;
    height: 1px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.12);
}

.loader__progress {
    display: block;

    width: 100%;
    height: 100%;

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

    transform-origin: left;
    animation: loaderProgress 1.7s ease forwards;
}

.loader__text {
    margin-top: 16px;

    color: var(--color-gray);

    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.loader.is-hidden {
    pointer-events: none;
    animation: loaderHide 850ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}


/* ==========================================================
   06. CURSOR
========================================================== */

.cursor,
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 9999;
    pointer-events: none;

    border-radius: 50%;

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

.cursor {
    width: 8px;
    height: 8px;

    background: var(--color-white);
}

.cursor-follower {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(107, 140, 255, 0.5);

    background: rgba(40, 85, 255, 0.05);
    backdrop-filter: blur(8px);

    transition:
        width var(--transition-fast),
        height var(--transition-fast),
        border-color var(--transition-fast),
        background var(--transition-fast);
}

.cursor-follower.is-active {
    width: 66px;
    height: 66px;

    border-color: rgba(107, 140, 255, 0.8);
    background: rgba(40, 85, 255, 0.12);
}


/* ==========================================================
   07. PROGRESSO DE SCROLL
========================================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 10000;

    width: 100%;
    height: 2px;

    pointer-events: none;
}

.scroll-progress__bar {
    display: block;

    width: 0;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--color-blue-dark),
            var(--color-blue-light),
            var(--color-white)
        );

    box-shadow: 0 0 16px rgba(107, 140, 255, 0.65);
}


/* ==========================================================
   08. HEADER
========================================================== */

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

    z-index: 1000;

    width: 100%;

    transition:
        background var(--transition-normal),
        border-color var(--transition-normal),
        transform var(--transition-normal);
}

.header::before {
    content: "";

    position: absolute;
    inset: 12px 18px;

    z-index: -1;

    border: 1px solid transparent;
    border-radius: 24px;

    background: transparent;

    transition:
        background var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}

.header.is-scrolled::before {
    border-color: rgba(255, 255, 255, 0.09);

    background:
        linear-gradient(
            180deg,
            rgba(12, 16, 27, 0.78),
            rgba(6, 9, 16, 0.62)
        );

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(22px) saturate(140%);
}

.header__container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    min-height: var(--header-height);
}

.header__brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 14px;
}

.header__logo {
    width: 42px;
    height: 42px;

    object-fit: contain;

    filter:
        drop-shadow(0 0 10px rgba(40, 85, 255, 0.3));
}

.header__brand-text {
    display: flex;
    flex-direction: column;
}

.header__brand-text strong {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

.header__brand-text span {
    margin-top: 4px;

    color: var(--color-gray);

    font-size: 9px;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 38px;
}

.header__link {
    position: relative;

    padding-block: 12px;

    color: var(--color-gray-light);

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

.header__link::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;

    height: 1px;

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

    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-normal);
}

.header__link:hover {
    color: var(--color-white);
}

.header__link:hover::after {
    transform: scaleX(1);
}

.button--header {
    justify-self: end;

    min-height: 45px;
    padding-inline: 20px;

    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(12px);
}

.button--header:hover {
    border-color: var(--color-border-hover);
    background: rgba(40, 85, 255, 0.1);
}

.menu-toggle {
    display: none;

    width: 48px;
    height: 48px;

    border: 1px solid var(--color-border);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
}

.menu-toggle span {
    display: block;

    width: 18px;
    height: 1px;

    margin-inline: auto;

    background: var(--color-white);

    transition:
        transform var(--transition-normal),
        opacity var(--transition-normal);
}

.menu-toggle span + span {
    margin-top: 6px;
}

.menu-toggle.is-active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}


/* ==========================================================
   09. HERO
========================================================== */

.hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 100svh;
    padding-top: 130px;
    padding-bottom: 70px;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;
    top: 9%;
    right: 4%;

    width: 290px;
    aspect-ratio: 1;

    z-index: 1;
    pointer-events: none;

    border: 1px solid rgba(140, 165, 255, 0.18);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.11),
            rgba(40, 85, 255, 0.025) 50%,
            rgba(255, 255, 255, 0.015)
        );

    clip-path:
        polygon(
            50% 0%,
            88% 23%,
            100% 58%,
            50% 100%,
            0% 58%,
            12% 23%
        );

    filter:
        blur(0.2px)
        drop-shadow(0 30px 70px rgba(40, 85, 255, 0.14));

    backdrop-filter: blur(18px) saturate(150%);

    transform:
        rotate(-13deg)
        perspective(900px)
        rotateY(-20deg)
        rotateX(8deg);

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

.hero::after {
    content: "";

    position: absolute;
    top: 24%;
    right: 13%;

    width: 170px;
    aspect-ratio: 1;

    z-index: 0;
    pointer-events: none;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(42, 87, 255, 0.035),
            rgba(255, 255, 255, 0.015)
        );

    clip-path:
        polygon(
            50% 0%,
            88% 23%,
            100% 58%,
            50% 100%,
            0% 58%,
            12% 23%
        );

    filter: blur(14px);

    opacity: 0.48;

    transform: rotate(25deg);
    animation: diamondFall 11s ease-in-out infinite;
}

.hero__background {
    position: absolute;
    inset: 0;

    pointer-events: none;
}

.hero__glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(80px);
}

.hero__glow--one {
    top: 8%;
    right: -8%;

    width: 540px;
    height: 540px;

    background: rgba(40, 85, 255, 0.14);
}

.hero__glow--two {
    bottom: 5%;
    left: 8%;

    width: 280px;
    height: 280px;

    background: rgba(62, 94, 255, 0.07);
}

.hero__grid {
    position: absolute;
    inset: 0;

    opacity: 0.15;

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

    background-size: 90px 90px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.55),
            transparent 75%
        );
}

.hero__noise {
    position: absolute;
    inset: 0;

    opacity: 0.07;

    background-image:
        repeating-radial-gradient(
            circle at 50% 50%,
            transparent 0,
            transparent 3px,
            rgba(255, 255, 255, 0.3) 4px
        );

    background-size: 9px 9px;

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

.hero__container {
    position: relative;

    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.86fr);
    align-items: center;
    gap: 58px;
}

.hero__content {
    position: relative;
    z-index: 4;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 34px;
    padding: 10px 15px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-pill);

    color: var(--color-gray-light);
    background: rgba(255, 255, 255, 0.03);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    backdrop-filter: blur(15px);
}

.hero__status {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #65ff9a;

    box-shadow:
        0 0 0 5px rgba(101, 255, 154, 0.08),
        0 0 15px rgba(101, 255, 154, 0.45);

    animation: statusPulse 2s ease-in-out infinite;
}

.hero__title {
    max-width: 850px;

    font-size: clamp(58px, 7.2vw, 112px);
    line-height: 0.84;
    letter-spacing: -0.075em;
    font-weight: 500;
}

.hero__title-line {
    display: block;
}

.hero__title-line--accent {
    color: transparent;

    background:
        linear-gradient(
            90deg,
            var(--color-white),
            var(--color-blue-soft) 52%,
            var(--color-blue)
        );

    background-clip: text;
    -webkit-background-clip: text;

    filter:
        drop-shadow(0 10px 45px rgba(40, 85, 255, 0.18));
}

.hero__description {
    max-width: 620px;

    margin-top: 38px;

    color: var(--color-gray);

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

.hero__actions {
    display: flex;
    align-items: center;
    gap: 26px;

    margin-top: 38px;
}

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

    max-width: 720px;
    margin-top: 60px;
    padding-top: 26px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hero__information-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero__information-item span {
    color: var(--color-gray-dark);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero__information-item strong {
    color: var(--color-gray-light);

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

.hero__visual {
    position: relative;

    display: flex;
    justify-content: center;

    min-height: 650px;

    perspective: 1200px;
}

.hero__image-box {
    position: relative;

    width: min(100%, 520px);
    height: 680px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius:
        42px
        42px
        170px
        42px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.01)
        );

    box-shadow:
        0 50px 120px rgba(0, 0, 0, 0.62),
        0 0 80px rgba(40, 85, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.11);

    transform:
        perspective(1100px)
        rotateY(-3deg)
        rotateX(1deg);

    transition:
        transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color var(--transition-normal);
}

.hero__visual:hover .hero__image-box {
    border-color: rgba(107, 140, 255, 0.35);

    transform:
        perspective(1100px)
        rotateY(0deg)
        rotateX(0deg)
        translateY(-8px);
}

.hero__image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    filter:
        saturate(0.9)
        contrast(1.05);
}

.hero__image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(2, 3, 6, 0.22) 74%,
            var(--color-black) 100%
        ),
        linear-gradient(
            90deg,
            rgba(2, 3, 6, 0.18),
            transparent 35%,
            rgba(40, 85, 255, 0.04)
        );
}

.hero__image-border {
    position: absolute;
    inset: 11px;

    pointer-events: none;

    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius:
        32px
        32px
        158px
        32px;
}

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

    position: absolute;
    top: -35%;
    left: -65%;

    z-index: 3;

    width: 80%;
    height: 160%;

    pointer-events: none;

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

    transform: rotate(20deg);
    animation: imageReflection 8s ease-in-out infinite;
}

.floating-card {
    position: absolute;

    z-index: 5;

    display: flex;

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

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);

    backdrop-filter:
        blur(24px)
        saturate(160%);
}

.floating-card--top {
    top: 9%;
    right: -20px;

    flex-direction: column;
    gap: 5px;

    padding: 19px 22px;

    border-radius: 18px;

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

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

    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.floating-card--top strong {
    font-size: 13px;
    font-weight: 500;
}

.floating-card--bottom {
    right: 35px;
    bottom: 6%;

    align-items: center;
    gap: 14px;

    padding: 15px 18px;

    border-radius: 16px;

    animation: floatingCard 7s 1s ease-in-out infinite;
}

.floating-card__number {
    display: grid;
    place-items: center;

    width: 34px;
    height: 34px;

    border: 1px solid rgba(107, 140, 255, 0.3);
    border-radius: 50%;

    color: var(--color-blue-light);
    background: rgba(40, 85, 255, 0.08);

    font-size: 9px;
}

.floating-card--bottom p {
    max-width: 100px;

    color: var(--color-gray-light);

    font-size: 10px;
    line-height: 1.45;
}

.hero__scroll {
    position: absolute;
    bottom: 34px;
    left: 50%;

    z-index: 4;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    transform: translateX(-50%);
}

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

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero__scroll-line {
    position: relative;

    width: 1px;
    height: 44px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.1);
}

.hero__scroll-line::after {
    content: "";

    position: absolute;
    top: -100%;
    left: 0;

    width: 100%;
    height: 55%;

    background: var(--color-blue-light);

    animation: scrollLine 2s ease-in-out infinite;
}


/* ==========================================================
   10. CLIENTES
========================================================== */

.clients {
    overflow: hidden;

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

.clients::before {
    content: "";

    position: absolute;
    top: 15%;
    left: -110px;

    width: 210px;
    aspect-ratio: 1;

    opacity: 0.3;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.12),
            rgba(40, 85, 255, 0.04)
        );

    clip-path:
        polygon(
            50% 0%,
            88% 23%,
            100% 58%,
            50% 100%,
            0% 58%,
            12% 23%
        );

    filter: blur(8px);
    transform: rotate(20deg);
}

.clients__heading {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    align-items: end;
    gap: 70px;

    margin-bottom: 74px;
}

.clients__small-text {
    max-width: 320px;

    color: var(--color-gray);

    font-size: 15px;
    line-height: 1.75;
}

.clients__heading h2 {
    max-width: 880px;

    font-size: clamp(44px, 6vw, 86px);
    line-height: 0.96;
    letter-spacing: -0.06em;
    font-weight: 500;
}

.clients__marquee {
    position: relative;

    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-block: 32px;

    overflow: hidden;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    background: rgba(255, 255, 255, 0.012);
}

.clients__marquee::before,
.clients__marquee::after {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;

    z-index: 2;

    width: 160px;

    pointer-events: none;
}

.clients__marquee::before {
    left: 0;

    background:
        linear-gradient(
            90deg,
            var(--color-black),
            transparent
        );
}

.clients__marquee::after {
    right: 0;

    background:
        linear-gradient(
            -90deg,
            var(--color-black),
            transparent
        );
}

.clients__track {
    display: flex;
    align-items: center;
    gap: 38px;

    width: max-content;

    animation: marquee 28s linear infinite;
}

.clients__name {
    color: rgba(247, 248, 252, 0.78);

    font-size: clamp(22px, 3vw, 42px);
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.clients__separator {
    color: var(--color-blue-light);

    font-size: 16px;

    filter: drop-shadow(0 0 8px rgba(107, 140, 255, 0.6));
}


/* ==========================================================
   11. SOBRE
========================================================== */

.about {
    overflow: hidden;
}

.about::after {
    content: "";

    position: absolute;
    right: -120px;
    bottom: 5%;

    width: 320px;
    aspect-ratio: 1;

    pointer-events: none;

    border: 1px solid rgba(107, 140, 255, 0.13);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.08),
            rgba(40, 85, 255, 0.025)
        );

    clip-path:
        polygon(
            50% 0%,
            88% 23%,
            100% 58%,
            50% 100%,
            0% 58%,
            12% 23%
        );

    filter:
        blur(4px)
        drop-shadow(0 20px 50px rgba(40, 85, 255, 0.1));

    opacity: 0.45;
    transform: rotate(-18deg);
}

.about__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
}

.about__title h2 {
    max-width: 800px;

    font-size: clamp(46px, 6vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 500;
}

.about__content {
    align-self: end;
}

.about__highlight {
    color: var(--color-white-soft);

    font-size: clamp(22px, 2.2vw, 31px);
    line-height: 1.35;
    letter-spacing: -0.035em;
}

.about__text {
    display: grid;
    gap: 18px;

    margin-top: 34px;
    margin-bottom: 36px;
}

.about__text p {
    color: var(--color-gray);

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

.about__numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 110px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 250px;
    padding: 38px;

    overflow: hidden;

    border-right: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        background var(--transition-normal),
        transform var(--transition-normal);
}

.about-stat:last-child {
    border-right: 0;
}

.about-stat::after {
    content: "";

    position: absolute;
    right: -34px;
    bottom: -34px;

    width: 110px;
    aspect-ratio: 1;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.12),
            rgba(40, 85, 255, 0.035)
        );

    clip-path:
        polygon(
            50% 0%,
            88% 23%,
            100% 58%,
            50% 100%,
            0% 58%,
            12% 23%
        );

    filter: blur(3px);
    opacity: 0;

    transform: rotate(20deg) translateY(30px);

    transition:
        opacity var(--transition-normal),
        transform var(--transition-slow);
}

.about-stat:hover {
    background: rgba(40, 85, 255, 0.04);
    transform: translateY(-5px);
}

.about-stat:hover::after {
    opacity: 0.45;
    transform: rotate(8deg) translateY(0);
}

.about-stat strong {
    color: transparent;

    background:
        linear-gradient(
            135deg,
            var(--color-white),
            var(--color-blue-light)
        );

    background-clip: text;
    -webkit-background-clip: text;

    font-size: clamp(60px, 6vw, 92px);
    line-height: 1;
    letter-spacing: -0.07em;
    font-weight: 400;
}

.about-stat span {
    max-width: 160px;
    margin-top: auto;

    color: var(--color-gray);

    font-size: 12px;
    line-height: 1.5;
}


/* ==========================================================
   12. SERVIÇOS
========================================================== */

.services {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(40, 85, 255, 0.02),
            transparent
        );
}

.services__list {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-item {
    position: relative;

    display: grid;
    grid-template-columns: 70px 1.2fr 0.75fr 44px;
    align-items: center;
    gap: 34px;

    min-height: 190px;
    padding: 34px 18px;

    overflow: hidden;

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

    transition:
        padding var(--transition-normal),
        background var(--transition-normal);
}

.service-item::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(40, 85, 255, 0.11),
            rgba(40, 85, 255, 0.025) 38%,
            transparent 72%
        );

    opacity: 0;

    transform: translateX(-10%);
    transition:
        opacity var(--transition-normal),
        transform var(--transition-slow);
}

.service-item::after {
    content: "";

    position: absolute;
    top: 50%;
    right: 9%;

    width: 120px;
    aspect-ratio: 1;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.13),
            rgba(40, 85, 255, 0.02)
        );

    clip-path:
        polygon(
            50% 0%,
            88% 23%,
            100% 58%,
            50% 100%,
            0% 58%,
            12% 23%
        );

    opacity: 0;

    filter: blur(6px);

    transform:
        translateY(-30%)
        rotate(28deg)
        scale(0.6);

    transition:
        opacity var(--transition-normal),
        transform var(--transition-slow);
}

.service-item:hover {
    padding-inline: 32px;

    background: rgba(255, 255, 255, 0.014);
}

.service-item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.service-item:hover::after {
    opacity: 0.32;

    transform:
        translateY(-50%)
        rotate(5deg)
        scale(1);
}

.service-item > * {
    position: relative;
    z-index: 2;
}

.service-item__number {
    color: var(--color-blue-light);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.service-item__content h3 {
    font-size: clamp(27px, 3vw, 45px);
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 500;
}

.service-item__content p {
    max-width: 540px;
    margin-top: 14px;

    color: var(--color-gray);

    font-size: 13px;
    line-height: 1.65;
}

.service-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-item__tags span {
    padding: 8px 12px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-pill);

    color: var(--color-gray);

    background: rgba(255, 255, 255, 0.02);

    font-size: 9px;
    letter-spacing: 0.05em;

    transition:
        color var(--transition-normal),
        border-color var(--transition-normal),
        background var(--transition-normal);
}

.service-item:hover .service-item__tags span {
    border-color: rgba(107, 140, 255, 0.2);
    color: var(--color-gray-light);
    background: rgba(40, 85, 255, 0.055);
}

.service-item__arrow {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;

    color: var(--color-blue-light);
    background: rgba(255, 255, 255, 0.025);

    transition:
        transform var(--transition-normal),
        border-color var(--transition-normal),
        background var(--transition-normal);
}

.service-item:hover .service-item__arrow {
    border-color: rgba(107, 140, 255, 0.42);
    background: rgba(40, 85, 255, 0.1);

    transform: rotate(45deg);
}


/* ==========================================================
   13. PROCESSO
========================================================== */

.process__list {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step {
    position: relative;

    display: grid;
    grid-template-columns: 90px 1fr 60px;
    align-items: center;
    gap: 42px;

    min-height: 190px;

    overflow: hidden;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(40, 85, 255, 0.07),
            transparent 45%
        );

    opacity: 0;

    transform: translateX(-15%);
    transition:
        opacity var(--transition-normal),
        transform var(--transition-slow);
}

.process-step:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.process-step > * {
    position: relative;
    z-index: 1;
}

.process-step__number {
    color: var(--color-blue-light);

    font-size: 10px;
    letter-spacing: 0.15em;
}

.process-step__content {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: center;
    gap: 65px;
}

.process-step__content h3 {
    font-size: clamp(28px, 3.5vw, 52px);
    letter-spacing: -0.05em;
    font-weight: 500;
}

.process-step__content p {
    max-width: 500px;

    color: var(--color-gray);

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

.process-step__arrow {
    display: grid;
    place-items: center;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;

    color: var(--color-blue-light);

    transition:
        transform var(--transition-normal),
        background var(--transition-normal),
        border-color var(--transition-normal);
}

.process-step:hover .process-step__arrow {
    border-color: rgba(107, 140, 255, 0.4);
    background: rgba(40, 85, 255, 0.1);

    transform: rotate(45deg);
}


/* ==========================================================
   14. MANIFESTO
========================================================== */

.manifesto {
    position: relative;

    padding-block: 210px;

    overflow: hidden;
}

.manifesto::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: min(58vw, 760px);
    aspect-ratio: 1;

    border: 1px solid rgba(107, 140, 255, 0.12);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(40, 85, 255, 0.018)
        );

    clip-path:
        polygon(
            50% 0%,
            88% 23%,
            100% 58%,
            50% 100%,
            0% 58%,
            12% 23%
        );

    filter:
        blur(8px)
        drop-shadow(0 70px 130px rgba(40, 85, 255, 0.12));

    opacity: 0.55;

    transform:
        translate(-50%, -50%)
        rotate(-8deg);

    animation: manifestoDiamond 12s ease-in-out infinite;
}

.manifesto::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(40, 85, 255, 0.11),
            transparent 42%
        );
}

.manifesto__text {
    position: relative;
    z-index: 2;

    max-width: 1180px;
    margin-inline: auto;

    text-align: center;

    font-size: clamp(50px, 7vw, 108px);
    line-height: 0.98;
    letter-spacing: -0.065em;
    font-weight: 400;
}

.manifesto__text span {
    color: transparent;

    background:
        linear-gradient(
            90deg,
            var(--color-blue-light),
            var(--color-white),
            var(--color-blue)
        );

    background-clip: text;
    -webkit-background-clip: text;

    text-shadow:
        0 0 70px rgba(40, 85, 255, 0.14);
}


/* ==========================================================
   15. CONTATO
========================================================== */

.contact {
    position: relative;

    padding-bottom: 130px;

    overflow: hidden;
}

.contact::before {
    content: "";

    position: absolute;
    top: 10%;
    right: 6%;

    width: 380px;
    aspect-ratio: 1;

    z-index: 0;

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

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.11),
            rgba(40, 85, 255, 0.025)
        );

    clip-path:
        polygon(
            50% 0%,
            88% 23%,
            100% 58%,
            50% 100%,
            0% 58%,
            12% 23%
        );

    filter:
        blur(2px)
        drop-shadow(0 50px 120px rgba(40, 85, 255, 0.16));

    opacity: 0.52;

    transform:
        perspective(1000px)
        rotateY(-20deg)
        rotateX(12deg)
        rotateZ(10deg);

    animation: contactDiamond 9s ease-in-out infinite;
}

.contact__glow {
    position: absolute;
    top: 25%;
    right: 5%;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background: rgba(40, 85, 255, 0.14);

    filter: blur(110px);
}

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

.contact__content {
    position: relative;

    max-width: 1180px;
    padding: 90px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-extra-large);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.018)
        );

    box-shadow:
        0 60px 140px rgba(0, 0, 0, 0.44),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);

    backdrop-filter:
        blur(28px)
        saturate(150%);
}

.contact__content::before {
    content: "";

    position: absolute;
    top: -55%;
    left: -35%;

    width: 55%;
    height: 200%;

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

    transform: rotate(20deg);
    animation: liquidReflection 10s ease-in-out infinite;
}

.contact__content::after {
    content: "";

    position: absolute;
    right: -80px;
    bottom: -100px;

    width: 320px;
    height: 320px;

    border-radius:
        42% 58% 52% 48% /
        38% 42% 58% 62%;

    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(255, 255, 255, 0.14),
            rgba(40, 85, 255, 0.12) 42%,
            rgba(40, 85, 255, 0.02) 70%
        );

    filter: blur(1px);

    opacity: 0.55;

    animation: liquidShape 10s ease-in-out infinite;
}

.contact__eyebrow {
    position: relative;
    z-index: 2;

    display: inline-block;

    margin-bottom: 28px;

    color: var(--color-blue-light);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact__title {
    position: relative;
    z-index: 2;

    max-width: 930px;

    font-size: clamp(50px, 6.8vw, 98px);
    line-height: 0.95;
    letter-spacing: -0.065em;
    font-weight: 500;
}

.contact__description {
    position: relative;
    z-index: 2;

    max-width: 520px;
    margin-top: 34px;

    color: var(--color-gray);

    font-size: 15px;
    line-height: 1.75;
}

.contact__actions {
    position: relative;
    z-index: 2;

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

    margin-top: 42px;
}

.contact__email {
    color: var(--color-gray-light);

    font-size: 13px;

    transition: color var(--transition-normal);
}

.contact__email:hover {
    color: var(--color-white);
}

.contact__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 34px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact__links > * {
    display: flex;
    flex-direction: column;
    gap: 10px;

    padding: 32px 28px;

    border-right: 1px solid rgba(255, 255, 255, 0.08);

    transition: background var(--transition-normal);
}

.contact__links > *:last-child {
    border-right: 0;
}

.contact__links a:hover {
    background: rgba(40, 85, 255, 0.04);
}

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

    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact__links strong {
    color: var(--color-gray-light);

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


/* ==========================================================
   16. FOOTER
========================================================== */

.footer {
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding-bottom: 52px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer__brand img {
    width: 42px;
    height: 42px;

    object-fit: contain;
}

.footer__brand div {
    display: flex;
    flex-direction: column;
}

.footer__brand strong {
    font-size: 13px;
}

.footer__brand span {
    margin-top: 4px;

    color: var(--color-gray);

    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer__navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer__navigation a {
    color: var(--color-gray);

    font-size: 11px;

    transition: color var(--transition-normal);
}

.footer__navigation a:hover {
    color: var(--color-white);
}

.footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;

    padding-top: 28px;

    color: var(--color-gray-dark);

    font-size: 9px;
    letter-spacing: 0.04em;
}

.footer__bottom p:nth-child(2) {
    text-align: center;
}

.footer__bottom strong {
    color: var(--color-gray);
    font-weight: 500;
}

.footer__bottom a {
    justify-self: end;

    color: var(--color-gray);

    transition: color var(--transition-normal);
}

.footer__bottom a:hover {
    color: var(--color-white);
}


/* ==========================================================
   17. REVEAL
========================================================== */

.reveal {
    opacity: 0;
    transform: translateY(36px);

    transition:
        opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================
   18. ANIMAÇÕES
========================================================== */

@keyframes loaderProgress {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

@keyframes loaderHide {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes statusPulse {
    0%,
    100% {
        opacity: 0.65;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    100% {
        top: 130%;
    }
}

@keyframes floatingCard {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

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

@keyframes imageReflection {
    0%,
    35% {
        left: -75%;
    }

    65%,
    100% {
        left: 140%;
    }
}

@keyframes diamondFloat {
    0%,
    100% {
        transform:
            rotate(-13deg)
            perspective(900px)
            rotateY(-20deg)
            rotateX(8deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(-4deg)
            perspective(900px)
            rotateY(8deg)
            rotateX(-3deg)
            translateY(-24px);
    }
}

@keyframes diamondFall {
    0%,
    100% {
        transform:
            translateY(-45px)
            rotate(25deg)
            scale(0.9);
    }

    50% {
        transform:
            translateY(90px)
            rotate(60deg)
            scale(1.05);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes manifestoDiamond {
    0%,
    100% {
        transform:
            translate(-50%, -50%)
            rotate(-8deg)
            scale(0.96);
    }

    50% {
        transform:
            translate(-50%, -53%)
            rotate(5deg)
            scale(1.04);
    }
}

@keyframes contactDiamond {
    0%,
    100% {
        transform:
            perspective(1000px)
            rotateY(-20deg)
            rotateX(12deg)
            rotateZ(10deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(1000px)
            rotateY(8deg)
            rotateX(-5deg)
            rotateZ(-6deg)
            translateY(-26px);
    }
}

@keyframes liquidReflection {
    0%,
    30% {
        left: -45%;
    }

    70%,
    100% {
        left: 125%;
    }
}

@keyframes liquidShape {
    0%,
    100% {
        border-radius:
            42% 58% 52% 48% /
            38% 42% 58% 62%;

        transform: rotate(0deg) scale(1);
    }

    50% {
        border-radius:
            58% 42% 38% 62% /
            54% 62% 38% 46%;

        transform: rotate(12deg) scale(1.07);
    }
}


/* ==========================================================
   19. RESPONSIVO - NOTEBOOK
========================================================== */

@media (max-width: 1180px) {
    :root {
        --container-padding: 26px;
    }

    .header__menu {
        gap: 25px;
    }

    .hero__container {
        grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.8fr);
        gap: 38px;
    }

    .hero__visual {
        min-height: 580px;
    }

    .hero__image-box {
        height: 600px;
    }

    .hero::before {
        width: 230px;
    }

    .section {
        padding-block: 125px;
    }

    .contact__content {
        padding: 70px;
    }
}


/* ==========================================================
   20. RESPONSIVO - TABLET
========================================================== */

@media (max-width: 980px) {
    :root {
        --header-height: 82px;
    }

    .header__container {
        grid-template-columns: 1fr auto;
    }

    .header__navigation {
        position: fixed;
        inset: 0;

        z-index: -1;

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

        background:
            radial-gradient(
                circle at center,
                rgba(40, 85, 255, 0.13),
                transparent 35%
            ),
            rgba(2, 3, 6, 0.96);

        backdrop-filter: blur(22px);

        opacity: 0;
        visibility: hidden;

        transition:
            opacity var(--transition-normal),
            visibility var(--transition-normal);
    }

    .header__navigation.is-open {
        opacity: 1;
        visibility: visible;
    }

    .header__menu {
        flex-direction: column;
        gap: 8px;
    }

    .header__link {
        display: block;

        padding: 8px 20px;

        font-size: clamp(35px, 7vw, 62px);
        line-height: 1.1;
        letter-spacing: -0.05em;
    }

    .button--header {
        display: none;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .hero {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 100px;
    }

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

    .hero__content {
        max-width: 800px;
    }

    .hero__title {
        font-size: clamp(62px, 11vw, 100px);
    }

    .hero__visual {
        min-height: 660px;
        margin-top: 30px;
    }

    .hero__image-box {
        width: min(100%, 540px);
        height: 660px;
    }

    .hero::before {
        top: 50%;
        right: -60px;
    }

    .hero::after {
        top: 58%;
        right: auto;
        left: 5%;
    }

    .hero__scroll {
        display: none;
    }

    .clients__heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about__content {
        max-width: 670px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service-item {
        grid-template-columns: 55px 1fr 44px;
    }

    .service-item__tags {
        display: none;
    }

    .process-step__content {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact__content {
        padding: 60px 44px;
    }

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

    .contact__links > * {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .contact__links > *:last-child {
        border-bottom: 0;
    }
}


/* ==========================================================
   21. RESPONSIVO - CELULAR
========================================================== */

@media (max-width: 720px) {
    :root {
        --container-padding: 18px;
    }

    .section {
        padding-block: 95px;
    }

    .header::before {
        inset: 8px 10px;
        border-radius: 20px;
    }

    .header__logo {
        width: 36px;
        height: 36px;
    }

    .header__brand-text strong {
        font-size: 12px;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero__eyebrow {
        margin-bottom: 26px;
    }

    .hero__title {
        font-size: clamp(50px, 15vw, 76px);
        line-height: 0.88;
    }

    .hero__description {
        margin-top: 28px;

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

    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hero__information {
        grid-template-columns: 1fr;
        gap: 18px;

        margin-top: 42px;
    }

    .hero__information-item {
        padding-bottom: 16px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .hero__visual {
        min-height: 500px;
        margin-top: 48px;
    }

    .hero__image-box {
        height: 520px;

        border-radius:
            30px
            30px
            100px
            30px;
    }

    .hero__image-border {
        border-radius:
            22px
            22px
            90px
            22px;
    }

    .floating-card--top {
        top: 5%;
        right: -4px;
    }

    .floating-card--bottom {
        right: 14px;
        bottom: 5%;
    }

    .hero::before {
        top: 58%;
        right: -80px;

        width: 190px;
    }

    .hero::after {
        top: 68%;
        left: -20px;

        width: 120px;
    }

    .section-label {
        margin-bottom: 42px;
    }

    .section-heading {
        margin-bottom: 48px;
    }

    .section-heading h2,
    .clients__heading h2,
    .about__title h2 {
        font-size: clamp(40px, 12vw, 58px);
    }

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

    .about-stat {
        min-height: 210px;

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about-stat:last-child {
        border-bottom: 0;
    }

    .service-item {
        grid-template-columns: 42px 1fr 38px;
        gap: 16px;

        min-height: 160px;
        padding-block: 25px;
    }

    .service-item:hover {
        padding-inline: 18px;
    }

    .service-item__content h3 {
        font-size: 27px;
    }

    .service-item__content p {
        font-size: 12px;
    }

    .service-item__arrow {
        width: 36px;
        height: 36px;
    }

    .process-step {
        grid-template-columns: 36px 1fr;
        gap: 16px;

        padding-block: 28px;
    }

    .process-step__arrow {
        display: none;
    }

    .process-step__content h3 {
        font-size: 30px;
    }

    .process-step__content p {
        font-size: 12px;
    }

    .manifesto {
        padding-block: 130px;
    }

    .manifesto__text {
        font-size: clamp(42px, 13vw, 62px);
    }

    .manifesto::before {
        width: 110vw;
    }

    .contact::before {
        top: 5%;
        right: -160px;

        width: 300px;
    }

    .contact__content {
        padding: 50px 24px;

        border-radius: 28px;
    }

    .contact__title {
        font-size: clamp(43px, 12vw, 62px);
    }

    .contact__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact__email {
        font-size: 11px;
        word-break: break-word;
    }

    .contact__links > * {
        padding-inline: 20px;
    }

    .footer__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer__navigation {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer__bottom {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer__bottom p:nth-child(2) {
        text-align: left;
    }

    .footer__bottom a {
        justify-self: start;
    }
}


/* ==========================================================
   22. CELULARES PEQUENOS
========================================================== */

@media (max-width: 430px) {
    .hero__title {
        font-size: 48px;
    }

    .hero__image-box {
        height: 460px;
    }

    .floating-card--top {
        padding: 14px 15px;
    }

    .floating-card--bottom {
        display: none;
    }

    .button {
        width: 100%;
    }

    .hero__actions .text-link {
        width: auto;
    }

    .contact__actions .button {
        width: 100%;
    }
}


/* ==========================================================
   23. DISPOSITIVOS SEM CURSOR
========================================================== */

@media (hover: none), (pointer: coarse) {
    .cursor,
    .cursor-follower {
        display: none;
    }
}


/* ==========================================================
   24. ACESSIBILIDADE
========================================================== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}


/* ==========================================================
   CARDS PREMIUM DE CLIENTES
   IMPACTO DIGITAL
========================================================== */


/* ==========================================================
   GRID
========================================================== */

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;

    margin-top: 72px;

    perspective: 1400px;
}


/* ==========================================================
   CARD PRINCIPAL
========================================================== */

.clients-grid .client-card {
    position: relative;

    min-height: 520px;
    padding: 0;

    overflow: hidden;
    isolation: isolate;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    transform:
        perspective(1200px)
        translateZ(0);

    transform-style: preserve-3d;

    transition:
        transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 400ms ease,
        box-shadow 800ms cubic-bezier(0.16, 1, 0.3, 1);
}


/* Brilho que segue o ponteiro */

.clients-grid .client-card::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 5;

    pointer-events: none;

    opacity: 0;

    background:
        radial-gradient(
            500px circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
            rgba(122, 151, 255, 0.18),
            transparent 42%
        );

    transition: opacity 500ms ease;
}


/* Diamante glass */

.clients-grid .client-card::after {
    content: "";

    position: absolute;
    top: 34px;
    right: 28px;

    z-index: 6;

    width: 72px;
    aspect-ratio: 1;

    pointer-events: none;

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

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.16),
            rgba(40, 85, 255, 0.025) 55%,
            rgba(255, 255, 255, 0.025)
        );

    clip-path:
        polygon(
            50% 0%,
            88% 23%,
            100% 58%,
            50% 100%,
            0% 58%,
            12% 23%
        );

    opacity: 0;
    filter:
        blur(0.2px)
        drop-shadow(0 15px 25px rgba(40, 85, 255, 0.25));

    backdrop-filter:
        blur(12px)
        saturate(160%);

    transform:
        translateY(25px)
        rotate(-18deg)
        scale(0.65);

    transition:
        opacity 500ms ease,
        transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.clients-grid .client-card:hover {
    z-index: 10;

    border-color: rgba(107, 140, 255, 0.42);

    box-shadow:
        0 48px 110px rgba(0, 0, 0, 0.55),
        0 0 65px rgba(40, 85, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);

    transform:
        perspective(1200px)
        translateY(-12px)
        rotateX(1.5deg)
        scale(1.012);
}

.clients-grid .client-card:hover::before {
    opacity: 1;
}

.clients-grid .client-card:hover::after {
    opacity: 0.72;

    transform:
        translateY(0)
        rotate(8deg)
        scale(1);
}


/* ==========================================================
   IMAGEM
========================================================== */

.client-image {
    position: absolute;
    inset: 0;

    z-index: 1;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #101522,
            #05070d
        );
}

.client-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter:
        saturate(0.82)
        contrast(1.06)
        brightness(0.82);

    transform: scale(1.015);

    transition:
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 900ms ease;
}

.clients-grid .client-card:hover .client-image img {
    filter:
        saturate(1)
        contrast(1.08)
        brightness(0.92);

    transform: scale(1.09);
}


/* ==========================================================
   GRADIENTE CINEMATOGRÁFICO
========================================================== */

.client-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(2, 3, 6, 0.08) 0%,
            rgba(2, 3, 6, 0.05) 30%,
            rgba(2, 3, 6, 0.48) 62%,
            rgba(2, 3, 6, 0.96) 100%
        ),
        linear-gradient(
            90deg,
            rgba(2, 3, 6, 0.3),
            transparent 58%
        );

    transition: background 700ms ease;
}

.clients-grid .client-card:hover .client-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(2, 3, 6, 0.02) 0%,
            rgba(2, 3, 6, 0.03) 28%,
            rgba(2, 3, 6, 0.38) 61%,
            rgba(2, 3, 6, 0.94) 100%
        ),
        linear-gradient(
            90deg,
            rgba(7, 16, 55, 0.36),
            transparent 65%
        );
}


/* Luz azul atrás da imagem */

.client-image::before {
    content: "";

    position: absolute;
    top: -20%;
    right: -25%;

    z-index: 2;

    width: 75%;
    height: 75%;

    border-radius: 50%;

    pointer-events: none;

    opacity: 0;

    background: rgba(40, 85, 255, 0.34);

    filter: blur(70px);

    transition:
        opacity 700ms ease,
        transform 900ms cubic-bezier(0.16, 1, 0.3, 1);

    transform: scale(0.7);
}

.clients-grid .client-card:hover .client-image::before {
    opacity: 0.75;
    transform: scale(1);
}


/* Reflexo passando pelo card */

.client-image::after {
    content: "";

    position: absolute;
    top: -45%;
    left: -100%;

    z-index: 4;

    width: 65%;
    height: 190%;

    pointer-events: none;

    opacity: 0;

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

    transform: rotate(18deg);

    transition:
        left 1.1s ease,
        opacity 300ms ease;
}

.clients-grid .client-card:hover .client-image::after {
    left: 145%;
    opacity: 1;
}


/* ==========================================================
   CONTEÚDO GLASS
========================================================== */

.client-info {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;

    z-index: 7;

    padding: 22px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 20, 34, 0.72),
            rgba(4, 7, 14, 0.48)
        );

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);

    backdrop-filter:
        blur(22px)
        saturate(150%);

    transform:
        translateZ(35px)
        translateY(4px);

    transition:
        transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
        background 500ms ease,
        border-color 500ms ease;
}

.clients-grid .client-card:hover .client-info {
    border-color: rgba(107, 140, 255, 0.28);

    background:
        linear-gradient(
            145deg,
            rgba(19, 27, 54, 0.78),
            rgba(5, 9, 22, 0.58)
        );

    transform:
        translateZ(55px)
        translateY(-5px);
}


/* ==========================================================
   NÚMERO
========================================================== */

.client-number {
    display: grid;
    place-items: center;

    width: 34px;
    height: 34px;

    margin-bottom: 38px;

    border: 1px solid rgba(107, 140, 255, 0.34);
    border-radius: 50%;

    color: var(--color-blue-light);

    background:
        rgba(40, 85, 255, 0.1);

    box-shadow:
        0 0 25px rgba(40, 85, 255, 0.12);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
}


/* ==========================================================
   TEXTOS
========================================================== */

.client-info h3 {
    margin: 0;

    color: var(--color-white);

    font-size: clamp(22px, 2vw, 29px);
    line-height: 1.05;
    letter-spacing: -0.045em;
    font-weight: 550;
}

.client-info p {
    margin-top: 10px;

    color: var(--color-gray-light);

    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.02em;
}


/* ==========================================================
   VARIAÇÃO DE TAMANHO
========================================================== */

.clients-grid .client-card:nth-child(1),
.clients-grid .client-card:nth-child(5) {
    min-height: 580px;
}

.clients-grid .client-card:nth-child(2),
.clients-grid .client-card:nth-child(6) {
    margin-top: 48px;
}


/* ==========================================================
   ANIMAÇÃO SUAVE DO DIAMANTE
========================================================== */

@keyframes clientDiamondFloat {
    0%,
    100% {
        translate: 0 0;
        rotate: 0deg;
    }

    50% {
        translate: 0 -8px;
        rotate: 5deg;
    }
}

.clients-grid .client-card:hover::after {
    animation:
        clientDiamondFloat
        4.5s
        ease-in-out
        infinite;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {
    .clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .clients-grid .client-card,
    .clients-grid .client-card:nth-child(1),
    .clients-grid .client-card:nth-child(5) {
        min-height: 520px;
    }

    .clients-grid .client-card:nth-child(2),
    .clients-grid .client-card:nth-child(6) {
        margin-top: 0;
    }

    .clients-grid .client-card:nth-child(even) {
        margin-top: 45px;
    }
}


/* ==========================================================
   CELULAR
========================================================== */

@media (max-width: 680px) {
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 20px;

        margin-top: 50px;
    }

    .clients-grid .client-card,
    .clients-grid .client-card:nth-child(1),
    .clients-grid .client-card:nth-child(5) {
        min-height: 500px;

        border-radius: 24px;
    }

    .clients-grid .client-card:nth-child(even),
    .clients-grid .client-card:nth-child(2),
    .clients-grid .client-card:nth-child(6) {
        margin-top: 0;
    }

    .client-info {
        right: 14px;
        bottom: 14px;
        left: 14px;

        padding: 19px;

        border-radius: 18px;
    }

    .client-number {
        margin-bottom: 28px;
    }

    .client-info h3 {
        font-size: 26px;
    }
}


/* ==========================================================
   CELULARES PEQUENOS
========================================================== */

@media (max-width: 430px) {
    .clients-grid .client-card,
    .clients-grid .client-card:nth-child(1),
    .clients-grid .client-card:nth-child(5) {
        min-height: 440px;
    }

    .client-info {
        padding: 17px;
    }

    .client-number {
        width: 31px;
        height: 31px;

        margin-bottom: 22px;
    }

    .client-info h3 {
        font-size: 23px;
    }
}


/* ==========================================================
   DISPOSITIVOS SEM HOVER
========================================================== */

@media (hover: none), (pointer: coarse) {
    .clients-grid .client-card::after {
        opacity: 0.42;

        transform:
            translateY(0)
            rotate(8deg)
            scale(0.8);
    }

    .clients-grid .client-card:hover {
        transform: none;
    }
}


/* ==========================================================
   ACESSIBILIDADE DOS CARDS
========================================================== */

@media (prefers-reduced-motion: reduce) {
    .clients-grid .client-card,
    .client-image img,
    .client-image::after,
    .client-info {
        animation: none !important;
        transition: none !important;
    }
}


/* ==========================================================
   ENQUADRAMENTO DAS FOTOS
========================================================== */

.client-card:nth-child(1) img {
    object-position: center 25%;
}

.client-card:nth-child(2) img {
    object-position: center top;
}

.client-card:nth-child(3) img {
    object-position: center 20%;
}

.client-card:nth-child(4) img {
    object-position: center center;
}

.client-card:nth-child(5) img {
    object-position: center 30%;
}

.client-card:nth-child(6) img {
    object-position: center top;
}


/* ==========================================================
   CONTEÚDO EM MOVIMENTO
========================================================== */

.video-showcase {
    position: relative;
    z-index: 2;

    overflow: hidden;

    padding-top: clamp(90px, 10vw, 150px);
    padding-bottom: clamp(90px, 10vw, 150px);

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(34, 67, 180, 0.1),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            rgba(3, 5, 11, 0) 0%,
            rgba(5, 8, 18, 0.6) 45%,
            rgba(3, 5, 11, 0) 100%
        );
}


/* Cabeçalho */

.video-showcase__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: clamp(40px, 8vw, 130px);
    align-items: end;

    margin-bottom: clamp(50px, 7vw, 95px);
}

.video-showcase__heading-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.video-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;

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

    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.video-showcase__eyebrow::before {
    content: "";

    width: 32px;
    height: 1px;

    background: linear-gradient(
        90deg,
        rgba(91, 126, 255, 1),
        rgba(91, 126, 255, 0)
    );
}

.video-showcase__heading h2 {
    max-width: 820px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(42px, 6vw, 88px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.video-showcase__heading h2 span {
    display: block;

    color: rgba(255, 255, 255, 0.34);
}

.video-showcase__description {
    max-width: 410px;
    margin: 0 0 7px;

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

    font-size: clamp(15px, 1.25vw, 18px);
    font-weight: 400;
    line-height: 1.75;
}


/* Carrossel */

.video-showcase__carousel {
    position: relative;

    width: 100%;
}

.video-showcase__viewport {
    position: relative;

    width: 100%;
    overflow: hidden;

    padding-top: 20px;
    padding-bottom: 28px;

    touch-action: pan-y;
    cursor: grab;
}

.video-showcase__viewport.is-dragging {
    cursor: grabbing;
}

.video-showcase__track {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.6vw, 26px);

    width: max-content;

    padding-left: clamp(20px, 5vw, 90px);
    padding-right: clamp(20px, 5vw, 90px);

    user-select: none;
    will-change: transform;
}


/* Card vertical */

.video-reel {
    position: relative;

    flex: 0 0 clamp(190px, 21vw, 310px);

    transform: translateZ(0);
}

.video-reel__media {
    position: relative;

    width: 100%;
    aspect-ratio: 9 / 16;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(22px, 2.2vw, 34px);

    background: rgba(255, 255, 255, 0.035);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    isolation: isolate;

    transition:
        transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 500ms ease,
        box-shadow 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.video-reel__media::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.16) 0%,
            transparent 28%,
            transparent 55%,
            rgba(0, 0, 0, 0.76) 100%
        );
}

.video-reel__media::after {
    content: "";

    position: absolute;
    top: -40%;
    left: -100%;
    z-index: 3;

    width: 65%;
    height: 180%;

    pointer-events: none;

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

    transform: rotate(14deg);

    transition:
        left 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.video-reel video {
    position: absolute;
    inset: 0;
    z-index: 1;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    filter:
        saturate(0.9)
        contrast(1.04)
        brightness(0.86);

    transform: scale(1.015);

    transition:
        transform 1100ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 700ms ease;
}


/* Número */

.video-reel__number {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;

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

    min-width: 42px;
    height: 28px;
    padding: 0 10px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;

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

    background: rgba(4, 7, 14, 0.36);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
}


/* Texto inferior */

.video-reel__overlay {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 4;

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

    pointer-events: none;

    transform: translateY(5px);

    transition:
        transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.video-reel__overlay span {
    color: rgba(255, 255, 255, 0.84);

    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.video-reel__overlay::after {
    content: "↗";

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

    width: 34px;
    height: 34px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    font-size: 14px;
}


/* Hover premium */

@media (hover: hover) and (pointer: fine) {
    .video-reel:hover .video-reel__media {
        border-color: rgba(107, 140, 255, 0.48);

        box-shadow:
            0 42px 95px rgba(0, 0, 0, 0.52),
            0 0 55px rgba(48, 82, 210, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.16);

        transform:
            translateY(-12px)
            scale(1.018);
    }

    .video-reel:hover .video-reel__media::after {
        left: 145%;
    }

    .video-reel:hover video {
        filter:
            saturate(1.06)
            contrast(1.05)
            brightness(1);

        transform: scale(1.075);
    }

    .video-reel:hover .video-reel__overlay {
        transform: translateY(0);
    }
}


/* Sombras laterais */

.video-showcase__fade {
    position: absolute;
    top: 0;
    bottom: 45px;
    z-index: 8;

    width: clamp(35px, 10vw, 180px);

    pointer-events: none;
}

.video-showcase__fade--left {
    left: 0;

    background: linear-gradient(
        90deg,
        #03050b 0%,
        rgba(3, 5, 11, 0.82) 28%,
        rgba(3, 5, 11, 0) 100%
    );
}

.video-showcase__fade--right {
    right: 0;

    background: linear-gradient(
        270deg,
        #03050b 0%,
        rgba(3, 5, 11, 0.82) 28%,
        rgba(3, 5, 11, 0) 100%
    );
}


/* Instrução */

.video-showcase__instruction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    margin-top: 16px;
    padding: 0 20px;

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

    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.video-showcase__instruction-line {
    width: 38px;
    height: 1px;

    background: rgba(255, 255, 255, 0.18);
}

.video-showcase__instruction-arrow {
    color: rgba(107, 140, 255, 0.75);

    font-size: 15px;
}


/* Movimento reduzido */

@media (prefers-reduced-motion: reduce) {
    .video-reel__media,
    .video-reel video,
    .video-reel__media::after {
        transition: none;
    }
}


/* Tablet */

@media (max-width: 900px) {
    .video-showcase__heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .video-showcase__description {
        max-width: 520px;
    }

    .video-showcase__fade {
        width: 55px;
    }

    .video-reel {
        flex-basis: clamp(200px, 36vw, 270px);
    }
}


/* Celular */

@media (max-width: 600px) {
    .video-showcase {
        padding-top: 85px;
        padding-bottom: 95px;
    }

    .video-showcase__heading {
        margin-bottom: 42px;
    }

    .video-showcase__heading h2 {
        font-size: clamp(40px, 13vw, 58px);
        line-height: 1;
    }

    .video-showcase__description {
        font-size: 14px;
        line-height: 1.7;
    }

    .video-showcase__viewport {
        padding-top: 12px;
    }

    .video-showcase__track {
        gap: 14px;

        padding-left: 18px;
        padding-right: 18px;
    }

    .video-reel {
        flex-basis: min(70vw, 255px);
    }

    .video-reel__media {
        border-radius: 25px;
    }

    .video-showcase__fade {
        display: none;
    }

    .video-showcase__instruction {
        justify-content: flex-start;

        padding-left: 22px;
    }
}


/* ==========================================================
   UPGRADE HIPER PREMIUM
   Camada de refinamento sobre o design system
========================================================== */


/* ==========================================================
   TIPOGRAFIA VIVA
========================================================== */

/* Quebras de linha equilibradas nos títulos */

h1,
h2 {
    text-wrap: balance;
}

.section-heading p,
.hero__description,
.about__highlight,
.contact__description,
.video-showcase__description {
    text-wrap: pretty;
}


/* Gradiente do hero em movimento lento */

.hero__title-line--accent {
    background-size: 220% 100%;

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

@keyframes accentShimmer {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}


/* Palavra final do manifesto com o mesmo brilho */

.manifesto__text span {
    background-size: 220% 100%;

    animation: accentShimmer 9s ease-in-out infinite;
}


/* ==========================================================
   AURORA DO HERO
   Anima translate/scale como propriedades individuais,
   preservando o parallax do mouse (que usa transform).
========================================================== */

.hero__glow--one {
    animation: auroraDriftOne 16s ease-in-out infinite alternate;
}

.hero__glow--two {
    animation: auroraDriftTwo 21s ease-in-out infinite alternate;
}

@keyframes auroraDriftOne {
    0% {
        translate: 0 0;
        scale: 1;

        opacity: 0.85;
    }

    100% {
        translate: -70px 45px;
        scale: 1.18;

        opacity: 1;
    }
}

@keyframes auroraDriftTwo {
    0% {
        translate: 0 0;
        scale: 1;
    }

    100% {
        translate: 55px -35px;
        scale: 1.24;
    }
}


/* ==========================================================
   ENTRADA CINEMATOGRÁFICA
   O reveal ganha foco progressivo além do deslocamento.
========================================================== */

.reveal {
    filter: blur(14px);

    transition:
        opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    filter: blur(0);
}


/* ==========================================================
   BRILHO QUE SEGUE O PONTEIRO — DEPOIMENTOS
========================================================== */

.proof-card::before {
    content: "" !important;

    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;

    pointer-events: none !important;

    opacity: 0 !important;

    background:
        radial-gradient(
            560px circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
            rgba(122, 151, 255, 0.14),
            transparent 45%
        ) !important;

    transition: opacity 500ms ease !important;
}

@media (hover: hover) and (pointer: fine) {
    .proof-card:hover::before {
        opacity: 1 !important;
    }
}


/* ==========================================================
   MICROINTERAÇÕES
========================================================== */

/* Resposta tátil ao clique */

.button:active {
    transform: translateY(-1px) scale(0.98);
}

a.insta-card-button:active {
    transform: translateY(-1px) scale(0.98) !important;
}

.video-showcase__viewport:active {
    cursor: grabbing;
}


/* Cursor com inversão sobre áreas claras */

.cursor {
    mix-blend-mode: difference;
}


/* ==========================================================
   ACESSIBILIDADE DO UPGRADE
   O bloco global de prefers-reduced-motion já zera
   todas as animações e transições desta camada.
========================================================== */


/* ==========================================================
   GALERIA — DESIGN E FOTOGRAFIA
   Duas fileiras infinitas em direções opostas
========================================================== */

.gallery-showcase {
    position: relative;
    z-index: 2;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 70%,
            rgba(34, 67, 180, 0.08),
            transparent 42%
        );
}


/* Etiqueta de cada fileira */

.gallery-row-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;

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

    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.gallery-row-label::before {
    content: "";

    width: 32px;
    height: 1px;

    background: linear-gradient(
        90deg,
        rgba(91, 126, 255, 1),
        rgba(91, 126, 255, 0)
    );
}

.gallery-row-label--second {
    margin-top: 48px;
}


/* Fileira de largura total */

.gallery-row {
    position: relative;

    width: 100vw;
    margin-left: calc(50% - 50vw);

    overflow: hidden;

    padding-block: 16px;
}


/* Sombras laterais */

.gallery-row::before,
.gallery-row::after {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;

    z-index: 8;

    width: clamp(35px, 9vw, 160px);

    pointer-events: none;
}

.gallery-row::before {
    left: 0;

    background: linear-gradient(
        90deg,
        var(--color-black) 0%,
        rgba(2, 3, 6, 0.82) 28%,
        rgba(2, 3, 6, 0) 100%
    );
}

.gallery-row::after {
    right: 0;

    background: linear-gradient(
        -90deg,
        var(--color-black) 0%,
        rgba(2, 3, 6, 0.82) 28%,
        rgba(2, 3, 6, 0) 100%
    );
}


/* Trilho animado */

.gallery-row__track {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.6vw, 24px);

    width: max-content;

    padding-inline: clamp(20px, 5vw, 90px);

    will-change: transform;
}

.gallery-row--designs .gallery-row__track {
    animation: galleryDriftRight 52s linear infinite;
}

.gallery-row--photos .gallery-row__track {
    animation: galleryDriftLeft 58s linear infinite;
}

@keyframes galleryDriftLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes galleryDriftRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}


/* Card de imagem */

.gallery-card {
    position: relative;

    flex: 0 0 auto;

    margin: 0;

    overflow: hidden;
    isolation: isolate;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(18px, 1.8vw, 26px);

    background: rgba(255, 255, 255, 0.035);

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    transition:
        transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 500ms ease,
        box-shadow 700ms cubic-bezier(0.16, 1, 0.3, 1);
}


/* Formatos: design e fotografia em pé, mesmo tamanho */

.gallery-card--design {
    width: clamp(180px, 19vw, 260px);

    aspect-ratio: 4 / 5;
}

.gallery-card--photo {
    width: clamp(180px, 19vw, 260px);

    aspect-ratio: 4 / 5;
}

.gallery-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        saturate(0.9)
        contrast(1.04)
        brightness(0.9);

    transform: scale(1.01);

    transition:
        transform 1100ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 700ms ease;
}


/* Reflexo atravessando o card */

.gallery-card::after {
    content: "";

    position: absolute;
    top: -40%;
    left: -100%;
    z-index: 3;

    width: 65%;
    height: 180%;

    pointer-events: none;

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

    transform: rotate(14deg);

    transition:
        left 900ms cubic-bezier(0.16, 1, 0.3, 1);
}


/* Hover premium */

@media (hover: hover) and (pointer: fine) {
    .gallery-card:hover {
        border-color: rgba(107, 140, 255, 0.48);

        box-shadow:
            0 36px 85px rgba(0, 0, 0, 0.5),
            0 0 50px rgba(48, 82, 210, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.16);

        transform:
            translateY(-9px)
            scale(1.015);
    }

    .gallery-card:hover::after {
        left: 145%;
    }

    .gallery-card:hover img {
        filter:
            saturate(1.05)
            contrast(1.05)
            brightness(1);

        transform: scale(1.06);
    }
}


/* Tablet */

@media (max-width: 900px) {
    .gallery-row::before,
    .gallery-row::after {
        width: 55px;
    }

    .gallery-card--design {
        width: clamp(165px, 28vw, 220px);
    }

    .gallery-card--photo {
        width: clamp(165px, 28vw, 220px);
    }
}


/* Celular */

@media (max-width: 600px) {
    .gallery-row-label--second {
        margin-top: 40px;
    }

    .gallery-row {
        padding-block: 12px;
    }

    .gallery-row__track {
        gap: 14px;

        padding-inline: 18px;
    }

    .gallery-card--design {
        width: min(48vw, 190px);
    }

    .gallery-card--photo {
        width: min(48vw, 190px);
    }

    .gallery-row::before,
    .gallery-row::after {
        display: none;
    }
}


/* ==========================================================
   CARD DOURADO — CRIAÇÃO DE SITES
   O único elemento dourado do site: destaque absoluto.
========================================================== */

.site-credit {
    position: relative;
    isolation: isolate;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    max-width: 1180px;
    margin-top: 34px;
    padding: clamp(34px, 4.5vw, 60px);

    overflow: hidden;

    border: 1px solid rgba(246, 199, 106, 0.42);
    border-radius: 34px;

    background:
        radial-gradient(
            circle at 12% 0%,
            rgba(255, 227, 165, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 15%,
            rgba(242, 178, 72, 0.2),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            rgba(64, 46, 14, 0.5),
            rgba(12, 9, 4, 0.88)
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        0 0 65px rgba(240, 180, 80, 0.16),
        inset 0 1px 0 rgba(255, 231, 173, 0.32),
        inset 0 -25px 60px rgba(0, 0, 0, 0.28);

    backdrop-filter: blur(26px) saturate(160%);
    -webkit-backdrop-filter: blur(26px) saturate(160%);

    transition:
        transform 600ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 500ms ease,
        box-shadow 600ms ease;
}


/* Reflexo líquido atravessando o vidro */

.site-credit::before {
    content: "";

    position: absolute;
    top: -60%;
    left: -45%;
    z-index: 1;

    width: 45%;
    height: 220%;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 235, 185, 0.14),
            transparent
        );

    transform: rotate(18deg);

    animation: liquidReflection 9s ease-in-out infinite;
}


/* Mancha líquida dourada */

.site-credit::after {
    content: "";

    position: absolute;
    right: -70px;
    bottom: -90px;
    z-index: -1;

    width: 320px;
    height: 300px;

    pointer-events: none;

    border-radius:
        42% 58% 52% 48% /
        38% 42% 58% 62%;

    opacity: 0.6;

    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(255, 236, 190, 0.28),
            rgba(240, 172, 60, 0.24) 42%,
            rgba(180, 115, 25, 0.05) 72%
        );

    filter: blur(4px);

    animation: liquidShape 10s ease-in-out infinite;
}


/* Selo superior */

.site-credit__badge {
    position: relative;
    z-index: 2;

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

    padding: 10px 16px;

    border: 1px solid rgba(246, 199, 106, 0.45);
    border-radius: var(--radius-pill);

    color: #ffd98a;
    background: rgba(240, 180, 80, 0.1);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


/* Frase */

.site-credit__text {
    position: relative;
    z-index: 2;

    max-width: 780px;

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

    font-size: clamp(21px, 2.2vw, 31px);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.03em;
}

.site-credit__text strong {
    color: transparent;

    background:
        linear-gradient(
            100deg,
            #ffe9b8,
            #f6c76a 45%,
            #e6a53e
        );

    background-clip: text;
    -webkit-background-clip: text;

    font-weight: 600;

    filter:
        drop-shadow(0 6px 24px rgba(240, 180, 80, 0.28));
}


/* Botão dourado */

.site-credit__cta {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    min-height: 56px;
    margin-top: 6px;
    padding-inline: 26px;

    border: 1px solid rgba(255, 231, 173, 0.55);
    border-radius: var(--radius-pill);

    color: #241703;

    background:
        linear-gradient(
            135deg,
            #ffe4a6,
            #f2b64e 55%,
            #dd9a2e
        );

    box-shadow:
        0 16px 45px rgba(240, 180, 80, 0.32),
        inset 0 1px 0 rgba(255, 244, 214, 0.75);

    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;

    transition:
        transform 350ms ease,
        box-shadow 350ms ease;
}


/* Hover */

@media (hover: hover) and (pointer: fine) {
    .site-credit:hover {
        border-color: rgba(255, 219, 140, 0.7);

        transform: translateY(-8px);

        box-shadow:
            0 45px 110px rgba(0, 0, 0, 0.5),
            0 0 90px rgba(240, 180, 80, 0.26),
            inset 0 1px 0 rgba(255, 231, 173, 0.4);
    }

    .site-credit:hover .site-credit__cta {
        transform: translateY(-3px) scale(1.02);

        box-shadow:
            0 22px 60px rgba(240, 180, 80, 0.45),
            inset 0 1px 0 rgba(255, 244, 214, 0.85);
    }
}

.site-credit:active {
    transform: translateY(-3px) scale(0.995);
}

.site-credit:focus-visible {
    outline: 2px solid #ffd98a;
    outline-offset: 5px;
}


/* Celular */

@media (max-width: 720px) {
    .site-credit {
        padding: 34px 24px;

        border-radius: 28px;
    }
}

@media (max-width: 430px) {
    .site-credit__cta {
        justify-content: center;

        width: 100%;
    }
}
