﻿:root {
    --pc-gold: #D9A300;
    --pc-blue: #0060BF;
    --pc-green: #20923C;
    --pc-bg: #0b1220;
    --pc-text: #eaf0ff;
    --pc-muted: rgba(234,240,255,.72);
    --pc-card: rgba(8,12,18,.62);
    --pc-badge: rgba(8,12,18,.62);
    --pc-border: rgba(255,255,255,.10);
    --pc-radius: 18px;
    --pc-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.pc-body {
    margin: 0;
    min-height: 100vh;
    background: #ffffff;
    color: var(--pc-text);
}

/* ===== Topbar ===== */
.pc-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,.85);
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.pc-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

/* ===== Logo ===== */
.pc-brand__logo {
    max-height: 48px; /* mantém a barra compacta */
    width: auto;
    display: block;
}

/* Em telas maiores, permite um pouco mais de respiro */
@media (min-width: 992px) {
    .pc-brand__logo {
        max-height: 56px;
    }
}

.pc-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: .2px;
}

.pc-brand__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pc-gold), var(--pc-green));
    box-shadow: 0 0 0 4px rgba(217,163,0,.18);
}

.pc-brand__name {
    opacity: .95;
}

.pc-badge {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    color: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(90deg, rgba(0,96,191,.75), rgba(32,146,60,.45));
}

/* ===== Hero ===== */
.pc-hero {
    position: relative;
    min-height: calc(100vh - 120px);
    display: grid;
    place-items: center;
    padding: 48px 0 64px;
    overflow: hidden;
}

.pc-hero__bg {
    position: absolute;
    inset: 0;
    xxxbackground: linear-gradient(90deg, rgba(11,18,32,.90), rgba(11,18,32,.35) 55%, rgba(11,18,32,.75)), url('../images/hero-posto.jpg') center/cover no-repeat;
    background: url('../images/hero-posto.jpg') center/cover no-repeat;
    transform: scale(1.02);
    filter: saturate(1.05) contrast(1.05);
}

.pc-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.pc-card {
    width: min(560px, 100%);
    padding: 26px 24px;
    border-radius: var(--pc-radius);
    background: var(--pc-card);
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: var(--pc-shadow);
}

.pc-kicker {
    margin: 0 0 10px;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.78);
}

.pc-title {
    margin: 0 0 10px;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.08;
}

.pc-subtitle {
    margin: 0 0 18px;
    color: var(--pc-muted);
    font-size: 16px;
    line-height: 1.5;
}

/* ===== Buttons ===== */
.pc-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 10px 0 16px;
}

.pc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.14);
    transition: transform .12s ease, filter .12s ease, background .12s ease;
    user-select: none;
    color: rgba(255,255,255,.92);
}

.pc-btn--primary {
    background: linear-gradient(135deg, var(--pc-blue), var(--pc-green));
    border-color: rgba(255,255,255,.08);
    color: #fff;
}

.pc-btn--ghost {
    background: rgba(255,255,255,.06);
}

.pc-btn[aria-disabled=true] {
    opacity: .65;
    pointer-events: none;
    filter: grayscale(.1);
}

/* ===== Status ===== */
.pc-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,.86);
}

.pc-status__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--pc-gold);
    box-shadow: 0 0 0 4px rgba(217,163,0,.18);
}

/* ===== Footer ===== */
.pc-footer {
    border-top: 1px solid rgba(0,0,0,.08);
    background: #112847;
}

.pc-footer__inner {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    color: rgba(255,255,255,.70);
    font-size: 13px;
}

.pc-footer__sep {
    opacity: .55;
}

/* ===== Mobile ===== */
@media (max-width: 720px) {
    .pc-hero__content {
        justify-content: center;
    }

    .pc-hero__bg {
        background: linear-gradient(180deg, rgba(11,18,32,.86), rgba(11,18,32,.72)), url("images/hero-posto.jpg") center/cover no-repeat;
    }
}
