:root {
    color-scheme: light;
    --front-font-family: "Inter", "Segoe UI", Arial, sans-serif;
    --front-color-ink: #101b35;
    --front-color-text: #344466;
    --front-color-muted: #6c7890;
    --front-color-cyan: #03a9cc;
    --front-color-cyan-dark: #018cab;
    --front-color-red: #ff2c32;
    --front-color-orange: #ff6a16;
    --front-color-white: #ffffff;
    --front-color-border: #dce8f1;
    --front-color-soft: #f6fbfe;
    --front-shadow-card: 0 12px 30px rgba(17, 38, 71, .09);
    --front-shadow-soft: 0 20px 50px rgba(3, 169, 204, .12);
    --front-radius-card: 8px;
    --front-font-size-body: 16px;
    --front-font-size-small: 13px;
    --front-font-size-eyebrow: 12px;
    --front-font-size-card-title: 14px;
    --front-font-size-section-title: 32px;
    --front-font-size-hero-title: 36px;
    --front-font-size-page-title: 40px;
    --front-line-height-tight: 1.08;
    --front-line-height-hero-title: 1.05;
    --front-line-height-text: 1.55;
    --front-container: 1190px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--front-color-white);
    color: var(--front-color-text);
    font-family: var(--front-font-family);
    font-size: var(--front-font-size-body);
    font-weight: 500;
    letter-spacing: 0;
}

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

.site-shell {
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(4, 169, 204, .04), transparent 30%),
        linear-gradient(260deg, rgba(255, 106, 22, .04), transparent 28%);
}

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

.site-header {
    position: relative;
    z-index: 20;
    padding: 22px 0 8px;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand-logo {
    width: 120px;
    height: auto;
}

.main-nav {
    display: none;
}

.main-nav a {
    color: var(--front-color-ink);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.main-nav a.active {
    color: var(--front-color-cyan);
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--front-color-cyan);
}

.talk-button,
.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 6px;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease;
}

.talk-button:hover,
.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-1px);
}

.talk-button {
    gap: 8px;
    border: 0;
    padding: 0 24px;
    background: linear-gradient(90deg, var(--front-color-orange), var(--front-color-red));
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(255, 76, 30, .28);
}

.header-talk {
    display: none;
}

.menu-toggle {
    justify-self: end;
    display: inline-flex;
    width: 38px;
    height: 34px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 34px;
    height: 3px;
    background: var(--front-color-ink);
    border-radius: 10px;
}

.mobile-nav-head,
.mobile-nav-backdrop {
    display: none;
}

.hero-section {
    padding: 16px 0 8px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.section-pill {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    align-self: flex-start;
    flex: 0 0 auto;
    width: fit-content;
    max-width: 100%;
    min-height: 30px;
    padding: 0 13px;
    border: 1px solid rgba(3, 169, 204, .55);
    border-radius: 6px;
    color: var(--front-color-cyan);
    font-size: var(--front-font-size-eyebrow);
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .78);
}

.hero-content h1 {
    margin: 16px 0 12px;
    color: var(--front-color-ink);
    font-size: var(--front-font-size-hero-title);
    font-weight: 700;
    line-height: var(--front-line-height-hero-title);
    letter-spacing: 0;
}

.projects-hero-copy h1,
.project-title-row h1,
.article-hero h1,
.articles-hero-copy h1,
.services-hero-copy h1,
.service-hero-copy h1,
.not-found-copy h1,
.not-found-copy h2 {
    font-size: var(--front-font-size-hero-title);
    line-height: var(--front-line-height-hero-title);
}

.hero-content h1 strong {
    color: var(--front-color-red);
    font-weight: 700;
}

.hero-content p {
    width: min(100%, 455px);
    margin: 0;
    color: var(--front-color-text);
    font-size: clamp(16px, 3.9vw, 20px);
    font-weight: 500;
    line-height: var(--front-line-height-text);
}

.hero-actions {
    display: grid;
    gap: 10px;
    width: min(100%, 345px);
    margin-top: 24px;
}

.primary-button {
    gap: 15px;
    padding: 0 18px;
    background: linear-gradient(90deg, #06a9c8, #00a5c9);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 169, 204, .25);
}

.secondary-button {
    gap: 15px;
    border: 1px solid #b9c8d8;
    color: var(--front-color-ink);
    background: rgba(255, 255, 255, .84);
}

.secondary-button i {
    color: var(--front-color-cyan);
}

.hero-visual {
    position: relative;
    min-height: 244px;
    margin-top: -6px;
}

.notebook-image {
    position: absolute;
    right: -18px;
    bottom: 6px;
    z-index: 4;
    width: min(91vw, 455px);
    filter: drop-shadow(0 18px 18px rgba(16, 27, 53, .16));
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    border: 1px solid var(--front-color-border);
    border-radius: 6px;
    background: rgba(255, 255, 255, .76);
}

.hero-features div {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-right: 1px solid var(--front-color-border);
    border-bottom: 1px solid var(--front-color-border);
    color: var(--front-color-ink);
    font-size: 13px;
    font-weight: 700;
}

.hero-features div:nth-child(2n) {
    border-right: 0;
}

.hero-features div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.hero-features i {
    color: var(--front-color-cyan);
    font-size: 22px;
}

.heading-title i,
.simple-heading i {
    color: var(--front-color-cyan);
    font-size: 32px;
}

.products-section,
.services-section,
.process-section,
.contact-section {
    padding: 12px 0;
}

.home-articles-section {
    padding: 32px 0 0;
}

.home-articles-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.home-articles-heading span {
    display: block;
    margin-bottom: 6px;
    color: var(--front-color-cyan);
    font-size: var(--front-font-size-eyebrow);
    font-weight: 700;
    text-transform: uppercase;
}

.home-articles-heading h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    color: var(--front-color-ink);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.14;
}

.home-articles-heading h2 i {
    color: var(--front-color-cyan);
    font-size: 32px;
}

.home-articles-heading a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    color: var(--front-color-cyan);
    font-size: 13px;
    font-weight: 700;
}

.home-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-article-card {
    height: 100%;
}

.section-card {
    padding: 0;
    border-radius: 16px;
    background: rgba(246, 251, 254, .9);
    box-shadow: var(--front-shadow-soft);
}

.section-card .section-heading {
    padding: 16px 0 0;
}

.section-card .products-row,
.section-card .mobile-products-link,
.section-card .empty-home-block {
    margin-right: 16px;
    margin-left: 16px;
}

.section-card .products-row {
    padding-bottom: 16px;
}

.section-card .mobile-products-link,
.section-card .empty-home-block {
    margin-bottom: 16px;
}

.section-heading,
.heading-title,
.simple-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-heading {
    justify-content: space-between;
    margin-bottom: 16px;
}

.heading-title h2,
.simple-heading h2 {
    margin: 0;
    color: var(--front-color-ink);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
}

.heading-title p,
.simple-heading p {
    margin: 5px 0 0;
    color: var(--front-color-text);
    font-size: 15px;
    font-weight: 500;
}

.inline-link {
    display: none;
    align-items: center;
    gap: 10px;
    color: var(--front-color-cyan);
    font-size: 14px;
    font-weight: 700;
}

.product-card {
    position: relative;
    display: flex;
    min-height: 88px;
    align-items: center;
    gap: 10px;
    height: 100%;
    padding: 13px 12px;
    border: 1px solid var(--front-color-border);
    border-radius: var(--front-radius-card);
    background: var(--front-color-white);
    box-shadow: var(--front-shadow-card);
    color: inherit;
    text-decoration: none;
}

.product-icon {
    display: inline-flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 21px;
}

.product-icon.orange { background: linear-gradient(135deg, #ff8d14, #ff5309); }
.product-icon.black { background: #050507; color: #ffb227; }
.product-icon.purple { background: linear-gradient(135deg, #9f28ff, #6e24e7); }
.product-icon.green { background: linear-gradient(135deg, #18bd75, #069856); }
.product-icon.dark { background: #111; }
.product-icon.mint { background: linear-gradient(135deg, #22dab0, #15ba96); }
.product-icon.blue { background: linear-gradient(135deg, #23b8ff, #027bdc); }
.product-icon.navy { background: #102542; }

.product-icon.dynamic {
    background: var(--product-bg, #f4f7fa);
    color: var(--product-color, var(--front-color-cyan));
    border: 1px solid rgba(16, 27, 53, .05);
}

.product-icon img {
    display: block;
    max-width: 88%;
    max-height: 88%;
    object-fit: contain;
}

.product-icon strong {
    font-size: 24px;
    line-height: 1;
}

.product-card h3 {
    margin: 0 0 3px;
    color: #0d1120;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.16;
}

.product-card p {
    margin: 0;
    color: var(--front-color-text);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.28;
}

.card-arrow {
    margin-left: auto;
    color: var(--front-color-cyan);
    font-size: 15px;
}

.site-footer {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    padding-bottom: 22px;
}

.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    pointer-events: none;
}

.site-footer::before {
    left: 0;
    width: 342px;
    height: 312px;
    background-image: var(--footer-shape-left-url, url("../images/footer-shape-left.png"));
    background-position: left bottom;
}

.site-footer::after {
    right: 0;
    width: 337px;
    height: 272px;
    background-image: var(--footer-shape-right-url, url("../images/footer-shape-right.png"));
    background-position: right bottom;
}

.site-footer .site-container {
    position: relative;
    z-index: 1;
}

.mobile-products-link {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.simple-heading {
    margin-bottom: 16px;
}

.simple-heading i {
    align-self: flex-start;
    margin-top: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.service-card {
    min-height: 90px;
    padding: 15px 10px 12px;
    border: 1px solid var(--front-color-border);
    border-radius: var(--front-radius-card);
    background: rgba(255, 255, 255, .64);
    color: inherit;
    text-align: center;
    text-decoration: none;
}

.service-card i {
    color: var(--front-color-cyan);
    font-size: 30px;
}

.service-card h3 {
    margin: 10px 0 0;
    color: var(--front-color-ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.12;
}

.service-card p {
    display: none;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-top: 16px;
    padding: 14px 10px;
    border-radius: 8px;
    background: linear-gradient(90deg, #03abc9, #018fb5);
    color: #fff;
    box-shadow: 0 16px 28px rgba(0, 160, 197, .24);
}

.stats-bar div {
    display: grid;
    justify-items: center;
    align-content: center;
    min-height: 58px;
    border-right: 1px solid rgba(255, 255, 255, .18);
    text-align: center;
}

.stats-bar div:nth-child(5) {
    border-right: 0;
}

.stats-bar i {
    display: none;
}

.stats-bar strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.stats-bar span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.15;
}

.desktop-only-stat {
    display: none !important;
}

.process-section {
    padding-top: 18px;
}

.process-grid {
    display: grid;
    gap: 18px;
}

.process-copy span,
.contact-copy span {
    color: #ff5b12;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.process-copy h2,
.contact-copy h2 {
    margin: 7px 0 9px;
    color: var(--front-color-ink);
    font-size: clamp(24px, 5.7vw, 28px);
    font-weight: 500;
    line-height: 1.04;
}

.process-copy h2 strong,
.contact-copy h2 strong {
    color: var(--front-color-red);
    font-weight: 700;
}

.process-copy p {
    margin: 0;
    color: var(--front-color-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
}

.process-copy a {
    display: none;
}

.process-steps {
    position: relative;
    display: grid;
    gap: 10px;
}

.process-steps::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 14px;
    bottom: 14px;
    border-left: 1px dashed #a9d7e4;
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 54px auto 1fr;
    align-items: center;
    gap: 10px;
}

.step-icon {
    position: relative;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: var(--front-color-cyan);
    font-size: 22px;
}

.step-icon span {
    position: absolute;
    left: -8px;
    top: 7px;
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--front-color-cyan);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.process-step h3 {
    margin: 0;
    color: var(--front-color-ink);
    font-size: 14px;
    font-weight: 700;
}

.process-step p {
    margin: 0;
    color: var(--front-color-text);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
}

.contact-section {
    padding-bottom: 46px;
}

.contact-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--front-color-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--front-shadow-card);
}

.contact-copy p {
    margin: 0;
    color: var(--front-color-text);
    font-size: 13px;
    font-weight: 500;
}

.form-grid {
    display: grid;
    gap: 8px;
}

.contact-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-height: 34px;
    border: 1px solid var(--front-color-border);
    border-radius: 5px;
    background: #fff;
    color: #1d2840;
    font-size: 12px;
    font-weight: 500;
    padding: 9px 12px;
    outline: none;
}

.contact-form textarea {
    min-height: 45px;
    resize: vertical;
}

.contact-form button {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--front-color-orange), var(--front-color-red));
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.contact-form button[disabled] {
    cursor: wait;
    opacity: .72;
}

.contact-form-feedback {
    display: none;
    margin: 10px 0 0;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.contact-form-feedback.is-visible {
    display: block;
}

.contact-form-feedback.is-success {
    background: rgba(23, 185, 120, .12);
    color: #0f7b52;
}

.contact-form-feedback.is-error {
    background: rgba(255, 61, 49, .1);
    color: #a6251d;
}

.contact-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    color: var(--front-color-text);
    font-size: 12px;
    font-weight: 700;
}

.contact-channels strong {
    width: 100%;
    color: var(--front-color-ink);
}

.contact-channels i {
    margin-right: 7px;
    color: var(--front-color-ink);
}

.contact-modal .modal-content {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--front-color-border);
    border-radius: 18px;
    background:
        radial-gradient(circle at 0 100%, rgba(3, 169, 204, .12), transparent 34%),
        radial-gradient(circle at 100% 0, rgba(255, 106, 22, .14), transparent 34%),
        var(--front-color-white);
    box-shadow: 0 28px 70px rgba(16, 27, 53, .22);
}

.contact-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--front-color-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, .88);
    color: var(--front-color-ink);
}

.contact-modal-grid {
    display: grid;
    gap: 24px;
    padding: 28px;
}

.contact-modal-copy {
    align-self: center;
}

.contact-modal .contact-form {
    padding: 16px;
    border: 1px solid var(--front-color-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, .78);
}

.contact-modal .contact-form input,
.contact-modal .contact-form textarea {
    font-size: 14px;
}

@media (max-width: 767.98px) {
    :root {
        --front-font-size-hero-title: 25px;
        --front-line-height-hero-title: 1.2;
    }

    .site-container {
        width: min(100% - 36px, 560px);
    }

    .site-header {
        padding-top: 36px;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        gap: 14px;
    }

    .brand-logo {
        width: 92px;
    }

    .header-talk {
        display: inline-flex;
        grid-column: 2;
        grid-row: 1;
        width: 42px;
        min-width: 42px;
        min-height: 38px;
        padding: 0;
        font-size: 13px;
    }

    .header-talk span {
        display: none;
    }

    .menu-toggle {
        grid-column: 3;
        grid-row: 1;
    }

    .hero-section {
        padding-top: 18px;
    }

    .hero-grid {
        gap: 10px;
    }

    .hero-content h1 {
        max-width: 340px;
    }

    .home-articles-heading {
        display: grid;
        align-items: start;
        gap: 10px;
    }

    .home-articles-heading h2 {
        font-size: 28px;
    }

    .home-articles-grid {
        grid-template-columns: 1fr;
    }

    .hero-content p {
        max-width: 260px;
        font-size: 16px;
        padding: 8px 10px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .72);
        box-shadow: 0 10px 28px rgba(255, 255, 255, .78);
        text-shadow: 0 1px 0 rgba(255, 255, 255, .9);
        backdrop-filter: blur(3px);
    }

    .hero-visual {
        min-height: 230px;
        margin-top: -292px;
        pointer-events: none;
    }

    .notebook-image {
        right: -92px;
        bottom: 54px;
        width: 390px;
    }

    .hero-actions {
        margin-top: 12px;
        margin-left: 0;
        position: relative;
        z-index: 8;
    }

    .products-card {
        padding: 0;
    }

    .product-card {
        min-height: 116px;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        padding: 14px 10px 18px;
        text-align: center;
    }

    .product-icon {
        flex: 0 0 auto;
    }

    .product-copy {
        flex: 1 1 auto;
        min-width: 0;
    }

    .product-card h3 {
        font-size: 13px;
        overflow-wrap: anywhere;
    }

    .product-card p {
        font-size: 12px;
    }

    .product-card .card-arrow {
        position: absolute;
        right: 14px;
        bottom: 16px;
        align-self: auto;
    }

    .services-section {
        padding-top: 4px;
    }

    .simple-heading {
        margin-bottom: 10px;
    }

    .services-grid {
        gap: 6px;
    }

    .service-card {
        min-height: 66px;
        padding: 9px 8px 8px;
    }

    .service-card i {
        font-size: 25px;
    }

    .service-card h3 {
        margin-top: 7px;
        font-size: 12px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 10px;
        padding: 10px 8px;
    }

    .stats-bar div:nth-child(2n) {
        border-right: 0;
    }

    .stats-bar div:nth-child(5) {
        grid-column: 1 / -1;
        border-right: 0;
    }

    .stats-bar div {
        min-height: 46px;
    }

    .stats-bar strong {
        font-size: 18px;
    }

    .stats-bar span {
        font-size: 12px;
    }

    .process-section {
        padding-top: 8px;
    }

    .process-copy h2 {
        font-size: 28px;
    }

    .process-copy p {
        font-size: 12px;
        line-height: 1.35;
    }

    .process-steps {
        gap: 5px;
    }

    .process-step {
        grid-template-columns: 50px auto 1fr;
    }

    .step-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .step-icon span {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }

    .process-step p {
        font-size: 11px;
    }

    .site-footer::before {
        width: 148px;
        height: 135px;
    }

    .site-footer::after {
        width: 148px;
        height: 120px;
    }
}

@media (min-width: 768px) {
    .site-header {
        padding-top: 56px;
    }

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

    .brand-logo {
        width: 142px;
    }

    .header-talk {
        display: inline-flex;
        font-size: 17px;
    }

    .hero-section {
        padding-top: 26px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, .95fr) minmax(260px, .75fr);
        align-items: center;
    }

    .hero-content {
        grid-column: 1;
    }

    .hero-visual {
        grid-column: 2;
        grid-row: 1;
        min-height: 340px;
    }

    .hero-features {
        grid-column: 1 / -1;
        grid-template-columns: repeat(4, 1fr);
        border: 0;
        background: transparent;
    }

    .hero-features div,
    .hero-features div:nth-child(2n),
    .hero-features div:nth-last-child(-n+2) {
        justify-content: flex-start;
        border: 0;
        background: transparent;
        font-size: 13px;
    }

    .notebook-image {
        right: -18px;
        bottom: 36px;
        width: 380px;
    }

    .hero-actions {
        width: 330px;
    }

    .product-card {
        min-height: 132px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 18px 18px;
    }

    .card-arrow {
        position: absolute;
        right: 18px;
        bottom: 24px;
    }

    .inline-link {
        display: inline-flex;
    }

    .mobile-products-link {
        display: none;
    }

    .home-articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .service-card {
        border-color: transparent;
        border-right-color: var(--front-color-border);
        border-radius: 0;
        background: transparent;
    }

    .service-card:last-child {
        border-right-color: transparent;
    }

    .stats-bar {
        padding: 18px 14px;
    }

    .stats-bar strong {
        font-size: 24px;
    }

    .stats-bar span {
        font-size: 14px;
    }

    .process-copy {
        display: none;
    }

    .process-step {
        grid-template-columns: 70px auto 1fr;
    }

    .contact-card {
        grid-template-columns: .8fr 1.2fr;
        align-items: start;
    }

    .contact-channels {
        grid-column: 1 / -1;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    :root {
        --front-font-size-hero-title: 26px;
        --front-line-height-hero-title: 1.3;
    }

    .site-header {
        padding-top: 34px;
    }

    .brand-logo {
        width: 120px;
    }

    .header-talk {
        width: 46px;
        min-width: 46px;
        min-height: 44px;
        padding: 0;
        font-size: 16px;
    }

    .header-talk span {
        display: none;
    }

    .hero-section {
        padding-top: 18px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 380px) 1fr;
        gap: 8px;
    }

    .hero-content h1 {
        margin-top: 14px;
    }

    .hero-content p {
        width: 365px;
        font-size: 16px;
        line-height: 1.42;
    }

    .hero-actions {
        margin-top: 18px;
    }

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

    .notebook-image {
        right: -18px;
        bottom: 34px;
        width: 338px;
    }

    .hero-features {
        margin-top: -12px;
    }

    .products-section {
        padding-top: 0;
    }

    .section-card {
        padding: 18px;
    }

    .product-card {
        min-height: 128px;
        padding: 15px;
    }

    .product-card h3 {
        font-size: 14px;
    }

    .product-card p {
        font-size: 12px;
    }

    .services-grid {
        gap: 0;
    }

    .service-card {
        min-height: 86px;
        padding: 12px 6px 10px;
    }

    .service-card i {
        font-size: 26px;
    }

    .service-card h3 {
        margin-top: 8px;
        font-size: 11px;
    }

    .stats-bar {
        padding: 12px 10px;
    }

    .site-footer::before {
        width: 220px;
        height: 201px;
    }

    .site-footer::after {
        width: 220px;
        height: 178px;
    }
}

@media (min-width: 992px) {
    .home-articles-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .site-header {
        padding: 32px 0 16px;
    }

    .header-inner {
        grid-template-columns: 205px 1fr auto;
        gap: 32px;
    }

    .brand-logo {
        width: 127px;
    }

    .main-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 43px;
    }

    .menu-toggle {
        display: none;
    }

    .header-talk {
        min-width: 170px;
        font-size: 14px;
    }

    .hero-section {
        padding-top: 18px;
    }

    .hero-grid {
        grid-template-columns: minmax(420px, 510px) 1fr;
        gap: 34px;
    }

    .hero-content {
        padding-top: 26px;
    }

    .hero-actions {
        display: flex;
        width: auto;
        gap: 14px;
        margin-top: 24px;
    }

    .primary-button,
    .secondary-button {
        min-width: 218px;
        min-height: 48px;
        font-size: 14px;
    }

    .secondary-button {
        min-width: 210px;
    }

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

    .notebook-image {
        right: 80px;
        bottom: 34px;
        width: 518px;
    }

    .hero-features {
        margin-top: -4px;
        gap: 38px;
    }

    .hero-features div {
        min-height: 46px;
        gap: 12px;
    }

    .products-section,
    .services-section,
    .process-section {
        padding: 10px 0;
    }

    .section-card {
        padding: 24px 24px 26px;
    }

    .products-card {
        padding: 0;
    }

    .products-card .section-heading {
        padding-top: 0;
    }

    .products-card .products-row,
    .products-card .mobile-products-link,
    .products-card .empty-home-block {
        margin-right: 24px;
        margin-left: 24px;
    }

    .products-card .products-row {
        padding-bottom: 24px;
    }

    .products-card .mobile-products-link,
    .products-card .empty-home-block {
        margin-bottom: 24px;
    }

    .product-card {
        min-height: 156px;
        padding: 19px 20px;
    }

    .product-icon {
        width: 68px;
        height: 68px;
        font-size: 25px;
    }

    .product-card h3 {
        font-size: 16px;
    }

    .product-card p {
        font-size: 13px;
    }

    .simple-heading {
        margin-left: 2px;
    }

    .services-grid {
        gap: 16px;
    }

    .service-card {
        min-height: 166px;
        padding: 25px 16px 18px;
        border-color: var(--front-color-border);
        border-radius: var(--front-radius-card);
        background: rgba(255, 255, 255, .66);
    }

    .service-card h3 {
        margin-top: 16px;
        font-size: 14px;
    }

    .service-card p {
        display: block;
        margin: 10px 0 0;
        color: var(--front-color-text);
        font-size: 12px;
        font-weight: 500;
        line-height: 1.45;
    }

    .stats-bar {
        grid-template-columns: 1.05fr 1fr 1fr 1fr 1.05fr;
        padding: 18px 24px;
    }

    .stats-bar div:nth-child(4) {
        border-right: 1px solid rgba(255, 255, 255, .18);
    }

    .stats-bar i {
        display: block;
        grid-row: 1 / 3;
        align-self: center;
        margin-right: 12px;
        font-size: 36px;
    }

    .stats-bar div {
        grid-template-columns: auto auto;
        justify-content: center;
        justify-items: start;
        column-gap: 2px;
        text-align: left;
    }

    .stats-bar strong {
        font-size: 27px;
    }

    .stats-bar span {
        font-size: 14px;
    }

    .desktop-only-stat {
        display: grid !important;
        border-right: 0 !important;
    }

    .desktop-only-stat strong {
        font-size: 15px;
        line-height: 1.1;
    }

    .process-section {
        padding-top: 28px;
    }

    .process-grid {
        grid-template-columns: 300px 1fr;
        align-items: center;
        gap: 52px;
    }

    .process-copy {
        display: block;
    }

    .process-copy a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 16px;
        color: var(--front-color-cyan);
        font-size: 13px;
        font-weight: 700;
    }

    .process-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 36px;
    }

    .process-steps::before {
        left: 78px;
        right: 74px;
        top: 48px;
        bottom: auto;
        border-left: 0;
        border-top: 1px dashed #a9d7e4;
    }

    .process-step {
        display: block;
        text-align: center;
    }

    .step-icon {
        width: 78px;
        height: 78px;
        margin: 0 auto 16px;
        border: 1px solid var(--front-color-border);
        border-radius: 50%;
        background: rgba(255, 255, 255, .82);
        font-size: 33px;
    }

    .step-icon span {
        left: -22px;
        top: 42px;
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .process-step h3 {
        font-size: 15px;
    }

    .process-step p {
        margin-top: 10px;
        font-size: 12px;
        line-height: 1.48;
    }

    .contact-section {
        padding-top: 8px;
    }

    .contact-card {
        grid-template-columns: 275px 1fr 250px;
        gap: 26px;
        padding: 24px 26px;
    }

    .contact-channels {
        grid-column: auto;
        display: grid;
        gap: 10px;
    }

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

    .contact-form textarea {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .site-container {
        width: calc(100% - 64px);
    }

    .site-header {
        padding-top: 24px;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 20px;
    }

    .brand-logo {
        width: 122px;
    }

    .main-nav {
        gap: 16px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .header-talk {
        justify-self: end;
        min-width: 0;
        min-height: 40px;
        padding: 0 14px;
        font-size: 13px;
    }

    .hero-section {
        padding-top: 8px;
    }

    .hero-grid {
        grid-template-columns: 455px 1fr;
        gap: 10px;
    }

    .hero-content {
        padding-top: 16px;
    }

    .section-pill {
        min-height: 28px;
        font-size: 11px;
    }

    .hero-content h1 {
        margin: 14px 0 10px;
    }

    .hero-content p {
        width: 430px;
        font-size: 16px;
        line-height: 1.48;
    }

    .hero-actions {
        margin-top: 20px;
    }

    .primary-button,
    .secondary-button {
        min-width: 220px;
        min-height: 46px;
    }

    .secondary-button {
        min-width: 205px;
    }

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

    .notebook-image {
        right: 44px;
        bottom: 34px;
        width: 390px;
    }

    .hero-features {
        margin-top: -24px;
        gap: 22px;
    }

    .hero-features div {
        font-size: 12px;
    }

    .products-section,
    .services-section {
        padding-top: 4px;
    }

    .section-card {
        padding: 20px 24px 24px;
    }

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

    .heading-title h2,
    .simple-heading h2 {
        font-size: 28px;
    }

    .product-card {
        min-height: 138px;
        padding: 16px 12px;
    }

    .product-icon {
        width: 62px;
        height: 62px;
        font-size: 22px;
    }

    .product-card h3 {
        max-width: 100%;
        font-size: 13px;
        overflow-wrap: normal;
        word-break: normal;
    }

    .product-card p {
        font-size: 12px;
    }

    .service-card {
        min-height: 118px;
        padding: 14px 10px 10px;
    }

    .service-card i {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 13px;
        margin-top: 10px;
    }

    .service-card p {
        margin-top: 6px;
        font-size: 10px;
        line-height: 1.28;
    }

    .stats-bar {
        margin-top: 12px;
        padding: 11px 18px;
    }

    .stats-bar div {
        min-height: 50px;
    }

    .stats-bar i {
        font-size: 30px;
    }

    .stats-bar strong {
        font-size: 23px;
    }

    .stats-bar span {
        font-size: 14px;
    }

    .process-section {
        padding-top: 12px;
    }

    .process-grid {
        grid-template-columns: 260px 1fr;
        gap: 34px;
    }

    .process-copy h2 {
        font-size: 26px;
    }

    .process-copy p {
        font-size: 15px;
        line-height: 1.4;
    }

    .process-steps {
        gap: 24px;
    }

    .step-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 8px;
        font-size: 24px;
    }

    .process-steps::before {
        top: 36px;
    }

    .step-icon span {
        left: -18px;
        top: 32px;
    }

    .process-step p {
        margin-top: 6px;
        font-size: 11px;
        line-height: 1.35;
    }

    .contact-card {
        grid-template-columns: 235px 1fr 210px;
        padding: 16px 22px;
    }
}

@media (max-width: 1199.98px) {
    .header-inner {
        position: relative;
        grid-template-columns: auto 1fr auto;
        gap: 14px;
    }

    .header-talk {
        display: inline-flex;
        justify-self: end;
        width: 44px;
        min-width: 44px;
        min-height: 40px;
        padding: 0;
        font-size: 13px;
        white-space: nowrap;
    }

    .header-talk span {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        grid-column: 3;
        grid-row: 1;
    }

    .main-nav {
        position: fixed;
        z-index: 80;
        top: 0;
        right: 0;
        bottom: 0;
        display: grid;
        width: min(360px, calc(100vw - 42px));
        align-content: start;
        gap: 8px;
        padding: 24px;
        border-left: 1px solid var(--front-color-border);
        background: var(--front-color-white);
        box-shadow: none;
        transform: translateX(105%);
        transition: transform .25s ease;
    }

    .main-nav.is-open {
        box-shadow: -24px 0 54px rgba(16, 27, 53, .18);
        transform: translateX(0);
    }

    .main-nav a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 8px 0;
        border-bottom: 1px solid color-mix(in srgb, var(--front-color-border) 70%, transparent);
        font-size: 16px;
    }

    .main-nav a.active::after {
        display: none;
    }

    .mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 10px;
        color: var(--front-color-ink);
        font-size: 18px;
        font-weight: 700;
    }

    .mobile-nav-close {
        display: inline-flex;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--front-color-border);
        border-radius: 10px;
        background: var(--front-color-white);
        color: var(--front-color-ink);
    }

    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 70;
        display: block;
        border: 0;
        background: rgba(16, 27, 53, .42);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
    }

    .nav-sidebar-open .mobile-nav-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    body.nav-sidebar-open {
        overflow: hidden;
    }
}

@media (min-width: 1200px) {
    .notebook-image {
        width: 560px;
    }
}

/* ==========================================================================
   Listagem de projetos
   ========================================================================== */

.projects-page {
    padding-bottom: 18px;
}

.projects-hero-section {
    padding: 18px 0 34px;
}

.projects-hero-grid {
    display: grid;
    gap: 28px;
    align-items: center;
}

.projects-hero-copy {
    display: grid;
    gap: 18px;
}

.projects-hero-copy h1 {
    max-width: 690px;
    margin: 0;
    color: var(--front-color-ink);
    font-weight: 700;
}

.projects-hero-copy p {
    max-width: 660px;
    margin: 0;
    color: var(--front-color-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.projects-featured-card,
.projects-list-card {
    border: 1px solid var(--front-color-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--front-shadow-card);
}

.projects-featured-card {
    display: block;
    overflow: hidden;
}

.projects-featured-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    object-position: top center;
    border-bottom: 1px solid var(--front-color-border);
}

.projects-featured-visual {
    display: grid;
    min-height: 220px;
    place-items: center;
    background:
        radial-gradient(circle at 78% 28%, rgba(255, 106, 22, .22), transparent 26%),
        radial-gradient(circle at 18% 76%, rgba(3, 169, 204, .2), transparent 24%),
        linear-gradient(135deg, #f8fcff, #ffffff);
}

.projects-featured-visual .project-logo-icon {
    width: 130px;
    height: 94px;
    border-radius: 0;
    background: transparent;
    color: var(--front-color-cyan);
    transform: none;
}

.projects-featured-visual .project-logo-icon img,
.projects-featured-visual .project-logo-icon i {
    max-width: 100%;
    max-height: 100%;
    transform: none;
}

.projects-featured-body {
    display: grid;
    gap: 11px;
    padding: 24px;
}

.projects-featured-body > span,
.projects-card-top small {
    justify-self: start;
    width: fit-content;
    min-height: 22px;
    padding: 5px 9px;
    border-radius: 5px;
    background: #eafaff;
    color: var(--front-color-cyan);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.projects-featured-body h2,
.projects-card-top h3 {
    margin: 0;
    color: var(--front-color-ink);
    font-weight: 700;
    line-height: 1.22;
}

.projects-featured-body h2 {
    font-size: 25px;
}

.projects-featured-body p,
.projects-list-card p {
    margin: 0;
    color: var(--front-color-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.projects-featured-body > strong,
.projects-list-card > a {
    display: inline-flex;
    width: fit-content;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    border: 1px solid var(--front-color-border);
    border-radius: 6px;
    color: var(--front-color-ink);
    font-size: 13px;
    font-weight: 700;
}

.projects-featured-body > strong,
.projects-card-more {
    justify-self: end;
}

.projects-list-section {
    padding: 4px 0 28px;
}

.projects-section-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.projects-section-heading h2 {
    margin: 0 0 5px;
    color: var(--front-color-ink);
    font-size: 26px;
    font-weight: 700;
}

.projects-section-heading p {
    max-width: 650px;
    margin: 0;
    color: var(--front-color-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.projects-list-card {
    display: grid;
    min-height: 100%;
    gap: 16px;
    padding: 22px;
}

.projects-card-top {
    display: flex;
    gap: 16px;
    align-items: center;
}

.project-list-logo {
    display: inline-flex;
    width: 82px;
    height: 64px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: transparent;
    color: var(--project-logo-color, var(--front-color-cyan));
    font-size: 34px;
}

.project-list-logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.projects-card-top h3 {
    margin-top: 8px;
    font-size: 19px;
}

.projects-card-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.projects-card-facts span {
    display: grid;
    gap: 4px;
    min-height: 72px;
    padding: 12px;
    border: 1px solid var(--front-color-border);
    border-radius: 8px;
    background: rgba(246, 251, 254, .86);
    color: var(--front-color-text);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.35;
}

.projects-card-facts i {
    color: var(--front-color-cyan);
    font-size: 18px;
}

.projects-card-facts strong {
    color: var(--front-color-ink);
    font-size: 11px;
    font-weight: 700;
}

.projects-list-card ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.projects-list-card li {
    position: relative;
    padding-left: 18px;
    color: var(--front-color-text);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.projects-list-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--front-color-cyan);
}

.projects-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.projects-card-tags small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(3, 169, 204, .08);
    color: var(--front-color-text);
    font-size: 11px;
    font-weight: 600;
}

.projects-card-tags i {
    color: var(--front-color-cyan);
}

@media (min-width: 768px) {
    .projects-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
    }
}

@media (max-width: 767.98px) {
    .project-list-logo {
        width: 72px;
        height: 56px;
    }

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

/* ==========================================================================
   Interna de projeto
   ========================================================================== */

.project-page {
    padding-top: 12px;
}

.project-hero-section,
.project-overview-section,
.project-demonstrates-section,
.project-features-section,
.project-gallery-section,
.project-cta-section {
    padding: 12px 0;
}

.project-hero-grid {
    display: grid;
    gap: 26px;
}

.project-cover-inline {
    display: none;
}

.project-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--front-color-text);
    font-size: var(--front-font-size-card-title);
    font-weight: 500;
}

.project-breadcrumb i {
    color: var(--front-color-muted);
    font-size: 11px;
}

.project-hero-copy .section-pill {
    margin-bottom: 28px;
}

.project-hero-copy,
.project-overview-text,
.project-facts-grid,
.project-info-card,
.project-feature-card,
.project-learning-card,
.project-screen-card {
    min-width: 0;
}

.project-title-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.project-logo-icon {
    display: inline-flex;
    width: 78px;
    height: 78px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--project-logo-bg, linear-gradient(135deg, #ff8d14, #ff5309));
    color: var(--project-logo-color, #fff);
    font-size: 38px;
    transform: rotate(-45deg);
}

.project-logo-icon img {
    display: block;
    max-width: 68%;
    max-height: 68%;
    object-fit: contain;
    transform: rotate(45deg);
}

.project-logo-icon i {
    transform: rotate(45deg);
}

.project-title-row .project-logo-icon {
    width: 112px;
    height: 86px;
    border-radius: 0;
    background: transparent;
    color: var(--front-color-cyan);
    transform: none;
}

.project-title-row .project-logo-icon img {
    max-width: 100%;
    max-height: 100%;
    transform: none;
}

.project-title-row .project-logo-icon i {
    transform: none;
}

.project-title-row h1 {
    min-width: 0;
    margin: 0;
    color: #05070c;
    font-weight: 700;
}

.project-summary {
    max-width: 430px;
    margin: 0 0 20px;
    color: var(--front-color-text);
    font-size: 20px;
    line-height: 1.35;
}

.project-description {
    max-width: 470px;
    margin: 0;
    color: var(--front-color-text);
    font-size: 14px;
    line-height: var(--front-line-height-text);
}

.project-description-html p {
    margin: 0 0 10px;
}

.project-description-html p:last-child {
    margin-bottom: 0;
}

.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.project-actions .primary-button,
.project-actions .secondary-button {
    min-width: 162px;
    min-height: 44px;
    font-size: 13px;
}

.project-actions .secondary-button {
    min-width: 210px;
}

.project-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.project-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--front-color-ink);
    font-size: 11px;
    font-weight: 500;
}

.project-tags i {
    color: var(--front-color-cyan);
    font-size: 20px;
}

.project-browser {
    position: relative;
    border: 1px solid var(--front-color-border);
    border-radius: 14px;
    background: #f8fbfd;
    box-shadow: var(--front-shadow-card);
    overflow: hidden;
}

.browser-dots {
    display: flex;
    gap: 8px;
    padding: 12px 18px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cfd8e2;
}

.project-browser-frame {
    margin: 0 6px 6px;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.project-cover-browser {
    align-self: start;
}

.project-cover-frame {
    display: flex;
    min-height: 380px;
    align-items: flex-start;
    justify-content: center;
    margin: 0 6px 6px;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.project-cover-frame img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: top center;
}

.project-cover-link {
    display: block;
    margin: 0 6px 6px;
    padding: 10px 12px 8px;
    background: #fff;
    text-align: right;
}

.project-cover-link a {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: var(--front-color-cyan);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    text-align: right;
    text-decoration: none;
}

.project-cover-link span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-cover-link i {
    flex: 0 0 auto;
    font-size: 12px;
}

.browser-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
    padding: 0 18px;
    background: #080b12;
    color: #fff;
}

.browser-brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    max-width: 148px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.browser-brand span {
    display: inline-flex;
    width: 17px;
    height: 17px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--front-color-orange);
    font-size: 10px;
    transform: rotate(-45deg);
}

.browser-brand i {
    transform: rotate(45deg);
}

.browser-menu {
    display: none;
}

.browser-hero {
    min-height: 255px;
    padding: 42px 32px;
    background:
        linear-gradient(90deg, rgba(4, 5, 7, .94), rgba(4, 5, 7, .72) 47%, rgba(4, 5, 7, .24)),
        radial-gradient(circle at 80% 45%, rgba(255, 106, 22, .46), transparent 24%),
        linear-gradient(135deg, #1f140d, #050505 58%, #3b2618);
    color: #fff;
}

.browser-hero h2 {
    margin: 0 0 12px;
    max-width: 310px;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.02;
}

.browser-hero h2 strong {
    color: var(--front-color-orange);
    font-weight: 700;
}

.browser-hero p {
    max-width: 335px;
    margin: 0 0 22px;
    font-size: 12px;
    line-height: 1.45;
}

.browser-search {
    display: grid;
    max-width: 510px;
    grid-template-columns: 1fr;
    gap: 8px;
    color: #7b8797;
    font-size: 11px;
}

.browser-search span,
.browser-search em,
.browser-search strong {
    display: flex;
    min-height: 35px;
    align-items: center;
    padding: 0 14px;
    border-radius: 4px;
    background: #fff;
    font-style: normal;
}

.browser-search strong {
    justify-content: center;
    background: var(--front-color-orange);
    color: #fff;
    font-weight: 700;
}

.browser-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.browser-chips span {
    padding: 5px 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .13);
    color: #fff;
    font-size: 10px;
}

.browser-categories {
    padding: 22px 28px 26px;
}

.browser-section-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    color: var(--front-color-ink);
}

.browser-section-title strong {
    font-size: 17px;
    font-weight: 700;
}

.browser-section-title span {
    color: var(--front-color-cyan);
    font-size: 10px;
    font-weight: 700;
}

.browser-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.browser-category-grid div {
    display: grid;
    min-height: 72px;
    place-items: center;
    border: 1px solid var(--front-color-border);
    border-radius: var(--front-radius-card);
    color: var(--front-color-text);
    font-size: 10px;
}

.browser-category-grid i {
    color: var(--front-color-text);
    font-size: 22px;
}

.project-soft-panel {
    padding: 24px 28px;
    border-radius: 16px;
    background: rgba(246, 251, 254, .9);
    box-shadow: var(--front-shadow-soft);
}

.project-section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--front-color-ink);
}

.project-section-heading i {
    color: var(--front-color-cyan);
    font-size: 24px;
}

.project-section-heading h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
}

.project-overview-grid {
    display: grid;
    gap: 24px;
}

.project-overview-text p {
    margin: 0 0 14px;
    color: var(--front-color-text);
    font-size: 14px;
    line-height: var(--front-line-height-text);
}

.project-overview-text p:last-child {
    margin-bottom: 0;
}

.project-facts-grid {
    display: grid;
    gap: 12px;
}

.project-fact-card,
.project-info-card,
.project-feature-card,
.project-learning-card,
.project-screen-card {
    border: 1px solid var(--front-color-border);
    border-radius: var(--front-radius-card);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 8px 22px rgba(17, 38, 71, .05);
}

.project-fact-card {
    display: flex;
    min-height: 68px;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
}

.project-fact-card i,
.project-info-card i,
.project-feature-card i,
.project-learning-card i {
    color: var(--front-color-cyan);
}

.project-fact-card i {
    font-size: 25px;
}

.project-fact-card strong,
.project-fact-card span {
    display: block;
    color: var(--front-color-text);
    font-size: 13px;
}

.project-fact-card strong {
    color: var(--front-color-ink);
    font-weight: 700;
}

.project-info-card {
    display: flex;
    min-height: 100%;
    gap: 16px;
    padding: 20px;
}

.project-info-card i {
    flex: 0 0 auto;
    font-size: 36px;
}

.project-info-card h3,
.project-feature-card h3,
.project-learning-card h3 {
    margin: 0 0 8px;
    color: var(--front-color-ink);
    font-size: var(--front-font-size-card-title);
    font-weight: 700;
    line-height: 1.18;
}

.project-info-card p,
.project-feature-card p,
.project-learning-card p {
    margin: 0;
    color: var(--front-color-text);
    font-size: 12px;
    line-height: 1.45;
}

.project-feature-card {
    display: grid;
    min-height: 100%;
    justify-items: center;
    padding: 22px 14px;
    text-align: center;
}

.project-feature-card i {
    margin-bottom: 14px;
    font-size: 34px;
}

.project-learning-row {
    margin-top: 20px;
}

.project-learning-card {
    display: flex;
    min-height: 100%;
    gap: 16px;
    padding: 22px;
}

.project-learning-card.is-challenge {
    background: linear-gradient(135deg, rgba(255, 106, 22, .1), rgba(255, 255, 255, .96));
}

.project-learning-card.is-solution {
    background: linear-gradient(135deg, rgba(3, 169, 204, .09), rgba(255, 255, 255, .96));
}

.project-learning-card.is-learning {
    background: linear-gradient(135deg, rgba(127, 87, 255, .1), rgba(255, 255, 255, .96));
}

.project-learning-card i {
    font-size: 26px;
}

.project-gallery-section .project-section-heading {
    margin-bottom: 14px;
}

.project-screen-card {
    overflow: hidden;
    text-align: center;
}

.project-screen-link {
    display: block;
}

.project-screen-link.is-disabled {
    pointer-events: none;
    cursor: default;
}

.project-screen-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    object-position: top center;
    border-bottom: 1px solid var(--front-color-border);
}

.project-screen-preview {
    position: relative;
    min-height: 145px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5, 7, 10, .88), rgba(5, 7, 10, .52)),
        linear-gradient(135deg, #2b1a0f, #111 58%, #f8fafc 59%);
}

.project-screen-search {
    background:
        linear-gradient(90deg, #f6fbfe 0 31%, #fff 31%),
        repeating-linear-gradient(180deg, transparent 0 25px, rgba(3, 169, 204, .12) 25px 28px);
}

.project-screen-profile {
    background:
        radial-gradient(circle at 18% 24%, #17223a 0 22px, transparent 23px),
        linear-gradient(180deg, #fff, #f7fbfe);
}

.project-screen-preview span {
    position: absolute;
    border-radius: 5px;
    background: rgba(255, 255, 255, .85);
}

.project-screen-home span:nth-child(1) {
    left: 22px;
    top: 48px;
    width: 160px;
    height: 18px;
    background: #fff;
}

.project-screen-home span:nth-child(2) {
    left: 22px;
    top: 78px;
    width: 245px;
    height: 24px;
}

.project-screen-home span:nth-child(3) {
    left: 22px;
    top: 114px;
    width: 290px;
    height: 10px;
    background: rgba(255, 106, 22, .9);
}

.project-screen-search span:nth-child(1) {
    left: 20px;
    top: 20px;
    width: 80px;
    height: 105px;
    background: #fff;
    border: 1px solid var(--front-color-border);
}

.project-screen-search span:nth-child(2) {
    left: 126px;
    top: 28px;
    width: 190px;
    height: 22px;
    background: #eaf4f8;
}

.project-screen-search span:nth-child(3) {
    left: 126px;
    top: 66px;
    width: 235px;
    height: 56px;
    background: #fff;
    border: 1px solid var(--front-color-border);
}

.project-screen-profile span:nth-child(1) {
    left: 76px;
    top: 30px;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #17223a;
}

.project-screen-profile span:nth-child(2) {
    left: 170px;
    top: 34px;
    width: 185px;
    height: 18px;
    background: #eaf4f8;
}

.project-screen-profile span:nth-child(3) {
    left: 170px;
    top: 82px;
    width: 240px;
    height: 35px;
    background: #fff;
    border: 1px solid var(--front-color-border);
}

.project-screen-card h3 {
    margin: 8px 0 10px;
    color: var(--front-color-text);
    font-size: 13px;
    font-weight: 500;
}

.project-cta-section {
    padding-bottom: 18px;
}

.project-cta-card {
    display: grid;
    gap: 18px;
    align-items: center;
    padding: 10px 110px 10px;
}

.project-cta-card h2 {
    margin: 0 0 8px;
    color: var(--front-color-ink);
    font-size: 28px;
    font-weight: 700;
}

.project-cta-card h2 strong {
    color: var(--front-color-red);
    font-weight: 700;
}

.project-cta-card p {
    max-width: 620px;
    margin: 0;
    color: var(--front-color-text);
    font-size: 15px;
    line-height: 1.45;
}

@media (min-width: 768px) {
    .browser-search {
        grid-template-columns: 1fr 150px 92px;
        gap: 0;
    }

    .browser-search span,
    .browser-search em {
        border-right: 1px solid #e5edf3;
        border-radius: 0;
    }

    .browser-search span {
        border-radius: 4px 0 0 4px;
    }

    .browser-search strong {
        border-radius: 0 4px 4px 0;
    }

    .project-facts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-cta-card {
        grid-template-columns: 1fr auto;
    }
}

@media (min-width: 992px) {
    .project-page {
        padding-top: 18px;
    }

    .project-hero-grid {
        grid-template-columns: 450px 1fr;
        gap: 42px;
    }

    .project-overview-grid.has-facts {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .92fr);
        align-items: start;
    }

    .project-browser {
        align-self: start;
    }

    .browser-menu {
        display: flex;
        align-items: center;
        flex: 1 1 auto;
        justify-content: flex-end;
        min-width: 0;
        margin-left: 14px;
        gap: 12px;
        font-size: 9px;
        font-weight: 500;
        white-space: nowrap;
    }

    .browser-menu strong {
        padding: 8px 12px;
        border-radius: 3px;
        background: var(--front-color-orange);
        font-weight: 700;
    }

    .browser-category-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .project-soft-panel {
        padding: 28px 32px;
    }
}

@media (max-width: 991.98px) {
    .project-page {
        padding-top: 8px;
    }

    .project-hero-section,
    .project-overview-section,
    .project-demonstrates-section,
    .project-features-section,
    .project-gallery-section {
        padding: 10px 0;
    }

    .project-hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-cover-sidebar {
        display: none;
    }

    .project-cover-inline {
        display: block;
        margin: 18px 0 22px;
    }

    .project-summary,
    .project-description {
        max-width: none;
    }

    .project-cover-frame,
    .project-cover-frame img {
        min-height: 330px;
    }

    .project-overview-grid,
    .project-overview-grid.has-facts {
        grid-template-columns: 1fr;
    }

    .project-info-card,
    .project-learning-card {
        align-items: flex-start;
    }

    .project-feature-card {
        justify-items: start;
        text-align: left;
    }

    .project-feature-card i {
        margin-bottom: 10px;
    }
}

@media (max-width: 767.98px) {
    .project-breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 14px;
        font-size: 12px;
    }

    .project-hero-copy .section-pill {
        margin-bottom: 18px;
    }

    .project-title-row {
        align-items: flex-start;
        gap: 12px;
    }

    .project-logo-icon {
        width: 58px;
        height: 58px;
        border-radius: 14px;
        font-size: 28px;
    }

    .project-title-row .project-logo-icon {
        width: 76px;
        height: 58px;
        border-radius: 0;
    }

    .project-cover-frame,
    .project-cover-frame img {
        min-height: 230px;
    }

    .project-summary {
        margin-bottom: 0;
        font-size: 17px;
        line-height: 1.42;
    }

    .project-description {
        font-size: 13px;
        line-height: 1.55;
    }

    .project-actions {
        display: grid;
        gap: 10px;
        margin-top: 18px;
    }

    .project-actions .primary-button,
    .project-actions .secondary-button {
        min-width: 0;
        width: 100%;
    }

    .project-tags {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 16px;
    }

    .browser-hero {
        min-height: 245px;
        padding: 32px 20px;
    }

    .browser-hero h2 {
        font-size: 25px;
    }

    .browser-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-soft-panel {
        padding: 20px 16px;
    }

    .project-section-heading {
        align-items: flex-start;
        gap: 10px;
    }

    .project-section-heading h2 {
        font-size: 20px;
    }

    .project-info-card,
    .project-learning-card {
        gap: 12px;
        padding: 16px;
    }

    .project-info-card i {
        font-size: 28px;
    }

    .project-feature-card {
        padding: 16px;
    }

    .project-feature-card h3 {
        font-size: 14px;
    }

    .project-feature-card p {
        display: block;
    }

    .project-cta-card {
        padding: 8px 0 0;
    }
}

/* ==========================================================================
   Interna de artigo
   ========================================================================== */

.article-page {
    padding: 18px 0 0;
}

.article-layout {
    display: grid;
    gap: 32px;
    align-items: start;
}

.article-main {
    min-width: 0;
}

.article-hero {
    display: grid;
    gap: 18px;
}

.article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    color: var(--front-color-text);
    font-size: 13px;
    font-weight: 500;
}

.article-breadcrumb a {
    color: var(--front-color-ink);
    font-weight: 600;
}

.article-breadcrumb i {
    color: var(--front-color-muted);
    font-size: 10px;
}

.article-breadcrumb span {
    color: var(--front-color-text);
}

.article-hero h1 {
    max-width: 820px;
    margin: -4px 0 0;
    color: var(--front-color-ink);
    font-weight: 700;
}

.article-hero > p {
    max-width: 760px;
    margin: -4px 0 0;
    color: var(--front-color-text);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.48;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
    color: var(--front-color-text);
    font-size: 13px;
    font-weight: 500;
}

.article-meta strong {
    color: var(--front-color-ink);
    font-weight: 700;
}

.article-meta span:not(.article-author-avatar) {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.article-meta i {
    color: var(--front-color-muted);
}

.article-author-avatar {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 38%, #ffd8bc 0 18%, transparent 19%),
        linear-gradient(145deg, #17223a, #020611);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

img.article-author-avatar {
    display: block;
    object-fit: cover;
    background: #fff;
}

.article-cover {
    position: relative;
    min-height: 245px;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background:
        radial-gradient(circle at 23% 72%, rgba(18, 203, 167, .42), transparent 17%),
        radial-gradient(circle at 74% 38%, rgba(4, 169, 204, .5), transparent 24%),
        linear-gradient(135deg, #061839, #062852 45%, #08122a);
    box-shadow: var(--front-shadow-card);
}

.article-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .06), transparent 32%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 34px);
}

.article-cover-image {
    min-height: 0;
    aspect-ratio: 2.45 / 1;
    background: var(--front-color-card);
}

.article-cover-image::before {
    content: none;
}

.article-cover-image img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-cover-board,
.article-cover-panel,
.article-cover-plant,
.article-cover-cubes {
    position: absolute;
    z-index: 1;
}

.article-cover-board {
    left: 27%;
    top: 20%;
    width: 190px;
    height: 150px;
    border-radius: 14px;
    background: linear-gradient(145deg, #53d9fb, #ecfbff);
    box-shadow: -18px 26px 34px rgba(0, 0, 0, .2);
    transform: rotate(-12deg);
}

.article-cover-board::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -14px;
    width: 58px;
    height: 28px;
    border-radius: 8px 8px 4px 4px;
    background: #17a9d2;
    transform: translateX(-50%);
}

.article-cover-board::after {
    content: "";
    position: absolute;
    left: 58px;
    top: 38px;
    width: 92px;
    height: 78px;
    background:
        linear-gradient(#9aaee5 0 0) 0 0 / 92px 8px no-repeat,
        linear-gradient(#9aaee5 0 0) 0 32px / 92px 8px no-repeat,
        linear-gradient(#9aaee5 0 0) 0 64px / 92px 8px no-repeat;
}

.article-cover-board i {
    position: absolute;
    left: 24px;
    color: #0ea77b;
    font-size: 24px;
    font-weight: 700;
}

.article-cover-board i:nth-child(1) {
    top: 31px;
}

.article-cover-board i:nth-child(2) {
    top: 63px;
}

.article-cover-board i:nth-child(3) {
    top: 95px;
}

.article-cover-panel {
    right: 17%;
    top: 20%;
    width: 260px;
    height: 160px;
    border: 1px solid rgba(83, 217, 251, .55);
    border-radius: 16px;
    background: linear-gradient(145deg, #0b73b4, #23b9e8);
    box-shadow: 18px 26px 36px rgba(0, 0, 0, .26);
    transform: rotate(8deg);
}

.article-cover-panel::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 20px;
    height: 3px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
}

.article-cover-panel span {
    position: absolute;
    bottom: 30px;
    width: 28px;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(#ffb328, #ff6a16);
}

.article-cover-panel span:nth-child(1) {
    left: 62px;
    height: 58px;
}

.article-cover-panel span:nth-child(2) {
    left: 118px;
    height: 92px;
}

.article-cover-panel span:nth-child(3) {
    left: 174px;
    height: 68px;
}

.article-cover-plant {
    left: 12%;
    bottom: 32px;
    width: 78px;
    height: 120px;
}

.article-cover-plant::before {
    content: "";
    position: absolute;
    left: 25px;
    bottom: 0;
    width: 45px;
    height: 34px;
    border-radius: 0 0 16px 16px;
    background: linear-gradient(145deg, #0a6f79, #14d0b0);
}

.article-cover-plant span {
    position: absolute;
    width: 40px;
    height: 18px;
    border-radius: 100% 0 100% 0;
    background: #13b88f;
}

.article-cover-plant span:nth-child(1) {
    left: 3px;
    top: 36px;
    transform: rotate(22deg);
}

.article-cover-plant span:nth-child(2) {
    left: 33px;
    top: 22px;
    transform: rotate(-48deg);
}

.article-cover-plant span:nth-child(3) {
    left: 17px;
    top: 60px;
    transform: rotate(-20deg);
}

.article-cover-cubes {
    right: 8%;
    bottom: 52px;
    width: 120px;
    height: 75px;
}

.article-cover-cubes span {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 6px;
    background: linear-gradient(145deg, #44cdf0, #1195d0);
    transform: rotate(45deg) skew(-8deg, -8deg);
}

.article-cover-cubes span:nth-child(1) {
    left: 5px;
    bottom: 0;
}

.article-cover-cubes span:nth-child(2) {
    right: 5px;
    top: 0;
}

.article-topics-bar {
    display: grid;
    gap: 8px;
    padding: 12px 14px;
    border: 1px solid var(--front-color-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, .8);
}

.article-topics-bar strong,
.article-topics-bar a {
    color: var(--front-color-ink);
    font-size: 12px;
    font-weight: 600;
}

.article-topics-bar strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-topics-bar i {
    color: var(--front-color-cyan);
}

.article-content {
    padding-top: 18px;
}

.article-content section {
    position: relative;
    margin-bottom: 24px;
}

.article-content h2 {
    margin: 0 0 8px;
    color: var(--front-color-ink);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.article-content p {
    margin: 0 0 14px;
    color: var(--front-color-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
}

.article-check-list {
    display: grid;
    gap: 7px;
    margin: 0 0 14px;
    padding: 0;
    color: var(--front-color-text);
    font-size: 15px;
    font-weight: 500;
    list-style: none;
}

.article-list-quote {
    display: grid;
    gap: 18px;
    margin: 4px 0 18px;
}

.article-list-quote .article-check-list,
.article-list-quote .article-quote {
    margin: 0;
}

.article-list-quote .article-quote {
    max-width: none;
}

.article-check-list li {
    position: relative;
    padding-left: 26px;
}

.article-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--front-color-cyan);
}

.article-check-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 7px;
    width: 6px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.article-quote {
    display: grid;
    gap: 7px;
    max-width: 330px;
    margin: 12px 0 8px auto;
    padding: 22px 28px;
    border: 1px solid var(--front-color-border);
    border-radius: 10px;
    background: linear-gradient(145deg, #f5fbff, #e9f5fb);
    color: var(--front-color-ink);
    box-shadow: var(--front-shadow-card);
}

.article-quote i {
    display: block;
    width: max-content;
    color: var(--front-color-cyan);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: .72;
    margin-bottom: -25px;
}

.article-quote i::before {
    content: "\201C";
}

.article-quote strong {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.article-quote span,
.article-quote small,
.article-quote .article-quote-source,
.article-quote p {
    margin: 0;
    color: var(--front-color-text);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.article-flow-card {
    margin-bottom: 28px;
    padding: 18px 22px;
    border: 1px solid var(--front-color-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, .85);
    box-shadow: var(--front-shadow-card);
}

.article-flow-card > strong,
.article-flow-card > h3 {
    display: block;
    margin-bottom: 14px;
    color: var(--front-color-cyan);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.article-flow {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-flow span,
.article-flow li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--front-color-ink);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
}

.article-flow span i,
.article-flow li i {
    color: var(--front-color-cyan);
    font-size: 20px;
    flex: 0 0 auto;
}

.article-flow li strong {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.article-flow > i {
    display: none;
    color: var(--front-color-muted);
}

.article-inline-cta,
.article-bottom-card {
    display: grid;
    gap: 18px;
    align-items: center;
    border: 1px solid var(--front-color-border);
    border-radius: 10px;
    background:
        linear-gradient(110deg, rgba(3, 169, 204, .08), rgba(255, 255, 255, .92) 52%),
        rgba(255, 255, 255, .9);
    box-shadow: var(--front-shadow-card);
}

.article-inline-cta {
    grid-template-columns: auto 1fr;
    margin: 22px 0;
    padding: 18px 22px;
}

.article-inline-cta > i {
    color: var(--front-color-cyan);
    font-size: 42px;
}

.article-inline-cta strong,
.article-inline-cta span {
    display: block;
}

.article-inline-cta strong {
    color: var(--front-color-ink);
    font-size: 15px;
    font-weight: 700;
}

.article-inline-cta span {
    margin-top: 4px;
    color: var(--front-color-text);
    font-size: 13px;
    font-weight: 500;
}

.article-inline-cta .talk-button {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 44px;
    padding: 0 22px;
    font-size: 13px;
}

.article-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 16px 0;
    color: var(--front-color-ink);
    font-size: 13px;
    font-weight: 700;
}

.article-share a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--front-color-border);
    border-radius: 8px;
    background: #fff;
    color: var(--front-color-ink);
}

.article-pagination {
    display: grid;
    gap: 10px;
}

.article-pagination a {
    display: grid;
    gap: 6px;
    padding: 15px;
    border: 1px solid var(--front-color-border);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--front-shadow-card);
}

.article-pagination span {
    color: var(--front-color-cyan);
    font-size: 11px;
    font-weight: 700;
}

.article-pagination strong {
    color: var(--front-color-ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.article-sidebar {
    display: grid;
    gap: 18px;
}

.article-sidebar-card {
    padding: 22px;
    border: 1px solid var(--front-color-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--front-shadow-card);
}

.article-sidebar-card h2 {
    margin: 0 0 16px;
    color: var(--front-color-ink);
    font-size: 20px;
    font-weight: 700;
}

.article-sidebar-card nav {
    display: grid;
    gap: 14px;
}

.article-sidebar-card nav a {
    display: flex;
    gap: 10px;
    color: var(--front-color-text);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.article-sidebar-card nav i {
    color: var(--front-color-cyan);
    font-size: 11px;
    margin-top: 3px;
}

.article-sidebar-index {
    margin-top: 90px;
}

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

.related-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 12px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--front-color-border);
}

.related-card strong {
    display: block;
    color: var(--front-color-ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.related-card small {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 8px;
    color: var(--front-color-muted);
    font-size: 10px;
    font-weight: 600;
}

.related-thumb {
    display: inline-flex;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    color: var(--related-color, var(--front-color-cyan));
    font-size: 26px;
    background: #f7fbfe;
    background: color-mix(in srgb, var(--related-color, var(--front-color-cyan)) 10%, #fff);
    border: 1px solid var(--front-color-border);
}

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

.related-thumb strong {
    color: var(--related-color, var(--front-color-cyan));
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.article-card-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    color: var(--front-color-cyan);
    font-size: 13px;
    font-weight: 700;
}

.newsletter-card {
    background: linear-gradient(145deg, #f8fcff, #edf7fc);
}

.newsletter-card > i {
    float: right;
    color: var(--front-color-cyan);
    font-size: 42px;
}

.newsletter-card p,
.author-card p {
    margin: 0 0 16px;
    color: var(--front-color-text);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.author-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.author-social-links a {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    gap: 7px;
    padding: 0 10px;
    border: 1px solid var(--front-color-border);
    border-radius: 999px;
    background: #fff;
    color: var(--front-color-text);
    font-size: 12px;
    font-weight: 600;
}

.author-social-links i {
    color: var(--front-color-cyan);
}

.newsletter-card form {
    display: grid;
    gap: 12px;
}

.newsletter-card input {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--front-color-border);
    border-radius: 6px;
    background: #fff;
    color: var(--front-color-ink);
    font-size: 12px;
    font-weight: 500;
    padding: 0 14px;
}

.newsletter-card button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--front-color-orange), var(--front-color-red));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.newsletter-card small {
    display: block;
    margin-top: 10px;
    color: var(--front-color-muted);
    font-size: 10px;
    text-align: center;
}

.author-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.author-row strong {
    display: block;
    color: var(--front-color-ink);
    font-size: 14px;
    font-weight: 700;
}

.author-row p {
    margin: 4px 0 0;
    font-size: 12px;
}

.article-bottom-cta {
    padding: 28px 0 18px;
}

.article-bottom-card {
    padding: 24px 32px;
}

.article-bottom-card h2 {
    margin: 0 0 8px;
    color: var(--front-color-ink);
    font-size: 28px;
    font-weight: 700;
}

.article-bottom-card p {
    margin: 0 0 14px;
    color: var(--front-color-text);
    font-size: 15px;
}

.article-bottom-card div div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
}

.article-bottom-card span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--front-color-text);
    font-size: 13px;
    font-weight: 600;
}

.article-bottom-card span i {
    color: var(--front-color-cyan);
}

@media (min-width: 768px) {
    .article-list-quote {
        grid-template-columns: minmax(0, 1fr) minmax(270px, 330px);
        align-items: start;
    }

    .article-topics-bar {
        grid-template-columns: auto repeat(5, minmax(0, 1fr));
        align-items: center;
    }

    .article-topics-bar a {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 12px;
        border-left: 1px solid var(--front-color-border);
        text-align: center;
    }

    .article-flow {
        grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
        align-items: center;
    }

    .article-flow > i {
        display: none;
    }

    .article-inline-cta {
        grid-template-columns: auto 1fr auto;
    }

    .article-inline-cta .talk-button {
        grid-column: auto;
    }

    .article-pagination {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-pagination a:nth-child(2) {
        text-align: right;
    }

    .article-bottom-card {
        grid-template-columns: 1fr auto;
    }
}

@media (min-width: 992px) {
    .article-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 56px;
    }

    .article-sidebar {
        position: sticky;
        top: 18px;
    }

    .article-cover {
        min-height: 255px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .article-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 28px;
    }

    .article-cover-image {
        aspect-ratio: 2 / 1;
    }
}

@media (max-width: 991.98px) {
    .article-sidebar {
        order: 2;
    }

    .article-sidebar-index {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .article-page {
        padding-top: 10px;
    }

    .article-layout {
        gap: 24px;
    }

    .article-hero > p {
        font-size: 16px;
    }

    .article-meta {
        gap: 10px;
    }

    .article-cover {
        min-height: 230px;
    }

    .article-cover-board {
        left: 11%;
        top: 22%;
        width: 148px;
        height: 122px;
    }

    .article-cover-panel {
        right: -12%;
        top: 25%;
        width: 210px;
        height: 132px;
    }

    .article-cover-plant,
    .article-cover-cubes {
        display: none;
    }

    .article-quote {
        max-width: none;
        margin: 12px 0;
    }

    .article-inline-cta {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .article-inline-cta > i {
        font-size: 34px;
    }

    .article-inline-cta .talk-button,
    .article-bottom-card .talk-button {
        width: 100%;
    }

    .article-bottom-card {
        padding: 20px 16px;
    }

    .article-bottom-card h2 {
        font-size: 24px;
    }
}

/* ==========================================================================
   Listagem de artigos
   ========================================================================== */

.articles-page {
    padding-top: 18px;
}

.articles-hero-section {
    padding: 18px 0 34px;
}

.articles-hero-grid {
    display: grid;
    gap: 28px;
    align-items: center;
}

.articles-hero-copy {
    display: grid;
    gap: 18px;
}

.articles-hero-copy h1 {
    max-width: 670px;
    margin: 0;
    color: var(--front-color-ink);
    font-weight: 700;
}

.articles-hero-copy p {
    max-width: 660px;
    margin: 0;
    color: var(--front-color-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.articles-search {
    display: flex;
    width: min(100%, 390px);
    min-height: 48px;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 0 16px;
    border: 1px solid var(--front-color-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--front-shadow-card);
}

.articles-search i {
    color: var(--front-color-cyan);
    font-size: 18px;
}

.articles-search input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--front-color-ink);
    font-size: 13px;
    font-weight: 500;
}

.featured-article-card {
    display: block;
    overflow: hidden;
    border: 1px solid var(--front-color-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--front-shadow-card);
}

.articles-featured-cover {
    min-height: 190px;
    border-radius: 0;
    box-shadow: none;
}

.articles-featured-cover .article-cover-board {
    left: 22%;
    width: 150px;
    height: 120px;
}

.articles-featured-cover .article-cover-panel {
    right: 20%;
    width: 200px;
    height: 125px;
}

.articles-featured-cover .article-cover-cubes {
    right: 10%;
    bottom: 36px;
}

.featured-article-body {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 22px;
}

.featured-article-body > span,
.listing-card-body > span {
    justify-self: start;
    min-height: 22px;
    padding: 4px 8px;
    border-radius: 4px;
    background: #eafaff;
    color: var(--front-color-cyan);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.featured-article-body > span {
    position: absolute;
    left: 18px;
    top: -13px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(17, 38, 71, .08);
}

.featured-article-body h2 {
    margin: 4px 0 0;
    color: var(--front-color-ink);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.22;
}

.featured-article-body p {
    margin: 0;
    color: var(--front-color-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.featured-article-body > strong {
    display: inline-flex;
    justify-self: end;
    width: fit-content;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid var(--front-color-border);
    border-radius: 6px;
    color: var(--front-color-ink);
    font-size: 13px;
    font-weight: 700;
}

.articles-layout {
    display: grid;
    gap: 32px;
    align-items: start;
}

.articles-main {
    min-width: 0;
}

.articles-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.articles-filter-bar a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid var(--front-color-border);
    border-radius: 7px;
    background: #fff;
    color: var(--front-color-ink);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(17, 38, 71, .04);
}

.articles-filter-bar a.active {
    border-color: var(--front-color-cyan);
    background: var(--front-color-cyan);
    color: #fff;
}

.articles-list-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
    color: var(--front-color-ink);
    font-size: 26px;
    font-weight: 700;
}

.articles-list-section h2 i {
    color: var(--front-color-cyan);
}

.articles-grid {
    display: grid;
    gap: 24px;
}

.listing-article-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--front-color-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--front-shadow-card);
}

.listing-thumb {
    position: relative;
    display: flex;
    min-height: 154px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    font-size: 48px;
}

.listing-thumb-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border-bottom: 1px solid var(--front-color-border);
}

.listing-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 28%, rgba(255, 255, 255, .35), transparent 15%),
        radial-gradient(circle at 80% 72%, rgba(255, 255, 255, .3), transparent 17%);
}

.listing-thumb i {
    position: relative;
    z-index: 1;
}

.listing-thumb-cyan {
    background: linear-gradient(145deg, #24bfd6, #8df0ff);
}

.listing-thumb-dark {
    background: linear-gradient(145deg, #061839, #0da3c5);
}

.listing-thumb-purple {
    background: linear-gradient(145deg, #efe2ff, #aa8aff);
}

.listing-thumb-store {
    background: linear-gradient(145deg, #e9f8ff, #43b9f0);
}

.listing-thumb-phone {
    background: linear-gradient(145deg, #efe8ff, #6676ff);
}

.listing-thumb-search,
.listing-thumb-content {
    background: linear-gradient(145deg, #dbedff, #78b8ff);
}

.listing-thumb-code,
.listing-thumb-minimal-code {
    background: linear-gradient(145deg, #152e60, #6cc8ff);
}

.listing-thumb-filters {
    background: linear-gradient(145deg, #dce8ff, #8aa8ff);
}

.listing-thumb-blocks {
    background: linear-gradient(145deg, #eefbff, #09abc1);
}

.listing-thumb-idea {
    background: linear-gradient(145deg, #fff5d5, #ffb433);
}

.listing-card-body {
    display: grid;
    gap: 9px;
    padding: 16px;
}

.listing-card-body h3 {
    margin: 0;
    color: var(--front-color-ink);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.28;
}

.listing-card-body p {
    margin: 0;
    color: var(--front-color-text);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.listing-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
}

.listing-card-meta small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--front-color-muted);
    font-size: 11px;
    font-weight: 600;
}

.listing-card-meta i {
    color: var(--front-color-muted);
}

.articles-load-more {
    display: flex;
    min-width: 225px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 24px auto 0;
    border: 1px solid var(--front-color-border);
    border-radius: 7px;
    background: #fff;
    color: var(--front-color-cyan);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.articles-empty {
    margin: 18px 0 0;
    color: var(--front-color-text);
    font-size: 14px;
    font-weight: 500;
}

.articles-sidebar {
    display: grid;
    gap: 28px;
}

.articles-category-list {
    display: grid;
    gap: 13px;
}

.articles-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--front-color-text);
    font-size: 13px;
    font-weight: 600;
}

.articles-category-list a.active,
.articles-tags a.active {
    color: var(--front-color-cyan);
}

.articles-category-list strong {
    color: var(--front-color-text);
    font-size: 13px;
    font-weight: 600;
}

.articles-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.articles-tags a {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 11px;
    border: 1px solid rgba(3, 169, 204, .5);
    border-radius: 6px;
    background: #f6fcff;
    color: var(--front-color-cyan);
    font-size: 12px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .articles-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
    }

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

@media (min-width: 992px) {
    .articles-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .articles-sidebar {
        position: sticky;
        top: 18px;
    }
}

@media (min-width: 1200px) {
    .articles-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .articles-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 767.98px) {
    .articles-page {
        padding-top: 10px;
    }

    .articles-hero-section {
        padding-top: 10px;
        padding-bottom: 24px;
    }

    .articles-search {
        width: 100%;
    }

    .featured-article-body h2 {
        font-size: 21px;
    }

    .articles-featured-cover .article-cover-board {
        left: 9%;
    }

    .articles-featured-cover .article-cover-panel {
        right: -12%;
    }

    .articles-filter-bar {
        gap: 8px;
        margin-bottom: 24px;
    }

    .articles-filter-bar a {
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
        padding: 0 10px;
        text-align: center;
    }

    .articles-list-section h2 {
        font-size: 24px;
    }
}

/* ==========================================================================
   Listagem de serviços
   ========================================================================== */

.services-page {
    padding-top: 18px;
}

.services-hero-section {
    padding: 18px 0 18px;
}

.services-hero-grid {
    display: grid;
    gap: 28px;
    align-items: center;
}

.services-hero-copy {
    position: relative;
    z-index: 5;
    display: grid;
    gap: 18px;
}

.services-hero-copy h1 {
    max-width: 520px;
    margin: 0;
    color: var(--front-color-ink);
    font-weight: 700;
}

.services-hero-copy p {
    max-width: 560px;
    margin: 0;
    color: var(--front-color-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 6px;
}

.services-hero-actions .talk-button,
.services-hero-actions .secondary-button {
    min-width: 220px;
}

.services-hero-visual {
    position: relative;
    min-height: 360px;
}

.services-page .services-hero-visual {
    display: flex;
    min-height: 350px;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.services-page .services-hero-shape {
    position: relative;
    inset: auto;
    display: flex;
    width: min(100%, 620px);
    height: auto;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: transparent;
}

.services-page .services-hero-shape::after {
    display: none;
}

.services-hero-illustration {
    display: block;
    width: min(100%, 610px);
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 24px 28px rgba(17, 38, 71, .14));
}

.services-hero-shape {
    position: absolute;
    right: -38px;
    top: 18px;
    width: 310px;
    height: 275px;
    border-radius: 62% 38% 57% 43% / 45% 62% 38% 55%;
    background: linear-gradient(145deg, var(--front-color-orange), var(--front-color-red));
}

.services-hero-shape::after {
    content: "";
    position: absolute;
    right: -32px;
    bottom: -42px;
    width: 190px;
    height: 120px;
    background-image: radial-gradient(rgba(3, 169, 204, .35) 1.2px, transparent 1.2px);
    background-size: 14px 14px;
}

.services-notebook {
    position: absolute;
    right: 55px;
    bottom: 6px;
    z-index: 2;
    width: min(590px, 92%);
    height: auto;
    filter: drop-shadow(0 24px 24px rgba(17, 38, 71, .14));
}

.services-phone-mock {
    position: absolute;
    right: 42px;
    bottom: 12px;
    z-index: 4;
    display: grid;
    align-content: start;
    gap: 9px;
    width: 104px;
    min-height: 205px;
    padding: 18px 11px;
    border: 7px solid #111827;
    border-radius: 22px;
    background:
        linear-gradient(rgba(2, 17, 32, .16), rgba(2, 17, 32, .32)),
        linear-gradient(145deg, #0d92a3, #10233d 52%, #f4f5f7 53%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(17, 38, 71, .22);
}

.services-phone-mock span {
    color: #13203b;
    font-size: 9px;
    font-weight: 700;
}

.services-phone-mock strong {
    margin-top: 16px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.08;
}

.services-phone-mock em {
    display: inline-flex;
    width: fit-content;
    min-height: 20px;
    align-items: center;
    padding: 0 8px;
    border-radius: 10px;
    background: var(--front-color-cyan);
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
}

.services-floating-card {
    position: absolute;
    z-index: 5;
    display: grid;
    gap: 3px;
    min-width: 122px;
    padding: 12px 14px;
    border: 1px solid var(--front-color-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, .93);
    box-shadow: var(--front-shadow-card);
}

.services-floating-card span,
.services-floating-card small {
    color: var(--front-color-text);
    font-size: 10px;
    font-weight: 600;
}

.services-floating-card strong {
    color: var(--front-color-ink);
    font-size: 17px;
    font-weight: 700;
}

.services-floating-card i {
    color: var(--front-color-cyan);
    font-size: 28px;
}

.services-card-users {
    left: 18px;
    top: 150px;
}

.services-card-orders {
    right: 78px;
    top: 26px;
}

.services-card-conversion {
    right: -6px;
    top: 128px;
}

.services-benefit-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.services-benefit-strip span {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--front-color-text);
    font-size: 13px;
    font-weight: 700;
}

.services-benefit-strip span + span {
    border-top: 0;
}

.services-benefit-strip i {
    color: var(--front-color-cyan);
    font-size: 19px;
}

.services-list-section {
    padding: 16px 0 0;
}

.services-panel {
    padding: 22px;
    border: 1px solid var(--front-color-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--front-shadow-card);
}

.services-section-heading {
    margin-bottom: 20px;
}

.services-section-heading h2,
.services-support-section h2 {
    margin: 0 0 8px;
    color: var(--front-color-ink);
    font-size: 26px;
    font-weight: 700;
}

.services-section-heading p {
    margin: 0;
    color: var(--front-color-text);
    font-size: 13px;
    font-weight: 500;
}

.service-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    height: 100%;
    min-height: 210px;
    padding: 26px 24px;
    border: 1px solid var(--front-color-border);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(17, 38, 71, .05);
}

.service-detail-card > div {
    display: grid;
    align-content: start;
}

.service-detail-card > i,
.service-card-icon-link {
    color: var(--front-color-cyan);
    font-size: 46px;
}

.service-card-icon-link {
    display: inline-flex;
    width: fit-content;
    height: fit-content;
    align-items: center;
    justify-content: center;
}

.service-detail-card h3 a {
    color: inherit;
}

.service-detail-card h3,
.service-mini-card h3,
.services-benefits-row h3,
.services-step-card h3 {
    margin: 0;
    color: var(--front-color-ink);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.service-detail-card p,
.service-mini-card p,
.services-benefits-row p,
.services-step-card p {
    margin: 8px 0 14px;
    color: var(--front-color-text);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.service-detail-card ul {
    display: grid;
    gap: 8px;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.service-detail-card li {
    position: relative;
    padding-left: 22px;
    color: var(--front-color-text);
    font-size: 12px;
    font-weight: 500;
}

.service-detail-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 9px;
    height: 5px;
    border-left: 1.5px solid var(--front-color-cyan);
    border-bottom: 1.5px solid var(--front-color-cyan);
    transform: rotate(-45deg);
}

.service-detail-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--front-color-cyan);
    font-size: 13px;
    font-weight: 700;
}

.service-detail-card h3 a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.service-detail-card .service-card-icon-link {
    color: var(--front-color-cyan);
    font-size: 46px;
}

.service-detail-card .service-card-more {
    justify-content: flex-end;
    justify-self: end;
}

.services-extra-heading {
    margin: 26px 0 14px;
}

.services-extra-heading h2 {
    font-size: 22px;
}

.service-mini-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    height: 100%;
    min-height: 100px;
    padding: 18px 16px;
    border: 1px solid var(--front-color-border);
    border-radius: 8px;
    background: #fff;
}

.service-mini-card > i {
    color: var(--front-color-cyan);
    font-size: 30px;
}

.service-mini-card h3 {
    font-size: 13px;
}

.service-mini-card p {
    margin: 5px 0 0;
    font-size: 11px;
    line-height: 1.45;
}

.services-benefits-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
    gap: 14px;
    margin-top: 24px;
    padding: 20px 18px;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(3, 169, 204, .08), rgba(255, 255, 255, .9));
}

.services-benefits-row article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
}

.services-benefits-row i {
    color: var(--front-color-cyan);
    font-size: 42px;
}

.services-benefits-row h3 {
    font-size: 17px;
}

.services-benefits-row p {
    margin: 3px 0 0;
}

.services-support-section {
    padding: 24px 0 0;
}

.services-steps {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.services-step-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    min-height: 92px;
    padding: 18px 22px;
    border: 1px solid var(--front-color-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(17, 38, 71, .05);
}

.services-step-card > i {
    color: var(--front-color-cyan);
    font-size: 42px;
}

.services-step-card h3 {
    font-size: 14px;
}

.services-step-card p {
    margin: 4px 0 0;
    font-size: 12px;
}

.services-stats {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 28px;
}

.services-stats div:nth-child(4) {
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.services-stats div:nth-child(5) {
    border-right: 0;
}

.services-cta-section {
    padding: 28px 0 18px;
}

.services-cta-card {
    display: grid;
    gap: 14px;
    align-items: center;
    padding: 26px 110px;
    border: 1px solid var(--front-color-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--front-shadow-card);
}

.services-cta-card h2 {
    margin: 0 0 8px;
    color: var(--front-color-ink);
    font-size: 28px;
    font-weight: 700;
}

.services-cta-card p {
    max-width: 620px;
    margin: 0;
    color: var(--front-color-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.services-cta-card small {
    color: var(--front-color-muted);
    font-size: 12px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .services-benefit-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .services-benefit-strip span + span {
        border-top: 0;
        border-left: 1px solid var(--front-color-border);
    }

    .services-benefits-row {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    }

    .services-benefits-row article + article {
        border-left: 1px solid var(--front-color-border);
        padding-left: 18px;
    }

    .services-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .services-step-card:not(:last-child)::after {
        content: "\f061";
        position: absolute;
        right: -18px;
        top: 50%;
        z-index: 2;
        color: var(--front-color-muted);
        font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
        font-size: 16px;
        font-weight: 700;
        transform: translateY(-50%);
    }

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

    .services-cta-card small {
        grid-column: 2;
        text-align: center;
    }
}

@media (min-width: 992px) {
    .services-hero-grid {
        grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr);
        gap: 28px;
    }
}

@media (max-width: 991.98px) {
    .services-hero-visual {
        min-height: 300px;
    }

    .services-page .services-hero-visual {
        min-height: 290px;
    }

    .services-hero-illustration {
        width: min(100%, 520px);
        max-height: 290px;
    }

    .services-notebook {
        right: 70px;
        width: min(500px, 88%);
    }

    .services-card-users {
        left: 0;
        top: 120px;
    }

    .services-card-orders {
        right: 60px;
        top: 8px;
    }

    .services-card-conversion {
        right: 0;
        top: 100px;
    }

    .services-cta-card {
        padding: 24px;
    }
}

@media (max-width: 767.98px) {
    .services-page {
        padding-top: 10px;
    }

    .services-hero-copy p {
        font-size: 15px;
    }

    .services-hero-actions {
        display: grid;
    }

    .services-hero-actions .talk-button,
    .services-hero-actions .secondary-button {
        width: 100%;
        min-width: 0;
    }

    .services-hero-visual {
        min-height: 250px;
        margin-top: -4px;
    }

    .services-page .services-hero-visual {
        min-height: 220px;
        margin-top: 6px;
    }

    .services-hero-illustration {
        width: min(100%, 390px);
        max-height: 220px;
    }

    .services-hero-shape {
        right: -86px;
        top: 12px;
        width: 235px;
        height: 220px;
    }

    .services-notebook {
        right: 30px;
        bottom: 24px;
        width: 380px;
        max-width: none;
    }

    .services-phone-mock {
        right: 8px;
        bottom: 10px;
        width: 86px;
        min-height: 168px;
        border-width: 6px;
    }

    .services-floating-card {
        min-width: 94px;
        padding: 9px 10px;
    }

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

    .services-floating-card i {
        font-size: 22px;
    }

    .services-card-users {
        left: 0;
        top: 122px;
    }

    .services-card-orders {
        right: 72px;
        top: 0;
    }

    .services-card-conversion {
        right: 0;
        top: 76px;
    }

    .services-panel {
        padding: 16px;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px 18px;
    }

    .service-detail-card > i {
        font-size: 40px;
    }

    .service-mini-card {
        min-height: auto;
    }

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

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

    .services-stats div:nth-child(2n) {
        border-right: 0;
    }

    .services-stats div:nth-child(5) {
        grid-column: 1 / -1;
        border-right: 0;
    }

    .services-support-section h2,
    .services-section-heading h2 {
        font-size: 24px;
    }

    .services-step-card {
        min-height: auto;
    }

    .services-cta-card {
        padding: 20px 16px;
    }

    .services-cta-card h2 {
        font-size: 24px;
    }

    .services-cta-card .talk-button {
        width: 100%;
    }
}

/* ==========================================================================
   Interna de serviço
   ========================================================================== */

.service-page {
    padding-top: 18px;
}

.service-hero-section {
    padding: 18px 0 18px;
}

.service-hero-grid {
    display: grid;
    gap: 28px;
    align-items: center;
}

.service-hero-copy {
    position: relative;
    z-index: 5;
    display: grid;
    gap: 16px;
}

.service-hero-copy h1 {
    margin: 0;
    color: var(--front-color-ink);
    font-weight: 700;
}

.service-hero-copy p {
    max-width: 575px;
    margin: 0;
    color: var(--front-color-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.62;
}

.service-hero-copy .service-summary {
    color: var(--front-color-text);
    font-size: 18px;
    line-height: 1.5;
}

.service-description-html,
.service-overview-html {
    max-width: 575px;
}

.service-description-html p,
.service-overview-html p {
    margin: 0 0 12px;
}

.service-description-html p:last-child,
.service-overview-html p:last-child {
    margin-bottom: 0;
}

.service-hero-visual {
    position: relative;
    min-height: 350px;
}

.service-page .service-hero-visual {
    display: flex;
    min-height: 350px;
    align-items: center;
    justify-content: center;
}

.service-hero-image {
    position: relative;
    z-index: 3;
    width: min(610px, 94%);
    height: auto;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 24px 28px rgba(17, 38, 71, .18));
}

.service-screen-mock {
    position: absolute;
    right: 86px;
    bottom: 18px;
    z-index: 3;
    width: min(470px, 82%);
    overflow: hidden;
    border: 9px solid #111827;
    border-bottom-width: 18px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 24px 38px rgba(17, 38, 71, .2);
}

.service-screen-top {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 34px;
    padding: 0 18px;
    color: var(--front-color-ink);
    font-size: 9px;
    font-weight: 700;
}

.service-screen-top strong {
    margin-right: auto;
    font-weight: 700;
}

.service-screen-hero {
    min-height: 188px;
    padding: 36px 38px;
    background:
        radial-gradient(circle at 78% 38%, rgba(3, 169, 204, .36), transparent 28%),
        linear-gradient(135deg, #08213d, #06395a);
    color: #fff;
}

.service-screen-hero h2 {
    max-width: 245px;
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
}

.service-screen-hero p {
    max-width: 255px;
    margin: 0 0 15px;
    color: rgba(255, 255, 255, .82);
    font-size: 11px;
}

.service-screen-hero em {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 14px;
    border-radius: 3px;
    background: var(--front-color-cyan);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

.service-screen-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 18px 24px;
    text-align: center;
}

.service-screen-services span {
    display: grid;
    gap: 5px;
    color: var(--front-color-ink);
    font-size: 9px;
    font-weight: 700;
}

.service-screen-services i {
    color: var(--front-color-cyan);
    font-size: 18px;
}

.service-phone-mock {
    position: absolute;
    right: 16px;
    bottom: 20px;
    z-index: 5;
    display: grid;
    align-content: start;
    gap: 12px;
    width: 120px;
    min-height: 220px;
    padding: 28px 12px 16px;
    border: 8px solid #111827;
    border-radius: 24px;
    background:
        linear-gradient(rgba(2, 17, 32, .05), rgba(2, 17, 32, .78)),
        linear-gradient(145deg, #0b425a, #061839 56%, #f5f7fb 57%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(17, 38, 71, .22);
}

.service-phone-mock strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.service-phone-mock span {
    color: rgba(255, 255, 255, .8);
    font-size: 8px;
    font-weight: 500;
    line-height: 1.35;
}

.service-phone-mock em {
    display: inline-flex;
    width: fit-content;
    min-height: 20px;
    align-items: center;
    padding: 0 7px;
    border-radius: 9px;
    background: var(--front-color-cyan);
    font-size: 7px;
    font-style: normal;
    font-weight: 700;
}

.service-overview-section,
.service-detail-section,
.service-examples-section {
    padding-top: 18px;
}

.service-overview-grid {
    display: grid;
    gap: 26px;
}

.service-overview-grid p {
    margin: 0 0 14px;
    color: var(--front-color-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.62;
}

.service-cards-row .project-feature-card {
    height: 100%;
}

.service-feature-card {
    min-height: 132px;
}

.service-spaced-title {
    margin-top: 28px;
}

.service-detail-section .project-demo-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    height: 100%;
    min-height: 118px;
    align-items: flex-start;
    padding: 20px;
}

.service-detail-section .project-demo-card i {
    color: var(--front-color-cyan);
    font-size: 34px;
}

.service-detail-section .project-demo-card h3 {
    margin: 0 0 8px;
    color: var(--front-color-ink);
    font-size: var(--front-font-size-card-title);
    font-weight: 700;
    line-height: 1.2;
}

.service-detail-section .project-demo-card p {
    margin: 0;
    color: var(--front-color-text);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.service-workflow {
    display: grid;
    gap: 14px;
}

.service-learning-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
}

.service-learning-grid .project-learning-card:first-child {
    background: linear-gradient(145deg, rgba(255, 106, 22, .08), rgba(255, 255, 255, .86));
}

.service-learning-grid .project-learning-card:nth-child(2) {
    background: linear-gradient(145deg, rgba(3, 169, 204, .08), rgba(255, 255, 255, .86));
}

.service-learning-grid .project-learning-card:nth-child(3) {
    background: linear-gradient(145deg, rgba(139, 73, 236, .08), rgba(255, 255, 255, .86));
}

.service-learning-grid .project-learning-card.is-challenge {
    background: linear-gradient(145deg, rgba(255, 106, 22, .08), rgba(255, 255, 255, .86));
}

.service-learning-grid .project-learning-card.is-solution {
    background: linear-gradient(145deg, rgba(3, 169, 204, .08), rgba(255, 255, 255, .86));
}

.service-learning-grid .project-learning-card.is-fit,
.service-learning-grid .project-learning-card.is-learning {
    background: linear-gradient(145deg, rgba(139, 73, 236, .08), rgba(255, 255, 255, .86));
}

.service-example-card {
    overflow: hidden;
    border: 1px solid var(--front-color-border);
    border-radius: 8px;
    background: #fff;
    text-align: center;
    box-shadow: var(--front-shadow-card);
}

.service-example-thumb {
    display: flex;
    min-height: 142px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 46px;
}

.service-example-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border-bottom: 1px solid var(--front-color-border);
}

.service-example-dark {
    background: linear-gradient(145deg, #061839, #0a6f90);
}

.service-example-purple {
    background: linear-gradient(145deg, #f2eaff, #8c6cff);
}

.service-example-dashboard {
    background: linear-gradient(145deg, #103352, #d9f5ff);
}

.service-example-card h3 {
    margin: 0;
    padding: 10px;
    color: var(--front-color-text);
    font-size: 15px;
    font-weight: 500;
}

.service-bottom-cta {
    padding: 28px 0 18px;
}

.service-bottom-card {
    display: grid;
    gap: 16px;
    align-items: center;
    padding: 24px 70px;
    border: 1px solid var(--front-color-border);
    border-radius: 10px;
    background:
        linear-gradient(110deg, rgba(3, 169, 204, .08), rgba(255, 255, 255, .92) 50%),
        rgba(255, 255, 255, .9);
    box-shadow: var(--front-shadow-card);
}

.service-bottom-card h2 {
    max-width: 430px;
    margin: 0;
    color: var(--front-color-ink);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.12;
}

.service-bottom-card p {
    margin: 0;
    color: var(--front-color-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .service-overview-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
        align-items: center;
    }

    .service-workflow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-learning-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-bottom-card {
        grid-template-columns: minmax(260px, .75fr) 1fr auto;
    }
}

@media (min-width: 992px) {
    .service-hero-grid {
        grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
    }

    .service-workflow {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .service-workflow .services-step-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .service-workflow .services-step-card:not(:last-child)::after {
        content: "→";
        right: -18px;
        color: var(--front-color-cyan);
        font-family: Arial, Helvetica, sans-serif;
        font-size: 22px;
        font-weight: 700;
        line-height: 1;
    }
}

@media (max-width: 991.98px) {
    .service-workflow .services-step-card::after {
        content: none;
    }

    .service-page .service-hero-visual {
        min-height: 300px;
    }

    .service-hero-visual {
        min-height: 300px;
    }

    .service-screen-mock {
        right: 60px;
        width: min(440px, 88%);
    }
}

@media (max-width: 767.98px) {
    .service-page {
        padding-top: 10px;
    }

    .service-page .service-hero-visual {
        min-height: 220px;
    }

    .service-hero-copy .service-summary {
        font-size: 16px;
    }

    .service-hero-visual {
        min-height: 255px;
    }

    .service-screen-mock {
        right: 32px;
        bottom: 22px;
        width: 360px;
        max-width: none;
        border-width: 7px;
        border-bottom-width: 14px;
    }

    .service-screen-top {
        gap: 8px;
        padding: 0 10px;
    }

    .service-screen-hero {
        min-height: 142px;
        padding: 26px 22px;
    }

    .service-screen-hero h2 {
        font-size: 20px;
    }

    .service-screen-services {
        padding: 12px;
    }

    .service-phone-mock {
        right: 0;
        bottom: 18px;
        width: 92px;
        min-height: 170px;
        border-width: 6px;
    }

    .service-phone-mock strong {
        font-size: 11px;
    }

    .service-bottom-card {
        padding: 20px 16px;
    }

    .service-bottom-card h2 {
        font-size: 26px;
    }

    .service-bottom-card .talk-button {
        width: 100%;
    }
}

/* HTML blocks inserted by Redactor */
.site-article-quote,
.site-article-steps,
.site-article-cta,
.site-project-overview,
.site-project-card-grid,
.site-project-learning,
.site-service-deliveries,
.site-service-workflow,
.site-service-decision {
    margin: 24px 0;
}

.site-article-quote {
    display: grid;
    gap: 10px;
    align-content: center;
    border: 1px solid var(--front-color-border);
    border-radius: var(--front-radius-card);
    background: linear-gradient(135deg, rgba(3, 169, 204, .08), rgba(3, 169, 204, .02));
    padding: 24px;
    color: var(--front-color-ink);
}

.site-article-quote i {
    color: var(--front-color-cyan);
    font-size: 28px;
}

.site-article-quote blockquote {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.site-article-quote p,
.site-article-cta p,
.site-project-overview p,
.site-project-card-grid p,
.site-project-learning p,
.site-service-deliveries p,
.site-service-workflow p,
.site-service-decision p {
    margin: 0;
    color: var(--front-color-text);
    font-size: 14px;
    font-weight: 500;
    line-height: var(--front-line-height-text);
}

.site-article-steps,
.site-article-cta,
.site-project-overview,
.site-project-learning article,
.site-service-decision article {
    border: 1px solid var(--front-color-border);
    border-radius: var(--front-radius-card);
    background: var(--front-color-white);
    box-shadow: var(--front-shadow-card);
}

.site-article-steps {
    padding: 20px;
}

.site-article-steps h3,
.site-article-cta h3,
.site-project-overview h2,
.site-project-card-grid h3,
.site-project-learning h3,
.site-service-deliveries h3,
.site-service-workflow h3,
.site-service-decision h3 {
    margin: 0;
    color: var(--front-color-ink);
    font-weight: 700;
    line-height: 1.25;
}

.site-article-steps h3 {
    color: var(--front-color-cyan);
    font-size: 15px;
}

.site-article-steps ol {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.site-article-steps li {
    position: relative;
    min-height: 70px;
    padding-left: 34px;
}

.site-article-steps li::before {
    content: counter(list-item);
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--front-color-cyan);
    color: var(--front-color-white);
    font-size: 12px;
    font-weight: 700;
}

.site-article-steps strong,
.site-project-overview strong {
    display: block;
    color: var(--front-color-ink);
    font-size: 13px;
    font-weight: 700;
}

.site-article-steps span,
.site-project-overview span {
    display: block;
    color: var(--front-color-text);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.site-article-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(3, 169, 204, .08), rgba(255, 255, 255, .95));
}

.site-article-cta article {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-article-cta i,
.site-project-card-grid i,
.site-service-deliveries i,
.site-service-workflow i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--front-color-cyan);
    font-size: 30px;
}

.site-page-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: var(--front-radius-card);
    background: linear-gradient(90deg, var(--front-color-orange), var(--front-color-red));
    color: var(--front-color-white);
    font-size: 14px;
    font-weight: 700;
    padding: 0 26px;
}

.site-project-overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
    gap: 24px;
    padding: 28px;
    background: var(--front-color-soft);
}

.site-project-overview aside {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.site-project-overview aside div {
    border: 1px solid var(--front-color-border);
    border-radius: var(--front-radius-card);
    background: var(--front-color-white);
    padding: 16px;
}

.site-project-card-grid,
.site-service-deliveries,
.site-service-workflow {
    display: grid;
    gap: 14px;
}

.site-project-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-service-deliveries {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-service-workflow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-project-card-grid article,
.site-service-deliveries article,
.site-service-workflow article {
    border: 1px solid var(--front-color-border);
    border-radius: var(--front-radius-card);
    background: var(--front-color-white);
    box-shadow: var(--front-shadow-card);
    padding: 18px;
}

.site-service-workflow article {
    position: relative;
    text-align: center;
}

.site-service-workflow span {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--front-color-cyan);
    color: var(--front-color-white);
    font-size: 12px;
    font-weight: 700;
}

.site-project-learning,
.site-service-decision {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.site-project-learning article,
.site-service-decision article {
    padding: 22px;
}

.site-project-learning i,
.site-service-decision i {
    display: block;
    margin-bottom: 10px;
    color: var(--front-color-cyan);
    font-size: 28px;
}

.site-project-learning .is-challenge,
.site-service-decision .is-challenge {
    background: linear-gradient(135deg, rgba(255, 106, 22, .1), rgba(255, 255, 255, .96));
}

.site-project-learning .is-solution,
.site-service-decision .is-solution {
    background: linear-gradient(135deg, rgba(3, 169, 204, .09), rgba(255, 255, 255, .96));
}

.site-project-learning .is-learning,
.site-service-decision .is-fit {
    background: linear-gradient(135deg, rgba(127, 87, 255, .1), rgba(255, 255, 255, .96));
}

/* Página 404 */
.not-found-page {
    padding: 42px 0 70px;
}

.not-found-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(300px, .85fr);
    align-items: center;
    gap: 56px;
    min-height: 520px;
}

.not-found-copy {
    max-width: 650px;
}

.not-found-copy .section-pill {
    margin-bottom: 18px;
}

.not-found-copy h1,
.not-found-copy h2 {
    margin: 0 0 18px;
    color: var(--front-color-ink);
    font-weight: 700;
}

.not-found-copy h1 strong,
.not-found-copy h2 strong {
    color: var(--front-color-red);
    font-weight: 700;
}

.not-found-copy p {
    margin: 0 0 14px;
    color: var(--front-color-text);
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 500;
    line-height: var(--front-line-height-text);
}

.not-found-copy ul,
.not-found-copy ol {
    margin: 18px 0 0;
    padding-left: 20px;
    color: var(--front-color-text);
    font-weight: 500;
    line-height: var(--front-line-height-text);
}

.not-found-copy li + li {
    margin-top: 8px;
}

.not-found-actions {
    margin-top: 28px;
}

.not-found-actions .primary-button {
    min-width: 220px;
}

.not-found-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.not-found-visual::before {
    content: "";
    position: absolute;
    inset: 12% 2% 8% auto;
    width: 72%;
    border-radius: 42% 58% 48% 52% / 55% 38% 62% 45%;
    background: linear-gradient(135deg, rgba(255, 106, 22, .18), rgba(3, 169, 204, .12));
    filter: blur(1px);
}

.not-found-visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 500px);
    max-height: 430px;
    object-fit: contain;
}

.not-found-fallback {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: min(100%, 430px);
    aspect-ratio: 1.22;
    border: 1px solid var(--front-color-border);
    border-radius: var(--front-radius-card);
    background: linear-gradient(135deg, rgba(3, 169, 204, .1), rgba(255, 255, 255, .95));
    box-shadow: var(--front-shadow-soft);
}

.not-found-fallback i {
    color: var(--front-color-cyan);
    font-size: 72px;
}

.not-found-fallback span {
    color: var(--front-color-ink);
    font-size: var(--front-font-size-hero-title);
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 1199.98px) {
    .process-step .step-icon > i {
        margin-left: 25px;
    }
}

@media (max-width: 991.98px) {
    .process-step .step-icon > i {
        margin-left: 25px;
    }

    .site-article-steps ol,
    .site-project-overview,
    .site-project-overview aside,
    .site-project-card-grid,
    .site-service-deliveries,
    .site-service-workflow,
    .site-project-learning,
    .site-service-decision {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .not-found-layout {
        grid-template-columns: minmax(0, .95fr) minmax(260px, .75fr);
        gap: 32px;
        min-height: 460px;
    }
}

@media (max-width: 767.98px) {
    .site-article-steps ol,
    .site-article-cta,
    .site-project-overview,
    .site-project-overview aside,
    .site-project-card-grid,
    .site-service-deliveries,
    .site-service-workflow,
    .site-project-learning,
    .site-service-decision {
        grid-template-columns: 1fr;
    }

    .site-article-cta article {
        align-items: flex-start;
    }

    .site-article-cta .site-page-button {
        width: 100%;
    }

    .not-found-page {
        padding: 18px 0 46px;
    }

    .not-found-layout {
        display: flex;
        flex-direction: column;
        min-height: 0;
        gap: 24px;
    }

    .not-found-visual {
        order: 1;
        width: 100%;
    }

    .not-found-copy {
        order: 2;
        max-width: none;
    }

    .not-found-actions .primary-button {
        width: 100%;
    }

    .not-found-visual img {
        max-height: 280px;
    }
}
