/* ==========================================================
   QUESTÕES DE TI - PRODUCT DESIGN V2
   Clean / SaaS / Mobile First
========================================================== */

:root {
    --qti-v2-bg: #ffffff;
    --qti-v2-bg-soft: #f7f9fc;
    --qti-v2-bg-soft-2: #f2f5fa;

    --qti-v2-text: #142033;
    --qti-v2-muted: #67758a;
    --qti-v2-muted-2: #8a96a8;

    --qti-v2-border: #e5eaf1;
    --qti-v2-border-strong: #d8e0ea;

    --qti-v2-primary: #3157d5;
    --qti-v2-primary-dark: #2443ae;
    --qti-v2-indigo: #6255d9;
    --qti-v2-ai-soft: #eef0ff;

    --qti-v2-cta: #ef7d32;
    --qti-v2-cta-hover: #dc6c25;

    --qti-v2-success: #16835d;

    --qti-v2-shadow:
        0 18px 50px rgba(27, 43, 70, .08);

    --qti-v2-shadow-soft:
        0 10px 30px rgba(27, 43, 70, .055);

    --qti-v2-radius: 22px;
}

/* ==========================================================
   GLOBAL
========================================================== */

body {
    background: var(--qti-v2-bg);
}

.qti-v2-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.qti-v2-soft {
    background: var(--qti-v2-bg-soft);
}

.qti-v2-section {
    padding: 68px 0;
}

.qti-v2-section-head {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.qti-v2-section-head > span,
.qti-v2-section-label,
.qti-eyebrow {
    display: inline-flex;
    color: var(--qti-v2-primary);
    font-size: .72rem;
    line-height: 1;
    font-weight: 850;
    letter-spacing: .11em;
}

.qti-v2-section-head h2,
.qti-v2-central-copy h2,
.qti-v2-bank-grid h2,
.qti-v2-lead-grid h2 {
    margin: 12px 0;
    color: var(--qti-v2-text);
    font-size: clamp(1.8rem, 5vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.qti-v2-section-head h2 strong,
.qti-v2-central-copy h2 strong,
.qti-v2-bank-grid h2 strong,
.qti-v2-lead-grid h2 strong {
    color: var(--qti-v2-primary);
    font-weight: inherit;
}

.qti-v2-section-head p,
.qti-v2-central-copy > p,
.qti-v2-bank-grid > div > p,
.qti-v2-lead-grid > div > p {
    color: var(--qti-v2-muted);
    line-height: 1.7;
}

.qti-v2-btn-primary,
.qti-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 13px;
    background: var(--qti-v2-cta);
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    box-shadow:
        0 8px 22px rgba(239, 125, 50, .2);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.qti-v2-btn-primary:hover,
.qti-btn-primary:hover {
    transform: translateY(-1px);
    background: var(--qti-v2-cta-hover);
    box-shadow:
        0 12px 28px rgba(239, 125, 50, .26);
}

.qti-v2-btn-secondary,
.qti-btn-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid var(--qti-v2-border-strong);
    border-radius: 13px;
    background: #fff;
    color: var(--qti-v2-text) !important;
    text-decoration: none;
    font-weight: 750;
}

.qti-v2-link {
    color: var(--qti-v2-primary);
    font-weight: 800;
    text-decoration: none;
}

/* ==========================================================
   NAVEGAÇÃO
========================================================== */

.qti-nav-meu-concurso {
    position: relative;
    gap: 7px;
}

.qti-nav-ai {
    display: inline-grid;
    place-items: center;
    min-width: 25px;
    height: 19px;
    padding: 0 5px;
    border-radius: 6px;
    background: var(--qti-v2-ai-soft);
    color: var(--qti-v2-indigo);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .04em;
}

.qti-submenu-meu-concurso {
    background: #f3f5ff !important;
    color: var(--qti-v2-primary) !important;
    font-weight: 800 !important;
}

.qti-submenu-meu-concurso span {
    color: var(--qti-v2-indigo);
}

/* ==========================================================
   HERO
========================================================== */

.qti-v2-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 54px;
    background:
        radial-gradient(
            circle at 87% 8%,
            rgba(98, 85, 217, .08),
            transparent 29%
        ),
        radial-gradient(
            circle at 7% 12%,
            rgba(49, 87, 213, .06),
            transparent 27%
        ),
        #fff;
}

.qti-v2-hero::after {
    content: "";
    position: absolute;
    inset: auto -180px -280px auto;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(49, 87, 213, .025);
    pointer-events: none;
}

.qti-v2-hero-grid {
    display: grid;
    gap: 42px;
    align-items: center;
}

.qti-v2-badge {
    display: inline-flex;
    padding: 9px 12px;
    border: 1px solid #dfe4ff;
    border-radius: 999px;
    background: #f7f8ff;
    color: var(--qti-v2-indigo);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.qti-v2-hero h1 {
    max-width: 760px;
    margin: 20px 0 18px;
    color: var(--qti-v2-text);
    font-size: clamp(2.45rem, 9vw, 5rem);
    line-height: .99;
    letter-spacing: -.052em;
}

.qti-v2-hero h1 span {
    display: block;
    color: var(--qti-v2-primary);
}

.qti-v2-hero-lead {
    max-width: 680px;
    margin: 0;
    color: var(--qti-v2-muted);
    font-size: 1.05rem;
    line-height: 1.72;
}

.qti-v2-hero-lead strong {
    color: var(--qti-v2-text);
}

.qti-v2-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
}

.qti-v2-proof-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 16px;
    margin-top: 20px;
    color: var(--qti-v2-muted);
    font-size: .83rem;
}

.qti-v2-proof-inline span {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.qti-v2-proof-inline b {
    color: var(--qti-v2-success);
}

/* cockpit */

.qti-v2-cockpit {
    position: relative;
    padding: 14px;
    border: 1px solid var(--qti-v2-border);
    border-radius: 25px;
    background: rgba(255,255,255,.92);
    box-shadow: var(--qti-v2-shadow);
}

.qti-v2-cockpit-top,
.qti-v2-cockpit-head,
.qti-v2-cockpit-progress > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.qti-v2-cockpit-top {
    padding: 3px 3px 15px;
    color: var(--qti-v2-muted-2);
    font-size: .7rem;
}

.qti-v2-cockpit-top div {
    display: flex;
    gap: 5px;
}

.qti-v2-cockpit-top i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d9dfE8;
}

.qti-v2-cockpit-top b {
    color: var(--qti-v2-success);
    font-size: .62rem;
}

.qti-v2-cockpit-head,
.qti-v2-cockpit-progress,
.qti-v2-next {
    border: 1px solid var(--qti-v2-border);
    border-radius: 17px;
    background: #fff;
}

.qti-v2-cockpit-head {
    padding: 18px;
}

.qti-v2-cockpit-head small,
.qti-v2-cockpit-grid small,
.qti-v2-next span {
    display: block;
    color: var(--qti-v2-muted-2);
    font-size: .62rem;
    font-weight: 850;
    letter-spacing: .08em;
}

.qti-v2-cockpit-head strong {
    display: block;
    margin-top: 4px;
    color: var(--qti-v2-text);
    font-size: .96rem;
}

.qti-v2-ai-pill {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--qti-v2-ai-soft);
    color: var(--qti-v2-indigo);
    font-weight: 900;
}

.qti-v2-cockpit-progress {
    margin-top: 10px;
    padding: 15px;
}

.qti-v2-cockpit-progress span {
    color: var(--qti-v2-muted);
    font-size: .75rem;
}

.qti-v2-cockpit-progress b {
    color: var(--qti-v2-primary);
    font-size: .73rem;
}

.qti-v2-progress-track {
    height: 7px;
    margin-top: 11px;
    overflow: hidden;
    border-radius: 999px;
    background: #edf1f6;
}

.qti-v2-progress-track span {
    display: block;
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            var(--qti-v2-primary),
            var(--qti-v2-indigo)
        );
}

.qti-v2-cockpit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
}

.qti-v2-cockpit-grid article {
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: 0;
    padding: 13px;
    border: 1px solid var(--qti-v2-border);
    border-radius: 15px;
    background: #fbfcfe;
}

.qti-v2-cockpit-grid article > span {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: #eef2ff;
    color: var(--qti-v2-primary);
    font-size: .65rem;
    font-weight: 900;
}

.qti-v2-cockpit-grid strong {
    display: block;
    margin-top: 3px;
    overflow: hidden;
    color: var(--qti-v2-text);
    font-size: .76rem;
    text-overflow: ellipsis;
}

.qti-v2-next {
    margin-top: 10px;
    padding: 17px;
    background: #f8f9ff;
}

.qti-v2-next strong {
    display: block;
    margin: 5px 0;
    color: var(--qti-v2-text);
    font-size: .9rem;
}

.qti-v2-next small {
    color: var(--qti-v2-muted);
    line-height: 1.5;
}

/* ==========================================================
   PROOF
========================================================== */

.qti-v2-proof {
    border-top: 1px solid var(--qti-v2-border);
    border-bottom: 1px solid var(--qti-v2-border);
    background: #fff;
}

.qti-v2-proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.qti-v2-proof article {
    padding: 22px 12px;
    text-align: center;
}

.qti-v2-proof strong,
.qti-v2-proof span {
    display: block;
}

.qti-v2-proof strong {
    color: var(--qti-v2-text);
    font-size: 1.35rem;
}

.qti-v2-proof span {
    margin-top: 4px;
    color: var(--qti-v2-muted);
    font-size: .72rem;
}

/* ==========================================================
   PROCESS
========================================================== */

.qti-v2-process {
    display: grid;
    gap: 12px;
}

.qti-v2-process article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    padding: 20px;
    border: 1px solid var(--qti-v2-border);
    border-radius: 18px;
    background: #fff;
}

.qti-v2-process article > span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--qti-v2-bg-soft);
    color: var(--qti-v2-primary);
    font-size: .72rem;
    font-weight: 900;
}

.qti-v2-process small {
    color: var(--qti-v2-muted-2);
    font-size: .61rem;
    font-weight: 850;
    letter-spacing: .08em;
}

.qti-v2-process h3 {
    margin: 5px 0 6px;
    color: var(--qti-v2-text);
    font-size: 1.03rem;
}

.qti-v2-process p {
    margin: 0;
    color: var(--qti-v2-muted);
    font-size: .88rem;
    line-height: 1.6;
}

/* ==========================================================
   FEATURES
========================================================== */

.qti-v2-features {
    display: grid;
    gap: 12px;
}

.qti-v2-features article {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--qti-v2-border);
    border-radius: 19px;
    background: #fff;
    box-shadow: var(--qti-v2-shadow-soft);
}

.qti-v2-feature-main {
    border-color: #dfe3ff !important;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f7f7ff
        ) !important;
}

.qti-v2-feature-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 17px;
    border-radius: 12px;
    background: var(--qti-v2-ai-soft);
    color: var(--qti-v2-indigo);
    font-size: .72rem;
    font-weight: 900;
}

.qti-v2-features small {
    color: var(--qti-v2-primary);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.qti-v2-features h3 {
    margin: 7px 0 8px;
    color: var(--qti-v2-text);
    font-size: 1.08rem;
}

.qti-v2-features p {
    margin: 0;
    color: var(--qti-v2-muted);
    font-size: .88rem;
    line-height: 1.62;
}

.qti-v2-center-action {
    margin-top: 28px;
    text-align: center;
}

/* ==========================================================
   CENTRAL
========================================================== */

.qti-v2-central-grid,
.qti-v2-bank-grid,
.qti-v2-lead-grid,
.qti-v2-faq-grid {
    display: grid;
    gap: 30px;
    align-items: center;
}

.qti-v2-central-copy ul {
    display: grid;
    gap: 10px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.qti-v2-central-copy li {
    display: flex;
    gap: 9px;
    color: var(--qti-v2-text);
    font-size: .9rem;
}

.qti-v2-central-copy li b {
    color: var(--qti-v2-success);
}

.qti-v2-central-demo {
    padding: 14px;
    border: 1px solid var(--qti-v2-border);
    border-radius: 23px;
    background: #fff;
    box-shadow: var(--qti-v2-shadow);
}

.qti-v2-central-demo > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8px 18px;
}

.qti-v2-central-demo header small,
.qti-v2-task-main small,
.qti-v2-mini-grid small {
    display: block;
    color: var(--qti-v2-muted-2);
    font-size: .61rem;
    font-weight: 850;
    letter-spacing: .08em;
}

.qti-v2-central-demo header strong {
    display: block;
    margin-top: 3px;
    color: var(--qti-v2-text);
}

.qti-v2-central-demo header > span {
    padding: 6px 9px;
    border-radius: 999px;
    background: #eef8f4;
    color: var(--qti-v2-success);
    font-size: .65rem;
    font-weight: 800;
}

.qti-v2-task-main {
    padding: 20px;
    border-radius: 17px;
    background:
        linear-gradient(
            135deg,
            #f4f6ff,
            #fafbff
        );
}

.qti-v2-task-main h3 {
    margin: 8px 0 13px;
    color: var(--qti-v2-text);
    font-size: 1.02rem;
    line-height: 1.4;
}

.qti-v2-task-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.qti-v2-task-meta span {
    padding: 6px 8px;
    border-radius: 8px;
    background: #fff;
    color: var(--qti-v2-muted);
    font-size: .65rem;
}

.qti-v2-task-bar {
    height: 7px;
    margin-top: 17px;
    overflow: hidden;
    border-radius: 999px;
    background: #e6e9f2;
}

.qti-v2-task-bar span {
    display: block;
    width: 61%;
    height: 100%;
    background: var(--qti-v2-primary);
}

.qti-v2-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}

.qti-v2-mini-grid article {
    padding: 15px;
    border: 1px solid var(--qti-v2-border);
    border-radius: 14px;
}

.qti-v2-mini-grid strong,
.qti-v2-mini-grid span {
    display: block;
}

.qti-v2-mini-grid strong {
    margin: 5px 0 3px;
    color: var(--qti-v2-text);
    font-size: .85rem;
}

.qti-v2-mini-grid span {
    color: var(--qti-v2-muted);
    font-size: .68rem;
}

/* ==========================================================
   BANCO
========================================================== */

.qti-v2-bank-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 20px 0 24px;
}

.qti-v2-bank-tags span {
    padding: 7px 10px;
    border: 1px solid var(--qti-v2-border);
    border-radius: 999px;
    background: #fff;
    color: var(--qti-v2-muted);
    font-size: .72rem;
}

.qti-v2-question-demo {
    padding: 20px;
    border: 1px solid var(--qti-v2-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--qti-v2-shadow-soft);
}

.qti-v2-question-demo header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.qti-v2-question-demo header small,
.qti-v2-question-demo header strong {
    display: block;
}

.qti-v2-question-demo header small {
    color: var(--qti-v2-muted-2);
    font-size: .62rem;
}

.qti-v2-question-demo header strong {
    margin-top: 4px;
    color: var(--qti-v2-text);
}

.qti-v2-question-demo header > span {
    height: fit-content;
    padding: 6px 8px;
    border-radius: 8px;
    background: var(--qti-v2-ai-soft);
    color: var(--qti-v2-primary);
    font-size: .67rem;
    font-weight: 800;
}

.qti-v2-question-demo > p {
    color: var(--qti-v2-text);
    line-height: 1.6;
}

.qti-v2-question-lines {
    display: grid;
    gap: 7px;
    margin: 18px 0;
}

.qti-v2-question-lines div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px;
    border: 1px solid var(--qti-v2-border);
    border-radius: 10px;
}

.qti-v2-question-lines b {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: var(--qti-v2-bg-soft);
    color: var(--qti-v2-primary);
    font-size: .7rem;
}

.qti-v2-question-lines span {
    color: var(--qti-v2-muted);
    font-size: .78rem;
    line-height: 1.5;
}

.qti-v2-question-demo > a {
    color: var(--qti-v2-primary);
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
}

/* ==========================================================
   PLANOS
========================================================== */

.qti-v2-plans {
    display: grid;
    gap: 14px;
}

.qti-v2-plans > article {
    position: relative;
    padding: 25px;
    border: 1px solid var(--qti-v2-border);
    border-radius: 20px;
    background: #fff;
}

.qti-v2-plans > article.is-featured {
    border-color: #d8dcff;
    box-shadow: var(--qti-v2-shadow);
}

.qti-v2-plan-badge {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 8px;
    border-radius: 7px;
    background: var(--qti-v2-ai-soft);
    color: var(--qti-v2-indigo);
    font-size: .62rem;
    font-weight: 900;
}

.qti-v2-plans h3 {
    margin: 0;
    color: var(--qti-v2-text);
    font-size: 1.25rem;
}

.qti-v2-plans p {
    color: var(--qti-v2-muted);
    line-height: 1.6;
}

.qti-v2-price {
    margin: 20px 0;
}

.qti-v2-price strong {
    color: var(--qti-v2-text);
    font-size: 1.8rem;
}

.qti-v2-price span {
    color: var(--qti-v2-muted);
}

.qti-v2-plans ul {
    display: grid;
    gap: 10px;
    margin: 0 0 23px;
    padding: 0;
    list-style: none;
}

.qti-v2-plans li {
    color: var(--qti-v2-muted);
    font-size: .85rem;
}

.qti-v2-plans li b {
    margin-right: 6px;
    color: var(--qti-v2-success);
}

/* ==========================================================
   FAQ / LEAD
========================================================== */

.qti-v2-align-left {
    margin-inline: 0;
    text-align: left;
}

.qti-v2-faq {
    display: grid;
    gap: 9px;
}

.qti-v2-faq details {
    border: 1px solid var(--qti-v2-border);
    border-radius: 14px;
    background: #fff;
}

.qti-v2-faq summary {
    padding: 17px;
    color: var(--qti-v2-text);
    font-weight: 750;
    cursor: pointer;
}

.qti-v2-faq details p {
    margin: 0;
    padding: 0 17px 18px;
    color: var(--qti-v2-muted);
    line-height: 1.65;
}

.qti-v2-lead-form {
    display: grid;
    gap: 13px;
    padding: 22px;
    border: 1px solid var(--qti-v2-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--qti-v2-shadow-soft);
}

.qti-v2-lead-form > div {
    display: grid;
    gap: 6px;
}

.qti-v2-lead-form label {
    color: var(--qti-v2-text);
    font-size: .78rem;
    font-weight: 750;
}

.qti-v2-lead-form input:not([type="checkbox"]),
.qti-v2-lead-form select,
.qti-v2-lead-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid var(--qti-v2-border-strong);
    border-radius: 11px;
    background: #fff;
    color: var(--qti-v2-text);
    font: inherit;
}

.qti-v2-consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: var(--qti-v2-muted) !important;
    line-height: 1.5;
}

/* ==========================================================
   CTA FINAL
========================================================== */

.qti-v2-final {
    padding: 68px 0 82px;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(98,85,217,.08),
            transparent 35%
        ),
        #f7f9fc;
    text-align: center;
}

.qti-v2-final > div {
    max-width: 800px;
}

.qti-v2-final > div > span {
    color: var(--qti-v2-primary);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .09em;
}

.qti-v2-final h2 {
    margin: 14px auto 12px;
    color: var(--qti-v2-text);
    font-size: clamp(2rem, 7vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.qti-v2-final p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--qti-v2-muted);
    line-height: 1.7;
}

.qti-v2-final > div > div {
    display: flex;
    flex-direction: column;
    gap: 13px;
    justify-content: center;
    margin-top: 25px;
}

.qti-v2-final-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    color: var(--qti-v2-primary);
    font-weight: 800;
    text-decoration: none;
}

/* ==========================================================
   PAINEL LOGADO - MEU CONCURSO
========================================================== */

.qti-study-hub {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 16px;
}

.qti-study-hub-inner {
    display: grid;
    gap: 26px;
    padding: 24px;
    border: 1px solid #e0e5f0;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(98,85,217,.08),
            transparent 35%
        ),
        #fff;
    box-shadow: var(--qti-v2-shadow-soft);
}

.qti-study-hub-copy h2 {
    margin: 11px 0 10px;
    color: var(--qti-v2-text);
    font-size: clamp(1.7rem, 6vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.qti-study-hub-copy h2 span {
    display: block;
    color: var(--qti-v2-primary);
}

.qti-study-hub-copy > p {
    max-width: 590px;
    margin: 0;
    color: var(--qti-v2-muted);
    line-height: 1.65;
}

.qti-study-hub-actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 20px;
}

.qti-study-hub-flow {
    padding: 16px;
    border: 1px solid var(--qti-v2-border);
    border-radius: 18px;
    background: #fafbfe;
}

.qti-study-flow-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 12px;
}

.qti-study-flow-head span {
    color: var(--qti-v2-text);
    font-size: .72rem;
    font-weight: 900;
}

.qti-study-flow-head b {
    color: var(--qti-v2-indigo);
    font-size: .62rem;
}

.qti-study-flow-line {
    display: grid;
    gap: 7px;
}

.qti-study-flow-line article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    background: #fff;
}

.qti-study-flow-line i {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border-radius: 8px;
    background: var(--qti-v2-ai-soft);
    color: var(--qti-v2-primary);
    font-size: .62rem;
    font-style: normal;
    font-weight: 900;
}

.qti-study-flow-line strong,
.qti-study-flow-line span {
    display: block;
}

.qti-study-flow-line strong {
    color: var(--qti-v2-text);
    font-size: .77rem;
}

.qti-study-flow-line span {
    margin-top: 2px;
    color: var(--qti-v2-muted);
    font-size: .65rem;
}

.qti-study-shortcuts {
    display: grid;
    gap: 9px;
    margin-top: 10px;
}

.qti-study-shortcuts > a {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 11px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--qti-v2-border);
    border-radius: 15px;
    background: #fff;
    color: inherit;
    text-decoration: none;
}

.qti-shortcut-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: var(--qti-v2-ai-soft);
    color: var(--qti-v2-indigo);
    font-size: .62rem;
    font-weight: 900;
}

.qti-study-shortcuts strong,
.qti-study-shortcuts small {
    display: block;
}

.qti-study-shortcuts strong {
    color: var(--qti-v2-text);
    font-size: .85rem;
}

.qti-study-shortcuts small {
    margin-top: 2px;
    color: var(--qti-v2-muted);
    font-size: .68rem;
}

.qti-study-shortcuts b {
    color: var(--qti-v2-primary);
}

/* ==========================================================
   PROFESSOR HOME - CLAREAR COMPONENTE EXISTENTE
========================================================== */

.landing-professor-home {
    background: #fff !important;
}

.landing-professor-demo,
.landing-professor-painel-demo {
    border-color: var(--qti-v2-border) !important;
    background: #f8f9fc !important;
    color: var(--qti-v2-text) !important;
}

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

@media (min-width: 680px) {
    .qti-v2-actions,
    .qti-study-hub-actions,
    .qti-v2-final > div > div {
        flex-direction: row;
        align-items: center;
    }

    .qti-v2-proof-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

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

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

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

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

@media (min-width: 920px) {
    .qti-v2-hero {
        padding: 92px 0 78px;
    }

    .qti-v2-hero-grid {
        grid-template-columns:
            minmax(0, 1.08fr)
            minmax(420px, .92fr);
        gap: 64px;
    }

    .qti-v2-section {
        padding: 92px 0;
    }

    .qti-v2-process {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .qti-v2-features {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .qti-v2-feature-main {
        grid-column: span 2;
    }

    .qti-v2-central-grid,
    .qti-v2-bank-grid,
    .qti-v2-lead-grid {
        grid-template-columns:
            minmax(0, .9fr)
            minmax(430px, 1.1fr);
        gap: 70px;
    }

    .qti-v2-faq-grid {
        grid-template-columns:
            minmax(280px, .7fr)
            minmax(0, 1.3fr);
        align-items: start;
        gap: 70px;
    }

    .qti-v2-plans {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
        justify-content: center;
    }

    .qti-study-hub-inner {
        grid-template-columns:
            minmax(0, 1.05fr)
            minmax(400px, .95fr);
        padding: 31px;
    }

    .qti-study-shortcuts {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }
}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 420px) {
    .qti-v2-container,
    .qti-study-hub {
        width: min(100% - 24px, 1180px);
    }

    .qti-v2-hero {
        padding-top: 42px;
    }

    .qti-v2-hero h1 {
        font-size: 2.38rem;
    }

    .qti-v2-cockpit-grid {
        grid-template-columns: 1fr;
    }

    .qti-v2-mini-grid {
        grid-template-columns: 1fr;
    }

    .qti-v2-proof article {
        padding-inline: 6px;
    }

    .qti-study-hub-inner {
        padding: 18px;
    }
}


/* ==========================================================
   QTI_HOME_CONTRASTE_CLEAN_V3
   Mais profundidade sem voltar ao visual pesado
========================================================== */


/* ----------------------------------------------------------
   BASE DA HOME
---------------------------------------------------------- */

.qti-v2-hero {
    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(80, 92, 220, .13),
            transparent 31%
        ),
        radial-gradient(
            circle at 4% 35%,
            rgba(49, 87, 213, .085),
            transparent 27%
        ),
        linear-gradient(
            180deg,
            #f7f9ff 0%,
            #ffffff 72%
        ) !important;
}


/* ----------------------------------------------------------
   HERO
---------------------------------------------------------- */

.qti-v2-hero h1 {
    color: #101c31 !important;
}

.qti-v2-hero h1 span {
    color: #3158dc !important;
}

.qti-v2-hero-lead {
    color: #526176 !important;
}

.qti-v2-hero-lead strong {
    color: #17243a !important;
}

.qti-v2-badge {
    border-color: #cfd7ff !important;
    background: #f1f3ff !important;
    color: #5148ce !important;
}


/* ----------------------------------------------------------
   VISUAL DO PRODUTO
---------------------------------------------------------- */

.qti-v2-cockpit {
    border-color: #d5dceb !important;

    background:
        linear-gradient(
            160deg,
            #ffffff,
            #f6f8fd
        ) !important;

    box-shadow:
        0 28px 70px rgba(29, 45, 78, .13) !important;
}

.qti-v2-cockpit-head,
.qti-v2-cockpit-progress,
.qti-v2-cockpit-grid article {
    border-color: #dce2ed !important;
}

.qti-v2-cockpit-grid article {
    background: #ffffff !important;
}


/* ----------------------------------------------------------
   MÉTRICAS ABAIXO DO HERO
---------------------------------------------------------- */

.qti-v2-proof {
    background: #172235 !important;
    border: 0 !important;
}

.qti-v2-proof article {
    position: relative;
}

.qti-v2-proof article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: rgba(255,255,255,.10);
}

.qti-v2-proof strong {
    color: #ffffff !important;
}

.qti-v2-proof span {
    color: #aeb9ca !important;
}


/* ----------------------------------------------------------
   SEÇÕES - ALTERNÂNCIA VISUAL
---------------------------------------------------------- */

.qti-v2-section {
    background: #ffffff;
}

.qti-v2-section.qti-v2-soft {
    background:
        linear-gradient(
            180deg,
            #f3f6fb,
            #f8fafd
        ) !important;
}


/* Seções seguintes ganham leve variação */
.qti-v2-section:nth-of-type(even) {
    border-top: 1px solid rgba(220, 226, 237, .55);
    border-bottom: 1px solid rgba(220, 226, 237, .55);
}


/* ----------------------------------------------------------
   CABEÇALHOS
---------------------------------------------------------- */

.qti-v2-section-head > span,
.qti-v2-section-label {
    color: #3157d5 !important;
}

.qti-v2-section-head h2,
.qti-v2-central-copy h2,
.qti-v2-bank-grid h2,
.qti-v2-lead-grid h2 {
    color: #142033 !important;
}

.qti-v2-section-head p,
.qti-v2-central-copy > p,
.qti-v2-bank-grid > div > p,
.qti-v2-lead-grid > div > p {
    color: #5d6c80 !important;
}


/* ----------------------------------------------------------
   PROCESSO
---------------------------------------------------------- */

.qti-v2-process article {
    border-color: #dde3ed !important;
    background: #ffffff !important;

    box-shadow:
        0 9px 28px rgba(25, 43, 72, .055);
}

.qti-v2-process h3 {
    color: #17243a !important;
}

.qti-v2-process p {
    color: #617085 !important;
}


/* ----------------------------------------------------------
   CARDS DE FUNCIONALIDADES
---------------------------------------------------------- */

.qti-v2-features article {
    border-color: #dce2ec !important;

    background:
        linear-gradient(
            155deg,
            #ffffff,
            #fbfcff
        ) !important;

    box-shadow:
        0 14px 38px rgba(31, 46, 75, .075) !important;
}

.qti-v2-feature-main {
    border-color: #ccd4ff !important;

    background:
        linear-gradient(
            145deg,
            #f8f8ff,
            #ffffff
        ) !important;
}

.qti-v2-features h3 {
    color: #18253a !important;
}

.qti-v2-features p {
    color: #627186 !important;
}


/* ----------------------------------------------------------
   CENTRAL DE ESTUDOS DEMONSTRATIVA
---------------------------------------------------------- */

.qti-v2-central-demo {
    border-color: #d8deea !important;

    background:
        linear-gradient(
            160deg,
            #ffffff,
            #f6f8fc
        ) !important;

    box-shadow:
        0 24px 64px rgba(28, 43, 70, .11) !important;
}

.qti-v2-task-main {
    background:
        linear-gradient(
            135deg,
            #eef2ff,
            #f8f9ff
        ) !important;
}

.qti-v2-task-main h3 {
    color: #17243a !important;
}

.qti-v2-mini-grid article {
    background: #ffffff !important;
    border-color: #dce2ec !important;
}

.qti-v2-mini-grid strong {
    color: #17243a !important;
}

.qti-v2-mini-grid span {
    color: #637287 !important;
}


/* ----------------------------------------------------------
   QUESTÃO DEMONSTRATIVA
---------------------------------------------------------- */

.qti-v2-question-demo {
    border-color: #d8dfeb !important;

    background: #ffffff !important;

    box-shadow:
        0 18px 46px rgba(31, 47, 76, .09) !important;
}

.qti-v2-question-demo > p {
    color: #1d293b !important;
}

.qti-v2-question-lines div {
    border-color: #e0e5ee !important;
    background: #fafbfd !important;
}

.qti-v2-question-lines span {
    color: #55657a !important;
}


/* ----------------------------------------------------------
   PLANOS
---------------------------------------------------------- */

.qti-v2-plans > article {
    border-color: #d9e0ea !important;
    background: #ffffff !important;

    box-shadow:
        0 14px 34px rgba(31, 46, 73, .07);
}

.qti-v2-plans > article.is-featured {
    border: 2px solid #5265dd !important;

    background:
        linear-gradient(
            180deg,
            #f9f9ff,
            #ffffff
        ) !important;
}

.qti-v2-plans h3 {
    color: #17243a !important;
}

.qti-v2-plans p,
.qti-v2-plans li {
    color: #5e6d80 !important;
}


/* ----------------------------------------------------------
   FAQ
---------------------------------------------------------- */

.qti-v2-faq details {
    border-color: #dce2ec !important;
    background: #ffffff !important;
}

.qti-v2-faq summary {
    color: #18253a !important;
}

.qti-v2-faq details p {
    color: #5e6d80 !important;
}


/* ----------------------------------------------------------
   LEAD
---------------------------------------------------------- */

.qti-v2-lead-form {
    border-color: #d9e0eb !important;
    background: #ffffff !important;

    box-shadow:
        0 18px 48px rgba(29, 45, 74, .09) !important;
}


/* ==========================================================
   ÁREA DO PROFESSOR
   O componente antigo possuía textos claros pensados
   para fundo escuro. Aqui forçamos contraste correto.
========================================================== */

.landing-professor-home {
    background:
        linear-gradient(
            145deg,
            #182337,
            #212d44
        ) !important;

    border-top: 0 !important;
    border-bottom: 0 !important;
}

.landing-professor-home-conteudo > span,
.landing-professor-home-conteudo .landing-secao-legenda {
    color: #9aaaff !important;
}

.landing-professor-home-conteudo h2,
.landing-professor-home-conteudo h3,
.landing-professor-home-conteudo strong {
    color: #ffffff !important;
}

.landing-professor-home-conteudo > p,
.landing-professor-home-conteudo p,
.landing-professor-home-conteudo li,
.landing-professor-beneficios span {
    color: #cbd4e1 !important;
}

.landing-professor-beneficios span {
    background: rgba(255,255,255,.055) !important;
    border-color: rgba(255,255,255,.09) !important;
}

.landing-professor-demo {
    background: #ffffff !important;
    border-color: #dce2ec !important;

    box-shadow:
        0 24px 65px rgba(0,0,0,.18) !important;
}

.landing-professor-demo *,
.landing-professor-painel-demo * {
    opacity: 1;
}

.landing-professor-demo-topo span,
.landing-professor-demo-topo b,
.landing-professor-demo-codigo,
.landing-professor-demo-grid span,
.landing-professor-demo-grid strong,
.landing-professor-demo-relatorio span,
.landing-professor-demo-relatorio strong {
    color: #17243a !important;
}

.landing-professor-demo-grid div,
.landing-professor-demo-relatorio {
    background: #f5f7fb !important;
    border-color: #dfe4ed !important;
}


/* ----------------------------------------------------------
   CTA FINAL
---------------------------------------------------------- */

.qti-v2-final {
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(76, 93, 220, .17),
            transparent 34%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(98, 85, 217, .12),
            transparent 32%
        ),
        #edf2f9 !important;

    border-top: 1px solid #d9e1ec;
}

.qti-v2-final h2 {
    color: #142033 !important;
}

.qti-v2-final p {
    color: #5a697d !important;
}


/* ----------------------------------------------------------
   CTA PRINCIPAL MAIS CONTRASTANTE
---------------------------------------------------------- */

.qti-v2-btn-primary,
.qti-btn-primary {
    background:
        linear-gradient(
            135deg,
            #f07a2b,
            #e9681d
        ) !important;

    box-shadow:
        0 12px 28px rgba(231, 104, 29, .24) !important;
}


/* ----------------------------------------------------------
   DESKTOP
---------------------------------------------------------- */

@media (min-width: 920px) {

    .qti-v2-hero {
        min-height: 760px;
        display: flex;
        align-items: center;
    }

    .qti-v2-proof article {
        padding-top: 27px;
        padding-bottom: 27px;
    }

}


/* ----------------------------------------------------------
   MOBILE
---------------------------------------------------------- */

@media (max-width: 679px) {

    .qti-v2-hero {
        background:
            linear-gradient(
                180deg,
                #f4f6ff,
                #ffffff
            ) !important;
    }

    .qti-v2-proof-grid {
        gap: 0;
    }

    .qti-v2-proof article::after {
        display: none;
    }

    .landing-professor-home {
        border-radius: 0 !important;
    }

}



/* ==========================================================
   QTI_HOME_V4_PREMIUM_CONTRASTE
   Mais presença visual, mantendo estética limpa.
========================================================== */


/* ----------------------------------------------------------
   FUNDO GERAL DA HOME
---------------------------------------------------------- */

body:has(.qti-v2-hero) {
    background: #edf1f7;
}


/* ----------------------------------------------------------
   HERO
---------------------------------------------------------- */

.qti-v2-hero {
    background:
        radial-gradient(
            circle at 82% 22%,
            rgba(71, 83, 200, .20),
            transparent 34%
        ),
        radial-gradient(
            circle at 7% 18%,
            rgba(44, 75, 155, .14),
            transparent 29%
        ),
        linear-gradient(
            135deg,
            #e9eef8 0%,
            #f4f6fb 45%,
            #e7ecf6 100%
        ) !important;

    border-bottom: 1px solid #cfd7e4;
}

.qti-v2-hero h1 {
    color: #101a2b !important;
}

.qti-v2-hero h1 span {
    color: #3154d5 !important;
}

.qti-v2-hero-lead {
    color: #46566c !important;
}

.qti-v2-badge {
    background: rgba(255,255,255,.64) !important;
    border-color: #bbc7eb !important;
    color: #4a45c4 !important;
}


/* ----------------------------------------------------------
   COCKPIT
---------------------------------------------------------- */

.qti-v2-cockpit {
    background:
        linear-gradient(
            150deg,
            #ffffff,
            #e9eef8
        ) !important;

    border-color: #c6d0df !important;

    box-shadow:
        0 32px 75px rgba(25, 38, 65, .18) !important;
}


/* ----------------------------------------------------------
   FAIXA DE MÉTRICAS
---------------------------------------------------------- */

.qti-v2-proof {
    background:
        linear-gradient(
            110deg,
            #172235,
            #202c43
        ) !important;

    border: none !important;
}

.qti-v2-proof strong {
    color: #ffffff !important;
}

.qti-v2-proof span {
    color: #c4ccda !important;
}


/* ----------------------------------------------------------
   PRIMEIRA SEÇÃO
---------------------------------------------------------- */

.qti-v2-proof + .qti-v2-section {
    background: #ffffff !important;
}


/* ----------------------------------------------------------
   DIFERENCIAIS IA - SEÇÃO ESCURA
---------------------------------------------------------- */

.qti-v2-proof
+ .qti-v2-section
+ .qti-v2-section {
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(100, 86, 220, .17),
            transparent 33%
        ),
        linear-gradient(
            145deg,
            #182236,
            #222e46
        ) !important;

    border: 0 !important;
}

.qti-v2-proof
+ .qti-v2-section
+ .qti-v2-section
.qti-v2-section-head > span {
    color: #9fa9ff !important;
}

.qti-v2-proof
+ .qti-v2-section
+ .qti-v2-section
.qti-v2-section-head h2 {
    color: #ffffff !important;
}

.qti-v2-proof
+ .qti-v2-section
+ .qti-v2-section
.qti-v2-section-head h2 strong {
    color: #aeb6ff !important;
}

.qti-v2-proof
+ .qti-v2-section
+ .qti-v2-section
.qti-v2-section-head p {
    color: #c5cedc !important;
}

.qti-v2-proof
+ .qti-v2-section
+ .qti-v2-section
.qti-v2-features article {
    background:
        linear-gradient(
            150deg,
            rgba(255,255,255,.095),
            rgba(255,255,255,.045)
        ) !important;

    border-color: rgba(255,255,255,.13) !important;
    box-shadow: none !important;
}

.qti-v2-proof
+ .qti-v2-section
+ .qti-v2-section
.qti-v2-features h3 {
    color: #ffffff !important;
}

.qti-v2-proof
+ .qti-v2-section
+ .qti-v2-section
.qti-v2-features p {
    color: #c7d0df !important;
}

.qti-v2-proof
+ .qti-v2-section
+ .qti-v2-section
.qti-v2-features small {
    color: #aab4ff !important;
}

.qti-v2-proof
+ .qti-v2-section
+ .qti-v2-section
.qti-v2-feature-icon {
    background: rgba(128, 112, 255, .18) !important;
    color: #b9c0ff !important;
}


/* ----------------------------------------------------------
   CENTRAL DE ESTUDOS
---------------------------------------------------------- */

.qti-v2-central-grid {
    padding-top: 10px;
    padding-bottom: 10px;
}

.qti-v2-central-grid
.qti-v2-central-demo {
    background:
        linear-gradient(
            160deg,
            #f8fafc,
            #e7edf6
        ) !important;

    border-color: #c8d1df !important;
}

.qti-v2-task-main {
    background:
        linear-gradient(
            135deg,
            #dfe6fa,
            #f1f4fb
        ) !important;
}


/* ----------------------------------------------------------
   BANCO DE QUESTÕES
---------------------------------------------------------- */

.qti-v2-bank-grid {
    background: transparent !important;
}

.qti-v2-question-demo {
    background: #f9fafc !important;
    border-color: #ccd5e2 !important;
}


/* ----------------------------------------------------------
   PROFESSOR
---------------------------------------------------------- */

.landing-professor-home {
    background:
        linear-gradient(
            135deg,
            #111b2c,
            #202d45
        ) !important;

    padding-top: 86px !important;
    padding-bottom: 86px !important;
}

.landing-professor-home-conteudo h2 {
    color: #ffffff !important;
}

.landing-professor-home-conteudo p,
.landing-professor-beneficios span {
    color: #c6d0df !important;
}


/* ----------------------------------------------------------
   PLANOS
---------------------------------------------------------- */

#planos {
    background:
        linear-gradient(
            180deg,
            #e9eef5,
            #f3f6fa
        ) !important;
}

.qti-v2-plans > article {
    background: #ffffff !important;
    border-color: #ccd5e0 !important;

    box-shadow:
        0 16px 42px rgba(29, 43, 70, .10) !important;
}

.qti-v2-plans > article.is-featured {
    background:
        linear-gradient(
            180deg,
            #f4f5ff,
            #ffffff
        ) !important;

    border: 2px solid #535ed6 !important;
}


/* ----------------------------------------------------------
   FAQ
---------------------------------------------------------- */

#faq {
    background: #f7f9fc !important;
}


/* ----------------------------------------------------------
   CTA FINAL
---------------------------------------------------------- */

.qti-v2-final {
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(103, 92, 220, .18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #182338,
            #25324a
        ) !important;

    border: 0 !important;
}

.qti-v2-final > div > span {
    color: #aab3ff !important;
}

.qti-v2-final h2 {
    color: #ffffff !important;
}

.qti-v2-final p {
    color: #c6cfdd !important;
}

.qti-v2-final-link {
    color: #d8dfff !important;
}


/* ----------------------------------------------------------
   CTAs
---------------------------------------------------------- */

.qti-v2-btn-primary,
.qti-btn-primary {
    background:
        linear-gradient(
            135deg,
            #f47a2a,
            #df641b
        ) !important;

    box-shadow:
        0 12px 28px rgba(228, 102, 26, .29) !important;
}


/* ----------------------------------------------------------
   MOBILE
---------------------------------------------------------- */

@media (max-width: 680px) {

    .qti-v2-hero {
        background:
            linear-gradient(
                180deg,
                #e8edf8,
                #f7f9fc
            ) !important;
    }

    .qti-v2-proof {
        background: #172235 !important;
    }

}



/* ==========================================================
   QTI_HOME_V5_RADIAL_GRAY
========================================================== */


/* ----------------------------------------------------------
   HERO PRINCIPAL
---------------------------------------------------------- */

.qti-v2-hero {
    background:
        radial-gradient(
            circle at 7% 18%,
            rgba(49, 87, 213, .22),
            transparent 29%
        ),
        radial-gradient(
            circle at 88% 18%,
            rgba(98, 85, 217, .20),
            transparent 32%
        ),
        radial-gradient(
            circle at 48% 95%,
            rgba(77, 103, 164, .13),
            transparent 37%
        ),
        linear-gradient(
            135deg,
            #d3dbe6 0%,
            #cbd4df 48%,
            #d6dde7 100%
        ) !important;

    border-bottom: 1px solid #bdc8d6 !important;
}


/* ----------------------------------------------------------
   TITULO
---------------------------------------------------------- */

.qti-v2-hero h1 {
    color: #131e31 !important;

    text-shadow:
        0 1px 0 rgba(255,255,255,.25);
}

.qti-v2-hero h1 span {
    color: #294fc7 !important;
}

.qti-v2-hero-lead {
    color: #435269 !important;
}


/* ----------------------------------------------------------
   BADGE
---------------------------------------------------------- */

.qti-v2-badge {
    background:
        rgba(240, 243, 250, .82) !important;

    border:
        1px solid rgba(71, 84, 181, .26) !important;

    color: #4b49be !important;

    backdrop-filter:
        blur(9px);
}


/* ----------------------------------------------------------
   COCKPIT
---------------------------------------------------------- */

.qti-v2-cockpit {
    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(81, 92, 211, .10),
            transparent 30%
        ),
        linear-gradient(
            155deg,
            #f4f6f9,
            #e5ebf2
        ) !important;

    border-color:
        #b9c5d5 !important;

    box-shadow:
        0 30px 75px
        rgba(28, 40, 63, .20) !important;
}


/* ----------------------------------------------------------
   PRIMEIRA SEÇÃO BRANCA -> CINZA CLARO
---------------------------------------------------------- */

.qti-v2-proof + .qti-v2-section {
    background:
        radial-gradient(
            circle at 5% 50%,
            rgba(49, 87, 213, .07),
            transparent 28%
        ),
        #e8edf3 !important;
}


/* ----------------------------------------------------------
   CENTRAL
---------------------------------------------------------- */

.qti-v2-central-grid {
    position: relative;
}

.qti-v2-section:has(.qti-v2-central-grid) {
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(49, 87, 213, .10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #dce3ec,
            #e7ebf1
        ) !important;
}


/* ----------------------------------------------------------
   BANCO
---------------------------------------------------------- */

.qti-v2-section:has(.qti-v2-bank-grid) {
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(98,85,217,.07),
            transparent 28%
        ),
        #e5eaf0 !important;
}


/* ----------------------------------------------------------
   FAQ
---------------------------------------------------------- */

#faq {
    background:
        radial-gradient(
            circle at 92% 25%,
            rgba(49,87,213,.07),
            transparent 30%
        ),
        #dfe5ed !important;
}


/* ----------------------------------------------------------
   LEAD / CONTATO
---------------------------------------------------------- */

.qti-v2-lead-grid {
    padding-top: 20px;
    padding-bottom: 20px;
}


/* ----------------------------------------------------------
   CARDS
---------------------------------------------------------- */

.qti-v2-process article,
.qti-v2-question-demo,
.qti-v2-plans > article,
.qti-v2-faq details,
.qti-v2-lead-form,
.qti-v2-central-demo {
    background:
        linear-gradient(
            155deg,
            #f7f8fa,
            #edf1f5
        ) !important;

    border-color:
        #bec9d7 !important;

    box-shadow:
        0 13px 34px
        rgba(28, 42, 68, .10) !important;
}


/* ----------------------------------------------------------
   MOBILE
---------------------------------------------------------- */

@media (max-width: 680px) {

    .qti-v2-hero {
        background:
            radial-gradient(
                circle at 85% 8%,
                rgba(98,85,217,.16),
                transparent 31%
            ),
            linear-gradient(
                180deg,
                #d3dae5,
                #e2e7ee
            ) !important;
    }

}


/* APROVAMENTORIA_MENTOR_BUSINESS_CTA_BEGIN */

.am-mentor-business-cta {
    width:
        min(1240px, calc(100% - 32px));
    margin:
        38px auto;
}

.am-mentor-business-inner {
    padding:
        clamp(35px, 6vw, 70px);
    border-radius:
        26px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(49,84,125,.55),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #17243b,
            #203556
        );
    color:
        #fff;
    text-align:
        center;
    box-shadow:
        0 22px 55px
        rgba(23,36,59,.15);
}

.am-mentor-business-kicker {
    display:
        inline-flex;
    margin-bottom:
        15px;
    padding:
        6px 11px;
    border:
        1px solid
        rgba(115,221,215,.28);
    border-radius:
        999px;
    background:
        rgba(36,189,183,.10);
    color:
        #73ddd7;
    font-size:
        .68rem;
    font-weight:
        900;
    letter-spacing:
        .08em;
}

.am-mentor-business-inner h2 {
    max-width:
        780px;
    margin:
        0 auto;
    color:
        #fff !important;
    font-size:
        clamp(2rem, 5vw, 3.2rem);
    line-height:
        1.06;
}

.am-mentor-business-inner > p {
    max-width:
        720px;
    margin:
        20px auto 0;
    color:
        #d1deeb !important;
    font-size:
        1rem;
    line-height:
        1.65;
}

.am-mentor-business-features {
    display:
        flex;
    justify-content:
        center;
    gap:
        10px;
    flex-wrap:
        wrap;
    margin:
        25px auto;
}

.am-mentor-business-features span {
    padding:
        9px 13px;
    border:
        1px solid
        rgba(255,255,255,.09);
    border-radius:
        10px;
    background:
        rgba(255,255,255,.055);
    color:
        #e5edf5 !important;
    font-size:
        .84rem;
}

.am-mentor-business-features b {
    color:
        #73ddd7;
}

.am-mentor-business-actions {
    display:
        flex;
    justify-content:
        center;
    gap:
        10px;
    flex-wrap:
        wrap;
    margin-top:
        25px;
}

.am-mentor-business-primary,
.am-mentor-business-secondary {
    display:
        inline-flex;
    min-height:
        46px;
    padding:
        11px 22px;
    align-items:
        center;
    justify-content:
        center;
    border-radius:
        11px;
    text-decoration:
        none !important;
    font-weight:
        850;
}

.am-mentor-business-primary {
    background:
        #24bdb7;
    color:
        #17243b !important;
}

.am-mentor-business-primary:hover {
    background:
        #73ddd7;
}

.am-mentor-business-secondary {
    border:
        1px solid
        rgba(255,255,255,.22);
    background:
        rgba(255,255,255,.05);
    color:
        #fff !important;
}

.am-mentor-business-inner > small {
    display:
        block;
    margin-top:
        22px;
    color:
        #9eb2c8 !important;
}

@media (max-width: 640px) {

    .am-mentor-business-cta {
        width:
            calc(100% - 24px);
        margin:
            25px auto;
    }

    .am-mentor-business-inner {
        padding:
            32px 18px;
        border-radius:
            19px;
    }

    .am-mentor-business-actions {
        flex-direction:
            column;
    }

    .am-mentor-business-primary,
    .am-mentor-business-secondary {
        width:
            100%;
    }
}

/* APROVAMENTORIA_MENTOR_BUSINESS_CTA_END */
