﻿/* ═══════════════════════════════════════════════════════════════════
   AboutThis.css
   Escopo: prefixo "abt-" em todos os seletores para isolar do
   Bootstrap 4 e do LayoutOut.css já carregados pelo _LayoutOut.
   Mobile-first: estilos base para 375px, media queries para cima.
═══════════════════════════════════════════════════════════════════ */

/* ────── Tokens ────── */
.abt-page {
    --or: #ff8c00;
    --or-d: #e94e1b;
    --or-fade: rgba(255, 140, 0, 0.10);
    --or-border: rgba(255, 140, 0, 0.22);
    --bg: #0a0a0a;
    --s1: #111111;
    --s2: #1c1c1c;
    --s3: #2a2a2a;
    --t1: #ffffff;
    --t2: #d9d9d9;
    --t3: #878787;
    --r-xs: 6px;
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--t1);
    line-height: 1.6;
    /* Cancela o background branco herdado do #tudo do LayoutOut */
    margin: -20px -20px 0; /* compensa margin do #conteudo */
    overflow-x: hidden;
}

/* ────── Container ────── */
.abt-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ────── Section spacing ────── */
.abt-section {
    padding: 3.5rem 0;
}

@media (min-width: 768px) {
    .abt-section {
        padding: 5.5rem 0;
    }
}

/* ────── Helpers ────── */
.abt-max-560 {
    max-width: 560px;
}

/* ────── Accent gradient text ────── */
.abt-accent {
    background: linear-gradient(135deg, var(--or), var(--or-d));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ────── Eyebrow ────── */
.abt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .6875rem;
    font-weight: 700;
    color: var(--or);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .875rem;
}

    .abt-eyebrow::before {
        content: '';
        display: block;
        width: 18px;
        height: 2px;
        background: var(--or);
        border-radius: 2px;
        flex-shrink: 0;
    }

/* ────── Headings ────── */
.abt-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 5vw, 2.375rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.025em;
    color: var(--t1);
    margin-bottom: .875rem;
}

/* ────── Body copy ────── */
.abt-body-lg {
    font-size: .9375rem;
    color: var(--t2);
    line-height: 1.75;
}

.abt-body-sm {
    font-size: .8125rem;
    color: var(--t3);
    line-height: 1.65;
}

/* ────── Buttons ────── */
.abt-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.625rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all .25s ease;
    cursor: pointer;
    text-decoration: none !important; /* override Bootstrap link */
}

    .abt-btn svg {
        width: 16px;
        height: 16px;
    }

.abt-btn-primary {
    background: linear-gradient(135deg, var(--or), var(--or-d));
    color: #fff !important;
    box-shadow: 0 4px 18px rgba(255, 140, 0, .25);
    border: none;
}

    .abt-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 26px rgba(233, 78, 27, .42);
        color: #fff !important;
    }

.abt-btn-ghost {
    background: transparent;
    color: var(--t2) !important;
    border: 1px solid var(--s3);
}

    .abt-btn-ghost:hover {
        border-color: var(--t3);
        color: var(--t1) !important;
    }

.abt-cta-group {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

/* ────── Icon wrappers (monochrome orange) ────── */
.abt-icon-wrap {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--r-sm);
    background: var(--or-fade);
    border: 1px solid var(--or-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .abt-icon-wrap svg {
        width: 20px;
        height: 20px;
        stroke: var(--or);
    }

.abt-icon-wrap-lg {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: var(--r-md);
    background: var(--or-fade);
    border: 1px solid var(--or-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .abt-icon-wrap-lg svg {
        width: 26px;
        height: 26px;
        stroke: var(--or);
    }

/* ═══════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════ */
.abt-hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4.5rem 1.25rem 3rem;
    position: relative;
    overflow: hidden;
}

.abt-hero-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 90% 55% at 50% 0%, rgba(255,140,0,.11) 0%, transparent 65%), radial-gradient(ellipse 50% 35% at 80% 85%, rgba(233,78,27,.07) 0%, transparent 60%);
}

.abt-hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,140,0,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,140,0,.04) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 25%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 25%, transparent 100%);
}

.abt-hero .abt-container {
    position: relative;
    z-index: 1;
}

.abt-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .9rem;
    background: var(--or-fade);
    border: 1px solid var(--or-border);
    border-radius: 50px;
    font-size: .6875rem;
    font-weight: 600;
    color: var(--or);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.625rem;
}

    .abt-pill svg {
        width: 12px;
        height: 12px;
        stroke: var(--or);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.abt-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.875rem, 7.5vw, 4.25rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -.03em;
    color: var(--t1);
    margin-bottom: 1.125rem;
}

.abt-hero-sub {
    font-size: clamp(.9rem, 2vw, 1.125rem);
    color: var(--t2);
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 2.25rem;
}

/* ═══════════════════════════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════════════════════════ */
.abt-stats {
    border-top: 1px solid var(--s3);
    border-bottom: 1px solid var(--s3);
    padding: 2.25rem 0;
}

.abt-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .abt-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.abt-stat {
    text-align: center;
    padding: .875rem 1rem;
    border-right: 1px solid var(--s3);
    border-bottom: 1px solid var(--s3);
}

    /* Mobile: 2 col grid borders */
    .abt-stat:nth-child(2n) {
        border-right: none;
    }

    .abt-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }

@media (min-width: 768px) {
    .abt-stat {
        border-bottom: none;
    }

        .abt-stat:nth-child(2n) {
            border-right: 1px solid var(--s3);
        }

        .abt-stat:last-child {
            border-right: none;
        }
}

.abt-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.875rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: .25rem;
    background: linear-gradient(135deg, var(--or), var(--or-d));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.abt-stat-lbl {
    font-size: .7rem;
    color: var(--t3);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* ═══════════════════════════════════════════════════════════════════
   PROBLEMA
═══════════════════════════════════════════════════════════════════ */
.abt-two-col {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

@media (min-width: 900px) {
    .abt-two-col {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }

        .abt-two-col > * {
            flex: 1;
        }
}

.abt-prob-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 1.75rem;
    list-style: none;
    padding: 0;
}

.abt-prob-item {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    padding: 1rem;
    background: rgba(255,255,255,.025);
    border: 1px solid var(--s3);
    border-radius: var(--r-md);
    transition: border-color .25s;
}

    .abt-prob-item:hover {
        border-color: var(--or-border);
    }

.abt-prob-text strong {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--t1);
    margin-bottom: .175rem;
}

.abt-prob-text span {
    font-size: .775rem;
    color: var(--t3);
}

/* Quote card */
.abt-quote-card {
    background: linear-gradient(135deg, rgba(255,140,0,.07), rgba(233,78,27,.04));
    border: 1px solid var(--or-border);
    border-radius: var(--r-xl);
    padding: 2rem 1.625rem;
    display: flex;
    gap: 1.125rem;
}

.abt-quote-bar {
    width: 3px;
    border-radius: 2px;
    background: var(--or);
    flex-shrink: 0;
    align-self: stretch;
    display: none;
}

@media (min-width: 600px) {
    .abt-quote-bar {
        display: block;
    }
}

.abt-quote-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--t1);
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════
   CONVICÇÃO (princípio EFP)
═══════════════════════════════════════════════════════════════════ */
.abt-conviction {
    padding: 4rem 0;
    background: linear-gradient(180deg, transparent, rgba(255,140,0,.04), transparent);
    border-top: 1px solid var(--s3);
    border-bottom: 1px solid var(--s3);
    text-align: center;
}

.abt-conviction-inner { /* container já centraliza */
}

.abt-conviction-big {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.25rem, 4.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.02em;
    color: var(--t1);
    max-width: 720px;
    margin: 0 auto 1.125rem;
}

.abt-conviction-sub {
    max-width: 500px;
    margin: 0 auto;
    color: var(--t3);
}

/* ═══════════════════════════════════════════════════════════════════
   COMPONENTES
═══════════════════════════════════════════════════════════════════ */
.abt-components {
    display: flex;
    flex-direction: column;
    gap: .875rem;
}

.abt-comp-card {
    display: flex;
    align-items: flex-start;
    gap: 1.125rem;
    padding: 1.5rem;
    background: var(--s1);
    border: 1px solid var(--s3);
    border-radius: var(--r-lg);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

    .abt-comp-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--or), var(--or-d));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s ease;
    }

    .abt-comp-card:hover {
        border-color: var(--or-border);
        transform: translateY(-2px);
    }

        .abt-comp-card:hover::after {
            transform: scaleX(1);
        }

.abt-comp-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: .9375rem;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: .375rem;
}

.abt-comp-info p {
    font-size: .8125rem;
    color: var(--t3);
    line-height: 1.6;
}

.abt-tag {
    display: inline-block;
    margin-top: .5rem;
    padding: .2rem .6rem;
    border-radius: 4px;
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--or-fade);
    border: 1px solid var(--or-border);
    color: var(--or);
}

/* ═══════════════════════════════════════════════════════════════════
   COMO FUNCIONA — CARROSSEL
═══════════════════════════════════════════════════════════════════ */
.abt-flow-wrap {
    position: relative;
}

.abt-flow-outer {
    overflow: hidden;
}

.abt-flow-track {
    display: flex;
    gap: 1rem;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}

.abt-flow-slide {
    flex: 0 0 100%;
    padding: 1.875rem 1.375rem;
    background: var(--s1);
    border: 1px solid var(--s3);
    border-radius: var(--r-xl);
    text-align: center;
}

.abt-flow-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--or), var(--or-d));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 1.125rem;
    box-shadow: 0 4px 16px rgba(255,140,0,.32);
}

.abt-flow-icon {
    margin: 0 auto 1.125rem;
}

.abt-flow-slide h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: .5rem;
}

.abt-flow-slide p {
    font-size: .8125rem;
    color: var(--t3);
    line-height: 1.65;
}

/* Nav */
.abt-flow-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.375rem;
    margin-top: 1.5rem;
}

.abt-flow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--s2);
    border: 1px solid var(--s3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s;
}

    .abt-flow-btn:hover:not(:disabled) {
        border-color: var(--or);
        background: var(--or);
    }

        .abt-flow-btn:hover:not(:disabled) svg {
            stroke: #fff;
        }

    .abt-flow-btn:disabled {
        opacity: .3;
        cursor: not-allowed;
    }

    .abt-flow-btn svg {
        width: 19px;
        height: 19px;
        stroke: var(--t2);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke .25s;
    }

.abt-flow-dots {
    display: flex;
    gap: .45rem;
    align-items: center;
}

.abt-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--s3);
    cursor: pointer;
    transition: all .3s;
}

    .abt-dot.on {
        background: var(--or);
        width: 26px;
        border-radius: 4px;
    }

/* Tablet: 2 por vez */
@media (min-width: 768px) and (max-width: 1023px) {
    .abt-flow-slide {
        flex: 0 0 calc(50% - .5rem);
    }
}

/* Desktop: todos visíveis, esconde nav */
@media (min-width: 1024px) {
    .abt-flow-outer {
        overflow: visible;
    }

    .abt-flow-slide {
        flex: 0 0 calc(20% - .8rem);
    }

    .abt-flow-nav {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   ANTES / DEPOIS
═══════════════════════════════════════════════════════════════════ */
.abt-ba-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .abt-ba-grid {
        flex-direction: row;
        gap: 1.25rem;
    }
}

.abt-ba-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.abt-ba-item {
    padding: 1rem;
    border-radius: var(--r-md);
    border: 1px solid;
}

.abt-before {
    background: rgba(255,255,255,.018);
    border-color: var(--s3);
}

.abt-after {
    background: rgba(255,140,0,.05);
    border-color: var(--or-border);
}

.abt-ba-label {
    font-size: .625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .375rem;
}

.abt-before .abt-ba-label {
    color: var(--t3);
}

.abt-after .abt-ba-label {
    color: var(--or);
}

.abt-ba-item p {
    font-size: .8125rem;
    line-height: 1.6;
    margin: 0;
}

.abt-before p {
    color: var(--t3);
}

.abt-after p {
    color: var(--t2);
}

/* ═══════════════════════════════════════════════════════════════════
   MODELO COMERCIAL
═══════════════════════════════════════════════════════════════════ */
.abt-pricing-card {
    background: var(--s1);
    border: 1px solid var(--s3);
    border-radius: var(--r-xl);
    padding: 2rem 1.625rem;
}

.abt-pricing-highlight {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 3vw, 1.375rem);
    font-weight: 800;
    color: var(--or);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--or);
}

.abt-pricing-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.abt-pricing-item {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
}

    .abt-pricing-item p {
        font-size: .8125rem;
        color: var(--t2);
        line-height: 1.6;
        margin: 0;
    }

    .abt-pricing-item strong {
        color: var(--t1);
    }

.abt-pricing-footnote {
    margin-top: 1.375rem;
    padding-top: 1.125rem;
    border-top: 1px solid var(--s3);
    font-size: .75rem;
    color: var(--t3);
    font-style: italic;
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════
   SINAL DE MERCADO
═══════════════════════════════════════════════════════════════════ */
.abt-signal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .875rem;
}

@media (min-width: 768px) {
    .abt-signal-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.abt-signal-card {
    padding: 1.375rem 1.125rem;
    background: var(--s1);
    border: 1px solid var(--s3);
    border-radius: var(--r-lg);
    text-align: center;
    transition: all .25s;
}

    .abt-signal-card:hover {
        border-color: var(--or-border);
        transform: translateY(-3px);
    }

    .abt-signal-card .abt-icon-wrap {
        margin: 0 auto .875rem;
    }

    .abt-signal-card h4 {
        font-family: 'Outfit', sans-serif;
        font-size: .875rem;
        font-weight: 700;
        color: var(--t1);
        margin-bottom: .35rem;
    }

    .abt-signal-card p {
        font-size: .725rem;
        color: var(--t3);
        line-height: 1.5;
        margin: 0;
    }

/* ═══════════════════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════════════════ */
.abt-cta-final {
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

    .abt-cta-final::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,140,0,.08) 0%, transparent 70%);
    }

.abt-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

    .abt-cta-inner .abt-eyebrow {
        display: inline-flex;
        margin-bottom: 1.25rem;
    }

    .abt-cta-inner .abt-h2 {
        max-width: 620px;
        margin: 0 auto 1.125rem;
    }

    .abt-cta-inner .abt-body-lg {
        margin: 0 auto 2.25rem;
    }

    .abt-cta-inner .abt-cta-group {
        justify-content: center;
    }
