/* ==========================================================================
   KameSystems • Landing Wizard (Geek claro / cosmos / energia)
   Objetivo: tema geek leve (boa leitura) + layout responsivo
   Observação: CSS organizado por seções e sem duplicidade de media queries.
   ========================================================================== */

/* ==========================================================================
   1) Variáveis do tema
   ========================================================================== */
:root {
    --bg: #f5f8ff;
    --bg2: #eef4ff;

    --text: #0b1220;
    --muted: rgba(11, 18, 32, .72);

    --border: rgba(15, 23, 42, .12);
    --shadow: 0 18px 45px rgba(2, 6, 23, .10);
    --radius: 18px;

    /* energia / “ki” */
    --primary: #1ed6ff;
    --primary2: #3b82f6;
    --accent: #ffb020;
    --accent2: #ff5a3c;
    --danger: #ef4444;
}

/* ==========================================================================
   2) Reset básico
   ========================================================================== */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   3) Fundo fluido e profissional
   ========================================================================== */

html {
    min-height: 100%;
    background:
        radial-gradient(900px 620px at 12% 8%, rgba(30, 214, 255, .18), transparent 64%),
        radial-gradient(820px 560px at 88% 6%, rgba(255, 176, 32, .16), transparent 66%),
        radial-gradient(760px 540px at 50% 48%, rgba(59, 130, 246, .12), transparent 70%),
        linear-gradient(180deg, #f7fbff 0%, #eef5ff 48%, #f6f9ff 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: transparent;
    position: relative;
}

/* camada suave fixa, sem repetir no scroll */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .85;
    background:
        radial-gradient(780px 420px at 18% 22%, rgba(30, 214, 255, .12), transparent 68%),
        radial-gradient(680px 420px at 84% 28%, rgba(255, 176, 32, .10), transparent 70%),
        radial-gradient(820px 520px at 52% 86%, rgba(59, 130, 246, .10), transparent 74%);
    background-repeat: no-repeat;
    background-size: cover;
}

/* textura muito discreta para não parecer fundo chapado */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .22;
    background-image:
        linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

/* ==========================================================================
   4) Estrutura geral
   ========================================================================== */
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 26px 18px 44px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 22px;
    position: relative;
    z-index: 1;
}

.layout {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 22px;
    align-items: stretch;
}

/* ==========================================================================
   5) Logo topo (flutuante)
   ========================================================================== */
.brand-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 6px 0 8px;
    position: relative;
    z-index: 3;
}

.brand-top img {
    height: 172px;
    width: auto;
    display: block;

    /* “sem card” */
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;

    /* flutuação + sombra */
    filter: drop-shadow(0 22px 40px rgba(2, 6, 23, .18));
    animation: floatLogo 4.6s ease-in-out infinite;
}

/* aura/energia atrás da logo */
.brand-top::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 220px;
    border-radius: 999px;
    z-index: -1;
    opacity: .9;
    filter: blur(2px);
    transform: translateY(8px);

    background:
        radial-gradient(closest-side, rgba(30, 214, 255, .22), transparent 72%),
        radial-gradient(closest-side, rgba(255, 176, 32, .18), transparent 70%);
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ==========================================================================
   6) Cards / Painéis
   ========================================================================== */
.panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .86));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

/* brilho “ki” nas bordas do painel */
.panel::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius) + 2px);
    pointer-events: none;
    opacity: .55;

    background:
        radial-gradient(420px 220px at 15% 10%, rgba(30, 214, 255, .18), transparent 65%),
        radial-gradient(420px 240px at 90% 20%, rgba(255, 176, 32, .16), transparent 70%);
}

/* garante conteúdo acima do brilho */
.left,
.right {
    position: relative;
    z-index: 0;
}

.left>*,
.right>* {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   7) Painel esquerdo (texto / progresso)
   ========================================================================== */
.left {
    padding: 26px 26px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

/* Marca do card esquerdo (sem logo duplicada) */
.brand {
    display: flex;
    align-items: center;
    gap: 0;
    /* já removemos a imagem */
}

.left .brand img {
    display: none;
}

.brand .tag {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

/* título do hero: sem gradiente (leitura) */
.hero h1 {
    margin: 10px 0 8px;
    font-size: 28px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text);
    text-shadow: none;
}

/* texto do hero */
.hero p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 14px;
}

/* progresso */
.progress {
    margin-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, .10);
    padding-top: 16px;
}

.step-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.step-label,
.step-count {
    font-size: 12px;
    color: var(--muted);
    white-space: nowrap;
}

.bar {
    height: 11px;
    background: rgba(15, 23, 42, .05);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .10);
}

.bar>div {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    transition: width .25s ease;
    box-shadow: 0 0 14px rgba(30, 214, 255, .22);
    background: linear-gradient(90deg, var(--primary), var(--primary2), var(--accent));
}

/* bullets */
.bullets {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.bullet {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--muted);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 4px;
    flex: 0 0 auto;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    box-shadow: 0 0 10px rgba(255, 176, 32, .18), 0 0 12px rgba(30, 214, 255, .16);
}

/* rodapé do card esquerdo */
.footer-note {
    font-size: 12px;
    color: rgba(11, 18, 32, .58);
    border-top: 1px solid rgba(15, 23, 42, .10);
    padding-top: 14px;
}

/* ==========================================================================
   8) Painel direito (wizard)
   ========================================================================== */
.right {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.topbar {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(15, 23, 42, .10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .82));
}

.topbar h2 {
    margin: 0;
    font-size: 15px;
    letter-spacing: -0.01em;
}

.topbar small {
    color: rgba(11, 18, 32, .62);
    font-size: 12px;
}

.content {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* toast (erros/avisos) */
.toast {
    display: none;
    border: 1px solid rgba(239, 68, 68, .25);
    background: rgba(239, 68, 68, .08);
    color: rgba(127, 29, 29, 1);
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
}

/* pergunta */
.q {
    font-size: 20px;
    margin: 2px 0 0;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.qhint {
    margin: 0;
    color: rgba(11, 18, 32, .68);
    font-size: 13px;
    line-height: 1.45;
}

/* ==========================================================================
   9) Opções (cards clicáveis)
   ========================================================================== */
.options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 6px;
}

.opt {
    border: 1px solid rgba(15, 23, 42, .12);
    background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .88));
    border-radius: 14px;
    padding: 14px;
    cursor: pointer;
    text-align: left;
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    position: relative;
    overflow: hidden;
    transition: transform .08s ease, border-color .12s ease, box-shadow .12s ease;
}

/* “aura” no hover */
.opt::after {
    content: "";
    position: absolute;
    inset: -2px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .14s ease;

    background:
        radial-gradient(220px 120px at 20% 20%, rgba(30, 214, 255, .20), transparent 55%),
        radial-gradient(220px 120px at 85% 30%, rgba(255, 176, 32, .18), transparent 60%);
}

.opt:hover {
    border-color: rgba(59, 130, 246, .35);
    box-shadow: 0 12px 28px rgba(2, 6, 23, .12);
    transform: translateY(-2px);
}

.opt:hover::after {
    opacity: 1;
}

.opt .t {
    font-weight: 800;
    font-size: 14px;
}

.opt .s {
    font-size: 12px;
    color: rgba(11, 18, 32, .65);
    margin-top: 2px;
}

/* seta */
.chev {
    width: 10px;
    height: 10px;
    margin-left: auto;
    flex: 0 0 auto;
    transform: rotate(-45deg);
    border-right: 2px solid rgba(11, 18, 32, .45);
    border-bottom: 2px solid rgba(11, 18, 32, .45);
}

/* ==========================================================================
   10) Formulário
   ========================================================================== */
.fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 6px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-size: 12px;
    color: rgba(11, 18, 32, .68);
}

.input,
.textarea,
.select {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, .12);
    background: rgba(255, 255, 255, .92);
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: border-color .12s ease, box-shadow .12s ease;
}

.input::placeholder,
.textarea::placeholder {
    color: rgba(11, 18, 32, .42);
}

.textarea {
    min-height: 100px;
    resize: vertical;
    grid-column: 1 / -1;
}

.input:focus,
.textarea:focus,
.select:focus {
    border-color: rgba(30, 214, 255, .65);
    box-shadow: 0 0 0 3px rgba(30, 214, 255, .16);
}

/* ==========================================================================
   11) Resumo
   ========================================================================== */
.summary {
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .86);
    padding: 14px;
    display: grid;
    gap: 8px;
}

.summary .row {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(15, 23, 42, .16);
    padding-bottom: 8px;
}

.summary .row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.summary .k {
    color: rgba(11, 18, 32, .62);
    font-size: 12px;
}

.summary .v {
    font-size: 13px;
    font-weight: 800;
    text-align: right;
}

/* ==========================================================================
   12) Ações / Botões
   ========================================================================== */
.actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 8px;
}

.btn {
    min-width: 120px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, .12);
    background: rgba(255, 255, 255, .92);
    color: var(--text);
    font-weight: 800;
    cursor: pointer;
    transition: transform .08s ease, box-shadow .12s ease, border-color .12s ease;
}

.btn:hover {
    box-shadow: 0 12px 28px rgba(2, 6, 23, .12);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, .28);
}

/* Primário: sólido (sem gradiente), respeitando o tema */
.btn-primary {
    background: var(--primary2);
    color: #fff;
    border-color: rgba(59, 130, 246, .25);
    text-shadow: none;
    box-shadow: 0 14px 28px rgba(59, 130, 246, .18);
}

.btn-primary:hover {
    background: #2f6fe8;
    box-shadow: 0 18px 36px rgba(59, 130, 246, .22);
    transform: translateY(-2px);
}

/* Disabled geral (ex.: botão Voltar) */
.btn[disabled] {
    opacity: .55;
    cursor: not-allowed;
    box-shadow: none !important;
    transform: none !important;
}

/* Primário desabilitado NÃO fica “apagado” (só remove o glow) */
.btn-primary:disabled,
.btn-primary[disabled] {
    opacity: 1 !important;
    background: #2f6fe8 !important;
    /* 1 tom abaixo, ainda azul */
    color: #fff !important;
    box-shadow: none !important;
    transform: none !important;
    cursor: not-allowed;
    border-color: rgba(59, 130, 246, .25) !important;
}

/* Destaque opcional de palavra (se usar <span class="ki"> ) */
.ki {
    color: var(--primary2);
    font-weight: 900;
}

/* ==========================================================================
   13) Acessibilidade (foco visível)
   ========================================================================== */
.opt:focus-visible,
.btn:focus-visible,
.input:focus-visible,
.textarea:focus-visible {
    outline: 3px solid rgba(255, 176, 32, .32);
    outline-offset: 2px;
}

/* ==========================================================================
   14) Responsivo
   ========================================================================== */

/* até 980px: 1 coluna + conforto no padding */
@media (max-width: 980px) {
    .wrap {
        justify-content: flex-start;
        align-items: center;
        padding: 18px 14px 26px;
    }

    .layout {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }

    .panel {
        width: 100%;
        margin: 0 auto;
    }

    .options {
        grid-template-columns: 1fr;
    }

    .fields {
        grid-template-columns: 1fr;
    }

    .left,
    .content {
        padding-left: 18px;
        padding-right: 18px;
    }

    .topbar {
        padding-left: 18px;
        padding-right: 18px;
    }

    /* logo mais compacta */
    .brand-top {
        width: 100%;
        margin: 6px auto 12px;
    }

    .brand-top img {
        height: 92px;
        max-width: 92vw;
    }

    /* aura centralizada e responsiva */
    .brand-top::before {
        width: min(92vw, 420px);
        height: 160px;
        transform: translateY(10px);
        left: 50%;
        translate: -50% 0;
    }

    .hero h1 {
        font-size: 24px;
    }
}

/* mobile pequeno (320/360): ajustes finos */
@media (max-width: 360px) {
    .brand-top img {
        height: 82px;
    }

    .hero h1 {
        font-size: 22px;
    }
}

#toast.toast-custom {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 320px;
    max-width: 520px;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    overflow: hidden;
}

#toast.toast-custom.show {
    display: block;
}

#toast.toast-erro {
    background: #fff4f4;
    border: 1px solid #f1b0b7;
    color: #842029;
}

#toast.toast-sucesso {
    background: #f0fff4;
    border: 1px solid #a3cfbb;
    color: #0f5132;
}

.toast-custom-conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
}

.toast-custom-texto {
    flex: 1;
    font-size: 14px;
    line-height: 1.45;
}

.toast-custom-fechar {
    border: 0;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: inherit;
    opacity: .75;
    padding: 0;
    margin: 0;
}

.toast-custom-fechar:hover {
    opacity: 1;
}

/* ==========================================================================
   15) Home / Portfólio de projetos
   ========================================================================== */

.portfolio-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 22px;
    align-items: stretch;
}

.portfolio-hero-text,
.portfolio-hero-card,
.featured-projects,
.budget-call {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .86));
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.portfolio-hero-text::before,
.portfolio-hero-card::before,
.featured-projects::before,
.budget-call::before {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    opacity: .72;
    background:
        radial-gradient(560px 280px at 12% 0%, rgba(30, 214, 255, .16), transparent 68%),
        radial-gradient(520px 260px at 90% 8%, rgba(255, 176, 32, .15), transparent 70%),
        radial-gradient(460px 240px at 50% 110%, rgba(59, 130, 246, .10), transparent 72%);
}

.portfolio-hero-text > *,
.portfolio-hero-card > *,
.featured-projects > *,
.budget-call > * {
    position: relative;
    z-index: 1;
}

/* Hero principal */
.portfolio-hero-text {
    padding: 36px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary2);
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    box-shadow: 0 0 14px rgba(30, 214, 255, .24);
}

.portfolio-hero h1 {
    margin: 0 0 14px;
    max-width: 780px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: .98;
    letter-spacing: -0.055em;
    color: var(--text);
}

.portfolio-hero p {
    margin: 0;
    max-width: 700px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.portfolio-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

/* Card lateral do hero */
.portfolio-hero-card {
    padding: 26px;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-card-top {
    display: grid;
    gap: 4px;
}

.hero-card-top span {
    color: rgba(11, 18, 32, .62);
    font-size: 13px;
    font-weight: 700;
}

.hero-card-top strong {
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.hero-metrics {
    display: grid;
    gap: 12px;
}

.hero-metrics div {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(15, 23, 42, .10);
}

.hero-metrics strong {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
    color: var(--text);
}

.hero-metrics span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

/* Seção de projetos */
.featured-projects {
    padding: 32px;
}

.section-title {
    max-width: 820px;
    margin-bottom: 24px;
}

.section-title-row {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
}

.section-title h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: var(--text);
}

.section-title p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.portfolio-note {
    min-width: 240px;
    max-width: 300px;
    padding: 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(15, 23, 42, .10);
}

.portfolio-note strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 14px;
}

.portfolio-note span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

/* Grid fluido dos projetos */
.projects-showcase-fluid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.project-card-fluid {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, .11);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .87));
    box-shadow: 0 14px 34px rgba(2, 6, 23, .08);
    position: relative;
    overflow: hidden;
    transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.project-card-fluid::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -58px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: rgba(30, 214, 255, .10);
    pointer-events: none;
}

.project-card-fluid:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, .30);
    box-shadow: 0 18px 42px rgba(2, 6, 23, .12);
}

.project-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
}

.project-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(59, 130, 246, .10);
    color: var(--primary2);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.project-card-fluid h3,
.project-more-wide h3 {
    margin: 0 0 9px;
    color: var(--text);
    font-size: 23px;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.project-card-fluid p,
.project-more-wide p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.58;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
    padding-top: 16px;
    position: relative;
    z-index: 1;
}

.project-tags span {
    display: inline-flex;
    align-items: center;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(255, 176, 32, .12);
    color: rgba(11, 18, 32, .74);
    font-size: 11px;
    font-weight: 800;
}

/* Área visual dos cards */
.project-preview {
    height: 170px;
    padding: 18px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    background:
        radial-gradient(320px 180px at 10% 0%, rgba(30, 214, 255, .16), transparent 72%),
        radial-gradient(260px 160px at 90% 10%, rgba(255, 176, 32, .14), transparent 70%);
}

.project-preview-kitchen {
    background:
        radial-gradient(320px 180px at 10% 0%, rgba(30, 214, 255, .20), transparent 72%),
        radial-gradient(260px 160px at 90% 10%, rgba(255, 176, 32, .18), transparent 70%);
}

.project-preview-emove {
    background:
        radial-gradient(320px 180px at 10% 0%, rgba(59, 130, 246, .20), transparent 72%),
        radial-gradient(260px 160px at 90% 10%, rgba(30, 214, 255, .14), transparent 70%);
}

.project-preview-espeto {
    background:
        radial-gradient(320px 180px at 10% 0%, rgba(255, 90, 60, .18), transparent 72%),
        radial-gradient(260px 160px at 90% 10%, rgba(255, 176, 32, .16), transparent 70%);
}

.project-preview-france {
    background:
        radial-gradient(320px 180px at 10% 0%, rgba(255, 176, 32, .20), transparent 72%),
        radial-gradient(260px 160px at 90% 10%, rgba(255, 90, 60, .13), transparent 70%);
}

.project-preview-aurixis {
    background:
        radial-gradient(320px 180px at 10% 0%, rgba(30, 214, 255, .18), transparent 72%),
        radial-gradient(260px 160px at 90% 10%, rgba(59, 130, 246, .16), transparent 70%);
}

/* Placeholders visuais, depois podem virar imagens reais */
.preview-browser,
.preview-app,
.preview-pos,
.preview-menu,
.preview-docs {
    width: 100%;
    max-width: 270px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 18px 36px rgba(2, 6, 23, .10);
    overflow: hidden;
}

.preview-browser-bar {
    display: flex;
    gap: 5px;
    padding: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.preview-browser-bar span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .22);
}

.preview-kitchen-grid {
    padding: 14px;
}

.preview-line {
    height: 10px;
    border-radius: 999px;
    background: rgba(59, 130, 246, .18);
}

.preview-line.big {
    width: 72%;
    height: 15px;
    margin-bottom: 12px;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-bottom: 12px;
}

.preview-stats span {
    min-height: 44px;
    display: grid;
    place-items: center;
    padding: 6px;
    border-radius: 12px;
    background: rgba(255, 176, 32, .13);
    color: rgba(11, 18, 32, .70);
    font-size: 10px;
    font-weight: 900;
}

.preview-table {
    display: grid;
    gap: 7px;
}

.preview-table span,
.preview-app-list span,
.preview-docs span {
    height: 9px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .11);
}

.preview-app {
    padding: 16px;
}

.preview-app-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.preview-app-row strong {
    font-size: 15px;
}

.preview-app-row span {
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(34, 197, 94, .12);
    color: #166534;
    font-size: 10px;
    font-weight: 900;
}

.preview-app-list,
.preview-docs {
    display: grid;
    gap: 8px;
}

.preview-pos {
    padding: 15px;
}

.preview-pos-screen {
    padding: 14px;
    border-radius: 14px;
    background: rgba(15, 23, 42, .06);
    margin-bottom: 12px;
}

.preview-pos-screen span,
.preview-pos-screen strong {
    display: block;
}

.preview-pos-screen span {
    color: var(--muted);
    font-size: 11px;
    margin-bottom: 4px;
}

.preview-pos-screen strong {
    font-size: 16px;
}

.preview-pos-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

.preview-pos-buttons span {
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 90, 60, .13);
}

.preview-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    padding: 15px;
}

.preview-menu div {
    min-height: 88px;
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255, 176, 32, .20), rgba(255, 90, 60, .12));
    border: 1px solid rgba(15, 23, 42, .08);
}

.preview-docs {
    padding: 18px;
}

/* Variações por projeto */
.project-emove {
    background:
        radial-gradient(360px 180px at 0% 0%, rgba(59, 130, 246, .12), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .87));
}

.project-espeto {
    background:
        radial-gradient(360px 180px at 0% 0%, rgba(255, 90, 60, .11), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .87));
}

.project-france {
    background:
        radial-gradient(360px 180px at 0% 0%, rgba(255, 176, 32, .13), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .87));
}

.project-aurixis {
    background:
        radial-gradient(360px 180px at 0% 0%, rgba(30, 214, 255, .12), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .87));
}

/* Card final ocupando toda a linha */
.project-more-wide {
    grid-column: 1 / -1;
    min-height: auto;
    background:
        radial-gradient(520px 220px at 0% 0%, rgba(124, 58, 237, .13), transparent 72%),
        radial-gradient(420px 220px at 100% 100%, rgba(30, 214, 255, .13), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, .88));
}

.project-more-content {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    gap: 22px;
    align-items: center;
    padding: 26px;
    position: relative;
    z-index: 1;
}

.project-more-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-more-list span {
    display: inline-flex;
    align-items: center;
    padding: 11px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(15, 23, 42, .09);
    color: rgba(11, 18, 32, .76);
    font-size: 13px;
    font-weight: 900;
}

/* Chamada para orçamento */
.budget-call {
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.budget-call h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.budget-call p {
    margin: 0;
    max-width: 720px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.budget-layout {
    scroll-margin-top: 20px;
}

/* Responsivo */
@media (max-width: 1080px) {
    .portfolio-hero,
    .projects-showcase-fluid {
        grid-template-columns: 1fr 1fr;
    }

    .project-more-wide {
        grid-column: 1 / -1;
    }

    .section-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .portfolio-note {
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 980px) {
    .portfolio-hero,
    .featured-projects,
    .budget-call,
    .budget-layout {
        max-width: 560px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .portfolio-hero {
        grid-template-columns: 1fr;
    }

    .budget-call {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .projects-showcase-fluid {
        grid-template-columns: 1fr;
    }

    .project-more-wide {
        grid-column: auto;
    }

    .project-more-content {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

@media (max-width: 560px) {
    .portfolio-hero-text,
    .portfolio-hero-card,
    .featured-projects,
    .budget-call {
        padding: 20px;
        border-radius: 16px;
    }

    .portfolio-actions {
        flex-direction: column;
    }

    .portfolio-actions .btn,
    .budget-call .btn {
        width: 100%;
        text-align: center;
    }

    .portfolio-hero h1 {
        font-size: 34px;
    }

    .project-preview {
        height: 150px;
        padding: 14px;
    }

    .project-card-content {
        padding: 18px;
    }

    .preview-menu div {
        min-height: 70px;
    }
}

/* ==========================================================================
   16) Compartilhamento
   ========================================================================== */

.share-strip {
    width: 100%;
    padding: 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        radial-gradient(520px 240px at 0% 0%, rgba(30, 214, 255, .15), transparent 70%),
        radial-gradient(420px 220px at 100% 0%, rgba(255, 176, 32, .15), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .86));
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.share-strip::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: rgba(59, 130, 246, .10);
    pointer-events: none;
}

.share-strip-text,
.share-actions {
    position: relative;
    z-index: 1;
}

.share-strip h2 {
    margin: 0 0 8px;
    max-width: 720px;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--text);
}

.share-strip p {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.share-actions {
    min-width: 360px;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 9px;
}

.share-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 13px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .88);
    color: var(--text);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(2, 6, 23, .07);
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 34px rgba(2, 6, 23, .12);
    border-color: rgba(59, 130, 246, .22);
}

.share-whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

.share-linkedin {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
}

.share-facebook {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
}

.share-x {
    background: linear-gradient(135deg, #111827, #020617);
    color: #fff;
}

.share-copy {
    background: linear-gradient(135deg, #ffb020, #ff8a00);
    color: #0b1220;
}

@media (max-width: 980px) {
    .share-strip {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .share-actions {
        min-width: 0;
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .share-strip {
        padding: 20px;
        border-radius: 16px;
    }

    .share-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .share-btn {
        width: 100%;
    }
}

/* ==========================================================================
   17) Processo de desenvolvimento
   ========================================================================== */

.process-section {
    width: 100%;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        radial-gradient(520px 260px at 0% 0%, rgba(30, 214, 255, .13), transparent 70%),
        radial-gradient(420px 220px at 100% 0%, rgba(255, 176, 32, .12), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .86));
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.process-section::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: rgba(59, 130, 246, .10);
    pointer-events: none;
}

.process-section > * {
    position: relative;
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.process-grid > div {
    min-height: 190px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .74);
    box-shadow: 0 12px 30px rgba(2, 6, 23, .06);
    transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.process-grid > div:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, .24);
    box-shadow: 0 18px 42px rgba(2, 6, 23, .10);
}

.process-grid strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(59, 130, 246, .16), rgba(30, 214, 255, .18));
    color: var(--primary2);
    font-size: 13px;
    font-weight: 900;
}

.process-grid h3 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.58;
}

/* ==========================================================================
   18) WhatsApp flutuante
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 15px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(22, 163, 74, .30);
    border: 1px solid rgba(255, 255, 255, .30);
    transition: transform .14s ease, box-shadow .14s ease;
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    color: #fff;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 52px rgba(22, 163, 74, .36);
}

/* ==========================================================================
   19) Preview ANSI / Rotas
   ========================================================================== */

.project-ansi {
    background:
        radial-gradient(360px 180px at 0% 0%, rgba(34, 197, 94, .13), transparent 72%),
        radial-gradient(280px 160px at 100% 0%, rgba(30, 214, 255, .12), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .87));
}

.project-preview-ansi {
    background:
        radial-gradient(320px 180px at 10% 0%, rgba(34, 197, 94, .18), transparent 72%),
        radial-gradient(260px 160px at 90% 10%, rgba(30, 214, 255, .16), transparent 70%);
}

.preview-route {
    width: 100%;
    max-width: 270px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 18px 36px rgba(2, 6, 23, .10);
    overflow: hidden;
}

.preview-route-map {
    height: 108px;
    position: relative;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, .05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 23, 42, .05) 1px, transparent 1px);
    background-size: 28px 28px;
}

.route-point {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 999px;
    background: #22c55e;
    border: 3px solid #fff;
    box-shadow: 0 8px 18px rgba(34, 197, 94, .28);
    z-index: 2;
}

.point-a {
    left: 34px;
    top: 68px;
}

.point-b {
    left: 118px;
    top: 34px;
}

.point-c {
    right: 36px;
    top: 64px;
}

.route-line {
    position: absolute;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(34, 197, 94, .72), rgba(30, 214, 255, .72));
    transform-origin: left center;
    z-index: 1;
}

.line-1 {
    width: 92px;
    left: 45px;
    top: 65px;
    transform: rotate(-22deg);
}

.line-2 {
    width: 92px;
    left: 130px;
    top: 43px;
    transform: rotate(21deg);
}

.preview-route-info {
    padding: 13px 15px 15px;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.preview-route-info strong {
    display: block;
    margin-bottom: 3px;
    color: var(--text);
    font-size: 14px;
}

.preview-route-info span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

/* Ajustes finais responsivos */
@media (max-width: 1080px) {
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .process-section {
        max-width: 560px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 560px) {
    .process-section {
        padding: 20px;
        border-radius: 16px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-grid > div {
        min-height: auto;
    }

    .whatsapp-float {
        left: auto;
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        min-height: 54px;
        padding: 0;
        border-radius: 999px;
        font-size: 0;
        gap: 0;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-icon {
        width: 27px;
        height: 27px;
    }

    .share-copy {
        grid-column: 1 / -1;
    }
}

/* ==========================================================================
   20) Faixa de confiança
   ========================================================================== */

.trust-strip {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        radial-gradient(520px 220px at 0% 0%, rgba(30, 214, 255, .12), transparent 70%),
        radial-gradient(420px 220px at 100% 0%, rgba(255, 176, 32, .11), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .84));
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.trust-strip::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -90px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(59, 130, 246, .09);
    pointer-events: none;
}

.trust-item {
    min-height: 86px;
    padding: 15px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(15, 23, 42, .09);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 24px rgba(2, 6, 23, .05);
}

.trust-item::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    box-shadow: 0 0 14px rgba(30, 214, 255, .20);
}

.trust-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.1;
}

.trust-item span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

/* ==========================================================================
   21) Para quem é
   ========================================================================== */

.fit-section {
    width: 100%;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        radial-gradient(540px 260px at 0% 0%, rgba(30, 214, 255, .13), transparent 70%),
        radial-gradient(460px 240px at 100% 0%, rgba(255, 176, 32, .12), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .86));
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.fit-section::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    background: rgba(59, 130, 246, .10);
    pointer-events: none;
}

.fit-section > * {
    position: relative;
    z-index: 1;
}

.fit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.fit-card {
    min-height: 220px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .75);
    box-shadow: 0 12px 30px rgba(2, 6, 23, .06);
    transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.fit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, .24);
    box-shadow: 0 18px 42px rgba(2, 6, 23, .10);
}

.fit-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(59, 130, 246, .16), rgba(30, 214, 255, .18));
    color: var(--primary2);
    font-size: 13px;
    font-weight: 900;
}

.fit-card h3 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.fit-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.58;
}

/* Responsivo das novas seções */
@media (max-width: 1080px) {
    .trust-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .trust-strip,
    .fit-section {
        max-width: 560px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .trust-strip {
        grid-template-columns: 1fr;
    }

    .fit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .trust-strip,
    .fit-section {
        padding: 20px;
        border-radius: 16px;
    }

    .trust-item {
        min-height: auto;
    }

    .fit-card {
        min-height: auto;
    }
}

/* ==========================================================================
   22) Prints reais dos projetos
   ========================================================================== */

.project-preview-image {
    height: 190px;
    padding: 0;
    background: rgba(255, 255, 255, .75);
    overflow: hidden;
}

.project-preview-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform .35s ease, filter .35s ease;
}

.project-card-fluid:hover .project-preview-image img {
    transform: scale(1.045);
    filter: saturate(1.06) contrast(1.03);
}

@media (max-width: 560px) {
    .project-preview-image {
        height: 180px;
    }
}