/* =========================
   PRIMO TEC - CSS PREMIUM
   Industrial Dark + Laranja
   ========================= */


/* Reset */

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: #eaf0f7;
    background: #070a0f;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 2px solid rgba(255, 166, 0, .8);
    outline-offset: 3px;
    border-radius: 10px;
}


/* Design Tokens */

:root {
    --bg: #070a0f;
    --bg2: #0b0f16;
    --card: rgba(255, 255, 255, .06);
    --card2: rgba(255, 255, 255, .08);
    --stroke: rgba(255, 255, 255, .12);
    --stroke2: rgba(255, 255, 255, .18);
    --text: #eaf0f7;
    --muted: rgba(234, 240, 247, .72);
    --primary: #ff9f1a;
    /* laranja */
    --primary2: #ffb84a;
    /* laranja claro */
    --ok: #34d399;
    --warn: #fbbf24;
    --bad: #fb7185;
    --radius: 18px;
    --radius2: 26px;
    --shadow: 0 18px 55px rgba(0, 0, 0, .35);
    --shadow2: 0 8px 26px rgba(0, 0, 0, .28);
    --container: 1120px;
}


/* Container */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}


/* Skip */

.skip {
    position: absolute;
    left: -9999px;
    top: 10px;
    background: #111827;
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 999999;
}

.skip:focus {
    left: 14px;
}


/* Topbar */

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 10, 15, .72);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 12px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(234, 240, 247, .86);
    font-size: 13px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--ok);
    box-shadow: 0 0 0 6px rgba(52, 211, 153, .12);
}

.sep {
    opacity: .55;
}

.topbar__right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.toplink {
    font-size: 13px;
    color: rgba(234, 240, 247, .78);
    transition: color .2s ease;
}

.toplink:hover {
    color: #fff;
}


/* Header */

.header {
    position: sticky;
    top: 44px;
    /* abaixo da topbar */
    z-index: 999;
    background: rgba(7, 10, 15, .62);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}


/* Brand */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 240px;
}

.brand__logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    /* tira "quadrado" visual (sem caixa/borda) */
    background: transparent;
    border-radius: 0;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .35));
    mix-blend-mode: normal;
}

.brand__text {
    line-height: 1.05;
}

.brand__name {
    font-weight: 800;
    letter-spacing: .3px;
    font-size: 18px;
}

.brand__sub {
    margin-top: 6px;
    font-size: 12px;
    color: rgba(234, 240, 247, .72);
}


/* Nav */

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav a {
    font-size: 14px;
    color: rgba(234, 240, 247, .78);
    padding: 10px 10px;
    border-radius: 12px;
    transition: background .2s ease, color .2s ease;
}

.nav a:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
}


/* Mobile menu btn */

.menuBtn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    box-shadow: var(--shadow2);
    cursor: pointer;
}

.menuBtn span {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, .9);
    margin: 5px auto;
    border-radius: 999px;
}


/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-weight: 650;
    box-shadow: var(--shadow2);
    transition: transform .15s ease, background .2s ease, border .2s ease;
    user-select: none;
}

.btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .18);
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    border: 1px solid rgba(255, 166, 0, .45);
    background: linear-gradient(180deg, rgba(255, 166, 0, .95), rgba(255, 136, 0, .92));
    color: #0b0f16;
    box-shadow: 0 18px 40px rgba(255, 166, 0, .22);
}

.btn--primary:hover {
    filter: brightness(1.03);
    transform: translateY(-1px);
}

.btn--ghost {
    background: rgba(0, 0, 0, .12);
    border: 1px solid rgba(255, 255, 255, .16);
}

.btn--block {
    width: 100%;
}


/* Hero */

.hero {
    position: relative;
    padding: 70px 0 60px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.02);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 380px at 15% 25%, rgba(255, 166, 0, .20), transparent 60%), radial-gradient(900px 420px at 85% 25%, rgba(52, 211, 153, .12), transparent 60%), linear-gradient(180deg, rgba(7, 10, 15, .62), rgba(7, 10, 15, .92));
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    font-size: 12px;
    color: rgba(234, 240, 247, .92);
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}

.chip--hot {
    background: rgba(255, 166, 0, .16);
    border-color: rgba(255, 166, 0, .30);
    color: #ffe7bf;
}

.hero__title {
    margin: 16px 0 0;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.6px;
}

.hero__titleAccent {
    color: var(--primary);
    text-shadow: 0 14px 45px rgba(255, 166, 0, .25);
}

.hero__subtitle {
    margin: 14px 0 0;
    max-width: 640px;
    font-size: 16px;
    color: rgba(234, 240, 247, .80);
    line-height: 1.6;
}

.hero__cta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__stats {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.stat {
    min-width: 160px;
    padding: 14px 14px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow2);
}

.stat__num {
    font-weight: 900;
    font-size: 20px;
    letter-spacing: .2px;
}

.stat__label {
    margin-top: 6px;
    font-size: 12px;
    color: rgba(234, 240, 247, .72);
}


/* Glass panel */

.glass {
    border-radius: var(--radius2);
    background: rgba(10, 14, 22, .55);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.glass__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(52, 211, 153, .14);
    border: 1px solid rgba(52, 211, 153, .22);
    color: rgba(234, 240, 247, .92);
    font-weight: 700;
    font-size: 12px;
}

.badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--ok);
    box-shadow: 0 0 0 6px rgba(52, 211, 153, .12);
}

.miniActions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.miniDot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .20);
}

.glass__body {
    padding: 16px;
}

.glass__line {
    height: 1px;
    background: rgba(255, 255, 255, .10);
    margin: 16px 0;
}


/* KPI Grid */

.kpiGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.kpi {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
}

.kpi__label {
    font-size: 12px;
    color: rgba(234, 240, 247, .72);
}

.kpi__value {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .2px;
}

.kpi__hint {
    margin-top: 6px;
    font-size: 12px;
    color: rgba(234, 240, 247, .62);
}

.kpi--ok {
    border-color: rgba(52, 211, 153, .24);
    background: rgba(52, 211, 153, .08);
}

.kpi--warn {
    border-color: rgba(251, 191, 36, .24);
    background: rgba(251, 191, 36, .08);
}

.kpi--bad {
    border-color: rgba(251, 113, 133, .24);
    background: rgba(251, 113, 133, .08);
}


/* List inside glass */

.list__title {
    font-weight: 800;
    margin-bottom: 10px;
}

.list__items {
    margin: 0 0 14px 0;
    padding-left: 18px;
    color: rgba(234, 240, 247, .78);
    line-height: 1.55;
}

.hero__note {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(234, 240, 247, .82);
    font-size: 13px;
}

.noteDot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 166, 0, .95);
    box-shadow: 0 0 0 6px rgba(255, 166, 0, .14);
}


/* Sections */

.section {
    padding: 70px 0;
}

.section--alt {
    background: radial-gradient(900px 380px at 20% 0%, rgba(255, 166, 0, .10), transparent 60%), radial-gradient(900px 380px at 80% 0%, rgba(99, 102, 241, .08), transparent 60%), linear-gradient(180deg, rgba(7, 10, 15, .0), rgba(7, 10, 15, .0));
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section__head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.section__title {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 34px);
    letter-spacing: -0.4px;
}

.section__desc {
    margin: 0;
    color: rgba(234, 240, 247, .72);
    line-height: 1.6;
    max-width: 820px;
}


/* Grids */

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.mt {
    margin-top: 14px;
}


/* Cards */

.card {
    border-radius: var(--radius2);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow2);
    padding: 18px;
}

.card--soft {
    background: rgba(255, 255, 255, .05);
}

.card--big {
    padding: 22px;
}

.card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 166, 0, .14);
    border: 1px solid rgba(255, 166, 0, .22);
    margin-bottom: 12px;
    font-size: 18px;
}

.card__title {
    margin: 0;
    font-size: 18px;
    font-weight: 850;
}

.card__text {
    margin: 10px 0 0;
    color: rgba(234, 240, 247, .74);
    line-height: 1.6;
}

.card__list {
    margin: 12px 0 0;
    padding-left: 18px;
    color: rgba(234, 240, 247, .78);
    line-height: 1.55;
}


/* Feature items */

.feature {
    border-radius: var(--radius2);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow2);
    padding: 18px;
}

.feature h3 {
    margin: 0;
    font-size: 16px;
}

.feature p {
    margin: 10px 0 0;
    color: rgba(234, 240, 247, .72);
    line-height: 1.6;
}


/* CTA Band */

.ctaBand {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px;
    border-radius: var(--radius2);
    background: linear-gradient(180deg, rgba(255, 166, 0, .14), rgba(255, 166, 0, .06));
    border: 1px solid rgba(255, 166, 0, .22);
    box-shadow: var(--shadow2);
}

.ctaBand__text h3 {
    margin: 0;
    font-size: 18px;
}

.ctaBand__text p {
    margin: 8px 0 0;
    color: rgba(234, 240, 247, .72);
}


/* Steps */

.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.step {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius2);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow2);
}

.step__num {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 166, 0, .16);
    border: 1px solid rgba(255, 166, 0, .26);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #ffe7bf;
}

.step__body h3 {
    margin: 0;
}

.step__body p {
    margin: 8px 0 0;
    color: rgba(234, 240, 247, .72);
    line-height: 1.6;
}


/* Check list */

.check {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    gap: 10px;
}

.check li {
    position: relative;
    padding-left: 26px;
    color: rgba(234, 240, 247, .78);
    line-height: 1.5;
}

.check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #0b0f16;
    background: rgba(255, 166, 0, .95);
    box-shadow: 0 10px 24px rgba(255, 166, 0, .22);
}


/* Quote */

.quote {
    margin: 0;
    padding: 18px;
    border-radius: var(--radius2);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow2);
}

.quote blockquote {
    margin: 0;
    color: rgba(234, 240, 247, .84);
    line-height: 1.65;
    font-weight: 650;
}

.quote figcaption {
    margin-top: 12px;
    color: rgba(234, 240, 247, .62);
    font-size: 13px;
}


/* FAQ */

.faq {
    display: grid;
    gap: 12px;
}

.faq__item {
    border-radius: var(--radius2);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow2);
    padding: 10px 14px;
}

.faq__item summary {
    cursor: pointer;
    padding: 10px 6px;
    font-weight: 800;
    color: rgba(234, 240, 247, .92);
}

.faq__item p {
    margin: 0;
    padding: 0 6px 12px;
    color: rgba(234, 240, 247, .72);
    line-height: 1.6;
}


/* Contact */

.contactGrid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 14px;
}

.form {
    display: grid;
    gap: 12px;
}

.formRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.field label {
    display: block;
    font-size: 12px;
    color: rgba(234, 240, 247, .72);
    margin: 0 0 8px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .20);
    color: rgba(234, 240, 247, .92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(234, 240, 247, .42);
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.contactLinks {
    display: grid;
    gap: 10px;
}

.contactLink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
}

.contactLink strong {
    color: #fff;
    letter-spacing: .2px;
}

.contactHint {
    color: rgba(234, 240, 247, .62);
    font-size: 13px;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, .10);
    margin: 14px 0;
}

.notice {
    margin-top: 14px;
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(255, 166, 0, .10);
    border: 1px solid rgba(255, 166, 0, .22);
    color: rgba(234, 240, 247, .80);
    line-height: 1.6;
}


/* Muted */

.muted {
    color: rgba(234, 240, 247, .65);
}

.tiny {
    font-size: 12px;
    line-height: 1.4;
}


/* Footer */

.footer {
    padding: 28px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(7, 10, 15, .8);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    gap: 16px;
    align-items: center;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .35));
}

.footer__name {
    font-weight: 900;
}

.footer__sub {
    margin-top: 6px;
    color: rgba(234, 240, 247, .62);
    font-size: 13px;
}

.footer__links {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer__links a {
    color: rgba(234, 240, 247, .72);
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 12px;
}

.footer__links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.footer__copy {
    text-align: right;
    color: rgba(234, 240, 247, .58);
    font-size: 13px;
}


/* WhatsApp Floating */

.waFloat {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(52, 211, 153, .95), rgba(16, 185, 129, .92));
    border: 1px solid rgba(52, 211, 153, .45);
    color: #062014;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(16, 185, 129, .22);
}

.waIcon {
    font-size: 16px;
}

.waText {
    font-size: 13px;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 980px) {
    .hero__inner {
        grid-template-columns: 1fr;
    }
    .kpiGrid {
        grid-template-columns: 1fr 1fr;
    }
    .grid3 {
        grid-template-columns: 1fr;
    }
    .grid2 {
        grid-template-columns: 1fr;
    }
    .contactGrid {
        grid-template-columns: 1fr;
    }
    .footer__inner {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .footer__copy {
        text-align: left;
    }
}

@media (max-width: 820px) {
    .topbar__right {
        display: none;
    }
    .menuBtn {
        display: block;
    }
    .nav {
        position: absolute;
        right: 20px;
        top: 64px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        width: min(420px, calc(100vw - 40px));
        padding: 14px;
        border-radius: var(--radius2);
        background: rgba(10, 14, 22, .92);
        border: 1px solid rgba(255, 255, 255, .12);
        box-shadow: var(--shadow);
        display: none;
    }
    .nav--open {
        display: flex;
    }
    .nav a {
        width: 100%;
    }
    .brand {
        min-width: unset;
    }
}

@media (max-width: 520px) {
    .formRow {
        grid-template-columns: 1fr;
    }
    .brand__logo {
        width: 52px;
        height: 52px;
    }
    .hero {
        padding: 56px 0 46px;
    }
    .stat {
        min-width: 140px;
    }
    .waText {
        display: none;
    }
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white;
    background: linear-gradient( rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url("bg-primo-tec..png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}