/* ============================================================
   PLAS Academy — Tráfego com IA (v2)
   Estende os tokens globais (../assets/css/global.css).
   Motif de assinatura: painel de IA animado no hero.
   ============================================================ */

.tb { color: var(--plas-orange); }

section { padding: 88px 0; }

.tc { text-align: center; max-width: 760px; margin: 0 auto; }
.tc h2 { margin-bottom: 16px; }

.bdg {
    display: inline-block;
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--plas-orange);
    border: 1px solid rgba(250, 66, 0, .35);
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 18px;
}

.sub {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: var(--fs-sub);
    color: var(--plas-grey);
    line-height: 1.6;
}

/* --- CTA --- */
.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--plas-orange);
    color: var(--plas-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .01em;
    padding: 17px 34px;
    border-radius: 6px;
    transition: transform .2s, box-shadow .25s var(--ease-out);
}
.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 2px rgba(250, 66, 0, .25), 0 10px 30px rgba(250, 66, 0, .32);
}
.cta .ico { width: 20px; height: 20px; }
.cta-full { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding-top: 72px;
    padding-bottom: 72px;
    overflow: hidden;
}
.hero-g {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero-txt .plas-coord { display: block; margin-bottom: 20px; }
.hero-txt h1 {
    font-size: var(--fs-hero);
    margin-bottom: 22px;
}
.hero-sub {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: var(--fs-sub);
    color: var(--plas-grey);
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 30px;
}
.hero-micro {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--plas-grey);
    margin-top: 18px;
}
.hero-micro span { color: var(--plas-orange); margin: 0 4px; }

/* --- Painel de IA animado --- */
.hero-anim { position: relative; }
.ha-glow {
    position: absolute;
    inset: -10% -10% -10% -10%;
    background: radial-gradient(50% 50% at 60% 30%, rgba(250, 66, 0, .18), transparent 70%);
    filter: blur(10px);
    pointer-events: none;
}
.ha-panel {
    position: relative;
    background: var(--plas-card);
    border: 1px solid var(--plas-card-border);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
}
.ha-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--plas-card-border);
}
.ha-head-l { display: flex; align-items: center; gap: 8px; }
.ha-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .6);
    animation: ha-pulse 2s infinite;
}
@keyframes ha-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .5); }
    70% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.ha-label {
    font-family: var(--font-title);
    font-size: 11px; letter-spacing: .12em; color: var(--plas-white);
}
.ha-head-r { display: flex; align-items: center; gap: 10px; }
.ha-badge {
    font-family: var(--font-title);
    font-size: 9px; letter-spacing: .12em;
    color: var(--plas-orange);
    border: 1px solid rgba(250, 66, 0, .4);
    border-radius: 4px; padding: 3px 6px;
}
.ha-clock { font-size: 11px; color: var(--plas-grey); }

.ha-platforms {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px 0;
}
.ha-plat { display: flex; gap: 10px; align-items: center; }
.ha-plat-ico {
    width: 38px; height: 38px; border-radius: 9px;
    display: grid; place-items: center;
    font-family: var(--font-title); font-size: 18px; color: #fff;
    flex-shrink: 0;
}
.ha-meta { background: #0866ff; }
.ha-google { background: #fff; color: #4285f4; }
.ha-plat-name { font-family: var(--font-title); font-size: 10px; letter-spacing: .1em; color: var(--plas-grey); }
.ha-plat-val { font-family: var(--font-title); font-size: 17px; color: var(--plas-white); }
.ha-plat-val span { font-size: 10px; color: var(--plas-grey); }
.ha-plat-sub { font-size: 11px; }
.ha-plat-sub.up { color: #22c55e; }
.ha-plat-sub.down { color: #22c55e; }
.ha-sep { width: 1px; height: 40px; background: var(--plas-card-border); }

.ha-checklist {
    display: flex; flex-direction: column; gap: 8px;
    padding: 14px 0;
    border-top: 1px solid var(--plas-card-border);
}
.ha-chk {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; color: var(--plas-grey);
    opacity: 0;
    animation: ha-in .4s var(--ease-out) forwards;
    animation-delay: var(--d);
}
.ha-chk-c {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--plas-orange); color: #fff;
    display: grid; place-items: center; flex-shrink: 0;
}
.ha-chk-c svg { width: 11px; height: 11px; }
@keyframes ha-in { from { opacity: 0; transform: translateX(-6px); } to { opacity: 1; transform: none; } }

.ha-term {
    background: #060400;
    border: 1px solid var(--plas-card-border);
    border-radius: 8px;
    padding: 12px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    line-height: 1.9;
}
.ha-log {
    color: var(--plas-grey);
    opacity: 0;
    animation: ha-in .35s var(--ease-out) forwards;
    animation-delay: var(--d);
}
.ha-log span { margin-right: 6px; }
.ha-log.ok { color: #22c55e; }
.ha-term-ft {
    margin-top: 6px; padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    color: var(--plas-grey);
    display: flex; align-items: center; gap: 6px;
}
.ha-prompt { color: var(--plas-orange); }
.ha-caret {
    display: inline-block; width: 7px; height: 13px;
    background: var(--plas-orange);
    animation: ha-blink 1s steps(1) infinite;
}
@keyframes ha-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

.ha-bar {
    margin-top: 14px; height: 4px; border-radius: 999px;
    background: var(--plas-card-border); overflow: hidden;
}
.ha-bar span {
    display: block; height: 100%; width: 0;
    background: var(--plas-orange);
    animation: ha-fill 8s linear infinite;
}
@keyframes ha-fill { 0% { width: 0; } 90%, 100% { width: 100%; } }

.ha-notif, .ha-alert {
    position: absolute;
    display: flex; gap: 10px; align-items: center;
    background: rgba(13, 9, 0, .92);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border: 1px solid var(--plas-card-border);
    border-radius: 10px;
    padding: 10px 13px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .55);
    max-width: 240px;
}
.ha-notif {
    top: 12%; right: -22px;
    animation: ha-pop 8s ease-in-out infinite;
}
.ha-alert {
    bottom: 14%; left: -26px;
    animation: ha-pop 8s ease-in-out infinite;
    animation-delay: 2s;
}
@keyframes ha-pop {
    0%, 12% { opacity: 0; transform: translateY(10px) scale(.96); }
    20%, 55% { opacity: 1; transform: none; }
    65%, 100% { opacity: 0; transform: translateY(-8px) scale(.97); }
}
.ha-notif-ico, .ha-alert-ico {
    width: 32px; height: 32px; border-radius: 8px;
    display: grid; place-items: center; flex-shrink: 0; color: #fff;
}
.ha-notif-ico { background: #25D366; }
.ha-alert-ico { background: var(--plas-orange); }
.ha-notif-t, .ha-alert-t { font-family: var(--font-body); font-weight: 700; font-size: 12px; color: var(--plas-white); }
.ha-notif-s, .ha-alert-s { font-size: 11px; color: var(--plas-grey); }

/* ============================================================
   DOR
   ============================================================ */
.dor .g2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.pain-cd {
    background: var(--plas-card);
    border: 1px solid var(--plas-card-border);
    border-radius: 12px;
    padding: 28px;
    color: var(--plas-white);
}
.pain-ico {
    width: 44px; height: 44px; border-radius: 10px;
    display: grid; place-items: center;
    background: rgba(250, 66, 0, .12);
    color: var(--plas-orange);
    margin-bottom: 16px;
}
.pain-ico svg { width: 22px; height: 22px; }
.pain-cd h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--plas-white); }
.pain-cd p { font-family: var(--font-body); font-weight: 300; font-size: .95rem; color: var(--plas-grey) !important; }
/* callout escuro sobre a seção clara (alto contraste) */
.dor-bottom {
    margin-top: 40px;
    text-align: center;
    border: 1px solid rgba(250, 66, 0, .35);
    border-radius: 12px;
    padding: 28px;
    background: var(--plas-card);
}
.dor-bottom p { font-family: var(--font-body); font-size: var(--fs-sub); color: var(--plas-white); max-width: 760px; margin: 0 auto; }

/* ============================================================
   SOLUÇÃO
   ============================================================ */
.sol .g3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sol .cd {
    background: var(--plas-card);
    border: 1px solid var(--plas-card-border);
    border-radius: 12px;
    padding: 32px 26px;
    text-align: center;
}
.top-ico {
    width: 52px; height: 52px; border-radius: 12px;
    display: grid; place-items: center; margin: 0 auto 18px;
    background: rgba(250, 66, 0, .12); color: var(--plas-orange);
}
.ico-l { width: 26px; height: 26px; }
.sol .cd h3 { font-size: 1.1rem; margin-bottom: 10px; }
.sol .cd p { font-family: var(--font-body); font-weight: 300; font-size: .95rem; color: var(--plas-grey); }

/* ============================================================
   ARSENAL
   ============================================================ */
.aut .ab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ab {
    background: var(--plas-card);
    border: 1px solid var(--plas-card-border);
    border-radius: 12px;
    padding: 28px 24px;
}
.ab-ico { font-size: 1.8rem; margin-bottom: 16px; }
.ab h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.3; }
.ab p { font-family: var(--font-body); font-weight: 300; font-size: .9rem; color: var(--plas-grey); }
.aut-cta { text-align: center; margin-top: 48px; }
.aut-cta .sub { margin-top: 16px; font-size: .9rem; }

/* ============================================================
   DEPOIMENTOS (seção escura — prints em cards técnicos escuros)
   ============================================================ */
.dep { position: relative; }
.dep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}
.dep-card {
    border-radius: 12px;
    border: 1px solid var(--plas-card-border);
    background: var(--plas-card);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
.dep-card img { width: 100%; height: auto; border-radius: 12px; display: block; }

/* ============================================================
   OFERTA
   ============================================================ */
.oferta { position: relative; overflow: hidden; }
.oferta h2 { margin-bottom: 44px; }
.oferta .glow {
    position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(250, 66, 0, .18), transparent 70%);
    pointer-events: none;
}
.oc {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 0;
    max-width: 940px; margin: 0 auto;
    background: var(--plas-card);
    border: 1px solid var(--plas-card-border);
    border-radius: 16px;
    overflow: hidden;
}
.oc-left { padding: 36px 34px; border-right: 1px solid var(--plas-card-border); }
.oc-left-t { font-family: var(--font-title); font-size: 12px; letter-spacing: .12em; color: var(--plas-grey); margin-bottom: 22px; }
.og { margin-bottom: 20px; }
.og-l {
    display: inline-block;
    font-family: var(--font-title); font-size: 11px; letter-spacing: .08em;
    color: var(--plas-orange); margin-bottom: 8px;
}
.og ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.og li { display: flex; gap: 9px; font-family: var(--font-body); font-weight: 300; font-size: .9rem; color: var(--plas-white); }
.og li svg { width: 15px; height: 15px; color: var(--plas-orange); flex-shrink: 0; margin-top: 4px; }

.oc-right { padding: 36px 34px; text-align: center; display: flex; flex-direction: column; }
.ob {
    align-self: center;
    font-family: var(--font-title); font-size: 11px; letter-spacing: .1em;
    color: var(--plas-orange);
    border: 1px solid rgba(250, 66, 0, .4); border-radius: 999px;
    padding: 6px 14px; margin-bottom: 18px;
}
.saving { font-family: var(--font-body); font-size: .9rem; color: var(--plas-grey); margin-bottom: 14px; }
.saving strong { color: var(--plas-white); }
.from { font-family: var(--font-body); font-size: .95rem; color: var(--plas-grey); margin-bottom: 4px; }
.from s { opacity: .7; }
.price { font-family: var(--font-title); font-weight: 800; font-size: clamp(2rem, 5vw, 2.8rem); color: var(--plas-white); }
.cash { font-family: var(--font-body); font-size: 1rem; color: var(--plas-orange); margin-bottom: 24px; }
.secure { font-family: var(--font-body); font-size: 12px; color: var(--plas-grey); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.secure svg { color: #22c55e; }
.oc-gar {
    margin-top: 20px; padding-top: 20px;
    border-top: 1px solid var(--plas-card-border);
    display: flex; align-items: center; gap: 10px; text-align: left;
    font-family: var(--font-body); font-size: .85rem; color: var(--plas-grey);
}
.oc-gar svg { color: var(--plas-orange); flex-shrink: 0; }
.oc-gar strong { color: var(--plas-white); }

/* ============================================================
   GARANTIA (seção escura)
   ============================================================ */
.gar { position: relative; }
.gar-box {
    display: flex; align-items: center; gap: 40px;
    max-width: 820px; margin: 0 auto;
    background: var(--plas-card);
    border: 1px solid var(--plas-card-border);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}
.gar-box .img img { width: 200px; height: auto; }
.gar-box .bdg { color: var(--plas-orange); border-color: rgba(250, 66, 0, .35); }
.gar-box h2 { color: var(--plas-white); margin-bottom: 12px; }
.gar-box p { font-family: var(--font-body); font-weight: 300; color: var(--plas-grey); }

/* ============================================================
   FAQ
   ============================================================ */
.faq h2 { margin-bottom: 40px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--plas-card);
    border: 1px solid var(--plas-card-border);
    border-radius: 10px;
    overflow: hidden;
}
.faq-item summary {
    list-style: none; cursor: pointer;
    padding: 20px 24px;
    font-family: var(--font-body); font-weight: 700; font-size: 1rem; color: var(--plas-white);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus { color: var(--plas-orange); font-size: 1.4rem; transition: transform .2s; line-height: 1; }
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-item .ans {
    padding: 0 24px 20px;
    font-family: var(--font-body); font-weight: 300; font-size: .95rem; color: var(--plas-grey);
}

/* ============================================================
   WhatsApp float + popup
   ============================================================ */
.wa-float {
    position: fixed; right: 20px; bottom: 20px; z-index: 95;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366;
    display: grid; place-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
    transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

.pop-ov {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(0, 0, 0, .7);
    display: none; place-items: center; padding: 20px;
}
.pop-ov.on { display: grid; }
.pop {
    position: relative;
    background: var(--plas-card);
    border: 1px solid var(--plas-card-border);
    border-radius: 16px;
    padding: 32px;
    max-width: 400px; width: 100%;
}
.pop-x {
    position: absolute; top: 14px; right: 16px;
    background: none; border: none; color: var(--plas-grey);
    font-size: 1.6rem; cursor: pointer; line-height: 1;
}
.pop-h { text-align: center; margin-bottom: 22px; }
.pop-h svg { width: 48px; height: 48px; margin: 0 auto 12px; }
.pop-h h3 { font-size: 1.2rem; margin-bottom: 6px; }
.pop-h p { font-family: var(--font-body); font-weight: 300; font-size: .9rem; color: var(--plas-grey); }
.pop-form { display: flex; flex-direction: column; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-family: var(--font-body); font-size: 12px; color: var(--plas-grey); }
.inp {
    background: #060400;
    border: 1px solid var(--plas-card-border);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--plas-white);
    font-family: var(--font-body); font-size: 1rem;
}
.inp:focus { outline: none; border-color: var(--plas-orange); }
.err { display: none; color: #ef4444; font-size: 12px; }
.err.on { display: block; }
.pop-sub {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #25D366; color: #fff;
    border: none; border-radius: 8px;
    padding: 14px; cursor: pointer;
    font-family: var(--font-body); font-weight: 700; font-size: 1rem;
    transition: opacity .2s;
}
.pop-sub:hover { opacity: .9; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 960px) {
    .hero-g { grid-template-columns: 1fr; gap: 48px; }
    .hero-anim { max-width: 460px; margin: 0 auto; }
    .aut .ab-grid { grid-template-columns: repeat(2, 1fr); }
    .sol .g3 { grid-template-columns: 1fr; }
    .dep-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .oc { grid-template-columns: 1fr; max-width: 480px; }
    .oc-left { border-right: none; border-bottom: 1px solid var(--plas-card-border); }
}

@media (max-width: 720px) {
    section { padding: 64px 0; }
    .dor .g2 { grid-template-columns: 1fr; }
    .aut .ab-grid { grid-template-columns: 1fr; }
    .gar-box { flex-direction: column; text-align: center; gap: 24px; padding: 28px; }
    .ha-notif, .ha-alert { display: none; }
}
