:root {
    --site2026-primary-50: #eff9fb;
    --site2026-primary-100: #d7f0f4;
    --site2026-primary-200: #b2e0e8;
    --site2026-primary-300: #82c9d5;
    --site2026-primary-400: #4caec0;
    --site2026-primary-500: #1d8a9c;
    --site2026-primary-600: #187285;
    --site2026-primary-700: #145c6c;
    --site2026-primary-800: #124a56;
    --site2026-primary-900: #103b45;

    --site2026-accent-50: #fdf1f0;
    --site2026-accent-100: #fbe0de;
    --site2026-accent-200: #f6c1be;
    --site2026-accent-300: #ee9793;
    --site2026-accent-400: #e36f6b;
    --site2026-accent-500: #d9534f;
    --site2026-accent-600: #bd4340;
    --site2026-accent-700: #9d3836;
    --site2026-accent-800: #7d302f;
    --site2026-accent-900: #642928;

    --site2026-neutral-0: #ffffff;
    --site2026-neutral-50: #f8fafb;
    --site2026-neutral-100: #eef2f4;
    --site2026-neutral-200: #d9e2e7;
    --site2026-neutral-300: #b8c6cf;
    --site2026-neutral-400: #7f929d;
    --site2026-neutral-500: #5d6e78;
    --site2026-neutral-600: #43515a;
    --site2026-neutral-700: #2e3940;
    --site2026-neutral-800: #1f282d;
    --site2026-neutral-900: #141a1d;

    --site2026-background: linear-gradient(180deg, #f5fbfc 0%, #ffffff 18%, #ffffff 100%);
    --site2026-surface: rgba(255, 255, 255, 0.86);
    --site2026-surface-strong: #ffffff;
    --site2026-border: rgba(20, 58, 69, 0.10);
    --site2026-border-strong: rgba(20, 58, 69, 0.16);
    --site2026-text: var(--site2026-neutral-900);
    --site2026-text-soft: var(--site2026-neutral-600);
    --site2026-shadow-soft: 0 18px 50px rgba(16, 59, 69, 0.10);
    --site2026-shadow-panel: 0 24px 70px rgba(16, 59, 69, 0.15);
    --site2026-radius-xs: 0.75rem;
    --site2026-radius-sm: 1rem;
    --site2026-radius-md: 1.5rem;
    --site2026-radius-lg: 2rem;
    --site2026-container: 1280px;
}

.home30-ai {
    background:
        radial-gradient(ellipse at 6% 12%, rgba(29, 138, 156, 0.36) 0%, transparent 42%),
        radial-gradient(ellipse at 94% 80%, rgba(217, 83, 79, 0.22) 0%, transparent 36%),
        radial-gradient(ellipse at 50% 0%, rgba(76, 174, 192, 0.12) 0%, transparent 28%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 4rem,
            rgba(255, 255, 255, 0.016) 4rem,
            rgba(255, 255, 255, 0.016) calc(4rem + 1px)
        ),
        #0e1419;
}

.home30-ai2 {
    display: grid;
    gap: 2.8rem;
}

.home30-ai2__intro {
    display: grid;
    gap: 1.35rem;
    max-width: 62rem;
}

.home30-ai2__eyebrow {
    margin: 0;
    color: var(--site2026-primary-300);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home30-ai2__headline {
    margin: 0;
    max-width: 20ch;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(2.1rem, 4.6vw, 3.5rem);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.home30-ai2__body {
    margin: 0;
    max-width: 62ch;
    font-size: 1.04rem;
    line-height: 1.76;
    color: rgba(255, 255, 255, 0.68);
}

.home30-ai2__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.home30-ai2__signals span {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.84rem;
    border: 1px solid rgba(130, 201, 213, 0.22);
    border-radius: 999px;
    background: rgba(29, 138, 156, 0.12);
    color: var(--site2026-primary-200);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home30-ai2__aside {
    display: grid;
    gap: 0.5rem;
    max-width: 36rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(130, 201, 213, 0.16);
    border-left: 3px solid var(--site2026-primary-400);
    border-radius: 0 1.1rem 1.1rem 0;
    background: rgba(29, 138, 156, 0.08);
}

.home30-ai2__aside strong {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.93rem;
    font-weight: 700;
}

.home30-ai2__aside p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.90rem;
    line-height: 1.64;
}

.home30-ai2__products {
    display: grid;
    gap: 1.2rem;
}

.home30-ai2__product {
    position: relative;
    display: grid;
    gap: 1.2rem;
    padding: 2rem;
    border-radius: 1.8rem;
    overflow: hidden;
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.32),
        0 8px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease;
}

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

.home30-ai2__product-bg {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 13rem;
    height: 13rem;
    pointer-events: none;
    opacity: 0.13;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.home30-ai2__product:hover .home30-ai2__product-bg {
    opacity: 0.20;
    transform: scale(1.05) rotate(-4deg);
}

.home30-ai2__product-bg svg {
    width: 100%;
    height: 100%;
}

.home30-ai2__product--edusquad .home30-ai2__product-bg {
    color: var(--site2026-primary-300);
}

.home30-ai2__product--consultoria .home30-ai2__product-bg {
    color: var(--site2026-accent-300);
}

.home30-ai2__product::before {
    display: none;
}

.home30-ai2__product--edusquad {
    background:
        radial-gradient(ellipse at 95% 0%, rgba(29, 138, 156, 0.22) 0%, transparent 48%),
        radial-gradient(ellipse at 5% 100%, rgba(29, 138, 156, 0.10) 0%, transparent 36%),
        rgba(255, 255, 255, 0.04);
}

.home30-ai2__product--edusquad:hover {
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.28),
        0 8px 32px rgba(29, 138, 156, 0.14);
}

.home30-ai2__product--consultoria {
    background:
        radial-gradient(ellipse at 95% 0%, rgba(217, 83, 79, 0.20) 0%, transparent 48%),
        radial-gradient(ellipse at 5% 100%, rgba(217, 83, 79, 0.08) 0%, transparent 36%),
        rgba(255, 255, 255, 0.04);
}

.home30-ai2__product--consultoria:hover {
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.28),
        0 8px 32px rgba(217, 83, 79, 0.12);
}

.home30-ai2__product--edusquad::before {
    background: linear-gradient(180deg, var(--site2026-primary-400), var(--site2026-primary-600));
}

.home30-ai2__product--consultoria::before {
    background: linear-gradient(180deg, var(--site2026-accent-400), var(--site2026-accent-600));
}

.home30-ai2__product-head {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 1rem;
    align-items: start;
}

.home30-ai2__product-head--no-icon {
    grid-template-columns: 1fr;
    gap: 0;
}

.home30-ai2__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.home30-ai2__icon svg {
    display: block;
    width: 1.9rem;
    height: 1.9rem;
}

.home30-ai2__icon--edusquad {
    color: var(--site2026-primary-300);
}

.home30-ai2__icon--consultoria {
    color: var(--site2026-accent-300);
}

.home30-ai2__product-copy {
    display: grid;
    gap: 0;
}

.home30-ai2__product-copy h3 {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.65rem, 3.2vw, 2.2rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.home30-ai2__product-description {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.94rem;
    line-height: 1.68;
}

.home30-ai2__product .site2026-button {
    width: 100%;
    justify-content: center;
    height: 2.9rem;
    min-height: 2.9rem;
    padding-top: 0;
    padding-bottom: 0;
}

.home30-ai2__visual {
    margin: 0;
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    min-height: 13rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
}

.home30-ai2__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(160deg, transparent 55%, rgba(0, 0, 0, 0.42) 100%);
}

.home30-ai2__visual::after {
    content: "";
    position: absolute;
    inset: auto 1.25rem 1.25rem auto;
    z-index: 2;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(22px);
    opacity: 0.60;
}

.home30-ai2__visual--edusquad::after {
    background: var(--site2026-primary-400);
}

.home30-ai2__visual--consultoria::after {
    background: var(--site2026-accent-400);
}

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


@media (min-width: 960px) {
    .home30-ai2 {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 2.8rem;
        align-items: start;
    }

    .home30-ai2__products {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
}

@media (max-width: 599px) {
    .home30-ai2__product {
        padding: 1rem;
        border-radius: 1.35rem;
    }

    .home30-ai2__product-head {
        grid-template-columns: 3rem 1fr;
        gap: 0.85rem;
    }

    .home30-ai2__product-head--no-icon {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .home30-ai2__icon {
        width: 3rem;
        height: 3rem;
        border-radius: 1rem;
    }

    .home30-ai2__icon svg {
        width: 1.65rem;
        height: 1.65rem;
    }

    .home30-ai2__visual {
        min-height: 12rem;
        border-radius: 1.1rem;
    }
}

.home30-intro2__media {
    margin: 0;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 16rem;
    border-radius: 1.35rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background:
        linear-gradient(135deg, rgba(29, 138, 156, 0.16), rgba(217, 83, 79, 0.12)),
        rgba(255, 255, 255, 0.04);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.home30-services {
    background:
        radial-gradient(ellipse at 18% 8%, rgba(217, 83, 79, 0.18) 0%, transparent 34%),
        radial-gradient(ellipse at 88% 82%, rgba(29, 138, 156, 0.20) 0%, transparent 38%),
        linear-gradient(160deg, #121a20 0%, #15242d 52%, #10232c 100%);
}

.home30-services2 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    overflow: hidden;
}

.home30-services2__bg-num {
    position: absolute;
    top: -0.18em;
    right: -0.04em;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(9rem, 22vw, 18rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.06em;
    color: rgba(246, 193, 190, 0.08);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.home30-services2__copy,
.home30-services2__nav {
    position: relative;
    z-index: 1;
    display: grid;
}

.home30-services2__copy {
    gap: 1.7rem;
}

.home30-services2__media {
    margin: 0;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    max-height: clamp(10rem, 19vw, 14rem);
    border-radius: 1.35rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(135deg, rgba(246, 193, 190, 0.16), rgba(178, 224, 232, 0.12)),
        rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.home30-services2__eyebrow,
.home30-services2__nav-eyebrow {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home30-services2__eyebrow {
    color: var(--site2026-accent-200);
}

.home30-services2__headline {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.home30-services2__body {
    margin: 0;
    max-width: 54ch;
    font-size: 1.05rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.90);
}

.home30-services2__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.home30-services2__metric {
    display: grid;
    gap: 0.4rem;
}

.home30-services2__metric strong {
    color: #ffffff;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.home30-services2__metric p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.58;
    color: rgba(255, 255, 255, 0.82);
}

.home30-services2__nav {
    gap: 1.8rem;
}

.home30-services2__nav-head {
    display: grid;
    gap: 0.6rem;
}

.home30-services2__nav-eyebrow {
    color: rgba(215, 240, 244, 0.84);
}

.home30-services2__nav-heading {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.6rem, 3.8vw, 2.4rem);
    font-weight: 700;
    line-height: 0.97;
    letter-spacing: -0.04em;
    color: #ffffff;
}


.home30-services2__paths {
    display: grid;
    gap: 0;
}

.home30-services2__nav-cta {
    margin-top: 1.25rem;
    justify-self: start;
}


.home30-services2__path {
    position: relative;
    display: grid;
    grid-template-columns: 2.2rem 2.9rem 1fr 1.4rem;
    align-items: start;
    gap: 1rem;
    padding: 1.4rem 0.5rem 1.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    transition:
        padding-left 0.25s ease,
        background 0.2s ease;
}

.home30-services2__path::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--site2026-accent-400);
    opacity: 0;
    transform: scaleY(0.3);
    transform-origin: top;
    transition:
        opacity 0.25s ease,
        transform 0.28s ease;
    border-radius: 2px;
}

.home30-services2__path:hover::before,
.home30-services2__path:focus-visible::before {
    opacity: 1;
    transform: scaleY(1);
}

.home30-services2__path:hover,
.home30-services2__path:focus-visible {
    padding-left: 0.9rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0.5rem;
}

.home30-services2__path--accent::before {
    background: var(--site2026-primary-400);
}

.home30-services2__path-num {
    padding-top: 0.15rem;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--site2026-primary-200);
    line-height: 1;
}

.home30-services2__path-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    margin-top: -0.1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--site2026-accent-200);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.home30-services2__path-icon svg {
    display: block;
    width: 1.7rem;
    height: 1.7rem;
}

.home30-services2__path-icon--integration {
    color: var(--site2026-primary-200);
}

.home30-services2__path-icon--training {
    color: #ffe0dd;
}

.home30-services2__path:hover .home30-services2__path-icon,
.home30-services2__path:focus-visible .home30-services2__path-icon {
    transform: translateX(2px);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.home30-services2__path--accent:hover .home30-services2__path-icon,
.home30-services2__path--accent:focus-visible .home30-services2__path-icon {
    color: var(--site2026-primary-100);
}

.home30-services2__path-body {
    display: grid;
    gap: 0.55rem;
}

.home30-services2__path-body h4 {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.12;
    transition: color 0.2s ease;
}

.home30-services2__path:hover .home30-services2__path-body h4,
.home30-services2__path:focus-visible .home30-services2__path-body h4 {
    color: #ffffff;
}

.home30-services2__path-body p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.84);
}

.home30-services2__path-arrow {
    width: 1.15rem;
    height: 1.15rem;
    color: rgba(255, 255, 255, 0.64);
    flex-shrink: 0;
    margin-top: 0.2rem;
    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.home30-services2__path:hover .home30-services2__path-arrow,
.home30-services2__path:focus-visible .home30-services2__path-arrow {
    transform: translateX(4px);
    color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 900px) {
    .home30-services2 {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 5rem;
        align-items: start;
    }
}

@media (max-width: 599px) {
    .home30-intro2__media {
        max-height: 16rem;
        border-radius: 1rem;
    }

    .home30-services2__media {
        max-height: 11rem;
        border-radius: 1rem;
    }

    .home30-services2__metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home30-services2__path {
        grid-template-columns: 1.8rem 2.5rem 1fr 1.2rem;
        gap: 0.7rem;
    }

    .home30-services2__path-icon {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 0.85rem;
    }

    .home30-services2__path-icon svg {
        width: 1.45rem;
        height: 1.45rem;
    }

}


.home30-services2__bg-num {
    position: absolute;
    top: -0.18em;
    right: -0.04em;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(9rem, 22vw, 18rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.06em;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.home30-services2__copy,
.home30-services2__nav {
    position: relative;
    z-index: 1;
    display: grid;
}

.home30-services2__copy {
    gap: 1.7rem;
}

.home30-services2__eyebrow,
.home30-services2__nav-eyebrow {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home30-services2__eyebrow {
    color: var(--site2026-accent-300);
}

.home30-services2__headline {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.home30-services2__body {
    margin: 0;
    max-width: 54ch;
    font-size: 1.05rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.76);
}

.home30-services2__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    overflow: hidden;
}

@media (min-width: 900px) {
    .home30-services2__signals {
        flex-wrap: nowrap;
    }
}

.home30-services2__signals span {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.85rem;
    border: 1px solid rgba(217, 83, 79, 0.24);
    border-radius: 999px;
    background: rgba(217, 83, 79, 0.08);
    color: var(--site2026-accent-200);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home30-services2__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.home30-services2__metric {
    display: grid;
    gap: 0.4rem;
}

.home30-services2__metric strong {
    color: #ffffff;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.home30-services2__metric p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.58;
    color: rgba(255, 255, 255, 0.62);
}

.home30-services2__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.home30-services2__nav {
    gap: 1.8rem;
}

.home30-services2__nav-head {
    display: grid;
    gap: 0.6rem;
}

.home30-services2__nav-eyebrow {
    color: rgba(255, 255, 255, 0.54);
}

.home30-services2__nav-heading {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.6rem, 3.8vw, 2.4rem);
    font-weight: 700;
    line-height: 0.97;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.home30-services2__paths {
    display: grid;
    gap: 0;
}

.home30-services2__path {
    position: relative;
    display: grid;
    grid-template-columns: 2.2rem 2.9rem 1fr 1.4rem;
    align-items: start;
    gap: 1rem;
    padding: 1.4rem 0.5rem 1.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none;
    transition:
        padding-left 0.25s ease,
        background 0.2s ease;
}

.home30-services2__path::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--site2026-accent-400);
    opacity: 0;
    transform: scaleY(0.3);
    transform-origin: top;
    transition:
        opacity 0.25s ease,
        transform 0.28s ease;
    border-radius: 2px;
}

.home30-services2__path:hover::before,
.home30-services2__path:focus-visible::before {
    opacity: 1;
    transform: scaleY(1);
}

.home30-services2__path:hover,
.home30-services2__path:focus-visible {
    padding-left: 0.9rem;
    background: rgba(255, 255, 255, 0.028);
    border-radius: 0.5rem;
}

.home30-services2__path--accent::before {
    background: var(--site2026-primary-400);
}

.home30-services2__path-num {
    padding-top: 0.15rem;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
}

.home30-services2__path-body {
    display: grid;
    gap: 0.55rem;
}

.home30-services2__path-body h4 {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.12;
    transition: color 0.2s ease;
}

.home30-services2__path:hover .home30-services2__path-body h4,
.home30-services2__path:focus-visible .home30-services2__path-body h4 {
    color: #ffffff;
}

.home30-services2__path-body p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.64);
}

.home30-services2__path-arrow {
    width: 1.15rem;
    height: 1.15rem;
    color: rgba(255, 255, 255, 0.38);
    flex-shrink: 0;
    margin-top: 0.2rem;
    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.home30-services2__path:hover .home30-services2__path-arrow,
.home30-services2__path:focus-visible .home30-services2__path-arrow {
    transform: translateX(4px);
    color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 900px) {
    .home30-services2 {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 5rem;
        align-items: start;
    }
}

@media (max-width: 599px) {
    .home30-services2__metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home30-services2__path {
        grid-template-columns: 2rem 1fr 1.2rem;
        gap: 0.75rem;
    }

    .home30-services2__actions .site2026-button {
        width: 100%;
    }
}

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

html {
    scroll-behavior: smooth;
}

body.site2026 {
    margin: 0;
    min-height: 100vh;
    background: var(--site2026-background);
    color: var(--site2026-text);
    font-family: "Plus Jakarta Sans", sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.site2026 h1,
body.site2026 h2,
body.site2026 h3,
body.site2026 h4,
body.site2026 h5,
body.site2026 h6 {
    font-family: "Bricolage Grotesque", sans-serif;
    letter-spacing: -0.03em;
}

body.site2026 h1 {
    font-size: clamp(2.35rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.16;
}

body.site2026 h2 {
    font-size: clamp(2rem, 4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.22;
}

body.site2026 footer h2 {
    font-size: clamp(1rem, 2vw, 0.90rem);
    font-weight: 700;
}

@media (max-width: 767px) {
    body.site2026 .site2026-main h2,
    body.site2026 h2 {
        font-size: 1.4rem;
    }

    body.site2026 .site2026-main h3,
    body.site2026 h3 {
        font-size: 1.2rem;
    }
}

body.site2026 .site2026-main h3,
body.site2026 h3 {
    font-size: clamp(1.55rem, 3vw, 1.75rem);
    font-weight: 600;
    line-height: 1.28;
}

body.site2026 h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.375rem);
    font-weight: 600;
    line-height: 1.34;
}

body.site2026::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top left, rgba(29, 138, 156, 0.10), transparent 28%),
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.50), rgba(255, 255, 255, 0));
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
}

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

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

[x-cloak] {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site2026-container {
    width: min(calc(100% - 2rem), var(--site2026-container));
    margin-inline: auto;
}

.site2026-skip-link {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 200;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--site2026-neutral-900);
    color: var(--site2026-neutral-0);
    transform: translateY(-220%);
    transition: transform 0.2s ease;
}

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

.site2026-flash {
    position: relative;
    z-index: 60;
    border-bottom: 1px solid transparent;
}

.site2026-flash p {
    margin: 0;
    padding: 0.875rem 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.site2026-flash--error {
    background: var(--site2026-accent-50);
    color: var(--site2026-accent-800);
    border-color: rgba(217, 83, 79, 0.15);
}

.site2026-flash--success {
    background: var(--site2026-primary-50);
    color: var(--site2026-primary-800);
    border-color: rgba(29, 138, 156, 0.15);
}

.site2026-topbar {
    display: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(6, 18, 24, 0.92);
    backdrop-filter: blur(18px);
}

@media (min-width: 768px) {
    .site2026-topbar {
        display: block;
    }
}

.site2026-topbar__inner {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
}

.site2026-topbar__intro {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
}

.site2026-topbar__intro p {
    margin: 0;
}

.site2026-topbar__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.90);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site2026-topbar__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem 1.15rem;
}

.site2026-topbar__links a {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.88rem;
    font-weight: 600;
}

.site2026-topbar__links a:hover,
.site2026-topbar__links a:focus-visible {
    color: var(--site2026-primary-200);
}

.site2026-header {
    position: sticky;
    top: 0;
    z-index: 50;
    margin-top: 0;
    padding: 1rem 0 0;
}

.page-internal .site2026-header {
    position: sticky;
    top: 0;
    left: auto;
    width: auto;
    z-index: 120;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0.5rem 0;
    background: transparent;
}

.site2026-header__surface {
    border: 1px solid var(--site2026-border);
    border-radius: var(--site2026-radius-lg);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--site2026-shadow-soft);
    backdrop-filter: blur(18px);
}

.page-internal .site2026-header__surface {
    border-color: rgba(20, 58, 69, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 48px rgba(4, 18, 24, 0.24);
}

.site2026-header__brand-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.site2026-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    width: clamp(210px, 22vw, 320px);
    max-width: 100%;
}

.site2026-brand img {
    display: block;
    width: 100%;
    height: auto;
}

.site2026-header__actions {
    display: none;
    gap: 0.75rem;
    align-items: center;
}

.site2026-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.6rem;
    min-height: 2.9rem;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.site2026-button:hover,
.site2026-button:focus-visible {
    transform: translateY(-1px);
}

.site2026-button > svg,
.site2026-button > i {
    flex-shrink: 0;
}

.site2026-button > svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.site2026-button:hover > svg,
.site2026-button:focus-visible > svg {
    transform: translateX(2px);
}

.site2026-button--primary {
    background: linear-gradient(135deg, var(--site2026-primary-500), var(--site2026-primary-700));
    color: var(--site2026-neutral-0);
    box-shadow: 0 14px 30px rgba(29, 138, 156, 0.22);
}

.site2026-button--primary:hover,
.site2026-button--primary:focus-visible {
    background: linear-gradient(135deg, var(--site2026-primary-600), var(--site2026-primary-800));
}

.site2026-button--ghost {
    border-color: rgba(20, 58, 69, 0.12);
    background: rgba(255, 255, 255, 0.78);
    color: var(--site2026-neutral-800);
}

.site2026-button--ghost:hover,
.site2026-button--ghost:focus-visible {
    border-color: rgba(29, 138, 156, 0.18);
    color: var(--site2026-primary-700);
}

.site2026-button--ghost-inv {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.88);
}

.site2026-button--ghost-inv:hover,
.site2026-button--ghost-inv:focus-visible {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.site2026-button--ghost-white {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(3, 17, 20, 0.22);
}

.site2026-button--ghost-white:hover,
.site2026-button--ghost-white:focus-visible {
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.site2026-button--accent {
    background: linear-gradient(135deg, var(--site2026-accent-500, #d9534f), var(--site2026-accent-700, #a3302d));
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(217, 83, 79, 0.22);
}

.site2026-button--accent:hover,
.site2026-button--accent:focus-visible {
    background: linear-gradient(135deg, var(--site2026-accent-600, #c44641), var(--site2026-accent-800, #8a2826));
}

.site2026-button--whatsapp {
    border-color: transparent;
    background: #00A884;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(0, 168, 132, 0.24);
}

.site2026-button--whatsapp:hover,
.site2026-button--whatsapp:focus-visible {
    background: #029a79;
    color: #ffffff;
}

.site2026-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--site2026-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--site2026-neutral-900);
    box-shadow: 0 14px 26px rgba(16, 59, 69, 0.08);
}

.site2026-mobile-toggle:hover,
.site2026-mobile-toggle:focus-visible {
    border-color: rgba(29, 138, 156, 0.22);
    color: var(--site2026-primary-600);
}

.site2026-header__search-row {
    padding: 0 1rem 1rem;
}

.site2026-search {
    display: grid;
    gap: 0.75rem;
    align-items: center;
}

.site2026-search input {
    width: 100%;
    min-height: 3.25rem;
    padding: 0 1rem;
    border: 1px solid var(--site2026-border);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.94);
    color: var(--site2026-neutral-900);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.site2026-search input:focus-visible {
    outline: none;
    border-color: rgba(29, 138, 156, 0.45);
    box-shadow:
        0 0 0 4px rgba(29, 138, 156, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.site2026-search button {
    min-height: 3.25rem;
    padding: 0 1.2rem;
    border: 0;
    border-radius: 1rem;
    background: var(--site2026-neutral-900);
    color: var(--site2026-neutral-0);
    font-weight: 700;
}

.site2026-search button:hover,
.site2026-search button:focus-visible {
    background: var(--site2026-primary-700);
}

.site2026-nav {
    display: none;
}

.site2026-nav--inline {
    margin-left: auto;
    border-top: 0;
}

.site2026-nav__desktop {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
    padding: 0.9rem 1rem 1rem;
}

.site2026-nav--inline .site2026-nav__desktop {
    padding: 0;
}

.site2026-nav__item {
    position: relative;
}

.site2026-nav__link {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    color: var(--site2026-neutral-700);
    font-size: 0.96rem;
    font-weight: 700;
    white-space: nowrap;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.site2026-nav__link:hover,
.site2026-nav__link:focus-visible,
.site2026-nav__link--button:hover,
.site2026-nav__link--button:focus-visible {
    background: linear-gradient(160deg, rgba(29, 138, 156, 0.11) 0%, rgba(29, 138, 156, 0.05) 100%);
    color: var(--site2026-primary-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 138, 156, 0.14);
}

.site2026-nav__link--button {
    border: 0;
    background: transparent;
}

.site2026-nav__panel {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    display: grid;
    min-width: 18rem;
    gap: 0.15rem;
    padding: 0.8rem;
    border: 1px solid var(--site2026-border);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--site2026-shadow-panel);
}

.site2026-nav__panel a {
    display: block;
    position: relative;
    padding: 0.8rem 0.95rem 0.8rem 1rem;
    border-radius: 0.9rem;
    color: var(--site2026-neutral-700);
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.18s ease, color 0.18s ease, padding-left 0.2s ease;
}

.site2026-nav__panel a::before {
    content: '';
    position: absolute;
    left: 0.4rem;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 2.5px;
    height: 1rem;
    border-radius: 2px;
    background: var(--site2026-primary-400);
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site2026-nav__panel a:hover::before,
.site2026-nav__panel a:focus-visible::before {
    transform: translateY(-50%) scaleY(1);
}

.site2026-nav__panel a:hover,
.site2026-nav__panel a:focus-visible {
    background: rgba(29, 138, 156, 0.08);
    color: var(--site2026-primary-700);
    padding-left: 1.3rem;
}

.site2026-mobile-panel {
    padding: 0.75rem 0 0;
}

.site2026-mobile-panel__surface {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid var(--site2026-border);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--site2026-shadow-panel);
}

.site2026-mobile-link,
.site2026-mobile-group__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 3.2rem;
    padding: 0.85rem 1rem;
    border: 1px solid transparent;
    border-radius: 1rem;
    color: var(--site2026-neutral-800);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    font-weight: 700;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.1s ease;
}

.site2026-mobile-link:active,
.site2026-mobile-group__toggle:active {
    transform: scale(0.98);
}

.site2026-mobile-link:hover,
.site2026-mobile-link:focus-visible,
.site2026-mobile-group__toggle:hover,
.site2026-mobile-group__toggle:focus-visible {
    border-color: rgba(29, 138, 156, 0.18);
    background: linear-gradient(135deg, rgba(29, 138, 156, 0.09) 0%, rgba(29, 138, 156, 0.04) 100%);
    color: var(--site2026-primary-700);
    box-shadow: inset 3px 0 0 var(--site2026-primary-400), 0 2px 8px rgba(29, 138, 156, 0.08);
}

.site2026-mobile-group__toggle {
    width: 100%;
    border: 0;
}

.site2026-mobile-group__panel {
    display: grid;
    gap: 0.25rem;
    padding: 0.35rem 0.25rem 0.65rem;
}

.site2026-mobile-group__panel a {
    position: relative;
    padding: 0.7rem 1rem 0.7rem 1.1rem;
    border-radius: 0.9rem;
    color: var(--site2026-neutral-700);
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.18s ease, color 0.18s ease, padding-left 0.2s ease;
}

.site2026-mobile-group__panel a::before {
    content: '';
    position: absolute;
    left: 0.4rem;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 2px;
    height: 0.9rem;
    border-radius: 2px;
    background: var(--site2026-primary-400);
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site2026-mobile-group__panel a:active {
    transform: scale(0.98);
}

.site2026-mobile-group__panel a:hover::before,
.site2026-mobile-group__panel a:focus-visible::before {
    transform: translateY(-50%) scaleY(1);
}

.site2026-mobile-group__panel a:hover,
.site2026-mobile-group__panel a:focus-visible {
    background: rgba(29, 138, 156, 0.07);
    color: var(--site2026-primary-700);
    padding-left: 1.5rem;
}

.site2026-mobile-panel__actions {
    display: grid;
    gap: 0.65rem;
    padding-top: 0.65rem;
}

.site2026-page-header {
    position: relative;
    overflow: hidden;
    padding: 1.35rem 0 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(29, 138, 156, 0.30), transparent 28%),
        radial-gradient(circle at 86% 16%, rgba(217, 83, 79, 0.18), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(76, 174, 192, 0.12), transparent 32%),
        linear-gradient(180deg, #0c1519 0%, #101a1f 58%, #111b20 100%);
}

.site2026-header + .site2026-page-header {
    margin-top: 0;
    padding-top: 1.35rem;
}

.page-internal .site2026-page-header {
    padding-top: 2.5rem;
}

.page-internal .site2026-page-header::before {
    display: none;
}

.site2026-page-header::before {
    content: "";
    position: absolute;
    inset: 1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.page-header-mesh-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.site2026-page-header__content {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: end;
    gap: 1rem;
    min-height: clamp(15rem, 34vw, 22rem);
    padding: 2rem 0 1.7rem;
}

.page-internal .site2026-page-header__content {
    gap: 0.85rem;
    min-height: clamp(12rem, 24vw, 16rem);
    padding: 1.75rem 0 1.35rem;
}

.site2026-page-header__eyebrow {
    display: inline-flex;
    justify-self: flex-start;
    align-items: center;
    margin: 0;
    padding: 0.52rem 0.9rem;
    border: 1px solid rgba(130, 201, 213, 0.18);
    border-radius: 999px;
    background: rgba(29, 138, 156, 0.12);
    color: var(--site2026-primary-200);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site2026-page-header h1 {
    margin: 0;
    background: linear-gradient(135deg, #ffffff 28%, var(--site2026-primary-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site2026-page-header__excerpt {
    max-width: 42rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.85;
}

.page-internal .site2026-page-header__excerpt {
    max-width: 38rem;
}

.site2026-breadcrumbs {
    padding: 0.5rem 0 0;
}

.site2026-breadcrumbs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--site2026-neutral-500);
    font-size: 0.9rem;
    font-weight: 600;
}

.site2026-breadcrumbs__nav a,
.site2026-breadcrumbs__link {
    color: var(--site2026-neutral-700);
    text-decoration: none;
}

.site2026-breadcrumbs__nav a:hover,
.site2026-breadcrumbs__nav a:focus-visible,
.site2026-breadcrumbs__link:hover,
.site2026-breadcrumbs__link:focus-visible {
    color: var(--site2026-primary-700);
}

.site2026-page-header .site2026-breadcrumbs {
    position: relative;
    z-index: 1;
    padding: 0 0 1.15rem;
}

.page-internal .site2026-page-header .site2026-breadcrumbs {
    padding: 0 0 2.5rem;
}

.site2026-page-header .site2026-breadcrumbs .site2026-container {
    padding-top: 1rem;
    border-top: 1px solid rgba(130, 201, 213, 0.16);
}

.page-internal .site2026-page-header .site2026-breadcrumbs .site2026-container {
    padding-top: 0;
    border-top: 0;
}

.site2026-page-header .site2026-breadcrumbs__nav {
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.site2026-page-header .site2026-breadcrumbs__nav a,
.site2026-page-header .site2026-breadcrumbs__link {
    color: rgba(255, 255, 255, 0.78);
}

.site2026-page-header .site2026-breadcrumbs__nav a:hover,
.site2026-page-header .site2026-breadcrumbs__nav a:focus-visible,
.site2026-page-header .site2026-breadcrumbs__link:hover,
.site2026-page-header .site2026-breadcrumbs__link:focus-visible {
    color: var(--site2026-primary-200);
}

.site2026-breadcrumbs__sep {
    color: var(--site2026-neutral-400);
}

.site2026-breadcrumbs__current {
    color: var(--site2026-primary-700);
}

.site2026-page-header .site2026-breadcrumbs__sep {
    color: rgba(255, 255, 255, 0.32);
}

.site2026-page-header .site2026-breadcrumbs__current {
    color: var(--site2026-primary-200);
}


.home2026-hero {
    padding: 2rem 0 0.75rem;
}

.home2026-hero__grid {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.home2026-hero__content,
.home2026-hero__figure,
.home2026-ai__surface,
.home2026-projects,
.home2026-cta {
    border: 1px solid var(--site2026-border);
    border-radius: var(--site2026-radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--site2026-shadow-soft);
}

.home2026-hero__content {
    padding: 1.75rem;
    background:
        radial-gradient(circle at top left, rgba(29, 138, 156, 0.10), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 251, 0.90));
}

.home2026-hero__eyebrow,
.home2026-section-heading__eyebrow {
    display: inline-flex;
    margin: 0 0 1rem;
    color: var(--site2026-primary-700);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home2026-hero h1 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 0.94;
}

.home2026-hero__lead {
    max-width: 46rem;
    margin: 1.1rem 0 0;
    color: var(--site2026-neutral-700);
    font-size: 1.08rem;
    line-height: 1.9;
}

.home2026-hero__actions,
.home2026-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.home2026-hero__highlights {
    display: grid;
    gap: 0.65rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.home2026-hero__highlights li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--site2026-neutral-700);
    font-size: 0.96rem;
    font-weight: 600;
}

.home2026-hero__highlights li::before {
    content: "";
    position: absolute;
    top: 0.7rem;
    left: 0;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--site2026-accent-500);
}

.home2026-hero__figure {
    overflow: hidden;
    padding: 0.7rem;
}

.home2026-hero__figure img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: calc(var(--site2026-radius-lg) - 0.6rem);
}

.home2026-section-heading {
    display: grid;
    gap: 0.5rem;
    max-width: 48rem;
}

.home2026-section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 3.4vw, 3.4rem);
    line-height: 1;
}

.home2026-section-heading p:last-child {
    margin: 0;
    color: var(--site2026-neutral-700);
    font-size: 1rem;
}

.home2026-trust,
.home2026-intro,
.home2026-products,
.home2026-services,
.home2026-ai,
.home2026-proof,
.home2026-why,
.home2026-content-hub {
    padding: 1.1rem 0 0;
}

.home2026-trust__header {
    margin-bottom: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(29, 138, 156, 0.10), rgba(255, 255, 255, 0.94));
    color: var(--site2026-neutral-800);
    font-weight: 700;
    text-align: center;
}

.home2026-trust__header p {
    margin: 0;
}

.home2026-trust__grid,
.home2026-products__grid,
.home2026-services__grid,
.home2026-why__grid,
.home2026-content-hub__grid,
.home2026-projects__grid,
.home2026-ai__grid {
    display: grid;
    gap: 1rem;
}

.home2026-trust__grid article,
.home2026-services__grid article,
.home2026-why__grid article,
.home2026-content-hub__grid article,
.home2026-ai__grid article {
    padding: 1.35rem;
    border: 1px solid var(--site2026-border);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--site2026-shadow-soft);
}

.home2026-trust__grid h2,
.home2026-services__grid h3,
.home2026-why__grid h3,
.home2026-content-hub__grid h3,
.home2026-ai__grid h3 {
    margin: 0 0 0.8rem;
    font-size: 1.25rem;
}

.home2026-trust__grid p,
.home2026-services__grid p,
.home2026-why__grid p,
.home2026-content-hub__grid p,
.home2026-ai__grid p {
    margin: 0;
}

.home2026-services__grid a,
.home2026-content-hub__grid a,
.home2026-ai__grid a {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--site2026-primary-700);
    font-weight: 700;
}

.home2026-intro__body {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
}

.home2026-intro__body > div:first-child {
    padding: 1.5rem;
    border: 1px solid var(--site2026-border);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.86);
}

.home2026-intro__body > div:first-child p {
    margin: 0;
    font-size: 1.05rem;
}

.home2026-intro__stats {
    display: grid;
    gap: 1rem;
}

.home2026-intro__stats article {
    padding: 1.4rem;
    border: 1px solid rgba(29, 138, 156, 0.12);
    border-radius: 1.5rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 251, 0.90));
}

.home2026-intro__stats strong {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--site2026-primary-700);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1;
}

.home2026-intro__stats span {
    color: var(--site2026-neutral-700);
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.65;
}

.home2026-product-card {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--site2026-border);
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--site2026-shadow-soft);
}

.home2026-product-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 2rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(29, 138, 156, 0.10);
    color: var(--site2026-primary-700);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home2026-product-card h3 {
    margin: 0;
    font-size: 1.7rem;
}

.home2026-product-card p,
.home2026-project-card p {
    margin: 0;
}

.home2026-product-card ul {
    display: grid;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home2026-product-card li {
    position: relative;
    padding-left: 1.3rem;
    color: var(--site2026-neutral-700);
    font-weight: 600;
}

.home2026-product-card li::before {
    content: "";
    position: absolute;
    top: 0.68rem;
    left: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--site2026-primary-500);
}

.home2026-product-card a,
.home2026-project-card a {
    color: var(--site2026-primary-700);
    font-weight: 700;
}

.home2026-ai__surface,
.home2026-projects,
.home2026-cta {
    padding: 1.5rem;
}

.home2026-ai__surface {
    display: grid;
    gap: 1.25rem;
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.10), transparent 26%),
        linear-gradient(160deg, rgba(239, 249, 251, 0.96), rgba(255, 255, 255, 0.96));
}

.home2026-logo-cloud {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.35rem;
}

.home2026-logo-cloud span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4rem;
    padding: 0.9rem;
    border: 1px solid var(--site2026-border);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.88);
    color: var(--site2026-neutral-600);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home2026-projects {
    margin-top: 1.4rem;
}

.home2026-projects__header {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.home2026-projects__header h3 {
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.home2026-projects__header p {
    margin: 0.55rem 0 0;
}

.home2026-project-card {
    overflow: hidden;
    border: 1px solid var(--site2026-border);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--site2026-shadow-soft);
}

.home2026-project-card__image {
    display: block;
}

.home2026-project-card__image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.home2026-project-card__content {
    display: grid;
    gap: 0.75rem;
    padding: 1.25rem;
}

.home2026-project-card__content h4 {
    margin: 0;
    font-size: 1.2rem;
}

.home2026-project-card--empty {
    display: flex;
    align-items: stretch;
}

.home2026-project-card--empty .home2026-project-card__content {
    width: 100%;
}

.home2026-cta {
    display: grid;
    gap: 1rem;
    background:
        radial-gradient(circle at top left, rgba(29, 138, 156, 0.10), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 251, 0.92));
}

.home2026-cta__content h2 {
    margin: 0;
    font-size: clamp(1.95rem, 3.6vw, 3.4rem);
    line-height: 1;
}

.home2026-cta__content p:last-child {
    margin: 1rem 0 0;
}

.home2026-hero--editorial {
    position: relative;
    padding: 2rem 0 0.75rem;
}

.home2026-hero--editorial::before {
    content: "";
    position: absolute;
    inset: 2rem 0 auto;
    height: 38rem;
    background:
        radial-gradient(circle at left top, rgba(29, 138, 156, 0.20), transparent 32%),
        radial-gradient(circle at right top, rgba(217, 83, 79, 0.14), transparent 26%);
    pointer-events: none;
}

.home2026-hero-editorial {
    position: relative;
    display: grid;
    gap: 1.4rem;
    align-items: center;
}

.home2026-hero-editorial__content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.35rem;
    padding: 1.45rem;
}

.home2026-hero-editorial__content h1 {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(2.8rem, 7.6vw, 6rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
}

.home2026-hero-editorial__proof {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home2026-hero-editorial__proof div {
    display: grid;
    gap: 0.3rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(20, 58, 69, 0.10);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 20px 50px rgba(16, 59, 69, 0.08);
    backdrop-filter: blur(14px);
}

.home2026-hero-editorial__proof strong {
    color: var(--site2026-neutral-900);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.7rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.home2026-hero-editorial__proof span {
    color: var(--site2026-neutral-600);
    font-size: 0.9rem;
    line-height: 1.45;
}

.home2026-hero-editorial__media {
    position: relative;
    min-height: 100%;
    padding: 1rem 0 0.5rem;
}

.home2026-hero-editorial__orb {
    position: absolute;
    top: 8%;
    right: 10%;
    width: clamp(10rem, 20vw, 16rem);
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(217, 83, 79, 0.34), rgba(217, 83, 79, 0));
    filter: blur(12px);
}

.home2026-hero-editorial__figure {
    position: relative;
    z-index: 1;
    margin: 0;
    overflow: hidden;
    border-radius: 2.25rem;
    background:
        radial-gradient(circle at top left, rgba(29, 138, 156, 0.30), transparent 30%),
        linear-gradient(160deg, #102127, #0d1519 70%);
    box-shadow:
        0 34px 90px rgba(16, 59, 69, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.home2026-hero-editorial__figure img {
    display: block;
    width: 100%;
    min-height: 31rem;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: screen;
}

.home2026-floating-card {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 0.35rem;
    width: min(18rem, calc(100% - 2rem));
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.35rem;
    background: rgba(15, 23, 27, 0.84);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
}

.home2026-floating-card--top {
    top: 1.75rem;
    left: -0.5rem;
}

.home2026-floating-card--bottom {
    right: -0.5rem;
    bottom: 1rem;
}

.home2026-floating-card__label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home2026-floating-card strong {
    color: #ffffff;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.1rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.home2026-floating-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.55;
}

.home2026-clients {
    padding: 0.75rem 0 1.4rem;
}

.home2026-clients__bar {
    padding: 1rem 1.2rem;
    border: 1px solid var(--site2026-border);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 20px 40px rgba(16, 59, 69, 0.05);
}

.home2026-clients__bar p {
    margin: 0;
    color: var(--site2026-neutral-700);
    font-size: 0.96rem;
    line-height: 1.7;
}

.home2026-clients__grid {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home2026-clients__grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 4.5rem;
    padding: 1rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.6);
    color: var(--site2026-neutral-500);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.home2026-manifesto {
    padding: 1rem 0 1.35rem;
}

.home2026-manifesto__grid {
    display: grid;
    gap: 1rem;
}

.home2026-manifesto__card {
    padding: 1.4rem;
    border: 1px solid rgba(20, 58, 69, 0.10);
    border-radius: 1.65rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 40px rgba(16, 59, 69, 0.06);
}

.home2026-manifesto__card h3 {
    margin: 0 0 0.6rem;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.05;
}

.home2026-manifesto__card p {
    margin: 0;
    color: var(--site2026-neutral-700);
    line-height: 1.8;
}

.home2026-manifesto__card--statement {
    background:
        radial-gradient(circle at left top, rgba(29, 138, 156, 0.16), transparent 36%),
        linear-gradient(180deg, #ffffff, #f4fafb);
}

.home2026-manifesto__card--statement p {
    color: var(--site2026-neutral-900);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.home2026-products--immersive {
    padding-top: 1.2rem;
}

.home2026-product-showcase {
    display: grid;
    gap: 1.35rem;
}

.home2026-product-showcase__item {
    display: grid;
    gap: 1.3rem;
    align-items: center;
    padding: 1.4rem;
    border: 1px solid rgba(20, 58, 69, 0.10);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 22px 50px rgba(16, 59, 69, 0.08);
}

.home2026-product-showcase__item--lms {
    background:
        radial-gradient(circle at top left, rgba(29, 138, 156, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 251, 0.96));
}

.home2026-product-showcase__item--edupay {
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(253, 241, 240, 0.96));
}

.home2026-product-showcase__item--moodle {
    background:
        radial-gradient(circle at bottom left, rgba(17, 35, 40, 0.10), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 248, 0.96));
}

.home2026-product-showcase__media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 1.65rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36));
    min-height: 19rem;
}

.home2026-product-showcase__media img {
    display: block;
    width: min(100%, 28rem);
    filter: drop-shadow(0 20px 45px rgba(16, 59, 69, 0.12));
}

.home2026-product-showcase__media--mockup {
    background:
        radial-gradient(circle at top left, rgba(217, 83, 79, 0.20), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.30));
}

.home2026-product-showcase__content {
    display: grid;
    gap: 0.95rem;
}

.home2026-product-showcase__tag {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(20, 58, 69, 0.08);
    color: var(--site2026-neutral-700);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home2026-product-showcase__content h3 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 0.96;
}

.home2026-product-showcase__content p {
    margin: 0;
    color: var(--site2026-neutral-700);
}

.home2026-product-showcase__content ul {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home2026-product-showcase__content li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--site2026-neutral-700);
}

.home2026-product-showcase__content li::before {
    content: "";
    position: absolute;
    top: 0.65rem;
    left: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--site2026-primary-500);
    box-shadow: 0 0 0 0.2rem rgba(29, 138, 156, 0.12);
}

.home2026-product-showcase__item--edupay .home2026-product-showcase__content li::before {
    background: var(--site2026-accent-500);
    box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.12);
}

.home2026-product-showcase__content a {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.45rem;
    color: var(--site2026-neutral-900);
    font-weight: 800;
}

.home2026-product-showcase__content a:hover,
.home2026-product-showcase__content a:focus-visible {
    color: var(--site2026-primary-700);
}

.home2026-ui-mockup {
    width: min(100%, 31rem);
    overflow: hidden;
    border: 1px solid rgba(20, 58, 69, 0.12);
    border-radius: 1.55rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 60px rgba(16, 59, 69, 0.14);
}

.home2026-ui-mockup__header {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(20, 58, 69, 0.08);
    background: rgba(246, 249, 250, 0.96);
}

.home2026-ui-mockup__header span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: rgba(20, 58, 69, 0.16);
}

.home2026-ui-mockup__header span:first-child {
    background: rgba(217, 83, 79, 0.58);
}

.home2026-ui-mockup__header span:nth-child(2) {
    background: rgba(243, 183, 51, 0.82);
}

.home2026-ui-mockup__header span:last-child {
    background: rgba(29, 138, 156, 0.72);
}

.home2026-ui-mockup__body {
    display: grid;
    grid-template-columns: 5.5rem minmax(0, 1fr);
    min-height: 18rem;
}

.home2026-ui-mockup__sidebar {
    background:
        linear-gradient(180deg, rgba(29, 138, 156, 0.14), rgba(29, 138, 156, 0.04)),
        #eef6f8;
}

.home2026-ui-mockup__content {
    display: grid;
    gap: 0.9rem;
    padding: 1.1rem;
}

.home2026-ui-mockup__line {
    height: 0.8rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(20, 58, 69, 0.12), rgba(20, 58, 69, 0.04));
}

.home2026-ui-mockup__line--strong {
    width: 72%;
    height: 1rem;
}

.home2026-ui-mockup__line--short {
    width: 36%;
}

.home2026-ui-mockup__cards {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: auto;
}

.home2026-ui-mockup__cards div {
    min-height: 7rem;
    border-radius: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(244, 247, 248, 0.92)),
        #ffffff;
    box-shadow: inset 0 0 0 1px rgba(20, 58, 69, 0.06);
}

.home2026-services--dark {
    padding: 1.4rem 0;
}

.home2026-services-dark {
    display: grid;
    gap: 1.25rem;
    padding: 1.45rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.18), transparent 26%),
        radial-gradient(circle at left center, rgba(29, 138, 156, 0.16), transparent 34%),
        linear-gradient(145deg, #0f191d, #16252b 58%, #1c3037);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 32px 80px rgba(16, 24, 28, 0.22);
}

.home2026-services-dark__intro h2,
.home2026-services-dark__grid h3 {
    color: #ffffff;
}

.home2026-services-dark__intro p,
.home2026-services-dark__grid p {
    color: rgba(255, 255, 255, 0.74);
}

.home2026-services-dark__intro {
    display: grid;
    gap: 0.9rem;
    align-content: start;
}

.home2026-services-dark__intro h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 0.95;
}

.home2026-services-dark__intro .home2026-section-heading__eyebrow {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    border-color: rgba(255, 255, 255, 0.10);
}

.home2026-services-dark__grid {
    display: grid;
    gap: 1rem;
}

.home2026-services-dark__grid article {
    display: grid;
    gap: 1rem;
    align-content: start;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
}

.home2026-services-dark__grid img {
    width: 5rem;
    height: 5rem;
    border-radius: 1.25rem;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
}

.home2026-services-dark__grid h3 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.02;
}

.home2026-services-dark__grid p {
    margin: 0;
}

.home2026-ai--hybrid {
    padding: 1.4rem 0;
}

.home2026-ai-hybrid {
    display: grid;
    gap: 1.25rem;
    align-items: center;
}

.home2026-ai-hybrid__content {
    display: grid;
    gap: 1rem;
}

.home2026-ai-hybrid__content h2 {
    margin: 0;
}

.home2026-ai-hybrid__cards {
    display: grid;
    gap: 1rem;
}

.home2026-ai-hybrid__cards article,
.home2026-content-hub__grid article {
    padding: 1.35rem;
    border: 1px solid rgba(20, 58, 69, 0.10);
    border-radius: 1.55rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 40px rgba(16, 59, 69, 0.06);
}

.home2026-ai-hybrid__cards article h3,
.home2026-content-hub__grid article h3 {
    margin: 0 0 0.55rem;
}

.home2026-ai-hybrid__cards article p,
.home2026-content-hub__grid article p {
    margin: 0;
}

.home2026-ai-hybrid__cards article a,
.home2026-content-hub__grid article a {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--site2026-neutral-900);
    font-weight: 800;
}

.home2026-ai-hybrid__cards article a:hover,
.home2026-ai-hybrid__cards article a:focus-visible,
.home2026-content-hub__grid article a:hover,
.home2026-content-hub__grid article a:focus-visible {
    color: var(--site2026-primary-700);
}

.home2026-ai-hybrid__visual {
    display: flex;
    justify-content: center;
}

.home2026-stack-figure {
    position: relative;
    margin: 0;
    padding: 1.1rem;
    width: min(100%, 34rem);
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.16), transparent 30%),
        radial-gradient(circle at left bottom, rgba(29, 138, 156, 0.16), transparent 34%),
        rgba(255, 255, 255, 0.82);
    box-shadow: 0 28px 70px rgba(16, 59, 69, 0.10);
}

.home2026-stack-figure img {
    display: block;
    width: 100%;
    border-radius: 1.4rem;
}

.home2026-projects--editorial {
    gap: 1.5rem;
}

.home2026-projects--editorial .home2026-projects__header {
    gap: 1rem;
}

.home2026-project-card {
    overflow: hidden;
}

.home2026-project-card__image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home2026-project-card:hover .home2026-project-card__image img,
.home2026-project-card:focus-within .home2026-project-card__image img {
    transform: scale(1.04);
}

.home2026-content-hub--split {
    padding-top: 1rem;
}

.home2026-content-hub__split {
    display: grid;
    gap: 1.2rem;
}

.home2026-content-hub__intro {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.home2026-content-hub__intro h2 {
    margin: 0;
}

.home2026-cta--final {
    gap: 1.25rem;
    background:
        radial-gradient(circle at top left, rgba(29, 138, 156, 0.16), transparent 32%),
        radial-gradient(circle at right center, rgba(217, 83, 79, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 251, 0.94));
}

.site2026-main {
    padding: 0rem 0 0rem;
}

.site2026-main h1,
.site2026-main h2,
.site2026-main h3,
.site2026-main h4,
.site2026-main h5,
.site2026-main h6 {
    color: var(--site2026-neutral-900);
    font-family: "Bricolage Grotesque", sans-serif;
    letter-spacing: -0.03em;
}

.site2026-main p,
.site2026-main li,
.site2026-main dd,
.site2026-main dt,
.site2026-main td,
.site2026-main th,
.site2026-main input,
.site2026-main textarea,
.site2026-main select,
.site2026-main label {
    color: var(--site2026-neutral-700);
    line-height: 1.85;
}

.site2026-main input,
.site2026-main textarea,
.site2026-main select {
    border-color: var(--site2026-border-strong);
}

.site2026-main input:focus-visible,
.site2026-main textarea:focus-visible,
.site2026-main select:focus-visible,
.site2026-main button:focus-visible,
.site2026-main a:focus-visible,
.site2026-nav__link:focus-visible,
.site2026-mobile-link:focus-visible,
.site2026-mobile-group__toggle:focus-visible,
.site2026-topbar__links a:focus-visible,
.site2026-button:focus-visible {
    outline: 3px solid rgba(29, 138, 156, 0.22);
    outline-offset: 3px;
}


/* ── Footer ─────────────────────────────────────────────────────────────────── */

.site2026-footer {
    position: relative;
    margin-top: 0;
    background: #060f14;
    color: rgba(255, 255, 255, 0.65);
    overflow: hidden;
}

/* CTA strip ------------------------------------------------------------------ */

.site2026-footer__cta-strip {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(29, 138, 156, 0.07);
}

.site2026-footer__cta-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem 0;
}

.site2026-footer__cta-copy {
    display: grid;
    gap: 0.35rem;
}

.site2026-footer__cta-eyebrow {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--site2026-primary-400, #4caebd);
}

.site2026-footer__cta-sub {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.1rem, 2.4vw, 1.4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.25;
}

/* Ghost watermark ------------------------------------------------------------ */

.site2026-footer__ghost {
    position: absolute;
    top: 3rem;
    right: -0.05em;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(10rem, 22vw, 18rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

/* Grid principal ------------------------------------------------------------- */

.site2026-footer__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem 1.5rem;
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Brand ---------------------------------------------------------------------- */

.site2026-footer__brand {
    display: grid;
    gap: 1.1rem;
}

.site2026-footer__logo {
    display: block;
    width: 100%;
    max-width: 280px;
}

.site2026-footer__logo img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
}

.site2026-footer__brand > p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.48);
    max-width: 30ch;
}

.site2026-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.site2026-footer__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.60);
    transition: color 0.2s ease;
}

.site2026-footer__contact-link:hover,
.site2026-footer__contact-link:focus-visible {
    color: var(--site2026-primary-300, #74c8d4);
}

.site2026-footer__contact-link svg {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    opacity: 0.7;
}

/* Nav columns ---------------------------------------------------------------- */

.site2026-footer__nav-col h2 {
    margin: 0 0 1rem;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.site2026-footer__nav-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.site2026-footer__nav-col a {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.18s ease;
}

.site2026-footer__nav-col a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(130, 201, 213, 0.6);
    transition: width 0.24s ease;
}

.site2026-footer__nav-col a:hover,
.site2026-footer__nav-col a:focus-visible {
    color: #ffffff;
}

.site2026-footer__nav-col a:hover::after,
.site2026-footer__nav-col a:focus-visible::after {
    width: 100%;
}

/* Bottom bar ----------------------------------------------------------------- */

.site2026-footer__bar {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 0 2.5rem;
}

.site2026-footer__legal {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.28);
}

.site2026-footer__made {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.22);
    font-style: italic;
}

@media (min-width: 640px) {
    .site2026-container {
        width: min(calc(100% - 3rem), var(--site2026-container));
    }

    .site2026-search {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .site2026-page-header__content {
        padding: 2.4rem 0 2rem;
    }

    .site2026-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 2.5rem 0 2rem;
    }

    .site2026-footer__cta-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .home2026-hero-editorial__content {
        padding: 1.9rem;
    }

    .home2026-clients__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home2026-manifesto__grid,
    .home2026-ai-hybrid__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home2026-services-dark__grid,
    .home2026-content-hub__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home2026-hero__grid,
    .home2026-intro__body,
    .home2026-projects__header,
    .home2026-cta {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    }

    .home2026-trust__grid,
    .home2026-products__grid,
    .home2026-services__grid,
    .home2026-why__grid,
    .home2026-content-hub__grid,
    .home2026-projects__grid,
    .home2026-ai__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home2026-intro__stats,
    .home2026-logo-cloud {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site2026-topbar__inner {
        padding: 0.9rem 0;
    }

    .site2026-header__actions {
        display: flex;
    }

    .site2026-mobile-panel {
        display: none;
    }

    .page-internal .site2026-header {
        position: absolute;
        top: 4.15rem;
        left: 0;
        width: 100%;
        margin-top: 20px;
        margin-bottom: 0;
        padding: 0;
    }

    .page-internal .site2026-page-header {
        padding-top: 5rem;
    }

    .page-internal .site2026-page-header__content {
        min-height: 0;
        padding: 4.5rem 0 2.5rem;
    }

    .site2026-page-header {
        padding-top: 2.5rem;
    }

    .site2026-footer__grid {
        grid-template-columns: minmax(0, 1.5fr) repeat(4, minmax(0, 1fr));
    }

    .site2026-footer__bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .home2026-hero-editorial {
        grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    }

    .home2026-manifesto__grid {
        grid-template-columns: 1.2fr 0.8fr 0.8fr;
    }

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

    .home2026-product-showcase__item {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        padding: 1.7rem;
    }

    .home2026-product-showcase__item:nth-child(even) .home2026-product-showcase__media {
        order: 2;
    }

    .home2026-product-showcase__item:nth-child(even) .home2026-product-showcase__content {
        order: 1;
    }

    .home2026-services-dark {
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
        padding: 1.8rem;
    }

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

    .home2026-ai-hybrid {
        grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    }

    .home2026-content-hub__split {
        grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    }

    .home2026-content-hub__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home2026-hero {
        padding-top: 2.35rem;
    }

    .home2026-hero__grid {
        grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    }

    .home2026-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home2026-services__grid,
    .home2026-why__grid,
    .home2026-content-hub__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home2026-projects__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home2026-ai__surface {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }

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

    .site2026-header__brand-row {
        padding: 1.2rem 1.4rem;
    }

    .site2026-nav {
        display: block;
    }

    .site2026-mobile-toggle {
        display: none;
    }

    .site2026-header__search-row {
        padding: 0 1.4rem 1rem;
    }

    .site2026-nav__desktop {
        padding: 0.95rem 1.2rem 1.1rem;
    }

    .site2026-nav--inline .site2026-nav__desktop {
        padding: 0;
    }

    .site2026-page-header__content {
        padding: 3rem 0 2.4rem;
    }
}

@media (max-width: 767px) {
    .home2026-hero-editorial__content,
    .home2026-product-showcase__item,
    .home2026-services-dark,
    .home2026-manifesto__card,
    .home2026-ai-hybrid__cards article,
    .home2026-content-hub__grid article,
    .home2026-clients__bar {
        padding: 1.2rem;
    }

    .home2026-hero-editorial__proof {
        grid-template-columns: 1fr;
    }

    .home2026-hero-editorial__figure img {
        min-height: 25rem;
    }

    .home2026-floating-card {
        position: static;
        width: 100%;
        margin-top: 0.9rem;
    }

    .home2026-ui-mockup__body {
        grid-template-columns: 4rem minmax(0, 1fr);
    }

    .home2026-ui-mockup__cards {
        grid-template-columns: 1fr;
    }

    .home2026-hero__content,
    .home2026-ai__surface,
    .home2026-projects,
    .home2026-cta,
    .home2026-product-card,
    .home2026-trust__grid article,
    .home2026-services__grid article,
    .home2026-why__grid article,
    .home2026-content-hub__grid article,
    .home2026-ai__grid article,
    .home2026-intro__body > div:first-child,
    .home2026-intro__stats article {
        padding: 1.2rem;
    }

    .site2026-topbar__inner,
    .site2026-topbar__intro,
    .site2026-topbar__links {
        flex-direction: column;
        align-items: flex-start;
    }

    .site2026-topbar__links {
        justify-content: flex-start;
    }

    .site2026-header,
    .page-internal .site2026-header {
        padding: 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(20, 58, 69, 0.08);
        box-shadow: 0 10px 24px rgba(10, 30, 36, 0.08);
        backdrop-filter: blur(12px);
    }

    .site2026-header__surface,
    .page-internal .site2026-header__surface {
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .site2026-header__brand-row {
        gap: 0.7rem;
        padding: 0.7rem 0;
        align-items: center;
    }

    .site2026-brand {
        flex: 1 1 auto;
        width: auto;
        max-width: none;
        min-width: 0;
    }

    .site2026-brand img {
        width: auto;
        max-width: 100%;
        height: 1.9rem;
        object-fit: contain;
    }

    .site2026-mobile-toggle {
        width: 2.9rem;
        height: 2.9rem;
        border: 1px solid rgba(20, 58, 69, 0.08);
        background: linear-gradient(180deg, rgba(18, 43, 50, 0.96), rgba(12, 27, 33, 0.92));
        color: #ffffff;
        box-shadow: 0 16px 28px rgba(7, 24, 31, 0.18);
    }

    .site2026-mobile-toggle:hover,
    .site2026-mobile-toggle:focus-visible {
        border-color: rgba(29, 138, 156, 0.24);
        background: linear-gradient(180deg, rgba(23, 57, 66, 0.96), rgba(15, 37, 44, 0.94));
        color: #ffffff;
    }

    .page-internal .site2026-page-header {
        padding-top: 1.25rem;
    }

    .page-internal .site2026-page-header::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: auto;
        bottom: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient(
            to bottom,
            rgba(76, 174, 192, 0.85) 0%,
            rgba(76, 174, 192, 0.25) 55%,
            transparent 100%
        );
        z-index: 2;
    }

    .page-internal .site2026-page-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3rem;
        background: linear-gradient(to bottom, transparent, rgba(7, 17, 21, 0.55));
        pointer-events: none;
        z-index: 1;
    }

    .page-internal .site2026-page-header__content {
        min-height: 0;
        padding: 0.75rem 0 1.5rem;
        gap: 0.5rem;
    }

    .page-internal .site2026-page-header h1 {
        font-size: clamp(1.3rem, 5.8vw, 1.6rem);
        line-height: 1.12;
        letter-spacing: -0.03em;
    }

    .page-internal .site2026-page-header__excerpt {
        font-size: 0.825rem;
        line-height: 1.65;
        opacity: 0.72;
        margin-top: 0.1rem;
    }

    .site2026-main {
        padding-top: 1.25rem;
    }
}

.home26-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home26-kicker--dark {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.84);
}

.home2026-homepage .site2026-main {
    padding-top: 0.9rem;
}

.home26-hero {
    position: relative;
    padding: 1.25rem 0 1.5rem;
}

.home26-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 38rem;
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.22), transparent 24%),
        radial-gradient(circle at top left, rgba(29, 138, 156, 0.18), transparent 26%),
        linear-gradient(145deg, #10191d, #17272d 55%, #1a2f36);
    pointer-events: none;
}

.home26-hero__shell {
    position: relative;
    display: grid;
    gap: 1.2rem;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 32%),
        rgba(15, 24, 28, 0.88);
    box-shadow: 0 34px 90px rgba(7, 17, 20, 0.24);
    overflow: hidden;
}

.home26-hero__shell::after {
    content: "";
    position: absolute;
    right: -3rem;
    bottom: -3rem;
    width: 12rem;
    height: 12rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(217, 83, 79, 0.34), rgba(217, 83, 79, 0));
    filter: blur(12px);
    pointer-events: none;
}

.home26-hero__content,
.home26-hero__media {
    position: relative;
    z-index: 1;
}

.home26-hero__content {
    display: grid;
    gap: 1rem;
    align-content: center;
}

.home26-hero__content h1 {
    margin: 0;
    max-width: 12ch;
    color: #ffffff;
    font-size: clamp(2.85rem, 8vw, 6.2rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.home26-hero__lead {
    margin: 0;
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1rem, 2vw, 1.16rem);
    line-height: 1.8;
}

.home26-hero__actions,
.home26-finalcta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.home26-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.home26-hero__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.88rem;
    font-weight: 600;
}

.home26-hero__media {
    display: grid;
    gap: 0.9rem;
}

.home26-hero__figure {
    margin: 0;
    overflow: hidden;
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top left, rgba(29, 138, 156, 0.20), transparent 30%),
        linear-gradient(160deg, #0e171b, #10191d 70%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 24px 70px rgba(0, 0, 0, 0.22);
}

.home26-hero__figure img {
    display: block;
    width: 100%;
    min-height: 25rem;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: screen;
}

.home26-hero__insight {
    display: grid;
    gap: 0.3rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.home26-hero__insight span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home26-hero__insight strong {
    color: #ffffff;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.16rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.home26-hero__insight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.6;
}

.home26-hero__dashboard {
    overflow: hidden;
    width: min(100%, 18rem);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.home26-hero__dashboard-top {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    padding: 0.85rem 0.95rem;
    border-bottom: 1px solid rgba(20, 58, 69, 0.08);
    background: #f5f8f9;
}

.home26-hero__dashboard-top span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: rgba(20, 58, 69, 0.16);
}

.home26-hero__dashboard-top span:first-child {
    background: rgba(217, 83, 79, 0.60);
}

.home26-hero__dashboard-top span:nth-child(2) {
    background: rgba(238, 179, 44, 0.84);
}

.home26-hero__dashboard-top span:last-child {
    background: rgba(29, 138, 156, 0.72);
}

.home26-hero__dashboard-body {
    display: grid;
    gap: 0.95rem;
    padding: 1rem;
}

.home26-hero__dashboard-stat strong {
    display: block;
    color: var(--site2026-neutral-900);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.3rem;
    line-height: 1.05;
}

.home26-hero__dashboard-stat small {
    display: block;
    margin-top: 0.25rem;
    color: var(--site2026-neutral-500);
    font-size: 0.84rem;
    line-height: 1.4;
}

.home26-hero__dashboard-bars {
    display: grid;
    gap: 0.65rem;
}

.home26-hero__dashboard-bars i {
    display: block;
    height: 0.72rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(29, 138, 156, 0.72), rgba(29, 138, 156, 0.12));
}

.home26-hero__dashboard-bars i:nth-child(2) {
    width: 82%;
}

.home26-hero__dashboard-bars i:nth-child(3) {
    width: 68%;
}

.home26-hero__dashboard-bars i:nth-child(4) {
    width: 54%;
}

.home26-hero__dashboard-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.home26-hero__dashboard-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(29, 138, 156, 0.08);
    color: var(--site2026-primary-700);
    font-size: 0.78rem;
    font-weight: 700;
}

.home26-proofbar,
.home26-manifesto,
.home26-products,
.home26-services,
.home26-ai,
.home26-cases,
.home26-resources {
    padding: 1.3rem 0;
}

.home26-proofbar__shell {
    display: grid;
    gap: 1rem;
    align-items: center;
    padding: 1.15rem 1.2rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 1.8rem;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0 18px 40px rgba(16, 59, 69, 0.06);
}

.home26-proofbar__intro p {
    margin: 0;
    color: var(--site2026-neutral-700);
}

.home26-proofbar__logos {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home26-proofbar__logos span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 4.5rem;
    padding: 1rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 1.3rem;
    background: #ffffff;
    color: var(--site2026-neutral-500);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.home26-manifesto__grid {
    display: grid;
    gap: 1rem;
}

.home26-manifesto__statement,
.home26-manifesto__card,
.home26-ai__cards article,
.home26-resources__grid article {
    padding: 1.4rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 1.8rem;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 22px 50px rgba(16, 59, 69, 0.06);
}

.home26-manifesto__statement .home26-kicker,
.home26-section-heading .home26-kicker,
.home26-ai__content .home26-kicker,
.home26-resources__intro .home26-kicker {
    border-color: rgba(29, 138, 156, 0.14);
    background: rgba(29, 138, 156, 0.08);
    color: var(--site2026-primary-700);
}

.home26-manifesto__statement {
    background:
        radial-gradient(circle at top left, rgba(29, 138, 156, 0.16), transparent 34%),
        linear-gradient(180deg, #ffffff, #f4fafb);
}

.home26-manifesto__statement h2 {
    margin: 0.75rem 0 0.75rem;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 0.96;
}

.home26-manifesto__statement p:last-child,
.home26-manifesto__card p {
    margin: 0;
    color: var(--site2026-neutral-700);
}

.home26-manifesto__card h3 {
    margin: 0 0 0.55rem;
    font-size: clamp(1.35rem, 3vw, 1.8rem);
    line-height: 1;
}

.home26-section-heading {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
    max-width: 52rem;
}

.home26-section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 0.96;
}

.home26-section-heading p:last-child {
    margin: 0;
    color: var(--site2026-neutral-700);
}

.home26-section-heading--cases {
    margin-bottom: 0.75rem;
}

.home26-products__grid {
    display: grid;
    gap: 1rem;
}

.home26-product-card {
    display: grid;
    gap: 1rem;
    overflow: hidden;
    padding: 1.25rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 2rem;
    box-shadow: 0 28px 60px rgba(16, 59, 69, 0.08);
}

.home26-product-card--lms {
    background:
        radial-gradient(circle at top left, rgba(29, 138, 156, 0.16), transparent 30%),
        linear-gradient(180deg, #ffffff, #eff9fb);
}

.home26-product-card--edupay {
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.18), transparent 28%),
        linear-gradient(180deg, #ffffff, #fdf1f0);
}

.home26-product-card--moodle {
    background:
        radial-gradient(circle at bottom left, rgba(29, 138, 156, 0.10), transparent 28%),
        linear-gradient(155deg, #111b20, #18282f 62%, #20343d);
}

.home26-product-card__body {
    display: grid;
    gap: 0.9rem;
}

.home26-product-card__tag {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    background: rgba(20, 58, 69, 0.08);
    color: var(--site2026-neutral-700);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home26-product-card--moodle .home26-product-card__tag {
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.80);
}

.home26-product-card h3 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 0.95;
}

.home26-product-card--moodle h3,
.home26-product-card--moodle p,
.home26-product-card--moodle li,
.home26-product-card--moodle a {
    color: #ffffff;
}

.home26-product-card__body p,
.home26-case-card__content p {
    margin: 0;
    color: var(--site2026-neutral-700);
}

.home26-product-card__body ul {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home26-product-card__body li {
    position: relative;
    padding-left: 1.3rem;
}

.home26-product-card__body li::before {
    content: "";
    position: absolute;
    top: 0.65rem;
    left: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--site2026-primary-500);
    box-shadow: 0 0 0 0.2rem rgba(29, 138, 156, 0.12);
}

.home26-product-card--edupay .home26-product-card__body li::before {
    background: var(--site2026-accent-500);
    box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.12);
}

.home26-product-card--moodle .home26-product-card__body li::before {
    background: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.12);
}

.home26-product-card__body a,
.home26-ai__cards a,
.home26-resources__grid a,
.home26-case-card__content a {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    color: var(--site2026-neutral-900);
    font-weight: 800;
}

.home26-product-card__body a:hover,
.home26-product-card__body a:focus-visible,
.home26-ai__cards a:hover,
.home26-ai__cards a:focus-visible,
.home26-resources__grid a:hover,
.home26-resources__grid a:focus-visible,
.home26-case-card__content a:hover,
.home26-case-card__content a:focus-visible {
    color: var(--site2026-primary-700);
}

.home26-product-card__visual {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 18rem;
    padding: 1rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.46);
}

.home26-product-card__visual img {
    display: block;
    width: min(100%, 28rem);
    filter: drop-shadow(0 18px 40px rgba(16, 59, 69, 0.14));
}

.home26-paymock {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 19rem;
    padding: 1.1rem;
}

.home26-paymock__screen {
    overflow: hidden;
    width: min(100%, 30rem);
    border: 1px solid rgba(20, 58, 69, 0.10);
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 65px rgba(16, 59, 69, 0.14);
}

.home26-paymock__top {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    padding: 0.85rem 0.95rem;
    border-bottom: 1px solid rgba(20, 58, 69, 0.08);
    background: #f7f9fa;
}

.home26-paymock__top span {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 999px;
    background: rgba(20, 58, 69, 0.14);
}

.home26-paymock__top span:first-child {
    background: rgba(217, 83, 79, 0.58);
}

.home26-paymock__top span:nth-child(2) {
    background: rgba(238, 179, 44, 0.82);
}

.home26-paymock__top span:last-child {
    background: rgba(29, 138, 156, 0.72);
}

.home26-paymock__body {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    min-height: 17rem;
}

.home26-paymock__sidebar {
    background:
        linear-gradient(180deg, rgba(217, 83, 79, 0.16), rgba(217, 83, 79, 0.04)),
        #fff3f2;
}

.home26-paymock__content {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
}

.home26-paymock__line {
    height: 0.8rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(20, 58, 69, 0.12), rgba(20, 58, 69, 0.04));
}

.home26-paymock__line--strong {
    width: 74%;
    height: 1rem;
}

.home26-paymock__line--short {
    width: 38%;
}

.home26-paymock__cards {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: auto;
}

.home26-paymock__cards div {
    min-height: 6.8rem;
    border-radius: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 250, 0.98)),
        #ffffff;
    box-shadow: inset 0 0 0 1px rgba(20, 58, 69, 0.06);
}

.home26-paymock__chip {
    position: absolute;
    right: 1.5rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    min-height: 2.4rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: #ffffff;
    color: var(--site2026-accent-700);
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(16, 59, 69, 0.10);
}

.home26-services__shell {
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.18), transparent 24%),
        radial-gradient(circle at left center, rgba(29, 138, 156, 0.16), transparent 32%),
        linear-gradient(145deg, #0f181c, #17262c 58%, #20343c);
    box-shadow: 0 34px 90px rgba(7, 17, 20, 0.20);
}

.home26-services__intro {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.home26-services__intro h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 0.95;
}

.home26-services__intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.home26-services__grid {
    display: grid;
    gap: 1rem;
}

.home26-service-card {
    display: grid;
    gap: 0.95rem;
    align-content: start;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.home26-service-card img {
    width: 5rem;
    height: 5rem;
    border-radius: 1.2rem;
    object-fit: cover;
}

.home26-service-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.42rem;
    line-height: 1;
}

.home26-service-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.home26-ai__grid {
    display: grid;
    gap: 1rem;
    align-items: center;
}

.home26-ai__figure {
    margin: 0;
    padding: 1rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.16), transparent 26%),
        radial-gradient(circle at left bottom, rgba(29, 138, 156, 0.14), transparent 28%),
        rgba(255, 255, 255, 0.84);
    box-shadow: 0 24px 50px rgba(16, 59, 69, 0.06);
}

.home26-ai__figure img {
    display: block;
    width: 100%;
    border-radius: 1.35rem;
}

.home26-ai__content {
    display: grid;
    gap: 0.85rem;
}

.home26-ai__content h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 0.96;
}

.home26-ai__content p {
    margin: 0;
    color: var(--site2026-neutral-700);
}

.home26-ai__cards,
.home26-resources__grid,
.home26-cases__grid {
    display: grid;
    gap: 1rem;
}

.home26-ai__cards article h3,
.home26-resources__grid article h3 {
    margin: 0 0 0.55rem;
}

.home26-ai__cards article p,
.home26-resources__grid article p {
    margin: 0;
}

.home26-ai__cards article a,
.home26-resources__grid article a {
    margin-top: 1rem;
}

.home26-cases__header {
    display: grid;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.1rem;
}

.home26-cases__header h3 {
    margin: 0;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    line-height: 0.98;
}

.home26-cases__header p {
    margin: 0.45rem 0 0;
    color: var(--site2026-neutral-700);
}

.home26-case-card {
    overflow: hidden;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 1.7rem;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 20px 45px rgba(16, 59, 69, 0.06);
}

.home26-case-card__image {
    display: block;
    overflow: hidden;
}

.home26-case-card__image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home26-case-card:hover .home26-case-card__image img,
.home26-case-card:focus-within .home26-case-card__image img {
    transform: scale(1.04);
}

.home26-case-card__content {
    display: grid;
    gap: 0.65rem;
    padding: 1.2rem;
}

.home26-case-card__content h4 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.05;
}

.home26-case-card--empty .home26-case-card__content {
    min-height: 100%;
    place-content: center;
}

.home26-resources__shell {
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 2rem;
    background:
        radial-gradient(circle at top left, rgba(29, 138, 156, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff, #f7fbfc);
    box-shadow: 0 24px 55px rgba(16, 59, 69, 0.06);
}

.home26-resources__intro {
    display: grid;
    gap: 0.75rem;
    align-content: start;
}

.home26-resources__intro h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 0.96;
}

.home26-resources__intro p {
    margin: 0;
    color: var(--site2026-neutral-700);
}

.home26-finalcta {
    display: grid;
    gap: 1rem;
    padding: 1.45rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.18), transparent 24%),
        radial-gradient(circle at left center, rgba(29, 138, 156, 0.16), transparent 30%),
        linear-gradient(145deg, #132126, #183039 64%, #1f3943);
    box-shadow: 0 34px 90px rgba(7, 17, 20, 0.22);
}

.home26-finalcta__content {
    display: grid;
    gap: 0.8rem;
}

.home26-finalcta__content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 0.95;
}

.home26-finalcta__content p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

@media (min-width: 768px) {
    .home26-proofbar__logos,
    .home26-cases__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home26-manifesto__grid,
    .home26-products__grid,
    .home26-services__grid,
    .home26-ai__cards,
    .home26-resources__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home26-cases__header,
    .home26-finalcta {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}

@media (min-width: 1024px) {
    .home26-hero {
        padding-top: 1.7rem;
    }

    .home26-hero__shell {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: 1.6rem;
        padding: 1.6rem;
    }

    .home26-hero__content {
        padding: 1rem 0;
    }

    .home26-hero__media {
        min-height: 100%;
        padding: 0.55rem 0;
    }

    .home26-hero__insight {
        position: absolute;
        z-index: 2;
        width: min(18rem, 42%);
    }

    .home26-hero__insight--top {
        top: 1.2rem;
        left: -0.5rem;
    }

    .home26-hero__insight--bottom {
        right: -0.2rem;
        bottom: 1rem;
    }

    .home26-hero__dashboard {
        position: absolute;
        left: 1.25rem;
        bottom: 2rem;
        z-index: 2;
    }

    .home26-proofbar__shell {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

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

    .home26-manifesto__grid {
        grid-template-columns: 1.2fr 0.8fr 0.8fr;
    }

    .home26-products__grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .home26-product-card--lms {
        grid-column: span 7;
    }

    .home26-product-card--edupay,
    .home26-product-card--moodle {
        grid-column: span 5;
    }

    .home26-product-card {
        min-height: 100%;
    }

    .home26-services__shell {
        grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
        padding: 1.7rem;
    }

    .home26-services__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home26-ai__grid {
        grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    }

    .home26-resources__shell {
        grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    }

    .home26-cases__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home26-hero__dashboard {
        width: 100%;
    }

    .home26-paymock__body {
        grid-template-columns: 4rem minmax(0, 1fr);
    }

    .home26-paymock__cards {
        grid-template-columns: 1fr;
    }

    .home26-proofbar__shell,
    .home26-manifesto__statement,
    .home26-manifesto__card,
    .home26-product-card,
    .home26-services__shell,
    .home26-service-card,
    .home26-ai__figure,
    .home26-ai__cards article,
    .home26-case-card__content,
    .home26-resources__shell,
    .home26-resources__grid article,
    .home26-finalcta {
        padding: 1.15rem;
    }
}

.home30-page .site2026-main {
    padding-top: 1rem;
}

.home30-page {
    --home30-header-top: 4.15rem;
    --home30-header-height: 6.5rem;
    --home30-hero-safe-top: 0.75rem;
    --home30-header-gap: 20px;
}

/* Body branco para home30 (seções definem seus próprios fundos) */
body.home30-page {
    background: #ffffff;
}

/* Remove o overlay branco+vermelho fixo (body::before) na home30 */
body.home30-page::before {
    display: none;
}

/* Header escuro no mobile (sticky no topo, fundo dark) */
@media (min-width: 768px) {
    /* No desktop o header flutua sobre o hero — mantém fundo claro */
    .home30-page .site2026-header__surface {
        background: rgba(255, 255, 255, 0.84);
        border-color: var(--site2026-border);
    }
}

.home30-page .site2026-topbar {
    position: relative;
    z-index: 90;
}

.home30-page .site2026-header {
    position: sticky;
    top: 0;
    left: auto;
    width: auto;
    z-index: 120;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0.5rem 0;
}

@media (max-width: 767px) {
    .home30-page .site2026-header {
        padding: 0;
    }
}

@media (min-width: 768px) {
    .home30-page .site2026-header {
        position: absolute;
        top: var(--home30-header-top);
        left: 0;
        width: 100%;
        margin-top: var(--home30-header-gap);
        padding: 0;
    }
}

@media (min-width: 768px) {
    .home30-page .site2026-header__surface {
        background: rgba(255, 255, 255, 0.84);
        box-shadow: 0 24px 60px rgba(7, 17, 20, 0.14);
    }
}

/* Badge canônico — única definição de shape/tipografia. Só cor muda por variante. */
.home30-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 0.3rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Variante: fundo claro — teal sobre branco */
.home30-kicker--light {
    border-color: rgba(29, 138, 156, 0.18);
    background: rgba(29, 138, 156, 0.08);
    color: var(--site2026-primary-700);
}

/* Variante: destaque accent — vermelho sobre fundo escuro */
.home30-kicker--accent {
    border-color: rgba(217, 83, 79, 0.20);
    background: rgba(217, 83, 79, 0.14);
    color: var(--site2026-accent-200);
}

.home30-heading {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    max-width: 52rem;
}

/* ── Padrão tipográfico home30 ──────────────────────────────────────────────
   REGRA: não repetir font-size / font-weight nas seções individuais.
   Só sobrescrever COLOR (e margin quando necessário).
   ────────────────────────────────────────────────────────────────────────── */

/* h2: seções (heading principal de cada bloco) */
.home30-heading h2,
.home30-services__intro h2,
.home30-final__copy h2,
.home30-ai__content h2,
.home30-resources__intro h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

/* h3: feature cards (services, ai, resources, audiences) */
.home30-services__grid h3,
.home30-ai__cards h3,
.home30-resources__grid h3,
.home30-audiences__content h3 {
    margin: 0;
    font-size: clamp(1.15rem, 1.7vw, 1.4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.22;
}

.home30-heading p:last-child {
    margin: 0;
    color: var(--site2026-neutral-700);
}

.home30-hero {
    position: relative;
    margin-top: 0;
    padding: 2rem 0 0;
    --home30-mesh-x: 68%;
    --home30-mesh-y: 28%;
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.26), transparent 26%),
        radial-gradient(circle at left top, rgba(29, 138, 156, 0.18), transparent 28%),
        linear-gradient(145deg, #11191d, #16242a 58%, #1c3138);
    overflow: hidden;
}

@media (max-width: 767px) {
    .home30-hero {
        padding: 0.5rem 0 0;
    }

    .home30-hero .home30-kicker {
        display: none;
    }

    .home30-hero__grid {
        gap: 0.5rem;
        padding: 0;
    }

    .home30-hero__copy {
        gap: 0.6rem;
    }

    .home30-hero__figure img {
        min-height: 9rem;
        max-height: 12rem;
    }

    .home30-hero__actions {
        gap: 0.6rem;
    }

    .home30-hero__lead {
        font-size: 0.92rem;
    }
}

@media (min-width: 768px) {
    .home30-hero {
        padding: calc(var(--home30-header-height) + var(--home30-header-gap) + var(--home30-hero-safe-top)) 0 0;
    }
}

.home30-hero__ambient {
    position: absolute;
    inset: -12% -8% 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.home30-hero .site2026-container {
    position: relative;
    z-index: 2;
}

.home30-hero__mesh-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.78;
    mix-blend-mode: screen;
}

.home30-hero__glow,
.home30-hero__cursor {
    position: absolute;
    border-radius: 999px;
    mix-blend-mode: screen;
}

.home30-hero__glow {
    opacity: 0.92;
    filter: blur(78px);
    animation: home30MeshFloat 14s ease-in-out infinite alternate;
}

.home30-hero__glow--teal {
    top: 0;
    left: -4%;
    width: 34rem;
    height: 34rem;
    background: radial-gradient(circle, rgba(29, 138, 156, 0.44) 0%, rgba(29, 138, 156, 0.16) 48%, transparent 74%);
}

.home30-hero__glow--coral {
    top: -2%;
    right: -4%;
    width: 30rem;
    height: 30rem;
    background: radial-gradient(circle, rgba(217, 83, 79, 0.40) 0%, rgba(217, 83, 79, 0.14) 50%, transparent 76%);
    animation-duration: 17s;
}

.home30-hero__glow--mist {
    bottom: 4%;
    left: 34%;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.08) 42%, transparent 72%);
    animation-duration: 19s;
}

.home30-hero__cursor {
    left: var(--home30-mesh-x);
    top: var(--home30-mesh-y);
    width: 32rem;
    height: 32rem;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24) 0%, rgba(29, 138, 156, 0.20) 26%, rgba(217, 83, 79, 0.16) 44%, transparent 72%);
    filter: blur(28px);
    opacity: 0.98;
    transition:
        left 0.18s ease-out,
        top 0.18s ease-out,
        opacity 0.18s ease-out;
}

.home30-hero__grid {
    position: relative;
    display: grid;
    gap: 1.25rem;
    align-items: end;
    padding: 0;
}

.home30-hero__copy,
.home30-hero__visual {
    position: relative;
    z-index: 1;
}

.home30-hero__copy {
    display: grid;
    gap: 1rem;
    align-content: center;
    align-self: center;
    text-align: center;
    justify-items: center;
}

@media (min-width: 768px) {
    .home30-hero__copy {
        text-align: left;
        justify-items: start;
    }
}

.home30-hero__copy h1 {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(1.85rem, 4.2vw, 3.55rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.045em;
    background: linear-gradient(135deg, #ffffff 30%, var(--site2026-primary-300, #82c9d5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home30-hero__lead {
    margin: 0;
    max-width: 41rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(0.94rem, 1.35vw, 1.02rem);
    line-height: 1.7;
}

.home30-hero__actions,
.home30-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .home30-hero__actions {
        justify-content: flex-start;
    }
}

.home30-hero__visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.home30-hero__figure {
    margin: 0;
    align-self: flex-end;
}

.home30-hero__figure img {
    display: block;
    width: 100%;
    min-height: 14rem;
    max-height: 18rem;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: screen;
}

@media (min-width: 768px) {
    .home30-hero__figure img {
        min-height: 25rem;
        max-height: none;
    }
}

@keyframes home30MeshFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(1.5rem, 1rem, 0) scale(1.08);
    }
}


.home30-bar,
.home30-intro,
.home30-services,
.home30-ai,
.home30-cases,
.home30-resources,
.home30-audiences {
    padding: 1.4rem 0;
}

.home30-intro {
    background:
        linear-gradient(160deg, rgba(29, 138, 156, 0.08) 0%, transparent 45%),
        #060f14;
    padding-block: 5rem;
}

.home30-intro h1,
.home30-intro h2,
.home30-intro h3,
.home30-intro h4,
.home30-intro h5,
.home30-intro h6 {
    color: #ffffff;
}

.home30-intro p:not(.home30-kicker),
.home30-intro li {
    color: rgba(255, 255, 255, 0.62);
    line-height: inherit;
}

.home30-intro strong {
    color: #ffffff;
}

.home30-ai {
    padding-block: 5rem;
}

.home30-ai h1,
.home30-ai h2,
.home30-ai h3,
.home30-ai h4,
.home30-ai h5,
.home30-ai h6 {
    color: #ffffff;
}

.home30-ai p:not(.home30-kicker),
.home30-ai li {
    color: rgba(255, 255, 255, 0.65);
    line-height: inherit;
}

.home30-ai strong {
    color: #ffffff;
}

.home30-services {
    padding-block: 5rem;
}

.home30-services h1,
.home30-services h2,
.home30-services h3,
.home30-services h4,
.home30-services h5,
.home30-services h6 {
    color: #ffffff;
}

.home30-services p:not(.home30-kicker),
.home30-services li {
    color: rgba(255, 255, 255, 0.62);
    line-height: inherit;
}

.home30-services strong {
    color: #ffffff;
}

.home30-resources {
    background: var(--site2026-neutral-50, #f8fafb);
    padding-block: 5rem;
}

.home30-resources h1,
.home30-resources h2,
.home30-resources h3,
.home30-resources h4,
.home30-resources h5,
.home30-resources h6 {
    color: var(--site2026-neutral-900, #141a1d);
}

.home30-resources p:not(.home30-kicker) {
    color: var(--site2026-neutral-600, #43515a);
}

.home30-bar__inner {
    display: grid;
    gap: 1rem;
    align-items: center;
    padding: 1.15rem 1.2rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 1.8rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 40px rgba(16, 59, 69, 0.06);
}

.home30-bar__inner p {
    margin: 0;
    color: var(--site2026-neutral-700);
}

.home30-bar__logos {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home30-bar__logos span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 4.5rem;
    padding: 1rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 1.3rem;
    background: #ffffff;
    color: var(--site2026-neutral-500);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.home30-intro__grid {
    display: grid;
    gap: 1rem;
    align-items: start;
}

.home30-intro__shell {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.14), transparent 28%),
        radial-gradient(circle at left center, rgba(29, 138, 156, 0.14), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 251, 0.98));
    box-shadow: 0 28px 70px rgba(16, 59, 69, 0.08);
}

.home30-intro__shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.42), transparent 38%),
        linear-gradient(180deg, rgba(20, 58, 69, 0.04), transparent 30%);
    pointer-events: none;
}

.home30-intro__copy,
.home30-intro__navigator,
.home30-ai__cards article,
.home30-resources__grid article {
    position: relative;
    z-index: 1;
    padding: 1.4rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 1.8rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 50px rgba(16, 59, 69, 0.06);
}

.home30-intro__copy {
    display: grid;
    gap: 1.2rem;
    background:
        radial-gradient(circle at top left, rgba(29, 138, 156, 0.16), transparent 34%),
        linear-gradient(180deg, #ffffff, #f4fafb);
}

.home30-intro__copy h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 0.96;
}

.home30-intro__copy > p:last-of-type,
.home30-intro__proof p,
.home30-intro__path p {
    margin: 0;
    color: var(--site2026-neutral-700);
    line-height: 1.75;
}

.home30-intro__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.home30-intro__signals span {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--site2026-neutral-700);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.home30-intro__proof,
.home30-intro__paths {
    display: grid;
    gap: 0.9rem;
}

.home30-intro__proof article {
    display: grid;
    gap: 0.45rem;
    padding: 1.15rem 1.2rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.94);
}

.home30-intro__proof strong,
.home30-intro__path h4,
.home30-intro__navigator-head h3 {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    letter-spacing: -0.03em;
}

.home30-intro__proof strong {
    color: var(--site2026-neutral-900);
    font-size: 1.2rem;
    line-height: 1;
}

.home30-intro__navigator {
    display: grid;
    gap: 1rem;
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.16), transparent 22%),
        linear-gradient(160deg, rgba(12, 21, 25, 0.98), rgba(23, 38, 44, 0.98) 62%, rgba(32, 52, 60, 0.98));
}

.home30-intro__navigator-head {
    display: grid;
    gap: 0.55rem;
}

.home30-intro__navigator-kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home30-intro__navigator-head h3 {
    color: #ffffff;
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    line-height: 0.95;
}

.home30-intro__path {
    display: grid;
    gap: 0.7rem;
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.45rem;
    background: rgba(255, 255, 255, 0.06);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.home30-intro__path:hover,
.home30-intro__path:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
}

.home30-intro__path h4 {
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 0.98;
}

.home30-intro__path p {
    color: rgba(255, 255, 255, 0.72);
}


.home30-intro__path--dark {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(29, 138, 156, 0.12));
}

.home30-intro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.home30-product {
    position: relative;
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 2rem;
    box-shadow: 0 28px 60px rgba(16, 59, 69, 0.08);
}

.home30-product--lms {
    background:
        radial-gradient(circle at top left, rgba(29, 138, 156, 0.16), transparent 30%),
        linear-gradient(180deg, #ffffff, #eff9fb);
}

.home30-product--edupay {
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.18), transparent 28%),
        linear-gradient(180deg, #ffffff, #fdf1f0);
}

.home30-product--moodle {
    background:
        radial-gradient(circle at bottom left, rgba(29, 138, 156, 0.10), transparent 28%),
        linear-gradient(155deg, #111b20, #18282f 62%, #20343d);
}

.home30-product__index {
    color: rgba(20, 58, 69, 0.16);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.home30-product--moodle .home30-product__index {
    color: rgba(255, 255, 255, 0.12);
}

.home30-product__media {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 18rem;
    padding: 1rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.46);
}

.home30-product__media img {
    display: block;
    width: min(100%, 29rem);
    filter: drop-shadow(0 18px 40px rgba(16, 59, 69, 0.14));
}

.home30-product__media--mockup {
    background:
        radial-gradient(circle at top left, rgba(217, 83, 79, 0.20), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.4));
}

.home30-product__body {
    display: grid;
    gap: 0.9rem;
}

.home30-product__tag {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    background: rgba(20, 58, 69, 0.08);
    color: var(--site2026-neutral-700);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home30-product--moodle .home30-product__tag {
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.80);
}

.home30-product__body h3 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 0.95;
}

.home30-product--moodle h3,
.home30-product--moodle p,
.home30-product--moodle li,
.home30-product--moodle a {
    color: #ffffff;
}

.home30-product__body p,
.home30-case__content p,
.home30-cases__top p {
    margin: 0;
    color: var(--site2026-neutral-700);
}

.home30-product__body ul {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home30-product__body li {
    position: relative;
    padding-left: 1.3rem;
}

.home30-product__body li::before {
    content: "";
    position: absolute;
    top: 0.65rem;
    left: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--site2026-primary-500);
    box-shadow: 0 0 0 0.2rem rgba(29, 138, 156, 0.12);
}

.home30-product--edupay .home30-product__body li::before {
    background: var(--site2026-accent-500);
    box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.12);
}

.home30-product--moodle .home30-product__body li::before {
    background: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.12);
}

.home30-product__body a,
.home30-ai__cards a,
.home30-resources__grid a,
.home30-case__content a {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    color: var(--site2026-neutral-900);
    font-weight: 800;
}

.home30-product__body a:hover,
.home30-product__body a:focus-visible,
.home30-ai__cards a:hover,
.home30-ai__cards a:focus-visible,
.home30-resources__grid a:hover,
.home30-resources__grid a:focus-visible,
.home30-case__content a:hover,
.home30-case__content a:focus-visible {
    color: var(--site2026-primary-700);
}

.home30-paycard {
    overflow: hidden;
    width: min(100%, 30rem);
    border: 1px solid rgba(20, 58, 69, 0.10);
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 65px rgba(16, 59, 69, 0.14);
}

.home30-paycard__top {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    padding: 0.85rem 0.95rem;
    border-bottom: 1px solid rgba(20, 58, 69, 0.08);
    background: #f7f9fa;
}

.home30-paycard__top span {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 999px;
    background: rgba(20, 58, 69, 0.14);
}

.home30-paycard__top span:first-child {
    background: rgba(217, 83, 79, 0.58);
}

.home30-paycard__top span:nth-child(2) {
    background: rgba(238, 179, 44, 0.82);
}

.home30-paycard__top span:last-child {
    background: rgba(29, 138, 156, 0.72);
}

.home30-paycard__body {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    min-height: 17rem;
}

.home30-paycard__sidebar {
    background:
        linear-gradient(180deg, rgba(217, 83, 79, 0.16), rgba(217, 83, 79, 0.04)),
        #fff3f2;
}

.home30-paycard__content {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
}

.home30-paycard__line {
    height: 0.8rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(20, 58, 69, 0.12), rgba(20, 58, 69, 0.04));
}

.home30-paycard__line--strong {
    width: 74%;
    height: 1rem;
}

.home30-paycard__line--short {
    width: 38%;
}

.home30-paycard__cards {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: auto;
}

.home30-paycard__cards i {
    display: block;
    min-height: 6.8rem;
    border-radius: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 250, 0.98)),
        #ffffff;
    box-shadow: inset 0 0 0 1px rgba(20, 58, 69, 0.06);
}

.home30-services__shell {
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.18), transparent 24%),
        radial-gradient(circle at left center, rgba(29, 138, 156, 0.16), transparent 32%),
        linear-gradient(145deg, #0f181c, #17262c 58%, #20343c);
    box-shadow: 0 34px 90px rgba(7, 17, 20, 0.20);
}

.home30-services__intro {
    display: grid;
    gap: 1rem;
    align-content: start;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top left, rgba(29, 138, 156, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(14px);
}

.home30-services__intro h2,
.home30-final__copy h2 {
    color: #ffffff;
}

.home30-services__intro p,
.home30-final__copy p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.home30-services__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.home30-services__signals span {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.home30-services__proof {
    display: grid;
    gap: 0.85rem;
}

.home30-services__proof article {
    display: grid;
    gap: 0.45rem;
    padding: 1.1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.06);
}

.home30-services__proof strong {
    color: #ffffff;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.18rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.home30-services__proof p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.home30-services__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.home30-services__grid {
    display: grid;
    gap: 1rem;
}

.home30-services__grid article {
    display: grid;
    gap: 0.95rem;
    align-content: start;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.home30-services__grid article:hover,
.home30-services__grid article:focus-within {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 26px 55px rgba(5, 12, 15, 0.16);
}

.home30-services__tag {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    background: rgba(29, 138, 156, 0.18);
    color: #d7f0f4;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home30-services__tag--accent {
    background: rgba(217, 83, 79, 0.18);
    color: #fbe0de;
}

.home30-services__card--soft {
    background:
        radial-gradient(circle at top right, rgba(29, 138, 156, 0.12), transparent 28%),
        rgba(255, 255, 255, 0.06);
}

.home30-services__grid img {
    width: 5rem;
    height: 5rem;
    border-radius: 1.2rem;
    object-fit: cover;
}

.home30-services__grid h3 {
    color: #ffffff;
}

.home30-services__grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.home30-services__grid ul {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home30-services__grid li {
    position: relative;
    padding-left: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
}

.home30-services__grid li::before {
    content: "";
    position: absolute;
    top: 0.65rem;
    left: 0;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 999px;
    background: var(--site2026-primary-400);
    box-shadow: 0 0 0 0.2rem rgba(29, 138, 156, 0.14);
}

.home30-services__grid a {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    color: #ffffff;
    font-weight: 800;
}

.home30-services__grid a:hover,
.home30-services__grid a:focus-visible {
    color: rgba(255, 255, 255, 0.74);
}

.home30-ai__grid {
    display: grid;
    gap: 1rem;
    align-items: center;
}

.home30-ai__content {
    display: grid;
    gap: 0.85rem;
}

.home30-ai__content h2 {
    color: #ffffff;
}

.home30-ai__content p {
    margin: 0;
    color: var(--site2026-neutral-700);
}

.home30-ai__cards,
.home30-resources__grid,
.home30-cases__grid {
    display: grid;
    gap: 1rem;
}

.home30-ai__cards h3,
.home30-resources__grid h3 {
    margin: 0 0 0.55rem;
}

.home30-ai__cards p,
.home30-resources__grid p {
    margin: 0;
}

.home30-ai__figure {
    margin: 0;
    padding: 1rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.16), transparent 26%),
        radial-gradient(circle at left bottom, rgba(29, 138, 156, 0.14), transparent 28%),
        rgba(255, 255, 255, 0.84);
    box-shadow: 0 24px 50px rgba(16, 59, 69, 0.06);
}

.home30-ai__figure img {
    display: block;
    width: 100%;
    border-radius: 1.35rem;
}

.home30-cases__top {
    display: grid;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.1rem;
}

.home30-cases__top h3 {
    margin: 0;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    line-height: 0.98;
}

.home30-case {
    overflow: hidden;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 1.7rem;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 20px 45px rgba(16, 59, 69, 0.06);
}

.home30-case__image {
    display: block;
    overflow: hidden;
}

.home30-case__image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home30-case:hover .home30-case__image img,
.home30-case:focus-within .home30-case__image img {
    transform: scale(1.04);
}

.home30-case__content {
    display: grid;
    gap: 0.65rem;
    padding: 1.2rem;
}

.home30-case__content h4 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.05;
}

.home30-case--empty .home30-case__content {
    min-height: 100%;
    place-content: center;
}

.home30-resources__shell {
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.18), transparent 22%),
        radial-gradient(circle at left center, rgba(29, 138, 156, 0.18), transparent 30%),
        linear-gradient(145deg, #131f24, #1b3038 62%, #233d47);
    box-shadow: 0 34px 90px rgba(7, 17, 20, 0.20);
}

.home30-resources__intro {
    display: grid;
    gap: 0.75rem;
    align-content: start;
}


.home30-final {
    display: grid;
    gap: 1rem;
    padding: 1.45rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.18), transparent 24%),
        radial-gradient(circle at left center, rgba(29, 138, 156, 0.16), transparent 30%),
        linear-gradient(145deg, #0f181c, #17262c 58%, #20343c);
    box-shadow: 0 34px 90px rgba(7, 17, 20, 0.22);
}

.home30-final__copy {
    display: grid;
    gap: 0.8rem;
}

@media (min-width: 768px) {
    .home30-bar__logos,
    .home30-ai__cards,
    .home30-resources__grid,
    .home30-cases__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home30-intro__proof,
    .home30-services__proof,
    .home30-intro__paths,
    .home30-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home30-cases__top,
    .home30-final {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}

@media (min-width: 1024px) {
    .home30-hero__grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: 1.6rem;
        padding: 0;
    }

    .home30-hero__visual {
        min-height: 100%;
        padding: 0;
    }

    .home30-bar__inner {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    }

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

    .home30-intro__grid {
        grid-template-columns: 1.15fr 0.85fr;
    }

    .home30-intro__paths {
        grid-template-columns: 1fr;
    }

    .home30-product {
        grid-template-columns: auto minmax(0, 0.9fr) minmax(0, 1.1fr);
        align-items: center;
        padding: 1.45rem;
    }

    .home30-product--reverse {
        grid-template-columns: auto minmax(0, 1.1fr) minmax(0, 0.9fr);
    }

    .home30-product--reverse .home30-product__media {
        order: 3;
    }

    .home30-product--reverse .home30-product__body {
        order: 2;
    }

    .home30-product__index {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
    }

    .home30-services__shell {
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
        padding: 1.7rem;
    }

    .home30-services__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home30-ai__grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }

    .home30-resources__shell {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    }

    .home30-resources__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home30-cases__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home30-page {
        --home30-header-top: 9.7rem;
        --home30-header-height: 4.75rem;
        --home30-hero-safe-top: 0.35rem;
    }

    .home30-hero {
        padding: calc((var(--home30-header-height) + var(--home30-header-gap) + var(--home30-hero-safe-top)) / 2) 0 0;
    }

    .home30-hero__ambient {
        inset: -6% -18% 0;
    }

    .home30-hero__mesh-canvas {
        opacity: 0.64;
    }

    .home30-hero__glow--teal,
    .home30-hero__glow--coral {
        width: 20rem;
        height: 20rem;
    }

    .home30-hero__glow--mist {
        width: 16rem;
        height: 16rem;
        left: 18%;
    }

    .home30-hero__cursor {
        width: 18rem;
        height: 18rem;
    }

    .home30-paycard__body {
        grid-template-columns: 4rem minmax(0, 1fr);
    }

    .home30-paycard__cards {
        grid-template-columns: 1fr;
    }

    .home30-bar__inner,
    .home30-intro__shell,
    .home30-intro__copy,
    .home30-intro__navigator,
    .home30-intro__proof article,
    .home30-intro__path,
    .home30-product,
    .home30-services__shell,
    .home30-services__intro,
    .home30-services__proof article,
    .home30-services__grid article,
    .home30-ai__figure,
    .home30-ai__cards article,
    .home30-case__content,
    .home30-resources__shell,
    .home30-resources__grid article,
    .home30-final {
        padding: 1.15rem;
    }

    .home30-intro__actions .site2026-button {
        width: 100%;
    }

    .home30-services__actions .site2026-button {
        width: 100%;
    }

}

/* ── home30-audiences: bloco light (fundo neutro, 3 públicos material didático) ── */
.home30-audiences {
    background: var(--site2026-neutral-50, #f8fafb);
    padding-block: 5rem;
}

.home30-audiences h1,
.home30-audiences h2,
.home30-audiences h3,
.home30-audiences h4,
.home30-audiences h5,
.home30-audiences h6 {
    color: var(--site2026-neutral-900, #141a1d);
}

.home30-audiences p:not(.home30-kicker) {
    color: var(--site2026-neutral-600, #43515a);
}

.home30-audiences__grid {
    display: grid;
    gap: 1.25rem;
}

.home30-audiences__card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--site2026-neutral-200);
    border-top: 2px solid var(--site2026-primary-300);
    border-radius: 1.5rem;
    background: #ffffff;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.home30-audiences__card:hover,
.home30-audiences__card:focus-within {
    transform: translateY(-3px);
    border-color: var(--site2026-primary-400);
    border-top-color: var(--site2026-primary-500);
    box-shadow:
        0 1px 2px rgba(29, 138, 156, 0.06),
        0 8px 24px rgba(29, 138, 156, 0.12),
        0 24px 48px rgba(29, 138, 156, 0.08);
}

.home30-audiences__bg {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 10rem;
    height: 10rem;
    color: var(--site2026-primary-400);
    opacity: 0.10;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.home30-audiences__card:hover .home30-audiences__bg {
    opacity: 0.16;
    transform: scale(1.06) rotate(-3deg);
}

.home30-audiences__bg svg {
    width: 100%;
    height: 100%;
}

.home30-audiences__content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.75rem;
    align-content: start;
    padding: 1.75rem;
}

.home30-audiences__content h3 {
    color: var(--site2026-neutral-900);
    font-family: "Bricolage Grotesque", sans-serif;
}

.home30-audiences__content p {
    margin: 0;
    color: var(--site2026-neutral-500);
    font-size: 0.9rem;
    line-height: 1.7;
}

.home30-audiences__content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s ease;
}

.home30-audiences__content h3 a:hover,
.home30-audiences__content h3 a:focus-visible {
    color: var(--site2026-primary-600);
}

@media (min-width: 768px) {
    .home30-audiences__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

@media (max-width: 599px) {
    .home30-audiences__content {
        padding: 1.35rem;
    }
}

/* ── Página /contatos ───────────────────────────────────────────────────────── */

.contact-section {
    position: relative;
    padding: 6rem 0 5.5rem;
    background: #ffffff;
}

.contact-section .site2026-container {
    position: relative;
    margin-top: -0.9rem;
}

.contact-shell {
    display: grid;
    gap: 3.5rem;
}

.contact-shell > section + section {
    padding-top: 3rem;
    border-top: 1px solid rgba(20, 58, 69, 0.12);
}

.contact-hero,
.contact-channel,
.contact-note {
    position: relative;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.contact-hero {
    display: grid;
    gap: 3rem;
    padding: 0;
}

.contact-overview,
.contact-aside,
.contact-channel,
.contact-note {
    z-index: 1;
}

.contact-eyebrow,
.contact-aside__eyebrow,
.contact-channel__tag,
.contact-note__eyebrow {
    margin: 0 0 0.7rem;
}

.contact-eyebrow,
.contact-note__eyebrow {
    color: inherit;
}

.contact-title {
    margin: 0;
    font-size: clamp(1.8rem, 3.5vw, 2.9rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    max-width: 12ch;
}

.contact-title--compact {
    max-width: none;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.contact-lead,
.contact-heading__text,
.contact-channel__text,
.contact-aside__note,
.contact-company dd,
.contact-company dd a {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--site2026-neutral-700);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.65rem;
    padding-bottom: 1.65rem;
    border-bottom: 1px solid rgba(20, 58, 69, 0.12);
}

.contact-topics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 1.5rem;
    margin: 1.6rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-topics li {
    position: relative;
    min-height: 100%;
    padding: 0 0 0 1rem;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--site2026-neutral-800);
}

.contact-topics li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.36rem;
    height: 0.36rem;
    border-radius: 999px;
    background: var(--site2026-primary-500);
}

.contact-aside {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(20, 58, 69, 0.12);
    padding-left: 2rem;
}

.contact-aside__eyebrow {
    color: inherit;
}

.contact-aside h3,
.contact-channel h3,
.contact-note h2 {
    margin: 0;
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.contact-aside__list,
.contact-channel__list,
.contact-note__list {
    display: grid;
    gap: 0.7rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-aside__list li,
.contact-channel__list li,
.contact-note__list li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--site2026-neutral-700);
}

.contact-aside__list li::before,
.contact-channel__list li::before,
.contact-note__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: var(--site2026-primary-500);
    box-shadow: 0 0 0 5px rgba(29, 138, 156, 0.10);
}

.contact-aside__note {
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(20, 58, 69, 0.12);
}

.contact-channels {
    display: grid;
    gap: 1.5rem;
}

.contact-heading {
    max-width: 42rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(20, 58, 69, 0.12);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
}

.contact-channel {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 0;
}

.contact-channel__tag {
    color: inherit;
}


.moodle-project-hero__floating.home30-kicker {
    background: #ffffff;
    color: var(--site2026-neutral-800);
    box-shadow: 0 2px 14px rgba(7, 24, 31, 0.18), 0 0 0 1px rgba(20, 58, 69, 0.14);
}

.contact-channel__meta {
    display: grid;
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(20, 58, 69, 0.12);
}

.contact-channel__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--site2026-neutral-500);
}

.contact-channel__meta span::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(29, 138, 156, 0.65);
    flex-shrink: 0;
}

.contact-channel__footer {
    display: grid;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(20, 58, 69, 0.12);
}

.contact-channel__footer--stack {
    align-content: end;
}

.contact-channel__value {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--site2026-neutral-900);
}

.contact-channel__value--email {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.contact-channel__value a,
.contact-company a,
.contact-channel__auxlink {
    color: inherit;
    text-decoration: none;
}

.contact-channel__value a:hover,
.contact-channel__value a:focus-visible,
.contact-company a:hover,
.contact-company a:focus-visible,
.contact-channel__auxlink:hover,
.contact-channel__auxlink:focus-visible {
    color: var(--site2026-primary-700);
}

.contact-channel__auxlink {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--site2026-neutral-700);
}

.contact-notes {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.9fr);
    gap: 2.5rem;
}

.contact-note {
    padding: 0;
}

.contact-note + .contact-note {
    padding-left: 2rem;
    border-left: 1px solid rgba(20, 58, 69, 0.12);
}

.contact-company {
    display: grid;
    gap: 1rem;
    margin: 1.25rem 0 0;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(20, 58, 69, 0.12);
}

.contact-company div {
    display: grid;
    gap: 0.18rem;
}

.contact-company div + div {
    padding-top: 0.95rem;
    border-top: 1px solid rgba(20, 58, 69, 0.08);
}

.contact-company dt {
    margin: 0;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--site2026-neutral-500);
}

@media (min-width: 960px) {
    .contact-hero {
        grid-template-columns: minmax(0, 1.5fr) minmax(19rem, 0.82fr);
        align-items: start;
    }

    .contact-channel + .contact-channel {
        padding-left: 2.5rem;
        border-left: 1px solid rgba(20, 58, 69, 0.12);
    }
}

@media (max-width: 959px) {
    .contact-section {
        padding-bottom: 4.75rem;
    }

    .contact-section .site2026-container {
        margin-top: -0.55rem;
    }

    .contact-topics,
    .contact-grid,
    .contact-notes {
        grid-template-columns: 1fr;
    }

    .contact-aside {
        padding-left: 0;
        padding-top: 2rem;
        border-left: 0;
        border-top: 1px solid rgba(20, 58, 69, 0.12);
    }

    .contact-channel + .contact-channel,
    .contact-note + .contact-note {
        padding-left: 0;
        padding-top: 2rem;
        border-left: 0;
        border-top: 1px solid rgba(20, 58, 69, 0.12);
    }
}

@media (max-width: 640px) {
    .contact-section .site2026-container {
        margin-top: -0.25rem;
    }

    .contact-shell {
        gap: 2.6rem;
    }

    .contact-shell > section + section {
        padding-top: 2.25rem;
    }

    .contact-hero {
        gap: 2rem;
    }

    .contact-title {
        max-width: 11ch;
        font-size: 1.8rem;
    }

    .contact-actions .site2026-button {
        width: 100%;
    }

    .contact-topics {
        gap: 0.65rem;
        margin-top: 1.2rem;
    }

    .contact-topics li {
        padding-left: 0.95rem;
        font-size: 0.9rem;
    }

    .contact-channel__value,
    .contact-channel__value--email {
        font-size: 1.12rem;
        line-height: 1.25;
    }

    .contact-heading {
        padding-bottom: 1.15rem;
    }
}

/* ── Página /pagina/quem-somos ──────────────────────────────────────────────── */

.qs-historia {
    padding: 5rem 0 4.5rem;
    background: #ffffff;
}

.qs-historia__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.qs-historia__left {
    position: relative;
}

.qs-historia__ano {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--color-primary-100, #d7f0f4);
    margin: 0 0 -1.5rem;
    user-select: none;
}

.qs-historia__titulo {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--color-neutral-900, #141a1d);
    margin: 0 0 1.5rem;
}

.qs-historia__right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 0.5rem;
}

.qs-historia__right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-neutral-600, #43515a);
    margin: 0;
}

.qs-historia__right p strong {
    color: var(--color-neutral-900, #141a1d);
    font-weight: 600;
}

.qs-frentes {
    padding: 5rem 0;
    background: var(--color-neutral-50, #f8fafb);
    border-top: 1px solid var(--color-neutral-200, #d9e2e7);
    border-bottom: 1px solid var(--color-neutral-200, #d9e2e7);
}

.qs-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary-500, #1d8a9c);
    margin: 0 0 0.75rem;
}

.qs-section-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--color-neutral-900, #141a1d);
    margin: 0 0 3rem;
    max-width: 32rem;
}

.qs-frentes__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.qs-frente-card {
    padding: 2rem 1.75rem;
    background: #ffffff;
    border: 1px solid var(--color-neutral-200, #d9e2e7);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.qs-frente-card:hover {
    border-color: var(--color-primary-300, #82c9d5);
    box-shadow: 0 6px 24px rgba(29, 138, 156, 0.08);
}

.qs-frente-card__num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--color-primary-100, #d7f0f4);
}

.qs-frente-card__title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-neutral-900, #141a1d);
    letter-spacing: -0.02em;
    margin: 0;
}

.qs-frente-card__text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-neutral-500, #5d6e78);
    margin: 0;
}

.qs-frente-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.qs-frente-card__tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: var(--color-primary-50, #eff9fb);
    color: var(--color-primary-600, #187285);
    border: 1px solid var(--color-primary-100, #d7f0f4);
}

.qs-valor {
    padding: 5rem 0;
    background: #0c1519;
}

.qs-valor .qs-section-label {
    color: rgba(106, 216, 232, 0.7);
}

.qs-valor .qs-section-title {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    background: none;
}

.qs-valor__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.qs-valor-item {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s, background 0.2s;
}

.qs-valor-item:hover {
    border-color: rgba(29, 138, 156, 0.3);
    background: rgba(29, 138, 156, 0.05);
}

.qs-valor-item__label,
body.site2026 .qs-valor-item__label {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    background: none;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}

.qs-valor-item__text,
body.site2026 .qs-valor-item__text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.85);
    background: none;
    margin: 0;
}

.qs-filosofia {
    padding: 5rem 0;
    background: #ffffff;
    border-top: 1px solid var(--color-neutral-200, #d9e2e7);
}

.qs-filosofia__intro {
    max-width: 42rem;
    margin-bottom: 3rem;
}

.qs-filosofia__intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-neutral-600, #43515a);
    margin: 0;
}

.qs-pilares {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--color-neutral-200, #d9e2e7);
    border-radius: 16px;
    overflow: hidden;
}

.qs-pilar {
    padding: 2rem 1.75rem;
    border-right: 1px solid var(--color-neutral-200, #d9e2e7);
    transition: background 0.2s;
}

.qs-pilar:last-child {
    border-right: none;
}

.qs-pilar:hover {
    background: var(--color-neutral-50, #f8fafb);
}

.qs-pilar__icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 8px;
    background: var(--color-primary-50, #eff9fb);
    color: var(--color-primary-500, #1d8a9c);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.qs-pilar__icon svg {
    width: 1rem;
    height: 1rem;
}

.qs-pilar__nome {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-neutral-900, #141a1d);
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
}

.qs-pilar__texto {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--color-neutral-500, #5d6e78);
    margin: 0;
}

.qs-mvv {
    padding: 5rem 0;
    background: var(--color-neutral-50, #f8fafb);
    border-top: 1px solid var(--color-neutral-200, #d9e2e7);
    border-bottom: 1px solid var(--color-neutral-200, #d9e2e7);
}

.qs-mvv__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.qs-mvv-item {
    padding: 2rem 1.75rem;
    background: #ffffff;
    border: 1px solid var(--color-neutral-200, #d9e2e7);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.qs-mvv-item__tipo {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary-500, #1d8a9c);
    margin: 0;
}

.qs-mvv-item__titulo {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-neutral-900, #141a1d);
    letter-spacing: -0.02em;
    margin: 0;
}

.qs-mvv-item__texto {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--color-neutral-500, #5d6e78);
    margin: 0;
}

.qs-cta {
    padding: 5rem 0;
    background: #0c1519;
    text-align: center;
}

.qs-cta__titulo {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    background: none;
    letter-spacing: -0.03em;
    line-height: 1.2;
    max-width: 36rem;
    margin: 0 auto 0.75rem;
}

.qs-cta__subtitulo {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.72);
    background: none;
    max-width: 38rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.qs-cta__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .qs-pilares {
        grid-template-columns: repeat(2, 1fr);
    }

    .qs-pilar:nth-child(2) {
        border-right: none;
    }

    .qs-pilar:nth-child(1),
    .qs-pilar:nth-child(2) {
        border-bottom: 1px solid var(--color-neutral-200, #d9e2e7);
    }
}

@media (max-width: 900px) {
    .qs-historia__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .qs-historia__ano {
        font-size: 5rem;
    }

    .qs-frentes__grid,
    .qs-valor__grid,
    .qs-mvv__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .qs-pilares {
        grid-template-columns: 1fr;
    }

    .qs-pilar {
        border-right: none;
        border-bottom: 1px solid var(--color-neutral-200, #d9e2e7);
    }

    .qs-pilar:last-child {
        border-bottom: none;
    }

    .qs-historia__ano {
        font-size: 4rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   home30 — seções com CSS ausente (adicionado após reescrita do home.blade.php)
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── home30-bar: label + marquee de logos ───────────────────────────────────── */

.home30-bar__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--site2026-neutral-400);
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}

.home30-logos-track {
    overflow: hidden;
    width: 100%;
}

.home30-logos-inner {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: home30-logos-scroll 32s linear infinite;
}

.home30-logos-inner:hover {
    animation-play-state: paused;
}

.home30-logos-inner img {
    opacity: 0.40;
    filter: grayscale(1);
    transition: opacity 0.2s ease, filter 0.2s ease;
    flex-shrink: 0;
    width: auto;
    object-fit: contain;
}

.home30-logos-inner img:hover {
    opacity: 0.72;
    filter: grayscale(0.2);
}

@keyframes home30-logos-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 767px) {
    .home30-logos-inner {
        gap: 2rem;
    }

    .home30-logos-inner img {
        max-height: 6rem;
    }
}

/* ── home30-proof: badges flutuantes do hero ────────────────────────────────── */

@keyframes home30ProofCycle {
    /* entrada: quica na tela */
    0% {
        opacity: 0;
        transform: scale(0.78) translateY(-24px);
    }
    4% {
        opacity: 1;
        transform: scale(1.1) translateY(6px);
    }
    7% {
        transform: scale(0.96) translateY(-3px);
    }
    10% {
        transform: scale(1.03) translateY(2px);
    }
    13% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    /* flutua lentamente enquanto visível */
    28% {
        transform: scale(1) translateY(-5px);
    }
    43% {
        transform: scale(1) translateY(3px);
    }
    58% {
        transform: scale(1) translateY(-4px);
    }
    /* saída */
    62% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    67% {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }
    100% {
        opacity: 0;
        transform: scale(0.78) translateY(-24px);
    }
}

.home30-proof {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(29, 138, 156, 0.12);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(16, 59, 69, 0.14), 0 1px 2px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
    pointer-events: none;
    animation: home30ProofCycle 9s ease-in-out infinite;
}

.home30-proof--a {
    top: 30%;
    right: 8%;
    animation-delay: 0s;
}

.home30-proof--b {
    bottom: 30%;
    right: -1.75rem;
    animation-delay: -6s;
}

.home30-proof--c {
    bottom: 8%;
    left: 4%;
    animation-delay: -3s;
}

.home30-proof__icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.6rem;
    background: var(--site2026-primary-100, #d7f0f4);
    color: var(--site2026-primary-500, #1d8a9c);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home30-proof__icon svg {
    width: 1.1rem;
    height: 1.1rem;
}

.home30-proof__body {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.home30-proof__number {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--site2026-neutral-900, #141a1d);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.home30-proof__label {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--site2026-neutral-500, #5d6e78);
    line-height: 1.3;
}

.home30-proof__label em {
    font-style: normal;
    color: var(--site2026-primary-500, #1d8a9c);
}

/* ── home30-intro2: seção de introdução — dark ──────────────────────────────── */

.home30-intro2 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

.home30-intro2__bg-num {
    position: absolute;
    top: -0.15em;
    left: -0.06em;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(10rem, 24vw, 20rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.home30-intro2__copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.home30-intro2__headline {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin: 0;
}

.home30-intro2__body {
    font-size: 1.02rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.60);
    margin: 0;
    max-width: 58ch;
}

.home30-intro2__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.home30-intro2__metric {
    padding: 1.15rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.home30-intro2__metric:hover {
    border-color: rgba(29, 138, 156, 0.3);
    background: rgba(29, 138, 156, 0.06);
}

.home30-intro2__metric strong {
    display: block;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0 0 0.4rem;
}

.home30-intro2__metric p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.44);
    margin: 0;
}

/* Nav col -------------------------------------------------------------------- */

.home30-intro2__nav {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 24px 48px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
}

.home30-intro2__nav-head {
    display: grid;
    gap: 0.45rem;
}

p.home30-intro2__nav-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--site2026-primary-400, #4caebd);
    margin: 0;
}

.home30-intro2__nav-heading {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.04em;
    margin: 0;
    line-height: 1.1;
}

/* Paths ---------------------------------------------------------------------- */

.home30-intro2__paths {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home30-intro2__path {
    position: relative;
    display: grid;
    grid-template-columns: 2rem 1fr 1.1rem;
    align-items: start;
    gap: 0.9rem;
    padding: 1.15rem 0.5rem 1.15rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none;
    transition: padding-left 0.22s ease, background 0.18s ease;
}

.home30-intro2__path:last-child {
    border-bottom: none;
}

.home30-intro2__path:hover,
.home30-intro2__path:focus-visible {
    padding-left: 0.65rem;
    background: rgba(29, 138, 156, 0.06);
    border-radius: 0.6rem;
    outline: none;
}

.home30-intro2__path--accent:hover,
.home30-intro2__path--accent:focus-visible {
    background: rgba(217, 83, 79, 0.06);
}

.home30-intro2__path-num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.04em;
    line-height: 1;
    padding-top: 0.14rem;
}

.home30-intro2__path-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.home30-intro2__path-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--site2026-primary-400, #4caebd);
}

.home30-intro2__path--accent .home30-intro2__path-tag {
    color: #fba09d;
}

.home30-intro2__path-body h4 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.025em;
    margin: 0;
    line-height: 1.22;
}

.home30-intro2__path-body p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.50);
    margin: 0;
    line-height: 1.58;
}

.home30-intro2__path-arrow {
    width: 1rem;
    height: 1rem;
    color: rgba(255, 255, 255, 0.22);
    flex-shrink: 0;
    transition: color 0.18s ease, transform 0.2s ease;
    margin-top: 0.1rem;
}

.home30-intro2__path:hover .home30-intro2__path-arrow,
.home30-intro2__path:focus-visible .home30-intro2__path-arrow {
    color: var(--site2026-primary-300, #74c8d4);
    transform: translateX(4px);
}

.home30-intro2__path--accent:hover .home30-intro2__path-arrow,
.home30-intro2__path--accent:focus-visible .home30-intro2__path-arrow {
    color: #fba09d;
}

/* Actions -------------------------------------------------------------------- */

.home30-intro2__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Desktop: 2 colunas --------------------------------------------------------- */

@media (min-width: 900px) {
    .home30-intro2 {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   home30-products — seção light de produtos, accordion lateral
   ═══════════════════════════════════════════════════════════════════════════ */

.home30-products {
    background:
        radial-gradient(ellipse at 5% 0%, rgba(29, 138, 156, 0.07) 0%, transparent 44%),
        #f8fbfc;
    padding: 5rem 0 5.5rem;
}

.home30-products .home30-heading {
    max-width: 52rem;
    margin: 0 0 3rem;
}

.home30-products .home30-heading h2 {
    color: var(--site2026-neutral-900, #141a1d);
    margin: 0.4rem 0 0.6rem;
}

.home30-products .home30-heading p:not(.home30-kicker) {
    color: var(--site2026-neutral-600, #43515a);
    font-size: 1.05rem;
    line-height: 1.72;
    margin: 0;
}

/* ── pstack: container ──────────────────────────────────────────────────── */

.home30-pstack {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-top: 0;
}

/* ── panel base ─────────────────────────────────────────────────────────── */

.home30-pstack__panel {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 1.25rem;
    background: #ffffff;
    cursor: pointer;
    outline: none;
    transition: box-shadow 0.28s ease, background 0.28s ease;
}

.home30-pstack__panel:focus-visible {
    box-shadow: 0 0 0 3px rgba(29, 138, 156, 0.25);
}

.home30-pstack__panel:hover {
    box-shadow: 0 4px 18px rgba(29, 138, 156, 0.10);
}

.home30-pstack__panel.is-active {
    background:
        radial-gradient(ellipse at 0% 0%, rgba(29, 138, 156, 0.06) 0%, transparent 55%),
        #ffffff;
    box-shadow:
        0 12px 40px rgba(29, 138, 156, 0.12),
        0 2px 8px rgba(29, 138, 156, 0.06);
}

.home30-pstack__panel--edupay:hover {
    box-shadow: 0 4px 18px rgba(217, 83, 79, 0.10);
}

.home30-pstack__panel--edupay.is-active {
    background:
        radial-gradient(ellipse at 100% 0%, rgba(217, 83, 79, 0.06) 0%, transparent 55%),
        #ffffff;
    box-shadow:
        0 12px 40px rgba(217, 83, 79, 0.12),
        0 2px 8px rgba(217, 83, 79, 0.06);
}

/* Moodle: painel dark como elemento de contraste */
.home30-pstack__panel--moodle {
    background:
        radial-gradient(ellipse at 8% 12%, rgba(29, 138, 156, 0.14) 0%, transparent 48%),
        linear-gradient(145deg, #111b20, #18282f 62%, #1f333c);
}

.home30-pstack__panel--moodle:hover {
    box-shadow: 0 4px 22px rgba(29, 138, 156, 0.14);
}

.home30-pstack__panel--moodle.is-active {
    background:
        radial-gradient(ellipse at 8% 12%, rgba(29, 138, 156, 0.20) 0%, transparent 50%),
        linear-gradient(145deg, #111b20, #18282f 62%, #1f333c);
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.30);
}

/* ── strip: cabeçalho sempre visível ───────────────────────────────────── */

.home30-pstack__strip {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    user-select: none;
}

.home30-pstack__strip-num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    color: var(--site2026-neutral-400, #7a8e96);
    transition: color 0.28s;
}

.home30-pstack__strip-name {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--site2026-neutral-700, #2e3940);
    transition: color 0.28s;
}

.home30-pstack__panel.is-active .home30-pstack__strip-num {
    color: var(--site2026-primary-500, #1d8a9c);
}

.home30-pstack__panel.is-active .home30-pstack__strip-name {
    color: var(--site2026-neutral-900, #141a1d);
}

.home30-pstack__panel--edupay.is-active .home30-pstack__strip-num {
    color: var(--site2026-accent-500, #d9534f);
}

/* Moodle: textos sempre claros */
.home30-pstack__panel--moodle .home30-pstack__strip-num {
    color: rgba(255, 255, 255, 0.35);
}

.home30-pstack__panel--moodle .home30-pstack__strip-name {
    color: rgba(255, 255, 255, 0.75);
}

.home30-pstack__panel--moodle.is-active .home30-pstack__strip-num {
    color: var(--site2026-primary-400, #4caec0);
}

.home30-pstack__panel--moodle.is-active .home30-pstack__strip-name {
    color: #ffffff;
}

/* Strip: visível no mobile como header do acordeão */
.home30-pstack__strip {
    display: flex;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.28s;
}

.home30-pstack__panel.is-active .home30-pstack__strip {
    border-bottom-color: var(--site2026-neutral-200, #d9e2e7);
}

.home30-pstack__panel--moodle.is-active .home30-pstack__strip {
    border-bottom-color: rgba(255, 255, 255, 0.10);
}

/* Chevron: indicador de estado do acordeão (mobile only) */
.home30-pstack__strip::after {
    content: '';
    display: block;
    margin-left: auto;
    width: 0.5rem;
    height: 0.5rem;
    flex-shrink: 0;
    border-right: 2px solid var(--site2026-neutral-400, #7f929d);
    border-bottom: 2px solid var(--site2026-neutral-400, #7f929d);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.32s ease, border-color 0.28s;
}

.home30-pstack__panel.is-active .home30-pstack__strip::after {
    transform: rotate(-135deg) translateY(2px);
    border-color: var(--site2026-primary-500, #1d8a9c);
}

.home30-pstack__panel--edupay.is-active .home30-pstack__strip::after {
    border-color: var(--site2026-accent-500, #d9534f);
}

.home30-pstack__panel--moodle .home30-pstack__strip::after {
    border-color: rgba(255, 255, 255, 0.35);
}

.home30-pstack__panel--moodle.is-active .home30-pstack__strip::after {
    border-color: var(--site2026-primary-400, #4caec0);
}

/* ── content: acordeão no mobile ──────────────────────────────────────── */

.home30-pstack__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.home30-pstack__panel.is-active .home30-pstack__content {
    max-height: 1200px;
}

/* ── visual: imagem flush, sem margem, ocupa toda a largura ──────────── */

.home30-pstack__visual {
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    position: relative;
}

.home30-pstack__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.home30-pstack__visual img {
    display: block;
    width: 100%;
    height: 7rem;
    object-fit: cover;
    object-position: left center;
}

.home30-pstack__visual--mock {
    background: #f5f5f7;
}

.home30-pstack__panel--moodle .home30-pstack__visual {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

/* ── info ───────────────────────────────────────────────────────────────── */

.home30-pstack__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem;
}

.home30-pstack__info-head {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.home30-pstack__tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--site2026-primary-600, #187285);
    padding: 0.24rem 0.6rem;
    background: rgba(29, 138, 156, 0.09);
    border: 1px solid rgba(29, 138, 156, 0.18);
    border-radius: 999px;
}

.home30-pstack__tag--accent {
    color: var(--site2026-accent-600, #b83c38);
    background: rgba(217, 83, 79, 0.08);
    border-color: rgba(217, 83, 79, 0.18);
}

.home30-pstack__panel--moodle .home30-pstack__tag {
    color: var(--site2026-primary-300, #7fcbd7);
    background: rgba(29, 138, 156, 0.14);
    border-color: rgba(29, 138, 156, 0.28);
}

.home30-pstack__info-head h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 800;
    color: var(--site2026-neutral-900, #141a1d);
    letter-spacing: -0.04em;
    line-height: 1.0;
    margin: 0;
}

.home30-pstack__panel--moodle .home30-pstack__info-head h3 {
    color: #ffffff;
}

.home30-pstack__info-head p {
    font-size: 0.92rem;
    line-height: 1.72;
    color: var(--site2026-neutral-600, #43515a);
    margin: 0;
}

.home30-pstack__panel--moodle .home30-pstack__info-head p {
    color: rgba(255, 255, 255, 0.62);
}

/* ── list ───────────────────────────────────────────────────────────────── */

.home30-pstack__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.home30-pstack__list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: var(--site2026-neutral-700, #2e3940);
    line-height: 1.5;
}

.home30-pstack__list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--site2026-primary-400, #4caec0);
    box-shadow: 0 0 0 3px rgba(29, 138, 156, 0.12);
}

.home30-pstack__list--accent li::before {
    background: var(--site2026-accent-400, #e36f6b);
    box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.12);
}

.home30-pstack__panel--moodle .home30-pstack__list li {
    color: rgba(255, 255, 255, 0.70);
}

.home30-pstack__panel--moodle .home30-pstack__list li::before {
    background: var(--site2026-primary-400, #4caec0);
    box-shadow: 0 0 0 3px rgba(29, 138, 156, 0.20);
}

/* ── Dark: paineis LMS e EduPay com fundo escuro (mobile e desktop) ──── */

.home30-pstack__panel--lms {
    background:
        radial-gradient(ellipse at 8% 12%, rgba(29, 138, 156, 0.14) 0%, transparent 48%),
        linear-gradient(145deg, #111b20, #18282f 62%, #1f333c);
}

.home30-pstack__panel--lms.is-active {
    background:
        radial-gradient(ellipse at 8% 12%, rgba(29, 138, 156, 0.22) 0%, transparent 50%),
        linear-gradient(145deg, #111b20, #18282f 62%, #1f333c);
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.30);
}

.home30-pstack__panel--edupay {
    background:
        radial-gradient(ellipse at 92% 12%, rgba(217, 83, 79, 0.14) 0%, transparent 48%),
        linear-gradient(145deg, #1a1012, #281618 62%, #321d1c);
}

.home30-pstack__panel--edupay.is-active {
    background:
        radial-gradient(ellipse at 92% 12%, rgba(217, 83, 79, 0.22) 0%, transparent 50%),
        linear-gradient(145deg, #1a1012, #281618 62%, #321d1c);
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.30);
}

/* ── Mobile dark: textos e chevrons claros nos paineis LMS e EduPay ──── */

@media (max-width: 899px) {

    .home30-pstack__panel--lms .home30-pstack__strip-num,
    .home30-pstack__panel--edupay .home30-pstack__strip-num {
        color: rgba(255, 255, 255, 0.35);
    }

    .home30-pstack__panel--lms .home30-pstack__strip-name,
    .home30-pstack__panel--edupay .home30-pstack__strip-name {
        color: rgba(255, 255, 255, 0.75);
    }

    .home30-pstack__panel--lms.is-active .home30-pstack__strip-num {
        color: var(--site2026-primary-400, #4caec0);
    }

    .home30-pstack__panel--lms.is-active .home30-pstack__strip-name,
    .home30-pstack__panel--edupay.is-active .home30-pstack__strip-name {
        color: #ffffff;
    }

    .home30-pstack__panel--edupay.is-active .home30-pstack__strip-num {
        color: var(--site2026-accent-400, #e36f6b);
    }

    .home30-pstack__panel--lms .home30-pstack__strip::after,
    .home30-pstack__panel--edupay .home30-pstack__strip::after {
        border-color: rgba(255, 255, 255, 0.35);
    }

    .home30-pstack__panel--lms.is-active .home30-pstack__strip::after {
        border-color: var(--site2026-primary-400, #4caec0);
    }

    .home30-pstack__panel--edupay.is-active .home30-pstack__strip::after {
        border-color: var(--site2026-accent-400, #e36f6b);
    }

    .home30-pstack__panel--lms.is-active .home30-pstack__strip,
    .home30-pstack__panel--edupay.is-active .home30-pstack__strip {
        border-bottom-color: rgba(255, 255, 255, 0.10);
    }

    .home30-pstack__panel--lms .home30-pstack__info-head h3,
    .home30-pstack__panel--edupay .home30-pstack__info-head h3 {
        color: #ffffff;
    }

    .home30-pstack__panel--lms .home30-pstack__info-head p,
    .home30-pstack__panel--edupay .home30-pstack__info-head p {
        color: rgba(255, 255, 255, 0.62);
    }

    .home30-pstack__panel--lms .home30-pstack__list li,
    .home30-pstack__panel--edupay .home30-pstack__list li {
        color: rgba(255, 255, 255, 0.70);
    }

    .home30-pstack__panel--lms .home30-pstack__list li::before {
        background: var(--site2026-primary-400, #4caec0);
        box-shadow: 0 0 0 3px rgba(29, 138, 156, 0.20);
    }

    .home30-pstack__panel--edupay .home30-pstack__list li::before {
        background: var(--site2026-accent-400, #e36f6b);
        box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.20);
    }

    .home30-pstack__panel--lms .home30-pstack__visual,
    .home30-pstack__panel--edupay .home30-pstack__visual {
        background: rgba(255, 255, 255, 0.05);
    }
}

/* ── Desktop: accordion lateral — imagem flush, sem strip ───────────────── */

@media (min-width: 900px) {

    .home30-pstack {
        flex-direction: row;
        align-items: stretch;
        height: 30rem;
        max-height: 30rem;
        gap: 0.55rem;
    }

    /* Strip: overlay vertical sobre a imagem — índice de livro */
    .home30-pstack__strip {
        display: flex;
        position: absolute;
        inset: 0;
        z-index: 2;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0 0 0 0.9rem;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        pointer-events: none;
    }

    .home30-pstack__panel.is-active .home30-pstack__strip {
        display: none;
    }

    .home30-pstack__strip-num {
        display: none;
    }

    /* Oculta o chevron do acordeão mobile */
    .home30-pstack__strip::after {
        display: none;
    }

    .home30-pstack__strip-name {
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: 4rem;
        font-weight: 800;
        letter-spacing: -0.04em;
        color: rgba(255, 255, 255, 0.82);
        line-height: 1;
    }

    /* Painel: linha horizontal, overflow hidden faz o crop lateral */
    .home30-pstack__panel {
        position: relative;
        flex: 0 0 10rem;
        min-width: 10rem;
        display: flex;
        flex-direction: row;
        overflow: hidden;
        transition:
            flex 0.55s cubic-bezier(0.4, 0, 0.2, 1),
            border-color 0.28s,
            box-shadow 0.28s;
    }

    .home30-pstack__panel.is-active {
        flex: 1;
    }

    /* Content: flex row, ocupa 100% da altura */
    .home30-pstack__content {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 100%;
        padding: 0;
        gap: 0;
        max-height: none;
        overflow: hidden;
        opacity: 1;
        transition: none;
    }

    .home30-pstack__panel.is-active .home30-pstack__content {
        max-height: none;
        padding-bottom: 0;
    }

    /* Painel fechado: fundo dark, sem imagem */
    .home30-pstack__panel:not(.is-active) {
        background: #0f1e26;
    }

    /* Visual: oculto (display:none) quando fechado — sem transição de opacidade */
    .home30-pstack__visual {
        display: none;
        flex: 0 0 35%;
        height: 100%;
    }

    .home30-pstack__panel.is-active .home30-pstack__visual {
        display: block;
    }

    .home30-pstack__visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }

    /* Info: sempre em flex mas invisível — aparece instantâneo após painel expandir */
    .home30-pstack__info {
        flex: 1;
        overflow: hidden;
        padding: 1.6rem 1.5rem;
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0s, visibility 0s;
        transition-delay: 0s;
    }

    .home30-pstack__panel.is-active .home30-pstack__info {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0.5s;
    }

    /* Desktop dark: textos claros nos paineis LMS e EduPay */
    .home30-pstack__panel--lms .home30-pstack__info-head h3,
    .home30-pstack__panel--edupay .home30-pstack__info-head h3 {
        color: #ffffff;
    }

    .home30-pstack__panel--lms .home30-pstack__info-head p,
    .home30-pstack__panel--edupay .home30-pstack__info-head p {
        color: rgba(255, 255, 255, 0.62);
    }

    .home30-pstack__panel--lms .home30-pstack__list li,
    .home30-pstack__panel--edupay .home30-pstack__list li {
        color: rgba(255, 255, 255, 0.70);
    }

    .home30-pstack__panel--lms .home30-pstack__list li::before {
        background: var(--site2026-primary-400, #4caec0);
        box-shadow: 0 0 0 3px rgba(29, 138, 156, 0.20);
    }

    .home30-pstack__panel--edupay .home30-pstack__list li::before {
        background: var(--site2026-accent-400, #e36f6b);
        box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.20);
    }

    .home30-pstack__panel--lms .home30-pstack__visual,
    .home30-pstack__panel--edupay .home30-pstack__visual {
        background: rgba(255, 255, 255, 0.05);
    }
}

/* ── home30-resources (nova estrutura): lista de navegação ──────────────────── */

.home30-resources__header {
    margin-bottom: 2rem;
}

.home30-resources__list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--site2026-neutral-200, #d9e2e7);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

.home30-resources__item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    text-decoration: none;
    border-bottom: 1px solid var(--site2026-neutral-200, #d9e2e7);
    transition: background 0.18s;
}

.home30-resources__item:last-child {
    border-bottom: none;
}

.home30-resources__item:hover,
.home30-resources__item:focus-visible {
    background: var(--site2026-primary-50, #eff9fb);
    outline: none;
}

.home30-resources__num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--site2026-neutral-200, #d9e2e7);
    letter-spacing: -0.03em;
    min-width: 2rem;
    transition: color 0.18s;
}

.home30-resources__item:hover .home30-resources__num,
.home30-resources__item:focus-visible .home30-resources__num {
    color: var(--site2026-primary-300, #82c9d5);
}

.home30-resources__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.home30-resources__body h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--site2026-neutral-900, #141a1d);
    letter-spacing: -0.025em;
    margin: 0;
    transition: color 0.18s;
}

.home30-resources__item:hover .home30-resources__body h3,
.home30-resources__item:focus-visible .home30-resources__body h3 {
    color: var(--site2026-primary-600, #187285);
}

.home30-resources__body p {
    font-size: 0.84rem;
    color: var(--site2026-neutral-500, #5d6e78);
    margin: 0;
    line-height: 1.6;
}

.home30-resources__cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--site2026-primary-500, #1d8a9c);
    white-space: nowrap;
}

.home30-resources__cta svg {
    width: 0.88rem;
    height: 0.88rem;
    transition: transform 0.18s;
}

.home30-resources__item:hover .home30-resources__cta svg,
.home30-resources__item:focus-visible .home30-resources__cta svg {
    transform: translateX(4px);
}

/* ── home30-final: subclasses ausentes ──────────────────────────────────────── */

.home30-final__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% -20%, rgba(29, 138, 156, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 120%, rgba(217, 83, 79, 0.22) 0%, transparent 45%);
    pointer-events: none;
}

.home30-final__inner {
    position: relative;
    z-index: 1;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.home30-final__eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(106, 216, 232, 0.7);
    margin: 0;
}

.home30-final__headline {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.035em;
    color: #ffffff;
    margin: 0;
}

.home30-final__body {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-width: 44rem;
}

/* ── Responsivo: seções home30 novas ────────────────────────────────────────── */

@media (max-width: 1100px) {
    .home30-intro2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .home30-intro2__bg-num {
        font-size: 8rem;
    }

    .home30-pstack__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home30-proof--a,
    .home30-proof--b,
    .home30-proof--c {
        display: none;
    }
}

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

    .home30-intro2__nav {
        padding: 1.25rem;
    }

    .home30-final__headline {
        font-size: 1.7rem;
    }

    .home30-resources__item {
        grid-template-columns: auto 1fr;
        padding: 1.15rem 1.25rem;
        gap: 1rem;
    }

    .home30-resources__cta {
        display: none;
    }
}

@media (max-width: 640px) {
    .home30-pstack__strip {
        padding: 1rem 1.1rem;
    }

    .home30-pstack__content {
        padding: 0 1rem 1.25rem;
    }

    .home30-intro2__headline {
        font-size: 1.55rem;
    }

    .home30-final__headline {
        font-size: 1.4rem;
    }
}

/* ── Parallax: aplicação das variáveis CSS setadas pelo JS ──────────────────── */

[data-parallax-factor] {
    will-change: transform;
    transform: translate(var(--px-tx, 0px), var(--px-ty, 0px));
}

.home30-hero__figure {
    filter: drop-shadow(var(--ds-x, 0px) 8px var(--ds-blur, 20px) rgba(0, 0, 0, 0.28));
    transition: filter 0.3s ease;
}

/* ── WhatsApp Float ──────────────────────────────────────────────────────────── */

.wa-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 9000;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 0.75rem;
}

/* Botão principal ------------------------------------------------------------ */

@keyframes wa-pulse-ring {
    0%   { transform: scale(1);   opacity: 0.7; }
    80%  { transform: scale(1.9); opacity: 0;   }
    100% { transform: scale(1.9); opacity: 0;   }
}

.wa-float__btn {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    border: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    outline: none;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-float__btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.45);
    animation: wa-pulse-ring 2.4s ease-out infinite;
    pointer-events: none;
    z-index: -1;
}

.wa-float__btn:hover {
    transform: scale(1.08);
}

.wa-float__btn:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.5);
    outline-offset: 3px;
}

.wa-float__btn--open {
    transform: scale(0.95);
}

.wa-float__btn--open::before {
    animation-play-state: paused;
}

.wa-float__avatar {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.22),
        0 0 0 2.5px #ffffff,
        0 0 0 4px rgba(37, 211, 102, 0.55);
}

/* Badge WhatsApp ------------------------------------------------------------- */

.wa-float__badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.45);
    border: 2px solid #ffffff;
    pointer-events: none;
}

.wa-float__badge svg {
    width: 0.72rem;
    height: 0.72rem;
}

/* Tooltip -------------------------------------------------------------------- */

.wa-float__tooltip {
    position: absolute;
    right: calc(100% + 0.75rem);
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    background: #060f14;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
    pointer-events: none;
    opacity: 0;
    translate: 4px 0;
    transition:
        opacity 0.18s ease,
        translate 0.18s ease;
}

.wa-float__tooltip::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #060f14;
}

.wa-float__btn:hover .wa-float__tooltip,
.wa-float__btn:focus-visible .wa-float__tooltip {
    opacity: 1;
    translate: 0 0;
}

/* Modal popup ---------------------------------------------------------------- */

.wa-float__modal {
    width: 18rem;
    background: #0b1a22;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 1rem;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.38),
        0 4px 16px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.wa-float__modal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 1.1rem 0.75rem;
    background: rgba(37, 211, 102, 0.08);
    border-bottom: 1px solid rgba(37, 211, 102, 0.12);
}

.wa-float__modal-icon {
    flex-shrink: 0;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.6rem;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.wa-float__modal-icon svg {
    width: 1.1rem;
    height: 1.1rem;
}

.wa-float__modal-title {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.wa-float__modal-body {
    margin: 0;
    padding: 1rem 1.1rem;
    font-size: 0.86rem;
    line-height: 1.58;
    color: rgba(255, 255, 255, 0.58);
}

.wa-float__modal-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 1.1rem 1.1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.6rem;
    background: #25D366;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease;
}

.wa-float__modal-cta:hover {
    background: #1da851;
    transform: translateY(-1px);
}

.wa-float__modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.wa-float__modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.wa-float__modal {
    position: relative;
}

/* Alpine.js transitions ------------------------------------------------------ */

.wa-enter-start {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
}

.wa-enter-end {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.wa-enter {
    transition:
        opacity 0.22s ease,
        transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Mobile: oculta tooltip, ajusta posição ------------------------------------ */

@media (max-width: 767px) {
    .wa-float {
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .wa-float__tooltip {
        display: none;
    }

    .wa-float__modal {
        width: calc(100vw - 3rem);
        max-width: 18rem;
    }
}

/* ── Mobile: home30 sections — espaçamentos, simplificação e layouts ─────── */

@media (max-width: 767px) {

    /* Reduz padding-block de todas as sections home30 */
    .home30-intro,
    .home30-products,
    .home30-services,
    .home30-audiences,
    .home30-ai,
    .home30-resources {
        padding-block: 3rem;
    }

    /* Oculta parágrafo descritivo do heading (mantém kicker + h2) */
    .home30-heading > p:last-child {
        display: none;
    }

    /* h2 de seção: tamanho mais contido no mobile */
    .home30-heading h2 {
        font-size: clamp(1.6rem, 7.5vw, 2.2rem);
    }

    /* ── home30-services ────────────────────────────────────────────────── */

    /* Reduz gap entre copy e nav */
    .home30-services2 {
        gap: 2rem;
    }

    /* Oculta número decorativo de fundo */
    .home30-services2__bg-num {
        display: none;
    }

    /* Imagem: remove restrição de altura que causava distorção */
    .home30-services2__media {
        max-height: none;
        aspect-ratio: 16 / 7;
    }

    /* Corpo de texto: fonte menor, mais leve */
    .home30-services2__body {
        font-size: 0.92rem;
        line-height: 1.68;
    }

    /* Métricas: oculta para simplificar */
    .home30-services2__metrics {
        display: none;
    }

    /* Nav: reduz gap interno */
    .home30-services2__nav {
        gap: 1.2rem;
    }

    /* Eyebrow do nav: desnecessário no mobile */
    .home30-services2__nav-eyebrow {
        display: none;
    }

    /* Heading do nav: tamanho ajustado */
    .home30-services2__nav-heading {
        font-size: clamp(1.35rem, 6vw, 1.85rem);
        line-height: 1.06;
    }

    /* Path items: 3 colunas (remove número), gap menor */
    .home30-services2__path {
        grid-template-columns: 2.4rem 1fr 1.2rem;
        gap: 0.7rem;
        padding: 0.9rem 0.25rem 0.9rem 0;
    }

    /* Oculta número do path */
    .home30-services2__path-num {
        display: none;
    }

    /* Oculta descrição do path (mantém tag + h4) */
    .home30-services2__path-body p {
        display: none;
    }

    /* Ícone: levemente menor */
    .home30-services2__path-icon {
        width: 2.4rem;
        height: 2.4rem;
        border-radius: 0.8rem;
    }

    /* CTA de serviços: largura total */
    .home30-services2__nav-cta {
        justify-self: stretch;
    }

    .home30-services2__nav-cta .site2026-button {
        width: 100%;
        justify-content: center;
    }

    /* ── home30-audiences ───────────────────────────────────────────────── */

    .home30-audiences__content {
        padding: 1.25rem;
    }

    /* ── home30-ai ──────────────────────────────────────────────────────── */

    /* Cards de produto: padding menor */
    .home30-ai2__product {
        padding: 1.4rem;
        gap: 0.9rem;
    }

    /* Aside de nota: mais compacto */
    .home30-ai2__aside {
        padding: 0.85rem 1rem;
    }
}

/* ── Página: Quem Somos (/pagina/quem-somos) ─────────────────────────────── */

.about-page {
    background: #ffffff;
}

/* Tipografia base */
.about-h2 {
    margin: 0.5rem 0 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--site2026-neutral-900);
}

.about-body {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--site2026-neutral-600);
}

.about-body:last-of-type {
    margin-bottom: 0;
}

.about-body--emphasis {
    color: var(--site2026-neutral-800);
    font-weight: 500;
}

.about-lead {
    margin: 0.75rem 0 0;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--site2026-neutral-600);
    max-width: 58ch;
}

/* Cabeçalho de seção */
.about-section-head {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--site2026-neutral-200);
    margin-bottom: 2.5rem;
}

/* Separação entre seções */
.about-intro,
.about-frentes,
.about-valores,
.about-filosofia,
.about-mvv {
    padding-block: 4rem;
    border-top: 1px solid var(--site2026-neutral-100);
}

/* ── Seção intro ── */

.about-intro__shell {
    display: grid;
    gap: 2.5rem;
}

.about-intro__copy {
    display: grid;
    gap: 0;
}

.about-intro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* Stats sidebar */
.about-stats {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--site2026-neutral-200);
    border-radius: 1.25rem;
    overflow: hidden;
}

.about-stats__item {
    padding: 1.25rem 1rem;
    border-right: 1px solid var(--site2026-neutral-200);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.about-stats__item:last-child {
    border-right: none;
}

.about-stats__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--site2026-neutral-400);
}

.about-stats__value {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.about-stats__value strong {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--site2026-primary-600);
    letter-spacing: -0.04em;
    line-height: 1;
}

.about-stats__value span {
    font-size: 0.78rem;
    color: var(--site2026-neutral-500);
    line-height: 1.3;
}

.about-intro__microcopy {
    margin: 1.25rem 0 0;
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--site2026-neutral-400);
    font-style: italic;
}

/* ── Seção frentes ── */

.about-frentes__grid {
    display: grid;
    gap: 0;
}

.about-frente {
    padding: 2rem 0;
    border-bottom: 1px solid var(--site2026-neutral-100);
    display: grid;
    gap: 0.55rem;
}

.about-frente:first-child {
    padding-top: 0;
}

.about-frente:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-frente__num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--site2026-primary-400);
}

.about-frente__title {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--site2026-neutral-900);
}

.about-frente__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--site2026-neutral-600);
}

.about-frente__tags {
    margin: 0.25rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.about-frente__tags li {
    display: inline-flex;
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    background: var(--site2026-primary-50);
    color: var(--site2026-primary-700);
    font-size: 0.76rem;
    font-weight: 600;
}

/* ── Seção valores ── */

.about-valores__grid {
    display: grid;
    gap: 0;
}

.about-valor {
    padding: 2rem 0;
    border-bottom: 1px solid var(--site2026-neutral-100);
    display: grid;
    gap: 0.55rem;
}

.about-valor:first-child {
    padding-top: 0;
}

.about-valor:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-valor__title {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--site2026-neutral-900);
}

.about-valor__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--site2026-neutral-600);
}

/* ── Seção pilares ── */

.about-pilares {
    display: grid;
    gap: 2rem;
}

.about-pilar {
    padding-top: 1.5rem;
    border-top: 2px solid var(--site2026-primary-100);
    display: grid;
    gap: 0.5rem;
}

.about-pilar__title {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--site2026-primary-700);
}

.about-pilar__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--site2026-neutral-600);
}

/* ── Seção MVV ── */

.about-mvv__grid {
    display: grid;
    gap: 0;
}

.about-mvv__item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--site2026-neutral-100);
    display: grid;
    gap: 0.65rem;
}

.about-mvv__item:first-child {
    padding-top: 0;
}

.about-mvv__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-mvv__label {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--site2026-primary-500);
}

.about-mvv__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--site2026-neutral-700);
}


/* ── Desktop: layouts em grid ─────────────────────────────────────────────── */

@media (min-width: 768px) {

    /* Intro: copy + sidebar */
    .about-intro__shell {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        align-items: start;
        gap: 4rem;
    }

    .about-intro__aside {
        position: sticky;
        top: 7rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        border-radius: 1.5rem;
    }

    .about-stats__item {
        border-right: none;
        border-bottom: 1px solid var(--site2026-neutral-200);
        padding: 1.5rem 1.75rem;
    }

    .about-stats__item:last-child {
        border-bottom: none;
    }

    /* Frentes: 2x2 */
    .about-frentes__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-frente {
        padding: 2.5rem;
        border-bottom: 1px solid var(--site2026-neutral-100);
    }

    .about-frente:nth-child(odd) {
        border-right: 1px solid var(--site2026-neutral-100);
    }

    .about-frente:nth-child(1),
    .about-frente:nth-child(2) {
        padding-top: 0;
    }

    .about-frente:nth-child(3),
    .about-frente:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Valores: 2x2 */
    .about-valores__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-valor {
        padding: 2.5rem;
        border-bottom: 1px solid var(--site2026-neutral-100);
    }

    .about-valor:nth-child(odd) {
        border-right: 1px solid var(--site2026-neutral-100);
    }

    .about-valor:nth-child(1),
    .about-valor:nth-child(2) {
        padding-top: 0;
    }

    .about-valor:nth-child(3),
    .about-valor:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Pilares: 2 colunas */
    .about-pilares {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem;
    }

    /* MVV: 3 colunas horizontais */
    .about-mvv__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-mvv__item {
        padding: 0 2.5rem;
        border-bottom: none;
        border-left: 1px solid var(--site2026-neutral-200);
    }

    .about-mvv__item:first-child {
        padding-left: 0;
        border-left: none;
    }

}

@media (min-width: 1024px) {

    /* Pilares: 4 colunas */
    .about-pilares {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
    }

    .about-pilar {
        border-top: none;
        border-left: 2px solid var(--site2026-primary-100);
        padding: 0 2rem;
    }

    .about-pilar:first-child {
        border-left: none;
        padding-left: 0;
    }
}

/* ── Mobile: about-page ───────────────────────────────────────────────────── */

@media (max-width: 767px) {

    .about-intro,
    .about-frentes,
    .about-valores,
    .about-filosofia,
    .about-mvv {
        padding-block: 2.75rem;
    }

    .about-section-head {
        padding-bottom: 1.75rem;
        margin-bottom: 1.75rem;
    }

    .about-stats__value strong {
        font-size: 1.75rem;
    }

    .about-intro__actions {
        flex-direction: column;
    }

    .about-intro__actions .site2026-button {
        width: 100%;
        justify-content: center;
    }

}

/* Página: Termos de Uso (/pagina/termos-de-uso) */

.terms-page {
    background: #ffffff;
}

.terms-section {
    padding-block: 4rem;
    border-top: 1px solid var(--site2026-neutral-100);
}

.terms-intro {
    padding-top: 5rem;
}

.terms-h2 {
    margin: 0.5rem 0 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--site2026-neutral-900);
}

.terms-lead,
.terms-body,
.terms-heading__text,
.terms-topic__text,
.terms-clause__body p,
.terms-footer__note,
.terms-summary__item dd {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--site2026-neutral-700);
}

.terms-lead {
    max-width: 62ch;
}

.terms-body + .terms-body,
.terms-clause__body p + p {
    margin-top: 1rem;
}

.terms-intro__shell {
    display: grid;
    gap: 3rem;
}

.terms-intro__copy {
    display: grid;
    gap: 0;
}

.terms-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.terms-summary {
    display: grid;
    align-content: start;
    gap: 1.25rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(20, 58, 69, 0.12);
}

.terms-summary__list {
    margin: 0;
    display: grid;
    gap: 1.25rem;
}

.terms-summary__item {
    margin: 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(20, 58, 69, 0.12);
}

.terms-summary__item:first-child {
    padding-top: 0;
    border-top: 0;
}

.terms-summary__item dt {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--site2026-neutral-400);
}

.terms-heading {
    max-width: 48rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(20, 58, 69, 0.12);
}

.terms-topics {
    display: grid;
    gap: 0;
}

.terms-topic {
    display: grid;
    gap: 0.8rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--site2026-neutral-100);
}

.terms-topic:first-child {
    padding-top: 0;
}

.terms-topic:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.terms-topic__title,
.terms-clause__title {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--site2026-neutral-900);
}

.terms-clauses {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0;
}

.terms-clause {
    display: grid;
    gap: 1rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--site2026-neutral-100);
}

.terms-clause:first-child {
    padding-top: 0;
}

.terms-clause:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.terms-clause__head {
    display: grid;
    align-content: start;
    gap: 0.8rem;
}

.terms-clause__body {
    display: grid;
    gap: 0;
    max-width: 74ch;
}

.terms-list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.terms-list li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--site2026-neutral-700);
}

.terms-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: var(--site2026-primary-500);
}

.terms-footer__grid {
    display: grid;
    gap: 2rem;
}

.terms-footer__actions {
    display: grid;
    align-content: start;
    gap: 0.85rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(20, 58, 69, 0.12);
}

.terms-footer__note {
    padding-top: 1rem;
    border-top: 1px solid rgba(20, 58, 69, 0.12);
}

@media (min-width: 768px) {

    .terms-intro__shell {
        grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
        gap: 4rem;
        align-items: start;
    }

    .terms-topics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .terms-topic {
        padding: 0 2rem;
        border-bottom: 0;
        border-left: 1px solid var(--site2026-neutral-100);
    }

    .terms-topic:first-child {
        padding-left: 0;
        border-left: 0;
    }

    .terms-topic:last-child {
        padding-right: 0;
    }

    .terms-clause {
        grid-template-columns: minmax(15rem, 0.42fr) minmax(0, 1fr);
        gap: 2.5rem;
        align-items: start;
    }

    .terms-footer__grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
        gap: 3rem;
        align-items: start;
    }
}

@media (max-width: 767px) {

    .terms-section {
        padding-block: 2.75rem;
    }

    .terms-intro {
        padding-top: 3rem;
    }

    .terms-summary,
    .terms-footer__actions {
        padding-left: 0;
        padding-top: 1.5rem;
        border-left: 0;
        border-top: 1px solid rgba(20, 58, 69, 0.12);
    }

    .terms-actions {
        flex-direction: column;
    }

    .terms-actions .site2026-button,
    .terms-footer__actions .site2026-button {
        width: 100%;
        justify-content: center;
    }

    .terms-heading {
        padding-bottom: 1.75rem;
        margin-bottom: 1.75rem;
    }
}

/* Página: Política de Privacidade (/pagina/politica-de-privacidade) */

.privacy-page {
    background: #ffffff;
}

.privacy-section {
    padding-block: 4rem;
    border-top: 1px solid var(--site2026-neutral-100);
}

.privacy-intro {
    padding-top: 5rem;
}

.privacy-h2 {
    margin: 0.5rem 0 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--site2026-neutral-900);
}

.privacy-lead,
.privacy-body,
.privacy-heading__text,
.privacy-topic__text,
.privacy-clause__body p,
.privacy-footer__note,
.privacy-summary__item dd {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--site2026-neutral-700);
}

.privacy-lead {
    max-width: 64ch;
}

.privacy-body + .privacy-body,
.privacy-clause__body p + p {
    margin-top: 1rem;
}

.privacy-intro__shell {
    display: grid;
    gap: 3rem;
}

.privacy-intro__copy {
    display: grid;
    gap: 0;
}

.privacy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.privacy-summary {
    display: grid;
    align-content: start;
    gap: 1.25rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(20, 58, 69, 0.12);
}

.privacy-summary__list {
    margin: 0;
    display: grid;
    gap: 1.25rem;
}

.privacy-summary__item {
    margin: 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(20, 58, 69, 0.12);
}

.privacy-summary__item:first-child {
    padding-top: 0;
    border-top: 0;
}

.privacy-summary__item dt {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--site2026-neutral-400);
}

.privacy-heading {
    max-width: 48rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(20, 58, 69, 0.12);
}

.privacy-topics,
.privacy-clauses {
    display: grid;
    gap: 0;
}

.privacy-topic,
.privacy-clause {
    display: grid;
    gap: 0.9rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--site2026-neutral-100);
}

.privacy-topic:first-child,
.privacy-clause:first-child {
    padding-top: 0;
}

.privacy-topic:last-child,
.privacy-clause:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.privacy-topic__title,
.privacy-clause__title {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--site2026-neutral-900);
}

.privacy-clauses {
    margin: 0;
    padding: 0;
    list-style: none;
}

.privacy-clause__head {
    display: grid;
    align-content: start;
    gap: 0.8rem;
}

.privacy-clause__body {
    max-width: 74ch;
}

.privacy-columns {
    display: grid;
    gap: 2.5rem;
}

.privacy-panel {
    display: grid;
    gap: 0;
}

.privacy-panel + .privacy-panel {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(20, 58, 69, 0.12);
}

.privacy-list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.privacy-list li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--site2026-neutral-700);
}

.privacy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: var(--site2026-primary-500);
}

.privacy-footer__grid {
    display: grid;
    gap: 2rem;
}

.privacy-footer__actions {
    display: grid;
    align-content: start;
    gap: 0.85rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(20, 58, 69, 0.12);
}

.privacy-footer__note {
    padding-top: 1rem;
    border-top: 1px solid rgba(20, 58, 69, 0.12);
}

@media (min-width: 768px) {

    .privacy-intro__shell {
        grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
        gap: 4rem;
        align-items: start;
    }

    .privacy-topics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .privacy-topic {
        padding: 0 2rem;
        border-bottom: 0;
        border-left: 1px solid var(--site2026-neutral-100);
    }

    .privacy-topic:first-child {
        padding-left: 0;
        border-left: 0;
    }

    .privacy-topic:last-child {
        padding-right: 0;
    }

    .privacy-clause {
        grid-template-columns: minmax(15rem, 0.42fr) minmax(0, 1fr);
        gap: 2.5rem;
        align-items: start;
    }

    .privacy-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem;
    }

    .privacy-panel + .privacy-panel {
        padding-top: 0;
        padding-left: 2rem;
        border-top: 0;
        border-left: 1px solid rgba(20, 58, 69, 0.12);
    }

    .privacy-footer__grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
        gap: 3rem;
        align-items: start;
    }
}

@media (max-width: 767px) {

    .privacy-section {
        padding-block: 2.75rem;
    }

    .privacy-intro {
        padding-top: 3rem;
    }

    .privacy-summary,
    .privacy-footer__actions {
        padding-left: 0;
        padding-top: 1.5rem;
        border-left: 0;
        border-top: 1px solid rgba(20, 58, 69, 0.12);
    }

    .privacy-actions {
        flex-direction: column;
    }

    .privacy-actions .site2026-button,
    .privacy-footer__actions .site2026-button {
        width: 100%;
        justify-content: center;
    }

    .privacy-heading {
        padding-bottom: 1.75rem;
        margin-bottom: 1.75rem;
    }
}

/* Página: Projeto Moodle (/pagina/projeto-moodle) */

.moodle-project-page {
    background: #ffffff;
}

.moodle-project-section {
    padding-block: 4rem;
    border-top: 1px solid var(--site2026-neutral-100);
}

.moodle-project-hero {
    padding-top: 5rem;
}

.moodle-project-h2 {
    margin: 0.5rem 0 0;
    color: var(--site2026-neutral-900);
}

.moodle-project-lead,
.moodle-project-body,
.moodle-project-heading__text,
.moodle-project-breakpoint__text,
.moodle-project-fit__text,
.moodle-project-map__text,
.moodle-project-proof__note-text,
.moodle-project-questions__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--site2026-neutral-700);
}

.moodle-project-lead {
    max-width: 62ch;
}

.moodle-project-heading {
    max-width: 50rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(20, 58, 69, 0.12);
}

.moodle-project-heading--narrow {
    max-width: 46rem;
}

.moodle-project-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 999px;
    background: rgba(29, 138, 156, 0.08);
    color: var(--site2026-primary-700);
    flex-shrink: 0;
}

.moodle-project-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.moodle-project-hero__grid,
.moodle-project-breakpoint__grid,
.moodle-project-fit__grid,
.moodle-project-questions__grid {
    display: grid;
    gap: 2.5rem;
}

.moodle-project-hero__copy {
    display: grid;
}

.moodle-project-hero__actions,
.moodle-project-questions__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.moodle-project-hero__signals {
    display: grid;
    gap: 0;
    margin-top: 2rem;
}

.moodle-project-hero__signal {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(20, 58, 69, 0.12);
}

.moodle-project-hero__signal strong {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--site2026-neutral-900);
}

.moodle-project-hero__signal span {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--site2026-neutral-600);
}

.moodle-project-hero__visual {
    position: relative;
    min-height: 24rem;
    display: grid;
    align-content: center;
}

.moodle-project-hero__figure,
.moodle-project-breakpoint__media,
.moodle-project-questions__figure {
    margin: 0;
    overflow: hidden;
    background: #ffffff;
}

.moodle-project-hero__figure img,
.moodle-project-breakpoint__media img,
.moodle-project-questions__figure img {
    display: block;
    width: 100%;
    height: auto;
}

.moodle-project-hero__figure--main {
    width: min(100%, 37rem);
    padding: 1rem;
    border: 1px solid rgba(29, 138, 156, 0.28);
    border-radius: 2rem;
    justify-self: end;
    position: relative;
    z-index: 2;
    box-shadow:
        0 0 0 4px rgba(29, 138, 156, 0.07),
        0 8px 40px rgba(7, 24, 31, 0.14);
}

.moodle-project-hero__figure--main img {
    border-radius: 1.35rem;
}

.moodle-project-hero__figure--main figcaption {
    margin-top: 0.9rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--site2026-neutral-600);
}

.moodle-project-hero__figure--secondary {
    width: min(58%, 18rem);
    position: absolute;
    left: 0;
    bottom: 1rem;
    border-radius: 1.6rem;
    border: 1px solid rgba(20, 58, 69, 0.10);
    overflow: hidden;
}

.moodle-project-hero__floating {
    position: absolute;
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(20, 58, 69, 0.22);
    border-radius: 999px;
    background: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--site2026-neutral-800);
    box-shadow: 0 2px 14px rgba(7, 24, 31, 0.18), 0 0 0 1px rgba(20, 58, 69, 0.06);
}

.moodle-project-hero__floating--top {
    top: 0.75rem;
    left: 1rem;
}

.moodle-project-hero__floating--middle {
    top: 50%;
    left: -1rem;
    transform: translateY(-50%);
}

.moodle-project-hero__floating--bottom {
    right: -5rem;
    bottom: 4rem;
}

.moodle-project-breakpoint__media {
    border-radius: 2rem;
}

.moodle-project-breakpoint__media img,
.moodle-project-questions__figure img {
    border-radius: 2rem;
}

.moodle-project-breakpoint__content {
    display: grid;
    gap: 2rem;
}

.moodle-project-breakpoint__list,
.moodle-project-fit__audiences,
.moodle-project-map__grid,
.moodle-project-questions__list {
    display: grid;
    gap: 0;
}

.moodle-project-breakpoint__item,
.moodle-project-fit__audience,
.moodle-project-map__item,
.moodle-project-questions__item {
    display: grid;
    gap: 1rem;
    padding: 1.4rem 0;
    border-top: 1px solid rgba(20, 58, 69, 0.12);
}

.moodle-project-breakpoint__item:first-child,
.moodle-project-fit__audience:first-child,
.moodle-project-map__item:first-child,
.moodle-project-questions__item:first-child {
    padding-top: 0;
    border-top: 0;
}

.moodle-project-breakpoint__title,
.moodle-project-fit__title,
.moodle-project-map__title,
.moodle-project-proof__note-title,
.moodle-project-questions__title {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.14rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--site2026-neutral-900);
}

.moodle-project-fit__num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--site2026-primary-500);
}

.moodle-project-fit__delivery-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0;
}

.moodle-project-fit__delivery-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(20, 58, 69, 0.12);
}

.moodle-project-fit__delivery-list li:first-child {
    padding-top: 0;
    border-top: 0;
}

.moodle-project-fit__delivery-list strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.98rem;
    color: var(--site2026-neutral-900);
}

.moodle-project-fit__delivery-list span:last-child {
    font-size: 0.93rem;
    line-height: 1.65;
    color: var(--site2026-neutral-600);
}

.moodle-project-proof__intro,
.moodle-project-proof__columns {
    display: grid;
    gap: 2rem;
}

.moodle-project-proof__intro {
    align-items: end;
    margin-bottom: 2rem;
}

.moodle-project-proof__logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.moodle-project-proof__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5.2rem;
    padding: 1rem;
    border: 1px solid rgba(20, 58, 69, 0.10);
    border-radius: 1.5rem;
}

.moodle-project-proof__logo img {
    max-width: 100%;
    max-height: 2.5rem;
    width: auto;
    height: auto;
}

.moodle-project-proof__note {
    display: grid;
    gap: 0.8rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(20, 58, 69, 0.12);
}

.moodle-project-questions__cta {
    display: grid;
    align-content: start;
    gap: 0;
}

@media (min-width: 768px) {

    .moodle-project-hero__grid,
    .moodle-project-fit__grid,
    .moodle-project-questions__grid {
        grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
        gap: 4rem;
        align-items: start;
    }

    .moodle-project-breakpoint__grid {
        grid-template-columns: minmax(18rem, 0.92fr) minmax(0, 1.08fr);
        gap: 4rem;
        align-items: start;
    }

    .moodle-project-breakpoint__media {
        position: sticky;
        top: 7rem;
    }

    .moodle-project-breakpoint__item {
        grid-template-columns: auto 1fr;
        align-items: start;
    }

    .moodle-project-fit__editorial {
        padding-right: 2rem;
        border-right: 1px solid rgba(20, 58, 69, 0.12);
    }

    .moodle-project-map__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
    }

    .moodle-project-map__item {
        padding: 1.8rem 2rem;
        border-top: 1px solid rgba(20, 58, 69, 0.12);
        border-left: 1px solid rgba(20, 58, 69, 0.12);
    }

    .moodle-project-map__item:nth-child(3n + 1) {
        padding-left: 0;
        border-left: 0;
    }

    .moodle-project-proof__intro {
        grid-template-columns: minmax(0, 1fr) minmax(16rem, auto);
        gap: 3rem;
    }

    .moodle-project-proof__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 2rem;
    }

    .moodle-project-questions__faq {
        padding-right: 2rem;
        border-right: 1px solid rgba(20, 58, 69, 0.12);
    }
}

@media (min-width: 1024px) {

    .moodle-project-proof__logos {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .moodle-project-section {
        padding-block: 2.75rem;
    }

    .moodle-project-hero {
        padding-top: 3rem;
    }

    .moodle-project-hero__actions,
    .moodle-project-questions__actions {
        flex-direction: column;
    }

    .moodle-project-hero__actions .site2026-button,
    .moodle-project-questions__actions .site2026-button {
        width: 100%;
        justify-content: center;
    }

    .moodle-project-hero__visual {
        min-height: 0;
        padding-top: 0.5rem;
    }

    .moodle-project-hero__figure--main {
        width: 100%;
        justify-self: stretch;
    }

    .moodle-project-hero__figure--secondary {
        position: relative;
        width: 72%;
        margin-top: -2.25rem;
    }

    .moodle-project-hero__floating {
        position: static;
        margin-top: 0.8rem;
        width: fit-content;
    }

    .moodle-project-breakpoint__media {
        order: 2;
    }

    .moodle-project-breakpoint__content {
        order: 1;
    }

    .moodle-project-heading {
        padding-bottom: 1.75rem;
        margin-bottom: 1.75rem;
    }
}

/* Projeto Moodle: direcao visual refinada 2026 */

.moodle-project-section {
    padding-block: 5rem;
    border-top: 1px solid rgba(16, 56, 65, 0.12);
}

.moodle-project-hero {
    padding-top: 5.25rem;
    border-top: 0;
}

.moodle-project-section--blue {
    background: #f4fbff;
}

.moodle-project-section--green {
    background: #eef8f2;
}

.moodle-project-section--dark {
    background: #0d191d;
    border-top-color: rgba(190, 229, 235, 0.16);
}

.moodle-project-h2,
.moodle-project-h3 {
    margin: 0;
    color: var(--site2026-neutral-900);
}

.moodle-project-h2 {
    margin-top: 0.55rem;
    max-width: 20ch;
}

.moodle-project-lead,
.moodle-project-body,
.moodle-project-heading__text,
.moodle-project-fit__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--site2026-neutral-700);
}

.moodle-project-lead {
    max-width: 58ch;
    margin-top: 1.35rem;
    font-size: 1.05rem;
    line-height: 1.85;
}

.moodle-project-heading {
    max-width: 48rem;
    padding-bottom: 2rem;
    margin-bottom: 2.25rem;
    border-bottom: 1px solid rgba(16, 56, 65, 0.12);
}

.moodle-project-heading--dark {
    border-bottom-color: rgba(190, 229, 235, 0.16);
}

.moodle-project-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    background: rgba(29, 138, 156, 0.10);
    flex-shrink: 0;
}

.moodle-project-icon img {
    display: block;
    width: 1.45rem;
    height: 1.45rem;
}

.moodle-project-button-icon {
    display: block;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.site2026-button--primary .moodle-project-button-icon,
.site2026-button--whatsapp .moodle-project-button-icon,
.site2026-button--ghost-white .moodle-project-button-icon {
    filter: brightness(0) saturate(100%) invert(1) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.14));
}

.moodle-project-section--dark .moodle-project-icon {
    background: rgba(190, 229, 235, 0.10);
}

.moodle-project-section--dark .moodle-project-h2,
.moodle-project-section--dark .moodle-project-h3,
.moodle-project-section--dark .moodle-project-body,
.moodle-project-section--dark .moodle-project-heading__text,
.moodle-project-section--dark .moodle-project-fit__text {
    color: #ebf8fa;
}

.moodle-project-section--dark .moodle-project-body,
.moodle-project-section--dark .moodle-project-heading__text,
.moodle-project-section--dark .moodle-project-fit__text {
    color: rgba(235, 248, 250, 0.78);
}

/* Seções escuras do moodle-project — kicker com cores claras */
.moodle-project-map .home30-kicker--light,
.moodle-project-closing .home30-kicker--light {
    background: rgba(187, 229, 235, 0.08);
    color: #eafcff;
    box-shadow: inset 0 0 0 1px rgba(187, 229, 235, 0.14);
}

.moodle-project-hero__grid,
.moodle-project-breakpoint__grid,
.moodle-project-fit__grid,
.moodle-project-questions__grid {
    display: grid;
    gap: 2.75rem;
}

.moodle-project-hero__copy,
.moodle-project-breakpoint__content,
.moodle-project-fit__editorial,
.moodle-project-fit__delivery,
.moodle-project-questions__cta {
    display: grid;
    align-content: start;
}

.moodle-project-hero__actions,
.moodle-project-questions__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.moodle-project-hero__signals,
.moodle-project-fit__audiences,
.moodle-project-questions__list,
.moodle-project-proof__notes {
    display: grid;
    gap: 0;
}

.moodle-project-hero__signals {
    margin-top: 2.5rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.moodle-project-hero__signal,
.moodle-project-fit__audience,
.moodle-project-questions__item,
.moodle-project-proof__note {
    display: grid;
    gap: 0.75rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(16, 56, 65, 0.12);
}

.moodle-project-hero__signal {
    padding: 1.35rem 1.25rem;
    border-top: 0;
    border: 1px solid rgba(16, 56, 65, 0.12);
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.moodle-project-hero__signal:first-child,
.moodle-project-fit__audience:first-child,
.moodle-project-questions__item:first-child,
.moodle-project-proof__note:first-child {
    padding-top: 0;
    border-top: 0;
}

.moodle-project-hero__signal:first-child {
    padding-top: 1.35rem;
}

.moodle-project-hero__signal strong {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--site2026-neutral-900);
}

.moodle-project-hero__signal span:last-child {
    font-size: 0.94rem;
    line-height: 1.7;
    color: var(--site2026-neutral-600);
}

.moodle-project-hero__visual {
    position: relative;
    min-height: 28rem;
    display: grid;
    align-content: center;
    padding-block: 1rem;
}

.moodle-project-hero__figure,
.moodle-project-breakpoint__media,
.moodle-project-proof__figure,
.moodle-project-questions__figure {
    margin: 0;
}

.moodle-project-hero__figure img,
.moodle-project-breakpoint__media img,
.moodle-project-proof__figure img,
.moodle-project-questions__figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.65rem;
}

.moodle-project-hero__figure--main {
    width: min(100%, 39rem);
    justify-self: end;
    position: relative;
    z-index: 2;
}

.moodle-project-hero__figure--secondary {
    width: min(54%, 18rem);
    position: absolute;
    left: 0;
    bottom: 1rem;
    z-index: 1;
}

.moodle-project-hero__figure--main figcaption,
.moodle-project-breakpoint__media figcaption,
.moodle-project-proof__figure figcaption {
    margin-top: 0.9rem;
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--site2026-neutral-600);
}

.moodle-project-hero__floating {
    position: absolute;
    z-index: 3;
}

.moodle-project-hero__floating--top {
    top: 0.3rem;
    left: 1rem;
}

.moodle-project-hero__floating--middle {
    top: 9rem;
    left: -0.3rem;
}

.moodle-project-hero__floating--bottom {
    right: 1.2rem;
    bottom: 0.1rem;
}

.moodle-project-breakpoint__grid {
    align-items: start;
}

.moodle-project-breakpoint__media {
    position: relative;
}

.moodle-project-breakpoint__media > img:not(.moodle-project-breakpoint__media-asset),
.moodle-project-breakpoint__media > figcaption:not(.moodle-project-breakpoint__media-caption) {
    display: none;
}

.moodle-project-breakpoint__content {
    gap: 0;
}

.moodle-project-breakpoint__item {
    display: grid;
    gap: 1rem;
    padding: 1.4rem 0;
    border-top: 1px solid rgba(16, 56, 65, 0.12);
}

.moodle-project-breakpoint__item:first-child {
    padding-top: 0;
    border-top: 0;
}

.moodle-project-breakpoint__body {
    display: grid;
    gap: 0.75rem;
}

.moodle-project-breakpoint__cta {
    padding-top: 1.6rem;
    margin-top: 0.2rem;
    border-top: 1px solid rgba(16, 56, 65, 0.12);
}

.moodle-project-breakpoint__cta .site2026-button {
    width: fit-content;
}

.moodle-project-fit__editorial {
    gap: 1.25rem;
}

.moodle-project-fit__delivery {
    gap: 1rem;
}

.moodle-project-fit__media {
    margin: 0 0 0.35rem;
    overflow: hidden;
    border-radius: 1.35rem;
    border: 1px solid rgba(16, 56, 65, 0.10);
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(16, 56, 65, 0.08);
}

.moodle-project-fit__media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.35rem;
}

.moodle-project-fit__num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #1d8a9c;
}

.moodle-project-fit__delivery-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.moodle-project-fit__delivery-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(16, 56, 65, 0.12);
}

.moodle-project-fit__delivery-list li:first-child {
    padding-top: 0;
    border-top: 0;
}

.moodle-project-fit__delivery-list strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1rem;
    color: var(--site2026-neutral-900);
}

.moodle-project-fit__delivery-list span:last-child {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--site2026-neutral-700);
}

.moodle-project-map__grid {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(190, 229, 235, 0.16);
}

.moodle-project-map__item {
    display: grid;
    gap: 0.85rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(190, 229, 235, 0.16);
}

.moodle-project-map__item:first-child {
    border-top: 0;
    padding-top: 1.5rem;
}

.moodle-project-questions__intro {
    display: grid;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(16, 56, 65, 0.12);
}

.moodle-project-questions__heading {
    display: grid;
    gap: 1rem;
}

.moodle-project-questions__faq-list {
    display: grid;
    margin-top: 0;
}

.moodle-project-faq {
    border-top: 1px solid rgba(16, 56, 65, 0.12);
}

.moodle-project-faq:first-child {
    border-top: 0;
}

.moodle-project-faq__trigger {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: start;
    padding: 1.35rem 0;
    background: transparent;
    border: 0;
    text-align: left;
    color: inherit;
}

.moodle-project-faq__meta {
    display: grid;
    gap: 0.7rem;
}

.moodle-project-faq__question {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--site2026-neutral-900);
}

.moodle-project-faq__icon {
    position: relative;
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(16, 56, 65, 0.12);
    flex-shrink: 0;
}

.moodle-project-faq__icon::before,
.moodle-project-faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.75rem;
    height: 1.5px;
    background: var(--site2026-neutral-700);
    border-radius: 999px;
    transform: translate(-50%, -50%);
}

.moodle-project-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.moodle-project-faq__icon--open::after {
    opacity: 0;
}

.moodle-project-faq__answer {
    padding: 0 0 1.35rem;
    max-width: 62ch;
}

.moodle-project-questions__actions {
    margin-top: 0.35rem;
}

@media (min-width: 768px) {

    .moodle-project-hero__grid,
    .moodle-project-fit__grid {
        grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
        gap: 4rem;
        align-items: start;
    }

    .moodle-project-breakpoint__grid {
        grid-template-columns: minmax(18rem, 0.92fr) minmax(0, 1.08fr);
        gap: 4rem;
    }

    .moodle-project-hero__signals {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .moodle-project-breakpoint__media {
        position: sticky;
        top: 7rem;
    }

    .moodle-project-breakpoint__item {
        grid-template-columns: auto 1fr;
        align-items: start;
    }

    .moodle-project-fit__editorial {
        padding-right: 2.25rem;
        border-right: 1px solid rgba(16, 56, 65, 0.12);
    }

    .moodle-project-map__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .moodle-project-map__item {
        min-height: 100%;
        padding: 1.85rem 2rem;
        border-left: 1px solid rgba(190, 229, 235, 0.16);
    }

    .moodle-project-map__item:nth-child(-n + 3) {
        border-top: 0;
    }

    .moodle-project-map__item:nth-child(3n + 1) {
        padding-left: 0;
        border-left: 0;
    }

    .moodle-project-questions__heading {
        padding-right: 0;
        border-right: 0;
    }
}

@media (min-width: 1024px) {
}

@media (max-width: 1023px) {

    .moodle-project-h2 {
        max-width: 100%;
    }
}

@media (max-width: 767px) {

    .moodle-project-section {
        padding-block: 3rem;
    }

    .moodle-project-hero {
        padding-top: 3rem;
    }

    .moodle-project-h2 {
        max-width: 100%;
    }

    .moodle-project-hero__actions,
    .moodle-project-questions__actions {
        flex-direction: column;
    }

    .moodle-project-hero__signals {
        margin-top: 3rem;
    }

    .moodle-project-hero__actions .site2026-button,
    .moodle-project-questions__actions .site2026-button {
        width: 100%;
        justify-content: center;
    }

    .moodle-project-hero__visual {
        min-height: 0;
        padding-top: 0.4rem;
    }

    .moodle-project-hero__figure--main {
        width: 100%;
        justify-self: stretch;
    }

    .moodle-project-hero__figure--secondary {
        position: relative;
        width: 74%;
        margin-top: -2rem;
    }

    .moodle-project-hero__floating {
        position: static;
        width: fit-content;
        margin-top: 0.85rem;
    }

    .moodle-project-hero__floating {
        display: none;
    }

    .moodle-project-breakpoint__media {
        display: none;
    }

    .moodle-project-breakpoint__media {
        order: 2;
    }

    .moodle-project-breakpoint__content {
        order: 1;
    }

    .moodle-project-breakpoint__cta .site2026-button {
        width: 100%;
        justify-content: center;
    }

    .moodle-project-heading {
        padding-bottom: 1.6rem;
        margin-bottom: 1.6rem;
    }
}

/* ─── moodle-project: mockup de painel AVA ──────────────────────────────── */

.moodle-project-hero__figure--main .moodle-mockup {
    border-radius: 1.35rem;
}

.moodle-mockup {
    width: 100%;
    min-height: 380px;
    background: #07181f;
    border-radius: 1.35rem;
    overflow: hidden;
    font-family: "Plus Jakarta Sans", sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
    background-image:
        linear-gradient(rgba(29, 138, 156, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29, 138, 156, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
}

.moodle-mockup::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(29, 138, 156, 0.22) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.moodle-mockup::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -30px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(217, 83, 79, 0.10) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Topbar */
.moodle-mockup__topbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid rgba(29, 138, 156, 0.16);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    animation: moodle-fade-in 0.4s ease both;
}

.moodle-mockup__brand {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.moodle-mockup__brand-icon {
    display: flex;
    color: #1d8a9c;
}

.moodle-mockup__brand-label {
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(235, 248, 250, 0.45);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.moodle-mockup__nav {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    flex: 1;
    justify-content: center;
}

.moodle-mockup__nav-item {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(235, 248, 250, 0.38);
    padding: 0.18rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
}

.moodle-mockup__nav-item--active {
    color: #ebf8fa;
    background: rgba(29, 138, 156, 0.18);
}

.moodle-mockup__user {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.moodle-mockup__avatar {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: #1d8a9c;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bricolage Grotesque", sans-serif;
    letter-spacing: 0;
}

.moodle-mockup__pulse {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: #22c55e;
    display: block;
    flex-shrink: 0;
    animation: moodle-pulse 2.2s ease-in-out infinite;
}

/* Body */
.moodle-mockup__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.85rem 1rem 0.8rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Header + KPIs */
.moodle-mockup__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(29, 138, 156, 0.13);
    animation: moodle-fade-up 0.45s ease 0.1s both;
}

.moodle-mockup__eyebrow {
    margin: 0 0 0.18rem;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1d8a9c;
}

.moodle-mockup__title {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ebf8fa;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.moodle-mockup__kpis {
    display: flex;
    gap: 0.85rem;
    flex-shrink: 0;
}

.moodle-mockup__kpi {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.08rem;
}

.moodle-mockup__kpi-num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ebf8fa;
    letter-spacing: -0.03em;
    line-height: 1;
}

.moodle-mockup__kpi-label {
    font-size: 0.52rem;
    color: rgba(235, 248, 250, 0.38);
    white-space: nowrap;
}

/* Courses */
.moodle-mockup__courses {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
    animation: moodle-fade-up 0.45s ease 0.2s both;
}

.moodle-mockup__course {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}

.moodle-mockup__course-top {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.moodle-mockup__course-dot {
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    flex-shrink: 0;
}

.moodle-mockup__course-dot--primary { background: #1d8a9c; }
.moodle-mockup__course-dot--accent  { background: #d9534f; }
.moodle-mockup__course-dot--green   { background: #22c55e; }

.moodle-mockup__course-name {
    flex: 1;
    font-size: 0.65rem;
    font-weight: 600;
    color: #ebf8fa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.moodle-mockup__course-pct {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.63rem;
    font-weight: 700;
    color: rgba(235, 248, 250, 0.45);
    flex-shrink: 0;
}

/* Progress bars */
.moodle-mockup__bar {
    height: 4px;
    background: rgba(29, 138, 156, 0.10);
    border-radius: 999px;
    overflow: hidden;
}

.moodle-mockup__bar-fill--primary {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #1d8a9c, #4caec0);
    animation: moodle-bar-primary 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.moodle-mockup__bar-fill--accent {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #d9534f, #e36f6b);
    animation: moodle-bar-accent 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}

.moodle-mockup__bar-fill--green {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    animation: moodle-bar-green 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}

/* Course meta */
.moodle-mockup__course-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.moodle-mockup__course-meta > span:first-child {
    font-size: 0.55rem;
    color: rgba(235, 248, 250, 0.32);
}

.moodle-mockup__tag {
    font-size: 0.52rem;
    font-weight: 600;
    color: #4caec0;
    background: rgba(29, 138, 156, 0.10);
    padding: 0.12em 0.45em;
    border-radius: 3px;
    letter-spacing: 0.02em;
    border: 1px solid rgba(29, 138, 156, 0.18);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Integrations */
.moodle-mockup__integrations {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(29, 138, 156, 0.13);
    flex-wrap: wrap;
    animation: moodle-fade-up 0.45s ease 0.32s both;
}

.moodle-mockup__integration {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    font-size: 0.56rem;
    color: rgba(235, 248, 250, 0.42);
    white-space: nowrap;
}

.moodle-mockup__int-dot {
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 999px;
    flex-shrink: 0;
}

.moodle-mockup__int-dot--ok {
    background: #22c55e;
    animation: moodle-pulse 2.8s ease-in-out infinite;
}

.moodle-mockup__int-dot--ok:nth-child(1) { animation-delay: 0s; }
.moodle-mockup__int-dot--ok:nth-child(2) { animation-delay: 0.6s; }
.moodle-mockup__int-dot--ok:nth-child(3) { animation-delay: 1.2s; }

.moodle-mockup__int-dot--idle {
    background: rgba(235, 248, 250, 0.2);
}

/* Keyframes */
@keyframes moodle-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.45; transform: scale(0.7); }
}

@keyframes moodle-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes moodle-fade-up {
    from { opacity: 0; transform: translateY(7px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes moodle-bar-primary {
    from { width: 0; }
    to   { width: 92%; }
}

@keyframes moodle-bar-accent {
    from { width: 0; }
    to   { width: 67%; }
}

@keyframes moodle-bar-green {
    from { width: 0; }
    to   { width: 41%; }
}

/* ─── moodle-project: plano de 3 passos ─────────────────────────────────── */

.moodle-project-plan__grid {
    display: grid;
    gap: 0;
}

.moodle-project-plan__step {
    padding: 2rem 0;
    border-top: 1px solid rgba(16, 56, 65, 0.12);
    display: grid;
    gap: 0.65rem;
}

.moodle-project-plan__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--site2026-primary-500, #1d8a9c);
    background: rgba(29, 138, 156, 0.09);
    border-radius: 999px;
    min-width: 2.1rem;
    height: 2.7rem;
    padding: 0 0.72rem;
    width: fit-content;
    flex-shrink: 0;
}

.moodle-project-plan__cta {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(16, 56, 65, 0.12);
}

@media (min-width: 768px) {
    .moodle-project-plan__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0 2.5rem;
    }

    .moodle-project-plan__step {
        border-top: none;
        border-left: 1px solid rgba(16, 56, 65, 0.12);
        padding: 0 2rem 3rem;
    }

    .moodle-project-plan__step:first-child {
        border-left: none;
        padding-left: 0;
    }
}

/* ─── moodle-project: sucesso + cases ───────────────────────────────────── */

.moodle-project-success__outcomes {
    display: grid;
    gap: 1px;
    background: rgba(16, 56, 65, 0.12);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 3rem;
}

.moodle-project-success__outcome {
    background: #fff;
    padding: 1.6rem;
    display: grid;
    gap: 0.9rem;
    align-content: start;
}

.moodle-project-success__outcome:not(.moodle-project-success__outcome--visual) {
    display: none;
}

.moodle-project-success__title {
    margin: 0;
    max-width: 9ch;
}

.moodle-project-success__visual {
    position: relative;
    width: 100%;
    min-height: 10.5rem;
    border: 1px solid rgba(29, 138, 156, 0.12);
    border-radius: 1.1rem;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.12), transparent 36%),
        linear-gradient(180deg, #f9fcfd 0%, #eef7f9 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.moodle-project-success__windowbar {
    display: flex;
    gap: 0.38rem;
    align-items: center;
    padding: 0.8rem 0.9rem 0;
}

.moodle-project-success__windowbar span {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(20, 58, 69, 0.16);
}

.moodle-project-success__windowbar span:first-child {
    background: rgba(29, 138, 156, 0.48);
}

.moodle-project-success__windowbar span:nth-child(2) {
    background: rgba(76, 174, 192, 0.32);
}

.moodle-project-success__windowbar span:last-child {
    background: rgba(217, 83, 79, 0.26);
}

.moodle-project-success__operation-lanes {
    display: grid;
    gap: 0.7rem;
    padding: 1rem 0.95rem 0.95rem;
}

.moodle-project-success__operation-lane {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.55rem;
    align-items: center;
    padding: 0.7rem 0.8rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(20, 58, 69, 0.06);
}

.moodle-project-success__operation-dot {
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 999px;
    background: var(--site2026-primary-500, #1d8a9c);
    box-shadow: 0 0 0 0.22rem rgba(29, 138, 156, 0.12);
}

.moodle-project-success__operation-dot--accent {
    background: var(--site2026-accent-500, #d9534f);
    box-shadow: 0 0 0 0.22rem rgba(217, 83, 79, 0.10);
}

.moodle-project-success__operation-pill {
    display: block;
    height: 0.6rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(29, 138, 156, 0.22), rgba(29, 138, 156, 0.06));
}

.moodle-project-success__operation-pill--short {
    width: 3rem;
}

.moodle-project-success__operation-pill--medium {
    width: 4.6rem;
}

.moodle-project-success__operation-pill--long {
    width: 5.8rem;
}

.moodle-project-success__visual--control {
    padding: 0.9rem;
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.moodle-project-success__visual--control .moodle-project-success__windowbar {
    padding: 0;
}

.moodle-project-success__control-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.moodle-project-success__control-stat {
    display: grid;
    gap: 0.22rem;
    padding: 0.8rem 0.5rem 0.7rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(20, 58, 69, 0.06);
    text-align: center;
}

.moodle-project-success__control-stat strong {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: var(--site2026-neutral-900, #141a1d);
}

.moodle-project-success__control-stat span {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--site2026-primary-700, #145c6c);
}

.moodle-project-success__control-bars {
    display: grid;
    gap: 0.55rem;
    margin-top: auto;
}

.moodle-project-success__control-bar {
    display: block;
    height: 0.75rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(29, 138, 156, 0.84), rgba(76, 174, 192, 0.16));
}

.moodle-project-success__control-bar--lg {
    width: 100%;
}

.moodle-project-success__control-bar--md {
    width: 76%;
}

.moodle-project-success__control-bar--sm {
    width: 58%;
}

.moodle-project-success__visual--integration {
    background:
        radial-gradient(circle at center, rgba(29, 138, 156, 0.18), transparent 30%),
        radial-gradient(circle at top right, rgba(217, 83, 79, 0.12), transparent 36%),
        linear-gradient(180deg, #f9fcfd 0%, #eef7f9 100%);
}

.moodle-project-success__node,
.moodle-project-success__link {
    position: absolute;
}

.moodle-project-success__node {
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid rgba(29, 138, 156, 0.36);
    box-shadow: 0 10px 18px rgba(20, 58, 69, 0.08);
}

.moodle-project-success__node--center {
    top: 50%;
    left: 50%;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--site2026-primary-500, #1d8a9c);
    border-color: rgba(29, 138, 156, 0.18);
    transform: translate(-50%, -50%);
}

.moodle-project-success__node--top-left {
    top: 1.7rem;
    left: 2rem;
}

.moodle-project-success__node--top-right {
    top: 1.5rem;
    right: 2.15rem;
}

.moodle-project-success__node--bottom-left {
    bottom: 1.8rem;
    left: 2.4rem;
}

.moodle-project-success__node--bottom-right {
    right: 1.9rem;
    bottom: 2rem;
}

.moodle-project-success__link {
    top: 50%;
    left: 50%;
    width: 3.2rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(29, 138, 156, 0.18), rgba(29, 138, 156, 0.55));
    transform-origin: left center;
}

.moodle-project-success__link--top-left {
    transform: translate(-0.1rem, -0.1rem) rotate(-144deg);
}

.moodle-project-success__link--top-right {
    transform: translate(-0.1rem, -0.1rem) rotate(-36deg);
}

.moodle-project-success__link--bottom-left {
    transform: translate(-0.1rem, -0.1rem) rotate(144deg);
}

.moodle-project-success__link--bottom-right {
    transform: translate(-0.1rem, -0.1rem) rotate(36deg);
}

.moodle-project-success__visual--scale {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: end;
    padding: 1rem;
}

.moodle-project-success__scale-stack {
    position: relative;
    min-height: 8rem;
}

.moodle-project-success__scale-card {
    position: absolute;
    left: 0;
    right: 0;
    border-radius: 1rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 249, 251, 0.94));
    box-shadow: 0 16px 26px rgba(20, 58, 69, 0.08);
}

.moodle-project-success__scale-card--back {
    top: 0.6rem;
    left: 1.4rem;
    right: 0.2rem;
    bottom: 1.3rem;
    opacity: 0.55;
}

.moodle-project-success__scale-card--middle {
    top: 0.3rem;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    opacity: 0.78;
}

.moodle-project-success__scale-card--front {
    top: 0;
    bottom: 0;
}

.moodle-project-success__scale-growth {
    display: flex;
    gap: 0.45rem;
    align-items: flex-end;
    padding-bottom: 0.1rem;
}

.moodle-project-success__scale-bar {
    display: block;
    width: 0.78rem;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, var(--site2026-primary-400, #4caec0), var(--site2026-primary-700, #145c6c));
}

.moodle-project-success__scale-bar--sm {
    height: 2.6rem;
}

.moodle-project-success__scale-bar--md {
    height: 4rem;
}

.moodle-project-success__scale-bar--lg {
    height: 5.5rem;
}

.moodle-project-success__proof {
    display: grid;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 56, 65, 0.12);
}

.moodle-project-success__cases {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.moodle-project-success__case {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--site2026-neutral-900, #141a1d);
    letter-spacing: -0.02em;
}

.moodle-project-success__case + .moodle-project-success__case::before {
    content: "·";
    margin-right: 1.5rem;
    color: var(--site2026-primary-400, #4caec0);
}

.moodle-project-success__note {
    max-width: 60ch;
    color: var(--site2026-neutral-600, #43515a);
}

@media (min-width: 768px) {
    .moodle-project-success__outcomes {
        grid-template-columns: repeat(2, 1fr);
    }

    .moodle-project-success__outcome--visual {
        min-height: 100%;
    }
}

@media (min-width: 1024px) {
    .moodle-project-success__outcomes {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ─── moodle-project: stakes (custo da inação) ──────────────────────────── */

.moodle-project-stakes__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

.moodle-project-stakes__copy {
    display: grid;
    gap: 1.1rem;
    align-content: start;
}

.moodle-project-stakes__copy .site2026-button {
    width: fit-content;
    margin-top: 0.5rem;
}

.moodle-project-stakes__visual {
    margin: 0;
    border-radius: 0.75rem;
    overflow: hidden;
}

.moodle-project-stakes__visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

@media (min-width: 960px) {
    .moodle-project-stakes__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* ─── moodle-project: CTA nas seções dark e plan ────────────────────────── */

.moodle-project-map__cta {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(190, 229, 235, 0.16);
}

/* ─── moodle-project: closing CTA (dark) ────────────────────────────────── */

.moodle-project-closing {
    background: #0c1519;
    padding: 5rem 0;
}

.moodle-project-closing__content {
    max-width: 52rem;
    display: grid;
    gap: 1.1rem;
}

.moodle-project-closing__h2 {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #ebf8fa;
}

.moodle-project-closing__text {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(235, 248, 250, 0.72);
    max-width: 58ch;
}

.moodle-project-closing__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0.5rem;
}


@media (max-width: 767px) {
    .moodle-project-closing {
        padding: 3.5rem 0;
    }

    .moodle-project-hero__signals span,
    .moodle-project-heading__text,
    .moodle-project-fit__text,
    .moodle-project-fit__audience .moodle-project-body,
    .moodle-project-fit__delivery-list li div span,
    .moodle-project-plan__step .moodle-project-body,
    .moodle-project-map__item .moodle-project-body,
    .moodle-project-success__outcome .moodle-project-body,
    .moodle-project-success__note,
    .moodle-project-stakes__copy .moodle-project-body:last-of-type,
    .moodle-project-questions__heading .moodle-project-body {
        display: none;
    }

    .moodle-project-lead,
    .moodle-project-breakpoint__body .moodle-project-body,
    .moodle-project-stakes__copy .moodle-project-body:first-of-type,
    .moodle-project-faq__answer .moodle-project-body {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .moodle-project-lead,
    .moodle-project-stakes__copy .moodle-project-body:first-of-type {
        -webkit-line-clamp: 3;
    }

    .moodle-project-breakpoint__body .moodle-project-body,
    .moodle-project-faq__answer .moodle-project-body {
        -webkit-line-clamp: 2;
    }

    .moodle-project-hero__signals {
        margin-top: 2rem;
    }

    .moodle-project-fit__delivery-list li {
        gap: 0.75rem;
    }

    .moodle-project-success__proof {
        gap: 1rem;
    }

    .moodle-project-closing__actions {
        flex-direction: column;
    }

    .moodle-project-closing__actions .site2026-button {
        width: 100%;
        justify-content: center;
    }

    .moodle-project-plan__cta .site2026-button {
        width: 100%;
        justify-content: center;
    }

    .moodle-project-stakes__copy .site2026-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    body.site2026 .site2026-main h3,
    body.site2026 h3 {
        font-size: 1.2rem !important;
        font-weight: 600;
        line-height: 1.28;
    }
}

/* consultoria-ia */

.ai-consulting-page {
    background: #ffffff;
}

.ai-consulting-section {
    padding-block: 4rem;
    border-top: 1px solid rgba(20, 58, 69, 0.08);
}

.ai-consulting-section--soft {
    background: #f5fbfc;
}

.ai-consulting-section--dark {
    background: #0d191d;
    border-top-color: rgba(190, 229, 235, 0.14);
}

.ai-consulting-page h2,
.ai-consulting-page h3 {
    margin: 0;
    color: var(--site2026-neutral-900);
}

.ai-consulting-section--dark h2,
.ai-consulting-section--dark h3 {
    color: #ebf8fa;
}

.ai-consulting-body,
.ai-consulting-heading__text,
.ai-consulting-fit__text {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--site2026-neutral-600);
}

.ai-consulting-section--dark .ai-consulting-body,
.ai-consulting-section--dark .ai-consulting-heading__text,
.ai-consulting-section--dark .ai-consulting-fit__text {
    color: rgba(235, 248, 250, 0.78);
}

.ai-consulting-body--lead {
    font-size: 1.08rem;
    color: var(--site2026-neutral-700);
}

.ai-consulting-heading {
    max-width: 50rem;
    display: grid;
    gap: 1rem;
    padding-bottom: 2rem;
    margin-bottom: 2.25rem;
    border-bottom: 1px solid rgba(20, 58, 69, 0.1);
}

.ai-consulting-heading--dark {
    border-bottom-color: rgba(190, 229, 235, 0.14);
}

.ai-consulting-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    background: rgba(29, 138, 156, 0.10);
    flex-shrink: 0;
}

.ai-consulting-icon img {
    display: block;
    width: 1.35rem;
    height: 1.35rem;
}

.ai-consulting-button-icon {
    display: block;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.site2026-button--primary .ai-consulting-button-icon,
.site2026-button--whatsapp .ai-consulting-button-icon,
.site2026-button--ghost-white .ai-consulting-button-icon {
    filter: brightness(0) saturate(100%) invert(1) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.14));
}

.ai-consulting-hero__grid,
.ai-consulting-fit__grid,
.ai-consulting-proof__grid {
    display: grid;
    gap: 2rem;
}

.ai-consulting-hero__copy,
.ai-consulting-fit__editorial,
.ai-consulting-fit__delivery,
.ai-consulting-proof__copy,
.ai-consulting-closing__content {
    display: grid;
    gap: 1.1rem;
    align-content: start;
}

#ai-consulting-applications .ai-consulting-fit__media {
    margin-bottom: 30px;
}

.ai-consulting-hero__actions,
.ai-consulting-closing__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.35rem;
}

.ai-consulting-hero__visual,
.ai-consulting-fit__media,
.ai-consulting-proof__visual {
    margin: 0;
}

.ai-consulting-hero__frame,
.ai-consulting-fit__media img,
.ai-consulting-proof__visual img {
    display: block;
    width: 100%;
    border-radius: 1.5rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    box-shadow: 0 24px 50px rgba(10, 30, 36, 0.10);
    overflow: hidden;
}

.ai-consulting-hero__frame img {
    display: block;
    width: 100%;
    height: auto;
}

.ai-consulting-hero__signals,
.ai-consulting-problem__grid,
.ai-consulting-plan__grid {
    display: grid;
    gap: 1rem;
}

.ai-consulting-hero__signals {
    margin-top: 2rem;
}

.ai-consulting-hero__signal,
.ai-consulting-problem__item {
    display: grid;
    gap: 0.85rem;
    padding: 1.3rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.94);
}

.ai-consulting-hero__signal strong {
    font-size: 1.05rem;
    line-height: 1.3;
    color: var(--site2026-neutral-900);
}

.ai-consulting-hero__signal span {
    font-size: 0.96rem;
    line-height: 1.72;
    color: var(--site2026-neutral-600);
}

.ai-consulting-problem__item {
    grid-template-columns: auto 1fr;
    align-items: start;
}

.ai-consulting-fit__audiences,
.ai-consulting-fit__delivery-list {
    display: grid;
    gap: 0;
}

.ai-consulting-fit__audience,
.ai-consulting-fit__delivery-list li,
.ai-consulting-plan__step {
    display: grid;
    gap: 0.9rem;
    padding: 1.35rem 0;
    border-top: 1px solid rgba(20, 58, 69, 0.1);
}

.ai-consulting-fit__audience:first-child,
.ai-consulting-fit__delivery-list li:first-child,
.ai-consulting-plan__step:first-child {
    border-top: 0;
    padding-top: 0;
}

.ai-consulting-fit__num,
.ai-consulting-plan__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.55rem;
    border-radius: 999px;
    background: #eef6f8;
    color: var(--site2026-primary-600);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.ai-consulting-fit__delivery-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-consulting-fit__delivery-list li {
    grid-template-columns: auto 1fr;
    align-items: start;
}

.ai-consulting-fit__delivery-list strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--site2026-neutral-900);
}

.ai-consulting-fit__delivery-list span {
    color: var(--site2026-neutral-600);
    line-height: 1.72;
}

.ai-consulting-plan__step {
    padding-right: 0;
}

.ai-consulting-plan__cta {
    margin-top: 2.25rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(190, 229, 235, 0.14);
}

.ai-consulting-proof__list {
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ai-consulting-proof__list li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--site2026-neutral-700);
    line-height: 1.72;
}

.ai-consulting-proof__list li::before {
    content: "";
    position: absolute;
    top: 0.7rem;
    left: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--site2026-primary-500);
}

.ai-consulting-proof__results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 2rem;
}

.ai-consulting-proof__result {
    display: grid;
    gap: 0.75rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(20, 58, 69, 0.1);
    align-content: start;
}

.ai-consulting-proof__result:nth-child(-n+2) {
    border-top: 0;
    padding-top: 0;
}

.ai-consulting-proof__result:nth-child(even) {
    padding-left: 1.5rem;
    border-left: 1px solid rgba(20, 58, 69, 0.1);
}

.ai-consulting-proof__result:nth-child(odd) {
    padding-right: 1.5rem;
}

.ai-consulting-proof__icon {
    width: 2rem;
    height: 2rem;
    opacity: 0.85;
}

.ai-consulting-faq__list {
    display: grid;
}

.ai-consulting-faq__item {
    border-top: 1px solid rgba(20, 58, 69, 0.1);
}

.ai-consulting-faq__item:first-child {
    border-top: 0;
}

.ai-consulting-faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0;
    border: 0;
    background: transparent;
    text-align: left;
}

.ai-consulting-faq__meta {
    display: grid;
    gap: 0.5rem;
}

.ai-consulting-faq__question {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.28;
    color: var(--site2026-neutral-900);
}

.ai-consulting-faq__icon {
    position: relative;
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
}

.ai-consulting-faq__icon::before,
.ai-consulting-faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 2px;
    border-radius: 999px;
    background: var(--site2026-neutral-500);
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease;
}

.ai-consulting-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.ai-consulting-faq__icon--open::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.ai-consulting-faq__answer {
    padding: 0 0 1.35rem;
}

.ai-consulting-closing__content {
    max-width: 50rem;
}

@media (min-width: 960px) {
    .ai-consulting-hero__grid,
    .ai-consulting-fit__grid,
    .ai-consulting-proof__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 3.5rem;
    }

    .ai-consulting-hero__signals,
    .ai-consulting-problem__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ai-consulting-proof__results {
        grid-template-columns: repeat(4, 1fr);
    }

    .ai-consulting-proof__result:nth-child(-n+4) {
        border-top: 0;
        padding-top: 0;
    }

    .ai-consulting-proof__result:not(:first-child) {
        padding-left: 2rem;
        border-left: 1px solid rgba(20, 58, 69, 0.1);
    }

    .ai-consulting-proof__result:nth-child(odd) {
        padding-right: 0;
    }

    .ai-consulting-plan__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
    }

    .ai-consulting-plan__step {
        min-height: 100%;
        padding: 0 1.6rem;
        border-top: 0;
        border-left: 1px solid rgba(190, 229, 235, 0.14);
    }

    .ai-consulting-plan__step:first-child {
        padding-left: 0;
        border-left: 0;
    }

    .ai-consulting-fit__audiences {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 2rem;
    }

    .ai-consulting-fit__audience:nth-child(-n + 2) {
        padding-top: 0;
        border-top: 0;
    }
}

@media (max-width: 767px) {
    .ai-consulting-section {
        padding-block: 3rem;
    }

    .ai-consulting-heading {
        margin-bottom: 1.8rem;
        padding-bottom: 1.6rem;
    }

    .ai-consulting-hero__actions,
    .ai-consulting-closing__actions {
        flex-direction: column;
    }

    .ai-consulting-hero__actions .site2026-button,
    .ai-consulting-closing__actions .site2026-button,
    .ai-consulting-plan__cta .site2026-button {
        width: 100%;
        justify-content: center;
    }

    .ai-consulting-hero__signals span,
    .ai-consulting-heading__text,
    .ai-consulting-fit__text,
    .ai-consulting-fit__audience .ai-consulting-body,
    .ai-consulting-fit__delivery-list li div span,
    .ai-consulting-proof__result .ai-consulting-body {
        display: none;
    }

    .ai-consulting-body--lead,
    .ai-consulting-problem__item .ai-consulting-body,
    .ai-consulting-plan__step .ai-consulting-body,
    .ai-consulting-faq__answer .ai-consulting-body {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 3;
    }

    .ai-consulting-hero__signals {
        margin-top: 1.6rem;
    }

    .ai-consulting-fit__media,
    .ai-consulting-proof__visual {
        display: none;
    }
}

/* ============================================================
   AI CONSULTING — MOCKUP ORQUESTRADOR DE AGENTES
   ============================================================ */

.ai-mockup {
    display: grid;
    grid-template-rows: auto 1fr auto;
    background:
        radial-gradient(ellipse at 50% -10%, rgba(29, 138, 156, 0.22) 0%, transparent 58%),
        radial-gradient(circle, rgba(29, 138, 156, 0.06) 1px, transparent 1px),
        #07111e;
    background-size: 100% 100%, 22px 22px, auto;
    min-height: 320px;
    font-family: "Plus Jakarta Sans", sans-serif;
    animation: ai-mock-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Chrome bar */
.ai-mockup__chrome {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1.1rem;
    border-bottom: 1px solid rgba(29, 138, 156, 0.14);
    background: rgba(255, 255, 255, 0.025);
}

.ai-mockup__dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.ai-mockup__dot--red    { background: #ff5f57; }
.ai-mockup__dot--yellow { background: #febc2e; }
.ai-mockup__dot--green  { background: #28c840; }

.ai-mockup__chrome-label {
    flex: 1;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(235, 248, 250, 0.4);
    letter-spacing: 0.05em;
}

.ai-mockup__live {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(40, 200, 80, 0.8);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ai-mockup__live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #28c840;
    animation: ai-mock-live-pulse 2s ease-in-out infinite;
}

/* Agents list */
.ai-mockup__agents {
    display: grid;
    gap: 0.75rem;
    padding: 1.1rem;
}

.ai-mockup__agent {
    padding: 0.85rem 0.95rem;
    background: rgba(29, 138, 156, 0.05);
    border: 1px solid rgba(29, 138, 156, 0.13);
    border-radius: 0.85rem;
    animation: ai-mock-agent-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.ai-mockup__agent--b { animation-delay: 0.12s; }
.ai-mockup__agent--c { animation-delay: 0.24s; }

.ai-mockup__agent-top {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.6rem;
}

.ai-mockup__agent-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.38rem;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}
.ai-mockup__agent-badge--teal   { background: rgba(29, 138, 156, 0.2);  color: #5bcedd; }
.ai-mockup__agent-badge--accent { background: rgba(217, 83, 79, 0.2);   color: #e88a87; }
.ai-mockup__agent-badge--green  { background: rgba(40, 200, 80, 0.15);  color: #50d98a; }

.ai-mockup__agent-name {
    flex: 1;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(235, 248, 250, 0.82);
}

.ai-mockup__agent-pct {
    font-size: 0.65rem;
    font-weight: 800;
    color: #4caebd;
    font-variant-numeric: tabular-nums;
}

/* Progress bar */
.ai-mockup__progress-track {
    height: 4px;
    border-radius: 999px;
    background: rgba(29, 138, 156, 0.12);
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.ai-mockup__progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #1d8a9c, #4caebd);
    width: 0%;
}
.ai-mockup__progress-fill--a { animation: ai-mock-bar-a 9s ease-in-out infinite; }
.ai-mockup__progress-fill--b { animation: ai-mock-bar-b 9s ease-in-out infinite 0.9s; }
.ai-mockup__progress-fill--c { animation: ai-mock-bar-c 9s ease-in-out infinite 0.45s; }

/* Agent status log */
.ai-mockup__agent-log {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin: 0;
    font-size: 0.6rem;
    color: rgba(235, 248, 250, 0.38);
    font-family: "Courier New", monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ai-mockup__caret {
    color: #1d8a9c;
    font-weight: 800;
    flex-shrink: 0;
}

.ai-mockup__cursor-blink {
    color: #4caebd;
    animation: ai-mock-cursor 1.1s step-end infinite;
}
.ai-mockup__cursor-blink--delay  { animation-delay: 0.37s; }
.ai-mockup__cursor-blink--delay2 { animation-delay: 0.74s; }

/* Footer */
.ai-mockup__footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.1rem;
    border-top: 1px solid rgba(29, 138, 156, 0.12);
    background: rgba(255, 255, 255, 0.015);
    font-size: 0.62rem;
    color: rgba(235, 248, 250, 0.4);
}

.ai-mockup__footer-arrow {
    color: #28c840;
    font-weight: 800;
    font-size: 0.8rem;
}

/* Keyframes */
@keyframes ai-mock-fade-up {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes ai-mock-agent-in {
    from { opacity: 0; transform: translateX(-8px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes ai-mock-live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(40, 200, 80, 0.5); }
    50%       { box-shadow: 0 0 0 5px rgba(40, 200, 80, 0); }
}

@keyframes ai-mock-bar-a {
    0%        { width: 0%; }
    18%       { width: 78%; }
    80%       { width: 78%; }
    94%       { width: 100%; }
    98%, 100% { width: 0%; }
}

@keyframes ai-mock-bar-b {
    0%        { width: 0%; }
    22%       { width: 52%; }
    78%       { width: 52%; }
    93%       { width: 100%; }
    98%, 100% { width: 0%; }
}

@keyframes ai-mock-bar-c {
    0%        { width: 0%; }
    14%       { width: 91%; }
    82%       { width: 91%; }
    95%       { width: 100%; }
    98%, 100% { width: 0%; }
}

@keyframes ai-mock-cursor {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0; }
}

/* ============================================================
   AI CONSULTING — MINI MOCKUPS POR AUDIÊNCIA
   ============================================================ */

.ai-aud-mock {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.7rem 0.85rem;
    background:
        radial-gradient(ellipse at 60% -20%, rgba(29, 138, 156, 0.18) 0%, transparent 60%),
        #07111e;
    border-radius: 0.85rem;
    border: 1px solid rgba(29, 138, 156, 0.14);
    overflow: hidden;
    font-family: "Plus Jakarta Sans", sans-serif;
    animation: ai-mock-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Header */
.ai-aud-mock__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-aud-mock__tag {
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.15rem 0.48rem;
    border-radius: 999px;
}
.ai-aud-mock__tag--teal   { background: rgba(29, 138, 156, 0.2);  color: #5bcedd; }
.ai-aud-mock__tag--accent { background: rgba(217, 83, 79, 0.2);   color: #e88a87; }

.ai-aud-mock__led {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #1d8a9c;
    animation: ai-mock-live-pulse 2s ease-in-out infinite;
}
.ai-aud-mock__led--green { background: #28c840; }

/* Log / caption */
.ai-aud-mock__log {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.52rem;
    color: rgba(235, 248, 250, 0.32);
    font-family: "Courier New", monospace;
    white-space: nowrap;
    overflow: hidden;
}
.ai-aud-mock__caret { color: #1d8a9c; font-weight: 800; flex-shrink: 0; }
.ai-aud-mock__blink { color: #4caebd; animation: ai-mock-cursor 1.1s step-end infinite; }
.ai-aud-mock__blink--b { animation-delay: .37s; }
.ai-aud-mock__blink--c { animation-delay: .74s; }
.ai-aud-mock__blink--d { animation-delay: 1.1s; }

/* --- Mockup 01: Editor de roteiro --- */
.ai-aud-mock__editor {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    flex: 1;
    justify-content: center;
}

.ai-aud-mock__eline {
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    width: 0%;
    animation: ai-grid-line-appear 8s ease-in-out infinite;
}
.ai-aud-mock__eline--title {
    height: 7px;
    background: rgba(29, 138, 156, 0.45);
    animation-delay: 0s;
}
.ai-aud-mock__eline--short { animation-name: ai-grid-line-short; }

/* --- Mockup 02: Portal de turmas --- */
.ai-aud-mock__students {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
    justify-content: center;
}

.ai-aud-mock__scard {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.ai-aud-mock__avatar {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: rgba(29, 138, 156, 0.35);
    flex-shrink: 0;
}
.ai-aud-mock__avatar--b { background: rgba(217, 83, 79, 0.3); }
.ai-aud-mock__avatar--c { background: rgba(40, 200, 80, 0.25); }

.ai-aud-mock__sinfo { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }

.ai-aud-mock__sname {
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    width: 65%;
}
.ai-aud-mock__sname--short { width: 45%; }

.ai-aud-mock__sbar {
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    overflow: hidden;
}
.ai-aud-mock__sbar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #1d8a9c, #4caebd);
    width: 0%;
}
.ai-aud-mock__sbar-fill--80 { animation: ai-mock-bar-a 7s ease-in-out infinite; }
.ai-aud-mock__sbar-fill--55 { animation: ai-mock-bar-b 7s ease-in-out infinite 0.5s; }
.ai-aud-mock__sbar-fill--92 { animation: ai-mock-bar-c 7s ease-in-out infinite 1s; }

/* --- Mockup 03: Trilha de onboarding --- */
.ai-aud-mock__trail {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    justify-content: center;
    position: relative;
}

.ai-aud-mock__trail-track {
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    right: 0.9rem;
    overflow: hidden;
}
.ai-aud-mock__trail-fill {
    height: 100%;
    background: linear-gradient(90deg, #28c840, #1d8a9c);
    animation: ai-aud-trail-fill 6s ease-in-out infinite;
}
@keyframes ai-aud-trail-fill {
    0%, 10% { width: 0%; }
    50%, 80% { width: 55%; }
    95%, 100% { width: 0%; }
}

.ai-aud-mock__trail-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.ai-aud-mock__tnode {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    font-size: 0.52rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(235, 248, 250, 0.35);
}
.ai-aud-mock__tnode--done {
    background: rgba(40, 200, 80, 0.2);
    border-color: rgba(40, 200, 80, 0.4);
    color: #50d98a;
}
.ai-aud-mock__tnode--active {
    background: rgba(29, 138, 156, 0.25);
    border-color: #1d8a9c;
    color: #5bcedd;
    animation: ai-grid-node-pulse 2s ease-in-out infinite;
}

.ai-aud-mock__trail-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.46rem;
    color: rgba(235, 248, 250, 0.3);
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* --- Mockup 04: Pipeline de automação --- */
.ai-aud-mock__pipe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.3rem;
    flex: 1;
}

.ai-aud-mock__pnode {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    padding: 0.4rem 0.45rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.ai-aud-mock__pnode--ai {
    background: rgba(29, 138, 156, 0.15);
    border-color: rgba(29, 138, 156, 0.3);
    animation: ai-grid-node-process 2.5s ease-in-out infinite;
}
.ai-aud-mock__pnode--out {
    background: rgba(40, 200, 80, 0.1);
    border-color: rgba(40, 200, 80, 0.25);
}

.ai-aud-mock__pnode-label {
    font-size: 0.48rem;
    font-weight: 800;
    color: rgba(235, 248, 250, 0.55);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.ai-aud-mock__pnode--ai .ai-aud-mock__pnode-label { color: #5bcedd; }
.ai-aud-mock__pnode--out .ai-aud-mock__pnode-label { color: #50d98a; }

.ai-aud-mock__pnode-lines { display: flex; flex-direction: column; gap: 0.18rem; }
.ai-aud-mock__pline {
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
}
.ai-aud-mock__pline--short { width: 60%; }
.ai-aud-mock__pline--teal  { background: rgba(29, 138, 156, 0.45); }
.ai-aud-mock__pline--green { background: rgba(40, 200, 80, 0.4); }

.ai-aud-mock__parrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.7rem;
    color: rgba(29, 138, 156, 0.4);
    flex-shrink: 0;
    position: relative;
    animation: ai-grid-arrow-flow 2s ease-in-out infinite;
}

.ai-aud-mock__particle {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #1d8a9c;
    animation: ai-aud-particle 2.5s ease-in-out infinite;
}
.ai-aud-mock__particle--b { animation-delay: 1.25s; }

@keyframes ai-aud-particle {
    0%, 100% { opacity: 0; transform: translateY(0); }
    20%      { opacity: 1; }
    80%      { opacity: 0.6; transform: translateY(4px); }
}

/* ============================================================
   AI CONSULTING — MOCKUP GRID 16:9 (Onde aplicamos IA)
   ============================================================ */

.ai-mockup-grid {
    display: flex;
    flex-direction: column;
    aspect-ratio: 16 / 9;
    width: 100%;
    background:
        radial-gradient(ellipse at 30% -10%, rgba(29, 138, 156, 0.22) 0%, transparent 55%),
        radial-gradient(circle, rgba(29, 138, 156, 0.055) 1px, transparent 1px),
        #07111e;
    background-size: 100% 100%, 20px 20px, auto;
    border-radius: 1.5rem;
    border: 1px solid rgba(20, 58, 69, 0.08);
    box-shadow: 0 24px 50px rgba(10, 30, 36, 0.10);
    overflow: hidden;
    font-family: "Plus Jakarta Sans", sans-serif;
    animation: ai-mock-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ai-mockup-grid__bar-title {
    flex: 1;
    text-align: center;
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(235, 248, 250, 0.4);
    letter-spacing: 0.05em;
}

.ai-mockup-grid__cells {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    flex: 1;
    gap: 1px;
    background: rgba(29, 138, 156, 0.12);
}

.ai-mockup-grid__cell {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.75rem;
    background: #07111e;
}

.ai-mockup-grid__cell-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.ai-mockup-grid__badge {
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
}
.ai-mockup-grid__badge--teal    { background: rgba(29, 138, 156, 0.2);   color: #5bcedd; }
.ai-mockup-grid__badge--accent  { background: rgba(217, 83, 79, 0.2);    color: #e88a87; }
.ai-mockup-grid__badge--green   { background: rgba(40, 200, 80, 0.15);   color: #50d98a; }
.ai-mockup-grid__badge--neutral { background: rgba(255, 255, 255, 0.07); color: rgba(235, 248, 250, 0.5); }

.ai-mockup-grid__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1d8a9c;
    flex-shrink: 0;
    animation: ai-mock-live-pulse 2s ease-in-out infinite;
}
.ai-mockup-grid__status-dot--accent { background: #d9534f; }
.ai-mockup-grid__status-dot--green  { background: #28c840; }

/* --- Célula 1: Linhas de documento (conteúdo) --- */
.ai-mockup-grid__doc {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    justify-content: center;
}

.ai-mockup-grid__doc-line {
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    width: 0%;
    animation: ai-grid-line-appear 9s ease-in-out infinite;
}
.ai-mockup-grid__doc-line--title {
    height: 7px;
    background: rgba(29, 138, 156, 0.4);
}
.ai-mockup-grid__doc-line--short {
    animation-name: ai-grid-line-short;
}

@keyframes ai-grid-line-appear {
    0%        { width: 0%; opacity: 0; }
    8%        { opacity: 1; }
    22%       { width: 100%; }
    75%       { width: 100%; }
    85%       { width: 0%; opacity: 0; }
    100%      { width: 0%; opacity: 0; }
}
@keyframes ai-grid-line-short {
    0%        { width: 0%; opacity: 0; }
    8%        { opacity: 1; }
    22%       { width: 55%; }
    75%       { width: 55%; }
    85%       { width: 0%; opacity: 0; }
    100%      { width: 0%; opacity: 0; }
}

/* --- Célula 2: Gráfico de barras (marketing) --- */
.ai-mockup-grid__chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
    padding-bottom: 0.1rem;
}

.ai-mockup-grid__bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.22rem;
    height: 100%;
    justify-content: flex-end;
}

.ai-mockup-grid__chart-bar {
    width: 100%;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, rgba(217, 83, 79, 0.85), rgba(217, 83, 79, 0.35));
    height: 0%;
}
.ai-mockup-grid__chart-bar--62 { animation: ai-grid-bar-62 9s ease-in-out infinite; }
.ai-mockup-grid__chart-bar--88 { animation: ai-grid-bar-88 9s ease-in-out infinite 0.35s; }
.ai-mockup-grid__chart-bar--45 { animation: ai-grid-bar-45 9s ease-in-out infinite 0.7s; }
.ai-mockup-grid__chart-bar--76 { animation: ai-grid-bar-76 9s ease-in-out infinite 1.05s; }

.ai-mockup-grid__bar-label {
    font-size: 0.46rem;
    color: rgba(235, 248, 250, 0.38);
    font-weight: 600;
    letter-spacing: 0.04em;
}

@keyframes ai-grid-bar-62 {
    0%, 6%     { height: 0%; }
    28%, 75%   { height: 62%; }
    90%, 100%  { height: 0%; }
}
@keyframes ai-grid-bar-88 {
    0%, 9%     { height: 0%; }
    32%, 75%   { height: 88%; }
    90%, 100%  { height: 0%; }
}
@keyframes ai-grid-bar-45 {
    0%, 12%    { height: 0%; }
    35%, 75%   { height: 45%; }
    90%, 100%  { height: 0%; }
}
@keyframes ai-grid-bar-76 {
    0%, 15%    { height: 0%; }
    38%, 75%   { height: 76%; }
    90%, 100%  { height: 0%; }
}

/* --- Célula 3: Chat (suporte) --- */
.ai-mockup-grid__chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
    justify-content: center;
}

.ai-mockup-grid__bubble {
    max-width: 88%;
    padding: 0.28rem 0.52rem;
    font-size: 0.5rem;
    line-height: 1.4;
    opacity: 0;
    animation: ai-grid-bubble-in 9s ease-in-out infinite;
}
.ai-mockup-grid__bubble--in {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(235, 248, 250, 0.68);
    border-radius: 8px 8px 8px 2px;
}
.ai-mockup-grid__bubble--out {
    align-self: flex-end;
    background: rgba(29, 138, 156, 0.28);
    color: #d7f0f4;
    border-radius: 8px 8px 2px 8px;
    animation-delay: 0.8s;
}
.ai-mockup-grid__bubble--delay {
    animation-delay: 1.6s;
}

@keyframes ai-grid-bubble-in {
    0%, 8%     { opacity: 0; transform: translateY(4px); }
    16%, 78%   { opacity: 1; transform: translateY(0); }
    88%, 100%  { opacity: 0; }
}

/* --- Célula 4: Flow (operação) --- */
.ai-mockup-grid__flow {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.ai-mockup-grid__flow-node {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.55rem;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
}
.ai-mockup-grid__flow-node--active {
    background: rgba(29, 138, 156, 0.14);
    border: 1px solid rgba(29, 138, 156, 0.32);
    color: #5bcedd;
    animation: ai-grid-node-pulse 3s ease-in-out infinite;
}
.ai-mockup-grid__flow-node--processing {
    background: rgba(29, 138, 156, 0.24);
    border: 1px solid #1d8a9c;
    color: #d7f0f4;
    animation: ai-grid-node-process 2s ease-in-out infinite 0.5s;
}
.ai-mockup-grid__flow-node--done {
    background: rgba(40, 200, 80, 0.14);
    border: 1px solid rgba(40, 200, 80, 0.38);
    color: #50d98a;
    animation: ai-grid-node-pulse 3s ease-in-out infinite 1s;
}

.ai-mockup-grid__flow-arrow {
    font-size: 0.85rem;
    color: rgba(29, 138, 156, 0.45);
    animation: ai-grid-arrow-flow 2s ease-in-out infinite;
}

@keyframes ai-grid-node-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(29, 138, 156, 0.3); }
    50%      { box-shadow: 0 0 0 5px rgba(29, 138, 156, 0); }
}
@keyframes ai-grid-node-process {
    0%, 100% { box-shadow: 0 0 6px rgba(29, 138, 156, 0.4); }
    50%      { box-shadow: 0 0 14px rgba(29, 138, 156, 0.75); }
}
@keyframes ai-grid-arrow-flow {
    0%, 100% { opacity: 0.3; transform: translateX(0); }
    50%      { opacity: 0.8; transform: translateX(2px); }
}

/* Caption compartilhada nas células */
.ai-mockup-grid__caption {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    font-size: 0.52rem;
    color: rgba(235, 248, 250, 0.32);
    font-family: "Courier New", monospace;
    flex-shrink: 0;
    overflow: hidden;
    white-space: nowrap;
}

/* negocio-pronto */
.negocio-pronto-page {
    background: var(--site2026-neutral-0);
}

.negocio-pronto-section {
    padding: clamp(1.6rem, 3vw, 2.6rem) 0;
}

.negocio-pronto-section + .negocio-pronto-section {
    border-top: 1px solid rgba(16, 56, 65, 0.10);
}

.negocio-pronto-heading {
    display: grid;
    gap: 0.8rem;
    max-width: 48rem;
    margin-bottom: clamp(1.1rem, 2vw, 1.6rem);
}

.negocio-pronto-heading h2 {
    margin: 0;
    max-width: 18ch;
}

.negocio-pronto-body,
.negocio-pronto-heading__text {
    margin: 0;
    color: var(--site2026-text-soft);
    font-size: clamp(1rem, 1.05vw, 1.08rem);
    line-height: 1.8;
}

.negocio-pronto-body--lead {
    font-size: clamp(1.04rem, 1.15vw, 1.14rem);
}

.negocio-pronto-button-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.negocio-pronto-icon {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.95rem;
    background: rgba(29, 138, 156, 0.08);
    border: 1px solid rgba(29, 138, 156, 0.12);
    flex-shrink: 0;
}

.negocio-pronto-icon img {
    width: 1.3rem;
    height: 1.3rem;
    object-fit: contain;
}

.negocio-pronto-hero {
    padding-top: 1.2rem;
}

.negocio-pronto-hero__grid,
.negocio-pronto-editorial,
.negocio-pronto-fit__grid {
    display: grid;
    gap: 1.5rem;
}

.negocio-pronto-hero__copy,
.negocio-pronto-editorial__main,
.negocio-pronto-editorial__side,
.negocio-pronto-closing__content {
    display: grid;
    gap: 1rem;
}

.negocio-pronto-hero__copy h2,
.negocio-pronto-closing__content h2 {
    margin: 0;
    max-width: 15ch;
}

.negocio-pronto-editorial__main h2,
.negocio-pronto-fit__column h2 {
    margin: 0;
    max-width: 16ch;
}

.negocio-pronto-hero__actions,
.negocio-pronto-closing__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.negocio-pronto-hero__microcopy {
    margin: 0;
    color: var(--site2026-neutral-500);
    font-size: 0.94rem;
    line-height: 1.65;
    max-width: 38rem;
}

.negocio-pronto-hero__media,
.negocio-pronto-fit__column {
    display: grid;
    gap: 1rem;
}

.negocio-pronto-hero__video {
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.negocio-pronto-hero__video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 1.6rem;
    border: 1px solid rgba(16, 56, 65, 0.12);
    background: #f4f8fa;
}

.negocio-pronto-hero__video-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.negocio-pronto-hero__video-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 56, 65, 0.10);
    color: var(--site2026-primary-700);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.negocio-pronto-hero__video-play {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 5.25rem;
    height: 5.25rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(16, 56, 65, 0.88);
    box-shadow: 0 18px 40px rgba(16, 56, 65, 0.20);
}

.negocio-pronto-hero__video-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-38%, -50%);
    border-top: 0.82rem solid transparent;
    border-bottom: 0.82rem solid transparent;
    border-left: 1.22rem solid #ffffff;
}

.negocio-pronto-hero__video-caption {
    margin: 0;
    color: var(--site2026-neutral-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

.negocio-pronto-hero__summary {
    display: grid;
}

.negocio-pronto-hero__summary-item,
.negocio-pronto-feature,
.negocio-pronto-note,
.negocio-pronto-columns__item,
.negocio-pronto-faq__item,
.negocio-pronto-courses__item {
    border-top: 1px solid rgba(16, 56, 65, 0.10);
}

.negocio-pronto-hero__summary-item {
    display: grid;
    gap: 0.45rem;
    padding: 1rem 0 0;
}

.negocio-pronto-hero__summary-item strong,
.negocio-pronto-note h3,
.negocio-pronto-feature h3,
.negocio-pronto-columns__item h3,
.negocio-pronto-faq__question {
    margin: 0;
}

.negocio-pronto-editorial__main .site2026-button {
    width: fit-content;
}

.negocio-pronto-columns {
    display: grid;
    gap: 1rem;
}

.negocio-pronto-columns__item,
.negocio-pronto-plan__step {
    display: grid;
    gap: 0.75rem;
    padding-top: 1rem;
}

.negocio-pronto-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding-top: 1rem;
}

.negocio-pronto-courses__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.2rem;
}

.negocio-pronto-courses__item {
    padding: 0.95rem 0 0;
    font-weight: 600;
    line-height: 1.5;
    color: var(--site2026-text);
}

.negocio-pronto-note {
    display: grid;
    gap: 0.65rem;
    padding-top: 1rem;
}

.negocio-pronto-plan__num {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(29, 138, 156, 0.08);
    color: var(--site2026-primary-700);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.negocio-pronto-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 1rem 0 0 1.15rem;
    color: var(--site2026-text-soft);
    line-height: 1.75;
    border-top: 1px solid rgba(16, 56, 65, 0.10);
}

.negocio-pronto-faq__list {
    display: grid;
}

.negocio-pronto-faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.negocio-pronto-faq__icon {
    width: 0.95rem;
    height: 0.95rem;
    position: relative;
    flex-shrink: 0;
}

.negocio-pronto-faq__icon::before,
.negocio-pronto-faq__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--site2026-primary-700);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.negocio-pronto-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.negocio-pronto-faq__icon--open::after {
    opacity: 0;
}

.negocio-pronto-faq__question {
    font-weight: 600;
    line-height: 1.45;
}

.negocio-pronto-faq__answer {
    padding: 0 0 1rem;
}

.negocio-pronto-closing__content {
    max-width: 46rem;
}

@media (min-width: 768px) {
    .negocio-pronto-hero__grid,
    .negocio-pronto-editorial,
    .negocio-pronto-fit__grid {
        grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.92fr);
        align-items: start;
        gap: 2rem;
    }

    .negocio-pronto-hero__media,
    .negocio-pronto-editorial__side,
    .negocio-pronto-fit__column + .negocio-pronto-fit__column {
        padding-left: 2rem;
        border-left: 1px solid rgba(16, 56, 65, 0.10);
    }

    .negocio-pronto-columns--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
    }

    .negocio-pronto-columns--3 .negocio-pronto-columns__item,
    .negocio-pronto-columns--3 .negocio-pronto-plan__step {
        padding: 0 1.5rem 0 1.5rem;
        border-top: 0;
        border-left: 1px solid rgba(16, 56, 65, 0.10);
    }

    .negocio-pronto-columns--3 > :first-child {
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 767px) {
    .negocio-pronto-section {
        padding: 1.1rem 0;
    }

    .negocio-pronto-hero {
        padding-top: 0.9rem;
    }

    .negocio-pronto-heading,
    .negocio-pronto-hero__grid,
    .negocio-pronto-editorial,
    .negocio-pronto-fit__grid {
        gap: 1rem;
    }

    .negocio-pronto-heading h2,
    .negocio-pronto-hero__copy h2,
    .negocio-pronto-closing__content h2 {
        max-width: none;
    }

    .negocio-pronto-hero__actions,
    .negocio-pronto-closing__actions {
        flex-direction: column;
    }

    .negocio-pronto-hero__actions .site2026-button,
    .negocio-pronto-closing__actions .site2026-button {
        width: 100%;
        justify-content: center;
    }

    .negocio-pronto-courses__grid {
        grid-template-columns: 1fr;
    }

    .negocio-pronto-hero__video-label {
        top: 0.8rem;
        left: 0.8rem;
    }

    .negocio-pronto-hero__video-play {
        width: 4.2rem;
        height: 4.2rem;
    }

    .negocio-pronto-hero__video-play::before {
        border-top-width: 0.65rem;
        border-bottom-width: 0.65rem;
        border-left-width: 1rem;
    }
}

/* ─── Material Didático 2026 ──────────────────────────────── */

.mat-segment {
    background: var(--c-bg, #040a0e);
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: relative;
    z-index: 10;
}
.mat-segment__inner {
    display: flex;
    gap: .5rem;
    padding: .85rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.mat-segment__inner::-webkit-scrollbar { display: none; }
.mat-segment__btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem 1.1rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255,255,255,.55);
    white-space: nowrap;
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
}
.mat-segment__btn:hover {
    border-color: var(--c-primary, #1d8a9c);
    color: #fff;
    text-decoration: none;
}
.mat-segment__btn--active {
    background: var(--c-primary, #1d8a9c);
    border-color: var(--c-primary, #1d8a9c);
    color: #fff;
    font-weight: 600;
}

.mat-stats { padding: 2.5rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.mat-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) {
    .mat-stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.mat-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .5rem;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: .875rem;
    background: rgba(255,255,255,.02);
}
.mat-stats__icon { color: var(--c-primary, #1d8a9c); }
.mat-stats__value {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.65rem, 2.8vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: .15rem;
}
.mat-stats__suffix { font-size: 1.1rem; color: var(--c-primary, #1d8a9c); font-weight: 600; }
.mat-stats__label { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.4; }

.mat-hero { padding: 4rem 0; }
.mat-hero__grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) {
    .mat-hero__grid { grid-template-columns: 1fr 1fr; }
}
.mat-hero__headline {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.25;
}
.mat-hero__text { color: rgba(255,255,255,.65); margin-bottom: 1.25rem; line-height: 1.8; }
.mat-hero__list { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-direction: column; gap: .6rem; }
.mat-hero__list li { display: flex; align-items: flex-start; gap: .55rem; color: rgba(255,255,255,.78); font-size: .92rem; }
.mat-hero__list li::before { content: "✓"; color: var(--c-primary, #1d8a9c); font-weight: 700; flex-shrink: 0; }
.mat-hero__video { aspect-ratio: 16/9; border-radius: .875rem; overflow: hidden; border: 1px solid rgba(255,255,255,.09); }
.mat-hero__video iframe { width: 100%; height: 100%; border: 0; display: block; }

.mat-section-header { text-align: center; margin-bottom: 2.5rem; }
.mat-section-header h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.35rem, 2.6vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 .65rem;
}
.mat-section-header p { color: rgba(255,255,255,.55); max-width: 44rem; margin: 0 auto; line-height: 1.8; }

.mat-formats { padding: 4rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.mat-formats__grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
    .mat-formats__grid { grid-template-columns: repeat(4, 1fr); }
}
.mat-format-card {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: .875rem;
    padding: 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    transition: border-color .2s, background .2s;
}
.mat-format-card:hover { border-color: rgba(29,138,156,.35); background: rgba(29,138,156,.03); }
.mat-format-card h3 { font-family: "Bricolage Grotesque", sans-serif; font-size: .95rem; font-weight: 700; color: #fff; margin: 0; }
.mat-format-card p { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.7; margin: 0; flex: 1; }
.mat-format-card__demo {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--c-primary, #1d8a9c);
    text-decoration: none;
    transition: gap .18s;
    margin-top: auto;
}
.mat-format-card__demo:hover { gap: .65rem; text-decoration: none; color: var(--c-primary, #1d8a9c); }

.mat-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.mat-preview-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 24, 0.62);
    backdrop-filter: blur(8px);
}

.mat-preview-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    max-height: min(88vh, 980px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    background: #081318;
    box-shadow: 0 36px 90px rgba(5, 15, 20, 0.42);
}

.mat-preview-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem .9rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.mat-preview-modal__eyebrow {
    margin: 0 0 .25rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}

.mat-preview-modal__title {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.mat-preview-modal__actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.mat-preview-modal__link,
.mat-preview-modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: #fff;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.mat-preview-modal__link {
    min-height: 2.5rem;
    padding: 0 .95rem;
    font-size: .84rem;
    font-weight: 600;
}

.mat-preview-modal__close {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
}

.mat-preview-modal__link:hover,
.mat-preview-modal__close:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.mat-preview-modal__body {
    background: #061015;
    height: min(72vh, 760px);
}

.mat-preview-modal__frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #061015;
}

@media (max-width: 767px) {
    .mat-preview-modal {
        padding: .75rem;
    }

    .mat-preview-modal__dialog {
        max-height: 92vh;
        border-radius: 1.15rem;
    }

    .mat-preview-modal__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .mat-preview-modal__actions {
        width: 100%;
        justify-content: space-between;
    }

    .mat-preview-modal__body {
        height: 70vh;
    }
}

.mat-pain-solution { padding: 4rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.mat-pain-solution h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.35rem, 2.6vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 .65rem;
}
.mat-pain-solution__sub { text-align: center; color: rgba(255,255,255,.55); margin-bottom: 2.5rem; line-height: 1.8; }
.mat-pain-solution__grid { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 768px) {
    .mat-pain-solution__grid { grid-template-columns: 1fr auto 1fr; }
}
.mat-pain-card, .mat-solution-card { border: 1px solid rgba(255,255,255,.07); border-radius: .875rem; padding: 1.75rem; background: rgba(255,255,255,.02); }
.mat-pain-card { border-color: rgba(217,83,79,.18); }
.mat-solution-card { border-color: rgba(29,138,156,.18); }
.mat-pain-card h3, .mat-solution-card h3 { font-family: "Bricolage Grotesque", sans-serif; font-size: .95rem; font-weight: 700; color: #fff; margin: 0 0 1rem; }
.mat-pain-card ul, .mat-solution-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.mat-pain-card li, .mat-solution-card li { display: flex; align-items: flex-start; gap: .5rem; font-size: .88rem; }
.mat-pain-card li { color: rgba(255,255,255,.6); }
.mat-pain-card li::before { content: "✗"; color: #d9534f; font-weight: 700; flex-shrink: 0; }
.mat-solution-card li { color: rgba(255,255,255,.78); }
.mat-solution-card li::before { content: "✓"; color: var(--c-primary, #1d8a9c); font-weight: 700; flex-shrink: 0; }
.mat-pain-solution__arrow { display: flex; align-items: center; justify-content: center; color: var(--c-primary, #1d8a9c); opacity: .6; }
@media (max-width: 767px) { .mat-pain-solution__arrow { transform: rotate(90deg); } }

.mat-benefits { padding: 4rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.mat-benefits__grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
    .mat-benefits__grid { grid-template-columns: repeat(4, 1fr); }
}
.mat-benefit-card {
    text-align: center;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: .875rem;
    padding: 2rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .65rem;
    transition: border-color .2s;
}
.mat-benefit-card:hover { border-color: rgba(29,138,156,.25); }
.mat-benefit-card h3 { font-family: "Bricolage Grotesque", sans-serif; font-size: .95rem; font-weight: 700; color: #fff; margin: 0; }
.mat-benefit-card p { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.7; margin: 0; }

.mat-testimonial { padding: 4rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.mat-testimonial__card {
    max-width: 44rem;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
}
.mat-testimonial__stars { color: #f59e0b; letter-spacing: .1em; margin-bottom: 1.25rem; font-size: 1.1rem; }
.mat-testimonial__text { font-size: clamp(.95rem, 1.8vw, 1.1rem); color: rgba(255,255,255,.82); line-height: 1.9; margin: 0 0 1.5rem; font-style: italic; }
.mat-testimonial__author { display: flex; align-items: center; justify-content: center; gap: .85rem; }
.mat-testimonial__avatar { width: 2.75rem; height: 2.75rem; border-radius: 999px; overflow: hidden; border: 2px solid var(--c-primary, #1d8a9c); flex-shrink: 0; }
.mat-testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.mat-testimonial__name { font-weight: 700; color: #fff; font-size: .9rem; }
.mat-testimonial__role { color: rgba(255,255,255,.45); font-size: .82rem; }

.mat-license { padding: 4rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.mat-license__badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .8rem;
    border-radius: 999px;
    background: rgba(29,138,156,.1);
    border: 1px solid rgba(29,138,156,.25);
    color: var(--c-primary, #1d8a9c);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 1rem;
}
.mat-license__grid { display: grid; grid-template-columns: 1fr; gap: .85rem; margin-top: 2rem; }
@media (min-width: 640px) { .mat-license__grid { grid-template-columns: 1fr 1fr; } }
.mat-license__item { display: flex; align-items: flex-start; gap: .85rem; padding: 1.1rem; background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.06); border-radius: .75rem; }
.mat-license__icon { flex-shrink: 0; width: 1.85rem; height: 1.85rem; display: flex; align-items: center; justify-content: center; border-radius: .45rem; background: rgba(29,138,156,.1); color: var(--c-primary, #1d8a9c); }
.mat-license__item h4 { font-family: "Bricolage Grotesque", sans-serif; font-size: .88rem; font-weight: 700; color: #fff; margin: 0 0 .25rem; }
.mat-license__item p { color: rgba(255,255,255,.5); font-size: .82rem; line-height: 1.6; margin: 0; }
.mat-license__disclaimer { margin-top: 1.5rem; color: rgba(255,255,255,.3); font-size: .78rem; text-align: center; }

.mat-demand { padding: 4rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.mat-demand__inner { background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.07); border-radius: 1rem; padding: 2.5rem 2rem; display: grid; gap: 2rem; }
@media (min-width: 768px) { .mat-demand__inner { grid-template-columns: 1fr auto; align-items: center; } }
.mat-demand h2 { font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 700; color: #fff; margin: 0 0 .75rem; }
.mat-demand__text { color: rgba(255,255,255,.6); line-height: 1.8; margin: 0 0 1.25rem; }
.mat-demand__bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.mat-demand__bullets li { display: flex; align-items: flex-start; gap: .5rem; color: rgba(255,255,255,.68); font-size: .88rem; }
.mat-demand__bullets li::before { content: "→"; color: var(--c-primary, #1d8a9c); font-weight: 700; flex-shrink: 0; }

.mat-cta { padding: 4rem 0; background: rgba(29,138,156,.055); border-top: 1px solid rgba(29,138,156,.13); border-bottom: 1px solid rgba(29,138,156,.13); text-align: center; }
.mat-cta h2 { font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 700; color: #fff; margin: 0 0 .65rem; }
.mat-cta > .site2026-container > p { color: rgba(255,255,255,.6); margin: 0 auto 2rem; max-width: 36rem; line-height: 1.8; }
.mat-cta__meta { margin-top: 1.25rem; color: rgba(255,255,255,.4); font-size: .82rem; }

.mat-faq { padding: 4rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.mat-faq__list { max-width: 52rem; margin: 0 auto; border: 1px solid rgba(255,255,255,.07); border-radius: .875rem; overflow: hidden; }
.mat-faq__item { border-bottom: 1px solid rgba(255,255,255,.06); }
.mat-faq__item:last-child { border-bottom: none; }
.mat-faq__group-title { padding: .75rem 1.5rem; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.3); background: rgba(255,255,255,.02); border-bottom: 1px solid rgba(255,255,255,.05); }
.mat-faq__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.5rem; background: transparent; border: none; cursor: pointer; text-align: left; transition: background .15s; }
.mat-faq__trigger:hover { background: rgba(255,255,255,.025); }
.mat-faq__question { font-family: "Bricolage Grotesque", sans-serif; font-size: .95rem; font-weight: 600; color: #fff; line-height: 1.4; }
.mat-faq__icon { flex-shrink: 0; width: 1.2rem; height: 1.2rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; transition: transform .22s, background .18s, border-color .18s; position: relative; }
.mat-faq__icon::after { content: ""; display: block; width: .5rem; height: .5rem; border-right: 1.5px solid rgba(255,255,255,.65); border-bottom: 1.5px solid rgba(255,255,255,.65); transform: translateY(-1px) rotate(45deg); }
.mat-faq__icon--open { background: var(--c-primary, #1d8a9c); border-color: var(--c-primary, #1d8a9c); transform: rotate(180deg); }
.mat-faq__answer { padding: 0 1.5rem 1.15rem; color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.8; }
.mat-faq__answer p { color: rgba(255,255,255,.6); }

/* Material Didatico aligned with site2026 */

.material-didatico-page .mat-segment {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 252, 0.96));
    border-bottom: 1px solid var(--site2026-border);
    backdrop-filter: blur(12px);
}

.material-didatico-page .mat-segment__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem 0 1.15rem;
    overflow: visible;
}

.material-didatico-page .mat-segment__btn {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 0.9rem;
    min-height: 7.4rem;
    padding: 1rem 1rem 1rem 1.05rem;
    border-color: rgba(20, 58, 69, 0.12);
    border-radius: 1.2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 251, 0.94));
    box-shadow: 0 14px 30px rgba(16, 59, 69, 0.07);
    color: var(--site2026-neutral-600);
    font-weight: 600;
    white-space: normal;
    overflow: hidden;
}

.material-didatico-page .mat-segment__btn:hover {
    border-color: rgba(29, 138, 156, 0.24);
    background: #ffffff;
    color: var(--site2026-primary-700);
    transform: translateY(-2px);
}

.material-didatico-page .mat-segment__btn::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--site2026-primary-400), var(--site2026-primary-600));
    opacity: 0.75;
}

.material-didatico-page .mat-segment__btn::after {
    content: "\2192";
    align-self: center;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(20, 58, 69, 0.34);
    transition: transform .2s, color .2s;
}

.material-didatico-page .mat-segment__btn:hover::after {
    color: var(--site2026-primary-700);
    transform: translateX(3px);
}

.material-didatico-page .mat-segment__btn > svg,
.material-didatico-page .mat-segment__svg {
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.material-didatico-page .mat-segment__svg {
    object-fit: contain;
    opacity: 0.92;
}

.material-didatico-page .mat-segment__content {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
    min-width: 0;
}

.material-didatico-page .mat-segment__eyebrow {
    font-size: 0.68rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(20, 58, 69, 0.42);
}

.material-didatico-page .mat-segment__title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1rem;
    line-height: 1.18;
    font-weight: 700;
    color: var(--site2026-neutral-900);
}

.material-didatico-page .mat-segment__meta {
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--site2026-neutral-600);
}

.material-didatico-page .mat-segment__btn--active,
.material-didatico-page .mat-segment__btn--active:hover {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 34%),
        linear-gradient(135deg, var(--site2026-primary-500), var(--site2026-primary-700));
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(29, 138, 156, 0.24);
}

.material-didatico-page .mat-segment__btn--active::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.24));
    opacity: 1;
}

.material-didatico-page .mat-segment__btn--active::after,
.material-didatico-page .mat-segment__btn--active:hover::after,
.material-didatico-page .mat-segment__btn--active .mat-segment__eyebrow,
.material-didatico-page .mat-segment__btn--active .mat-segment__meta,
.material-didatico-page .mat-segment__btn--active .mat-segment__title {
    color: #ffffff;
}

.material-didatico-page .mat-segment__btn--active .mat-segment__svg {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.material-didatico-page .mat-segment__btn:nth-child(2)::before {
    background: linear-gradient(180deg, var(--site2026-accent-400), var(--site2026-accent-600));
}

.material-didatico-page .mat-segment__btn:nth-child(3)::before {
    background: linear-gradient(180deg, var(--site2026-neutral-500), var(--site2026-neutral-700));
}

@media (min-width: 900px) {
    .material-didatico-page .mat-segment__inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.material-didatico-page .mat-stats,
.material-didatico-page .mat-hero,
.material-didatico-page .mat-formats,
.material-didatico-page .mat-pain-solution,
.material-didatico-page .mat-benefits,
.material-didatico-page .mat-testimonial,
.material-didatico-page .mat-license,
.material-didatico-page .mat-demand,
.material-didatico-page .mat-cta,
.material-didatico-page .mat-faq {
    border-top-color: rgba(20, 58, 69, 0.08);
}

.material-didatico-page .mat-formats,
.material-didatico-page .mat-benefits,
.material-didatico-page .mat-license,
.material-didatico-page .mat-faq {
    background: linear-gradient(180deg, rgba(239, 249, 251, 0.52), rgba(255, 255, 255, 0.24));
}

.material-didatico-page .mat-hero,
.material-didatico-page .mat-license,
.material-didatico-page .mat-faq {
    position: relative;
}

.material-didatico-page .mat-hero::before,
.material-didatico-page .mat-license::before,
.material-didatico-page .mat-faq::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 18%, rgba(29, 138, 156, 0.12), transparent 24%),
        radial-gradient(circle at 88% 78%, rgba(217, 83, 79, 0.08), transparent 24%);
}

.material-didatico-page .mat-hero > .site2026-container,
.material-didatico-page .mat-license > .site2026-container,
.material-didatico-page .mat-faq > .site2026-container {
    position: relative;
    z-index: 1;
}

.material-didatico-page .mat-stats__item,
.material-didatico-page .mat-format-card,
.material-didatico-page .mat-benefit-card,
.material-didatico-page .mat-pain-card,
.material-didatico-page .mat-solution-card,
.material-didatico-page .mat-testimonial__card,
.material-didatico-page .mat-license__item,
.material-didatico-page .mat-demand__inner,
.material-didatico-page .mat-faq__list {
    border-color: rgba(20, 58, 69, 0.10);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 22px 46px rgba(16, 59, 69, 0.08);
    backdrop-filter: blur(12px);
}

.material-didatico-page .mat-stats__value,
.material-didatico-page .mat-format-card h3,
.material-didatico-page .mat-benefit-card h3,
.material-didatico-page .mat-pain-solution h2,
.material-didatico-page .mat-pain-card h3,
.material-didatico-page .mat-solution-card h3,
.material-didatico-page .mat-testimonial__name,
.material-didatico-page .mat-license__item h4,
.material-didatico-page .mat-demand h2,
.material-didatico-page .mat-cta h2,
.material-didatico-page .mat-faq__question {
    color: var(--site2026-neutral-900);
}

.material-didatico-page .mat-stats__label,
.material-didatico-page .mat-format-card p,
.material-didatico-page .mat-benefit-card p,
.material-didatico-page .mat-pain-card li,
.material-didatico-page .mat-solution-card li,
.material-didatico-page .mat-testimonial__role,
.material-didatico-page .mat-license__item p,
.material-didatico-page .mat-cta__meta,
.material-didatico-page .mat-faq__answer,
.material-didatico-page .mat-faq__answer p {
    color: var(--site2026-neutral-600);
}

.material-didatico-page .mat-stats__suffix,
.material-didatico-page .mat-stats__icon,
.material-didatico-page .mat-format-card__demo,
.material-didatico-page .mat-pain-solution__arrow,
.material-didatico-page .mat-license__badge,
.material-didatico-page .mat-license__icon {
    color: var(--site2026-primary-600);
}

.material-didatico-page .mat-format-card:hover,
.material-didatico-page .mat-benefit-card:hover {
    border-color: rgba(29, 138, 156, 0.24);
    background: #ffffff;
    box-shadow: 0 26px 52px rgba(16, 59, 69, 0.10);
    transform: translateY(-3px);
}

.material-didatico-page .mat-hero__grid > div > .mat-hero__text:first-of-type {
    display: none;
}

.material-didatico-page .mat-section-header {
    max-width: 50rem;
    margin-right: auto;
    margin-left: auto;
}

.material-didatico-page .mat-section-header h2 {
    color: var(--site2026-neutral-900);
}

.material-didatico-page .mat-section-header p {
    color: var(--site2026-neutral-700);
}

.material-didatico-page .mat-testimonial__card {
    border-color: rgba(20, 58, 69, 0.14);
    background:
        radial-gradient(circle at top right, rgba(29, 138, 156, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 250, 0.94));
    box-shadow:
        0 28px 58px rgba(16, 59, 69, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.material-didatico-page .mat-testimonial__text {
    color: var(--site2026-neutral-800);
}

.material-didatico-page .mat-format-card__demo:hover {
    color: var(--site2026-primary-700);
}

.material-didatico-page .mat-preview-modal__dialog {
    border-color: rgba(20, 58, 69, 0.14);
    background:
        radial-gradient(circle at top right, rgba(29, 138, 156, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 250, 0.98));
    box-shadow: 0 34px 86px rgba(16, 59, 69, 0.18);
}

.material-didatico-page .mat-preview-modal__header {
    border-bottom-color: rgba(20, 58, 69, 0.10);
}

.material-didatico-page .mat-preview-modal__eyebrow {
    color: var(--site2026-primary-700);
}

.material-didatico-page .mat-preview-modal__title {
    color: var(--site2026-neutral-900);
}

.material-didatico-page .mat-preview-modal__link,
.material-didatico-page .mat-preview-modal__close {
    border-color: rgba(20, 58, 69, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: var(--site2026-neutral-800);
}

.material-didatico-page .mat-preview-modal__link:hover,
.material-didatico-page .mat-preview-modal__close:hover {
    border-color: rgba(29, 138, 156, 0.24);
    background: #ffffff;
    color: var(--site2026-primary-700);
}

.material-didatico-page .mat-preview-modal__body,
.material-didatico-page .mat-preview-modal__frame {
    background: rgba(230, 239, 241, 0.95);
}

.material-didatico-page .mat-pain-card {
    border-color: rgba(217, 83, 79, 0.18);
}

.material-didatico-page .mat-solution-card {
    display: flex;
    flex-direction: column;
    border-color: rgba(29, 138, 156, 0.18);
}

.material-didatico-page .mat-solution-card > h3 {
    order: 1;
}

.material-didatico-page .mat-solution-card__replacement {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.material-didatico-page .mat-solution-card > ul:not(.mat-solution-card__replacement) {
    display: none;
}

.material-didatico-page .mat-hero__headline,
.material-didatico-page .mat-hero__text,
.material-didatico-page .mat-pain-solution__sub,
.material-didatico-page .mat-license__disclaimer,
.material-didatico-page .mat-demand__text,
.material-didatico-page .mat-cta > .site2026-container > p {
    color: var(--site2026-neutral-600) !important;
}

.material-didatico-page .mat-hero__headline,
.material-didatico-page .mat-pain-solution h2,
.material-didatico-page .mat-demand h2,
.material-didatico-page .mat-cta h2 {
    color: var(--site2026-neutral-900) !important;
}

.material-didatico-page .mat-hero__video {
    border-color: rgba(20, 58, 69, 0.12);
    border-radius: 1.15rem;
    box-shadow: var(--site2026-shadow-panel);
}

.material-didatico-page .mat-hero__list li {
    color: var(--site2026-neutral-700);
}

.material-didatico-page .mat-hero__list li::before {
    content: "\2713";
    color: var(--site2026-primary-500);
}

.material-didatico-page .mat-pain-card li::before {
    content: "\2715";
    color: var(--site2026-accent-500);
}

.material-didatico-page .mat-solution-card li::before {
    content: "\2713";
    color: var(--site2026-primary-500);
}

.material-didatico-page .mat-license__badge {
    border-color: rgba(29, 138, 156, 0.22);
    background: rgba(29, 138, 156, 0.08);
}


.material-didatico-page .mat-license__disclaimer {
    color: var(--site2026-neutral-500) !important;
}

.material-didatico-page .mat-demand__text {
    color: var(--site2026-neutral-600) !important;
}

.material-didatico-page .mat-demand__bullets li {
    color: var(--site2026-neutral-700);
}

.material-didatico-page .mat-demand__bullets li::before {
    content: "\2192";
    color: var(--site2026-primary-500);
}

.material-didatico-page .mat-cta {
    background:
        radial-gradient(circle at top left, rgba(29, 138, 156, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(239, 249, 251, 0.95), rgba(255, 255, 255, 0.96));
    border-top-color: rgba(29, 138, 156, 0.14);
    border-bottom-color: rgba(29, 138, 156, 0.14);
}

.material-didatico-page .mat-faq__item {
    border-bottom-color: rgba(20, 58, 69, 0.08);
}

.material-didatico-page .mat-faq__group-title {
    color: var(--site2026-neutral-500);
    background: rgba(29, 138, 156, 0.06);
    border-bottom-color: rgba(20, 58, 69, 0.06);
}

.material-didatico-page .mat-faq__trigger:hover {
    background: rgba(29, 138, 156, 0.04);
}

.material-didatico-page .mat-faq__icon {
    border-color: rgba(20, 58, 69, 0.16);
}

.material-didatico-page .mat-faq__icon::after {
    border-right-color: rgba(67, 81, 90, 0.70);
    border-bottom-color: rgba(67, 81, 90, 0.70);
}

.material-didatico-page .mat-faq__icon--open {
    background: var(--site2026-primary-500);
    border-color: var(--site2026-primary-500);
}

.material-didatico-page .mat-faq__icon--open::after {
    border-right-color: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.92);
}

.material-didatico-page .mat-faq__replacement + p[itemprop="text"] {
    display: none;
}

.mat-license__sample-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.mat-license__sample-link:hover {
    color: inherit;
    text-decoration-thickness: 2px;
}

.material-didatico-cursos-livres-page .mat-segment__btn--active,
.material-didatico-cursos-livres-page .mat-segment__btn--active:hover {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(135deg, var(--site2026-accent-500), var(--site2026-accent-700));
    box-shadow: 0 18px 34px rgba(217, 83, 79, 0.24);
}

.material-didatico-cursos-livres-page .mat-segment__btn--active::before {
    background: rgba(255, 255, 255, 0.26);
}

.material-didatico-cursos-livres-page .mat-stats__suffix,
.material-didatico-cursos-livres-page .mat-format-card__demo,
.material-didatico-cursos-livres-page .mat-license__badge,
.material-didatico-cursos-livres-page .mat-preview-modal__eyebrow {
    color: var(--site2026-accent-600);
}

.material-didatico-cursos-livres-page .mat-format-card:hover,
.material-didatico-cursos-livres-page .mat-benefit-card:hover {
    border-color: rgba(217, 83, 79, 0.24);
}

.material-didatico-cursos-livres-page .mat-format-card__demo:hover,
.material-didatico-cursos-livres-page .mat-preview-modal__link:hover,
.material-didatico-cursos-livres-page .mat-preview-modal__close:hover {
    color: var(--site2026-accent-700);
}

.material-didatico-cursos-livres-page .mat-pain-card {
    border-color: rgba(217, 83, 79, 0.22);
}

.material-didatico-cursos-livres-page .mat-solution-card {
    border-color: rgba(29, 138, 156, 0.16);
}

.material-didatico-cursos-livres-page .mat-pain-solution__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--site2026-accent-500);
}

.material-didatico-cursos-livres-page .mat-license__badge {
    border-color: rgba(217, 83, 79, 0.22);
    background: rgba(217, 83, 79, 0.08);
}

.material-didatico-cursos-livres-page .mat-demand__bullets li::before {
    color: var(--site2026-accent-500);
}

.material-didatico-cursos-livres-page .mat-cta {
    background:
        radial-gradient(circle at top left, rgba(217, 83, 79, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(252, 244, 244, 0.95), rgba(255, 255, 255, 0.96));
    border-top-color: rgba(217, 83, 79, 0.14);
    border-bottom-color: rgba(217, 83, 79, 0.14);
}

.material-didatico-cursos-livres-page .mat-faq__group-title {
    background: rgba(217, 83, 79, 0.06);
}

.material-didatico-cursos-livres-page .mat-faq__trigger:hover {
    background: rgba(217, 83, 79, 0.04);
}

.material-didatico-cursos-livres-page .mat-faq__icon--open {
    background: var(--site2026-accent-500);
    border-color: var(--site2026-accent-500);
}

