/* =========================================================
   DESENVOLVIMENTO — SEÇÃO DE ENTREGAS
========================================================= */
.dev-deliver-section {
    position: relative;
    padding: 105px 0 115px;
    overflow: hidden;
    background:
        radial-gradient(950px 520px at 10% 12%, rgba(255, 193, 7, 0.09), transparent 62%),
        radial-gradient(820px 440px at 88% 20%, rgba(0, 183, 177, 0.08), transparent 60%),
        linear-gradient(180deg, #f8f5ef 0%, #f2eee7 100%);
}

.dev-deliver-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
        repeating-linear-gradient(
            90deg,
            rgba(17, 19, 24, 0.012) 0,
            rgba(17, 19, 24, 0.012) 1px,
            transparent 1px,
            transparent 90px
        );
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 92%);
}

.dev-deliver-section .container-p {
    position: relative;
    z-index: 1;
}

.dev-deliver-grid.v2 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 22px;
    margin-top: 50px;
}

/* CARD BASE */
.dev-deliver-card {
    position: relative;
    min-height: 120px;
    padding: 24px 24px 22px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.68));
    border: 1px solid rgba(17, 19, 24, 0.07);
    box-shadow:
        0 14px 34px rgba(17, 19, 24, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.dev-deliver-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 193, 7, 0.24);
    box-shadow:
        0 24px 48px rgba(17, 19, 24, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.93), rgba(255,255,255,0.82));
}

.dev-deliver-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 193, 7, 0.18),
        rgba(255, 255, 255, 0.02) 45%,
        rgba(0, 183, 177, 0.12)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.dev-deliver-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    top: -60px;
    right: -50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.11), transparent 70%);
    opacity: 0.65;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.dev-deliver-card:hover::after {
    transform: scale(1.08);
    opacity: 0.95;
}

/* CARD GRANDE */
.dev-deliver-card--highlight {
    grid-row: span 2;
    display: flex;
    min-height: 100%;
    padding: 38px;
    background:
        radial-gradient(420px 220px at 80% 18%, rgba(255, 193, 7, 0.12), transparent 60%),
        linear-gradient(135deg, #0d1016 0%, #151922 52%, #1b202a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 20px 55px rgba(10, 12, 18, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dev-deliver-card--highlight:hover {
    border-color: rgba(255, 193, 7, 0.24);
    background:
        radial-gradient(420px 220px at 80% 18%, rgba(255, 193, 7, 0.16), transparent 60%),
        linear-gradient(135deg, #0b0e14 0%, #141922 52%, #1a2029 100%);
}

.dev-deliver-card--highlight::after {
    width: 260px;
    height: 260px;
    top: auto;
    right: -80px;
    bottom: -110px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.16), transparent 70%);
    opacity: 1;
}

.dev-deliver-card--highlight .dev-deliver-card__content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.dev-deliver-card--highlight .dev-deliver-card__content::before {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 999px;
    margin-bottom: 22px;
    background: linear-gradient(90deg, #ffc107, rgba(255, 193, 7, 0.25));
}

.dev-deliver-card--highlight h3 {
    margin: 0 0 14px;
    font-size: clamp(1.45rem, 2.2vw, 1.95rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #ffffff;
    font-weight: 800;
}

.dev-deliver-card--highlight p {
    margin: 0;
    /* max-width: 34ch; */
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.8;
}

/* CARDS PEQUENOS */
.dev-deliver-card:not(.dev-deliver-card--highlight) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dev-deliver-card:not(.dev-deliver-card--highlight) h4 {
    position: relative;
    margin: 0 0 10px;
    padding-right: 28px;
    font-size: 1.02rem;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111318;
}

.dev-deliver-card:not(.dev-deliver-card--highlight) h4::after {
    content: "↗";
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.95rem;
    color: rgba(17, 19, 24, 0.28);
    transition: transform 0.35s ease, color 0.35s ease;
}

.dev-deliver-card:hover:not(.dev-deliver-card--highlight) h4::after {
    transform: translate(2px, -2px);
    color: rgba(255, 193, 7, 0.9);
}

.dev-deliver-card:not(.dev-deliver-card--highlight) p {
    margin: 0;
    max-width: 24ch;
    font-size: 0.92rem;
    line-height: 1.72;
    color: rgba(17, 19, 24, 0.64);
}

.dev-deliver-card:not(.dev-deliver-card--highlight) > * {
    position: relative;
    z-index: 2;
}

/* DETALHE INFERIOR */
.dev-deliver-card:not(.dev-deliver-card--highlight) .dev-deliver-card__mini-line {
    width: 38px;
    height: 3px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.95), rgba(255, 193, 7, 0.18));
}



.dev-deliver-card:not(.dev-deliver-card--highlight)::selection {
    background: rgba(255, 193, 7, 0.18);
}

/* RESPONSIVO */
@media (max-width: 980px) {
    .dev-deliver-grid.v2 {
        grid-template-columns: 1fr 1fr;
    }

    .dev-deliver-card--highlight {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .dev-deliver-section {
        padding: 82px 0 92px;
    }

    .dev-deliver-grid.v2 {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 34px;
    }

    .dev-deliver-card {
        min-height: 120px;
        padding: 22px 20px;
        border-radius: 22px;
    }

    .dev-deliver-card--highlight {
        min-height: 240px;
        padding: 28px 24px;
    }

    .dev-deliver-card--highlight p,
    .dev-deliver-card:not(.dev-deliver-card--highlight) p {
        max-width: 100%;
    }
}


.dev-deliver-card__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.dev-deliver-card__mini-line {
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(255, 193, 7, 0.95),
        rgba(255, 193, 7, 0.20)
    );
    position: relative;
    z-index: 2;
}

/* =================================================
   DESENVOLVIMENTO — TIPOS DE DESENVOLVIMENTO
================================================= */

.dev-types-section {
    position: relative;
    padding: 95px 0 105px;
    overflow: hidden;
    background:
        radial-gradient(900px 420px at 12% 10%, rgba(255, 193, 7, 0.08), transparent 60%),
        radial-gradient(780px 380px at 88% 22%, rgba(0, 183, 177, 0.07), transparent 60%),
        linear-gradient(180deg, #f6f4ef 0%, #f3f1eb 100%);
}

.dev-types-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
}

.dev-types-section .container-p {
    position: relative;
    z-index: 1;
}

.dev-types-section__subtitle {
    max-width: 760px;
    margin: 14px auto 0;
}

.dev-types-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
}

.dev-type-card {
    position: relative;
    min-height: 300px;
    padding: 24px 24px 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 19, 24, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 16px 40px rgba(17, 19, 24, 0.06);
    overflow: hidden;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.dev-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(17, 19, 24, 0.10);
    border-color: rgba(255, 193, 7, 0.24);
    background: rgba(255, 255, 255, 0.88);
}

.dev-type-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 193, 7, 0.18),
        rgba(255, 255, 255, 0),
        rgba(0, 183, 177, 0.10)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.dev-type-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.dev-type-card__number {
    font-size: 0.85rem;
    font-weight: 800;
    color: rgba(17, 19, 24, 0.42);
    letter-spacing: 0.08em;
}

.dev-type-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.18);
    color: #111318;
    font-size: 1.25rem;
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.dev-type-card:hover .dev-type-card__icon {
    transform: scale(1.06) rotate(-3deg);
    background: rgba(255, 193, 7, 0.20);
    border-color: rgba(255, 193, 7, 0.35);
}

.dev-type-card__body h3 {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111318;
    margin-bottom: 10px;
}

.dev-type-card__body p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(17, 19, 24, 0.68);
    max-width: 30ch;
}

.dev-type-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

.dev-type-card__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(17, 19, 24, 0.045);
    border: 1px solid rgba(17, 19, 24, 0.06);
    color: rgba(17, 19, 24, 0.75);
    font-size: 0.78rem;
    font-weight: 700;
}

.dev-type-card__glow {
    position: absolute;
    width: 220px;
    height: 220px;
    right: -70px;
    bottom: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.18), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.dev-type-card:hover .dev-type-card__glow {
    opacity: 1;
    transform: scale(1.08);
}

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

@media (max-width: 768px) {
    .dev-types-section {
        padding: 80px 0 88px;
    }

    .dev-types-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 32px;
    }

    .dev-type-card {
        min-height: unset;
        padding: 22px 20px 20px;
    }

    .dev-type-card__body p {
        max-width: 100%;
    }
}



/* =========================================================
   DESENVOLVIMENTO — SHOWCASE DE PROJETOS
========================================================= */

.dev-showcase {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(700px 320px at 15% 10%, rgba(255, 193, 7, 0.10), transparent 60%),
        radial-gradient(700px 320px at 85% 90%, rgba(120, 85, 255, 0.08), transparent 60%),
        #11151b;
    overflow: hidden;
}

.dev-showcase__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}

.dev-showcase__head > div:first-child {
    max-width: 1300px;
}

.dev-showcase__head .sx-storyServices__title,
.dev-showcase__head .sx-storyServices__subtitle {
    color: #fff;
}

.dev-showcase__head .sx-storyServices__subtitle {
    color: var(--hero-muted);
}


.dev-showcase__actions {
    display: flex;
    gap: 12px;
}

.dev-showcase__nav {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(17, 19, 24, 0.08);
    background: rgba(255, 176, 6, 0.72);
    border-radius: 16px;
    color: #111318;
    font-size: 1.1rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    box-shadow: 0 12px 24px rgba(17, 19, 24, 0.04);
}

.dev-showcase__nav:hover {
    transform: translateY(-2px);
    background: rgba(255, 193, 7, 0.446);
    border-color: rgba(120, 90, 0, 0.625);
}

.dev-showcase__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.dev-showcase__track::-webkit-scrollbar {
    display: none;
}

.dev-project-card {
    position: relative;
    flex: 0 0 min(78vw, 760px);
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    scroll-snap-align: start;
    background: rgba(255,255,255,0.58);
    border: 1px solid rgba(17, 19, 24, 0.08);
    box-shadow: 0 18px 50px rgba(17, 19, 24, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.dev-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(17, 19, 24, 0.12);
    border-color: rgba(255, 193, 7, 0.22);
}

.dev-project-card__media {
    position: absolute;
    inset: 0;
}

.dev-project-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.7s ease;
}

.dev-project-card:hover .dev-project-card__media img {
    transform: scale(1.04);
}

.dev-project-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.20) 35%, rgba(0,0,0,0.72) 100%);
    z-index: 1;
}

.dev-project-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 32px;
    color: #fff;
}

.dev-project-card__meta {
    margin-bottom: 10px;
}

.dev-project-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dev-project-card h3 {
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 2.2vw, 2.2rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.dev-project-card p {
    margin: 0;
    max-width: 620px;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    font-size: 0.98rem;
}

.dev-project-card__footer {
    margin-top: 22px;
}

.dev-project-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: rgba(255, 193, 7, 0.94);
    color: #111318;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.25s ease, background 0.25s ease;
}

.dev-project-card__btn:hover {
    transform: translateY(-2px);
    background: #ffd84d;
    color: #111318;
}

/* responsivo */
@media (max-width: 992px) {
    .dev-project-card {
        flex-basis: 88vw;
        height: 440px;
    }
}

@media (max-width: 768px) {
    .dev-showcase {
        padding: 72px 0;
    }

    .dev-showcase__head {
        margin-bottom: 28px;
    }

    .dev-project-card {
        flex-basis: 92vw;
        height: 400px;
        border-radius: 24px;
    }

    .dev-project-card__content {
        padding: 24px;
    }

    .dev-project-card p {
        font-size: 0.92rem;
    }
}


/* =========================================================
   DESENVOLVIMENTO — MODAL DE PROJETO
========================================================= */

.dev-modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 20px;
    background: rgba(5, 8, 12, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.dev-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dev-modal__dialog {
    position: relative;
    width: min(1180px, 100%);
    height: min(92vh, 820px);
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(700px 320px at 15% 10%, rgba(255, 193, 7, 0.10), transparent 60%),
        radial-gradient(700px 320px at 85% 90%, rgba(120, 85, 255, 0.08), transparent 60%),
        #11151b;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    transform: translateY(18px) scale(0.98);
    transition: transform 0.35s ease;
}

.dev-modal.is-open .dev-modal__dialog {
    transform: translateY(0) scale(1);
}

.dev-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.dev-modal__close:hover {
    transform: scale(1.04);
    background: rgba(255, 193, 7, 0.12);
    border-color: rgba(255, 193, 7, 0.22);
}

.dev-modal__media {
    position: relative;
    min-height: 520px;
    background: #0f1115;
    overflow-y: auto;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.dev-modal__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top;
}

.dev-modal__gallery img {
    display: block;
    width: 100%;
    height: auto;
}

.dev-modal__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 42px 36px 34px;
    color: #fff;
    overflow-y: auto;
}

.dev-modal__tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.dev-modal__content h3 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 2.2vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
}

.dev-modal__content p {
    margin: 0;
    color: rgba(233, 236, 245, 0.78);
    line-height: 1.85;
    font-size: 0.98rem;
}

.dev-modal__actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dev-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    background: rgba(255, 193, 7, 0.94);
    color: #111318;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.25s ease, background 0.25s ease;
}

.dev-modal__btn:hover {
    transform: translateY(-2px);
    background: #ffd84d;
    color: #111318;
}

body.dev-modal-open {
    overflow: hidden;
}

@media (max-width: 992px) {
    .dev-modal__dialog {
        grid-template-columns: 1fr;
        max-height: 94vh;
    }

    .dev-modal__media {
        min-height: 280px;
        max-height: 42vh;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .dev-modal__content {
        padding: 28px 22px 24px;
    }
}

.dev-modal__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0 22px;
}

.dev-modal__metaItemSection{
    display: flex;
    justify-content: start;
    gap: 10px;
}

.dev-modal__metaItem {
    padding: 14px 14px 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    margin: 15px 0;
}

.dev-modal__metaLabel {
    display: block;
    margin-bottom: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(233, 236, 245, 0.52);
    font-weight: 700;
}

.dev-modal__metaItem strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .dev-modal__meta {
        grid-template-columns: 1fr;
    }
}

.dev-modal__media {
    position: relative;
    height: 100%;
    min-height: 0;
    background: #0f1115;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
}

.dev-modal__mainImageWrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* scrollbar mais premium */
.dev-modal__mainImageWrap::-webkit-scrollbar {
    width: 8px;
}

.dev-modal__mainImageWrap::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.18);
    border-radius: 999px;
}

.dev-modal__mainImageWrap::-webkit-scrollbar-track {
    background: transparent;
}


.dev-modal__thumbs {
    display: flex;
    gap: 10px;
    padding: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    overflow-x: auto;
    scrollbar-width: thin;
}

.dev-modal__thumbs::-webkit-scrollbar {
    height: 8px;
}

.dev-modal__thumbs::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.14);
    border-radius: 999px;
}

.dev-modal__thumb {
    flex: 0 0 92px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
    opacity: 0.75;
}

.dev-modal__thumb:hover {
    transform: translateY(-2px);
    opacity: 1;
    border-color: rgba(255, 193, 7, 0.25);
}

.dev-modal__thumb.is-active {
    opacity: 1;
    border-color: rgba(255, 193, 7, 0.45);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.12);
}

.dev-modal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .dev-modal__media {
        min-height: 280px;
        max-height: 46vh;
    }

    .dev-modal__thumb {
        flex-basis: 78px;
        height: 64px;
    }
}


/* =========================================================
   DESENVOLVIMENTO — SEÇÃO DE PROCESSO
========================================================= */

.dev-process-section--horizontal {
    position: relative;
    padding: 60px 0 150px 0;
    overflow: hidden;
    background:
        radial-gradient(920px 500px at 8% 18%, rgba(255, 193, 7, 0.08), transparent 60%),
        radial-gradient(780px 420px at 92% 22%, rgba(0, 183, 177, 0.08), transparent 60%),
        linear-gradient(180deg, #0a0d13 0%, #11151d 50%, #0b0e14 100%);
}

.dev-process-section--horizontal::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.03) 0,
            rgba(255,255,255,0.03) 1px,
            transparent 1px,
            transparent 88px
        );
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 95%);
}

.dev-process-section--horizontal .container-p {
    position: relative;
    z-index: 1;
}

.dev-process-head {
    max-width: 860px;
    margin: 0 auto 56px;
}

.dev-process-head .sx-storyServices__title,
.dev-process-head .sx-storyServices__subtitle {
    color: #fff;
}

.dev-process-head__subtitle {
    max-width: 720px;
    margin: 14px auto 0;
    color: rgba(255, 255, 255, 0.72) !important;
}

/* TIMELINE */
.dev-process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.dev-process-timeline__track {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 28px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(255, 193, 7, 0.55),
        rgba(255, 255, 255, 0.14),
        rgba(0, 183, 177, 0.38)
    );
    pointer-events: none;
}

/* ITEM */
.dev-process-item {
    position: relative;
    z-index: 1;
}

.dev-process-item:hover .dev-process-item__dot {
    transform: scale(1.05);
    border-color: rgba(255, 193, 7, 0.55);
    color: #ffc107;
}

.dev-process-item:hover .dev-process-item__card {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 193, 7, 0.18);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

/* NÚMERO / PONTO */
.dev-process-item__dot {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #11151d;
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow:
        0 0 0 8px rgba(10, 13, 19, 1),
        0 10px 25px rgba(0, 0, 0, 0.18);
    transition: all 0.35s ease;
}

/* CARD */
.dev-process-item__card {
    position: relative;
    min-height: 220px;
    padding: 20px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    overflow: hidden;
}

.dev-process-item__card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 193, 7, 0.14),
        rgba(255, 255, 255, 0.02),
        rgba(0, 183, 177, 0.10)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.dev-process-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    transition: all 0.35s ease;
}

.dev-process-item:hover .dev-process-item__icon {
    background: rgba(255, 193, 7, 0.12);
    border-color: rgba(255, 193, 7, 0.28);
    color: #ffc107;
    transform: translateY(-2px);
}

.dev-process-item__card strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.dev-process-item__card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ÚLTIMO DESTAQUE */
.dev-process-item--highlight .dev-process-item__dot {
    border-color: rgba(255, 193, 7, 0.35);
    color: #ffc107;
}

.dev-process-item--highlight .dev-process-item__card {
    background:
        radial-gradient(220px 120px at 80% 20%, rgba(255, 193, 7, 0.12), transparent),
        rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 193, 7, 0.20);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.dev-process-item--highlight .dev-process-item__icon {
    background: rgba(255, 193, 7, 0.16);
    border-color: rgba(255, 193, 7, 0.30);
    color: #ffc107;
}

.dev-process-item--highlight .dev-process-item__card strong {
    color: #ffc107;
}

/* TABLET */
@media (max-width: 1200px) {
    .dev-process-timeline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 22px;
    }

    .dev-process-timeline__track {
        display: none;
    }

    .dev-process-item__card {
        min-height: 200px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .dev-process-section--horizontal {
        padding: 82px 0 92px;
    }

    .dev-process-head {
        margin-bottom: 34px;
    }

    .dev-process-timeline {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }

    .dev-process-timeline::-webkit-scrollbar {
        height: 6px;
    }

    .dev-process-timeline::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.14);
        border-radius: 999px;
    }

    .dev-process-timeline__track {
        display: none;
    }

    .dev-process-item {
        min-width: 260px;
        scroll-snap-align: start;
    }

    .dev-process-item__card {
        min-height: 200px;
        padding: 18px 16px;
        border-radius: 20px;
    }

    .dev-process-item__dot {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
        box-shadow:
            0 0 0 6px rgba(10, 13, 19, 1),
            0 10px 25px rgba(0, 0, 0, 0.18);
    }
}

/* =========================================================
   DESENVOLVIMENTO — SEÇÃO DE TIPOS DE SOLUÇÕES
========================================================= */

.dev-types-section {
    padding: 90px 0;
    background: var(--paper);
}

.dev-types-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.dev-type-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(17, 19, 24, 0.06);
    box-shadow: 0 12px 28px rgba(17, 19, 24, 0.04);
}

.dev-type-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
}

.dev-type-card p {
    margin: 0;
    color: var(--muted-70);
    line-height: 1.75;
    font-size: 0.94rem;
}

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

@media (max-width: 768px) {
    .dev-types-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   DESENVOLVIMENTO — SEÇÃO DE CALL TO ACTION
========================================================= */
.dev-cta-section {
    position: relative;
    padding: 95px 0 0 0;
    overflow: hidden;
    background:
        radial-gradient(900px 500px at 12% 10%, rgba(255, 193, 7, 0.10), transparent 60%),
        radial-gradient(700px 420px at 88% 18%, rgba(0, 183, 177, 0.08), transparent 60%),
        linear-gradient(180deg, #f6f4ef 0%, #f2efe9 100%);
}

.dev-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0)),
        repeating-linear-gradient(
            90deg,
            rgba(17, 19, 24, 0.015) 0,
            rgba(17, 19, 24, 0.015) 1px,
            transparent 1px,
            transparent 90px
        );
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 95%);
}

.dev-cta-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    gap: 28px;
    flex-wrap: wrap;
}

.dev-cta-box::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -90px;
    bottom: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.18), transparent 70%);
    pointer-events: none;
    opacity: 0.7;
}

/* CONTEÚDO */
.dev-cta-content {
    max-width: 560px;
}

.dev-cta-content h2 {
    margin: 16px 0 14px;
    color: #111318;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.dev-cta-content p {
    margin: 0;
    color: rgba(17, 19, 24, 0.68);
    line-height: 1.8;
    font-size: 1rem;
}

.cta-midea-content img{
    width: auto;
    height: 440px;
}

/* BADGE */
.dev-cta-content .sx-badge {
    background: rgba(17, 19, 24, 0.06);
    border: 1px solid rgba(17, 19, 24, 0.10);
    color: rgba(17, 19, 24, 0.75);
}

/* BOTÕES */
.dev-cta-box .sx-btn--primary {
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.25);
}

.dev-cta-box .sx-btn--ghost {
    border-color: rgba(17, 19, 24, 0.15);
    color: #111318;
}

.dev-cta-box .sx-btn--ghost:hover {
    background: rgba(17, 19, 24, 0.05);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .dev-cta-section {
        padding: 80px 0 0 0 0;
    }

    .dev-cta-box {
        padding: 28px 0 0 0;
        border-radius: 24px;
    }

    .dev-cta-content h2 {
        font-size: 1.6rem;
    }

    .dev-cta-box .sx-hero__ctas {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .dev-cta-box .sx-btn {
        width: 100%;
        text-align: center;
    }
}
