/* ============================
   PASSA - Design System v12
   Inspired by Uber Base
   Black + White + Salmon accent
   ============================ */

/* ====== DESIGN TOKENS ====== */

:root {
    /* Primary - Black (Uber-style) */
    --primary: #000000;
    --primary-dark: #000000;
    --primary-light: #333333;
    --primary-bg: #F6F6F6;

    /* CTA - Salmon (accent, used sparingly) */
    --cta: #F2786D;
    --cta-dark: #E05E52;
    --cta-light: #F59B93;
    --cta-bg: #FFF0EE;

    /* Accent - kept for compatibility */
    --accent: #F2786D;
    --accent-light: #F59B93;
    --accent-bg: #FFF0EE;
    --accent-soft: #FFE4E0;

    /* Emerald for trust/verified */
    --emerald: #10B981;
    --emerald-bg: #ECFDF5;

    /* Amber */
    --amber: #F2786D;
    --amber-bg: #FFF0EE;

    /* Semantic */
    --success: #10B981;
    --success-dark: #059669;
    --success-bg: #ECFDF5;
    --warning: #F59E0B;
    --warning-bg: #FFFBEB;
    --danger: #EF4444;
    --danger-bg: #FEF2F2;
    --info: #3B82F6;
    --info-bg: #EFF6FF;

    /* Neutrals - Uber-style high contrast */
    --text-primary: #000000;
    --text-secondary: #545454;
    --text-muted: #999999;
    --border: #E5E5E5;
    --border-light: #F0F0F0;
    --bg: #FFFFFF;
    --bg-alt: #F6F6F6;
    --surface: #FFFFFF;

    /* Shadows - subtle */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-glow: none;
    --shadow-purple-glow: var(--shadow-lg);

    /* Radii - Uber uses generous radii */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 200ms;
    --transition: var(--duration) var(--ease);
    --transition-smooth: 0.3s var(--ease);

    /* Layout */
    --container: 1200px;
    --nav-height: 72px;

    /* Font - Uber uses clean sans-serif */
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ====== RESET & BASE ====== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: top var(--transition);
}

.skip-link:focus { top: 1rem; }

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* ====== UTILITY ====== */

.gradient-text { color: var(--primary); }
.noise-texture::before { display: none; }

/* Icon sizing */
.feature-icon i { font-size: 1.5rem; line-height: 1; }
.cat-icon i { font-size: 1.5rem; line-height: 1; }
.hero-btn i, .btn i { font-size: 1rem; line-height: 1; }
.form-group label i, .checkbox-group label i { font-size: 0.85rem; color: var(--text-muted); margin-right: 0.15rem; }
.alert i { font-size: 1rem; }
.trust-icon i { font-size: 1.3rem; line-height: 1; }

/* Focus */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--primary); outline-offset: 2px;
}

/* ====== SCROLL ANIMATIONS ====== */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ====== NAVBAR ====== */

.navbar {
    background: #fff;
    padding: 0 2rem;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-logo span {
    color: var(--cta);
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-smooth);
    padding: 0.55rem 1rem;
    border-radius: var(--radius-full);
}

.nav-links a:hover {
    color: #000;
    background: var(--bg-alt);
}

.nav-links a.active {
    color: #000;
    font-weight: 600;
    background: var(--bg-alt);
}

.nav-links a.active::after { display: none; }

.nav-cta {
    background: #000 !important;
    color: #fff !important;
    padding: 0.55rem 1.5rem !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    transition: all var(--transition-smooth) !important;
}

.nav-cta:hover {
    background: #333 !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md) !important;
}

.nav-cta::after { display: none !important; }

/* Nav auth */
.nav-user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-user-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #000;
    padding: 0.55rem 0.75rem;
}

.nav-logout {
    font-size: 0.82rem;
    color: var(--text-muted) !important;
    padding: 0.4rem 0.75rem !important;
    border: 1px solid var(--border);
    border-radius: var(--radius-full) !important;
}

.nav-logout:hover {
    color: var(--danger) !important;
    border-color: var(--danger) !important;
    background: var(--danger-bg) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px; min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: #000;
}

.nav-toggle:hover { background: var(--bg-alt); }
.nav-toggle svg { width: 24px; height: 24px; }

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

.hero {
    background: #000;
    padding: 10rem 2rem 6rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
}

/* Video background */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-bg video:nth-child(2) {
    opacity: 0;
}

/* Dark overlay */
.hero-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    width: 100%;
    padding-bottom: 2rem;
}

.hero-eyebrow {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
    animation: fadeUp 0.6s var(--ease) both;
    color: #fff;
}

.hero-highlight {
    color: var(--cta);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2rem;
    max-width: 440px;
    line-height: 1.6;
    animation: fadeUp 0.6s var(--ease) 0.1s both;
}

.hero p:not(.hero-sub):not(.hero-eyebrow) {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeUp 0.6s var(--ease) 0.1s both;
}

.hero-input-wrapper {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 6px;
    display: flex;
    max-width: 520px;
    border: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    animation: fadeUp 0.6s var(--ease) 0.2s both;
    transition: box-shadow 0.3s var(--ease);
}

.hero-input-wrapper:focus-within {
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.hero-btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-btn-outline:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.hero-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    outline: none;
    border-radius: var(--radius-full);
    color: #000;
    font-family: var(--font-body);
    min-width: 0;
    background: transparent;
}

.hero-input::placeholder { color: #999; }

.hero-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    white-space: nowrap;
    font-family: var(--font-body);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-btn:hover {
    background: #333;
}

.hero-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Hero stats — removed, not used in v13 */

/* ====== HERO LOGADO (Uber-like flow) ====== */

.hero-logado-form {
    max-width: 540px;
    margin: 0 auto 2rem;
    animation: fadeUp 0.8s var(--ease) 0.15s both;
}

.hero-endereco-row {
    margin-bottom: 1rem;
}

.hero-endereco-row label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
}

.hero-endereco-row .hero-input {
    width: 100%;
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    box-sizing: border-box;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

.hero-endereco-row .hero-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.hero-endereco-row .hero-input:focus {
    background: rgba(255,255,255,0.12);
    border-color: var(--cta);
}

.hero-input-small {
    max-width: 200px;
}

.hero-urgente {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    margin-top: 0.75rem;
    justify-content: center;
}

.hero-urgente input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--cta);
    cursor: pointer;
}

/* Profissionais result grid */
.profissionais-result {
    max-width: 700px;
    margin: 2rem auto 0;
    animation: slideUp 0.4s var(--ease);
}

.profissionais-result .price-result-title {
    color: #fff;
    margin-bottom: 1.5rem;
}

.profissionais-result .pro-grid {
    gap: 1rem;
}

/* Tempo de chegada badge */
.pro-chegada {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--success-bg);
    color: var(--success-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    width: fit-content;
    margin-bottom: 0.75rem;
}

.pro-chegada i {
    font-size: 0.85rem;
}

.btn-escolher {
    width: 100%;
    margin-top: 0.75rem;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
}

/* Confirmacao box */
.confirmacao-box {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 520px;
    margin: 2rem auto 0;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.4s var(--ease);
}

.confirmacao-box h3 {
    color: #000;
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 0;
}

.confirmacao-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 1;
    margin: 0;
}

/* ====== PRICE RESULT ====== */

.price-result {
    display: none;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 520px;
    margin: 2rem auto 0;
    box-shadow: var(--shadow-xl);
    text-align: left;
    animation: slideUp 0.4s var(--ease);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.price-result.show { display: block; }

.price-result-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #000;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
}

.price-single {
    text-align: center;
    margin: 1.25rem 0;
}

.price-value-big {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    letter-spacing: -1.5px;
}

.price-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.price-detail-item {
    background: var(--bg-alt);
    padding: 0.85rem;
    border-radius: var(--radius);
    text-align: center;
}

.price-detail-item .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.price-detail-item .value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
}

/* ====== SECTIONS (legacy compat) ====== */

.section {
    padding: 5rem 2rem;
    max-width: var(--container);
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #000;
    letter-spacing: -0.03em;
}

.section-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.section-bg {
    background: var(--bg-alt);
}

/* ====== CATEGORIES STRIP ====== */

.categories-strip {
    border-bottom: 1px solid var(--border);
    background: #fff;
    position: sticky;
    top: var(--nav-height);
    z-index: 99;
}

.categories-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.categories-inner::-webkit-scrollbar { display: none; }

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.15s var(--ease);
}

.cat-pill:hover {
    color: #000;
    border-bottom-color: #000;
}

.cat-pill i {
    font-size: 1rem;
    line-height: 1;
}

/* ====== HOW IT WORKS ====== */

.how-section {
    padding: 5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.how-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.how-left h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #000;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.how-left p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.how-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2.5rem;
}

.how-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.how-num {
    width: 32px; height: 32px;
    border-radius: var(--radius-full);
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.how-step strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.25rem;
}

.how-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ====== VALUE PROPS ====== */

.value-section {
    padding: 5rem 2rem;
    background: var(--bg-alt);
}

.value-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 1.5rem;
}

.value-block {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.value-block h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.value-block p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.value-icon {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    color: #000;
}

.value-block--highlight {
    background: #000;
    color: #fff;
    border-color: #000;
    position: relative;
    overflow: hidden;
}

.value-block--highlight h3 { color: #fff; }
.value-block--highlight p { color: rgba(255,255,255,0.6); }

.value-score-demo {
    display: block;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.08);
    position: absolute;
    bottom: -0.5rem;
    right: 1.5rem;
    line-height: 1;
    letter-spacing: -3px;
    pointer-events: none;
}

/* ====== CTA INLINE ====== */

.cta-inline {
    padding: 4rem 2rem 5rem;
}

.cta-inline-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-inline h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #000;
    letter-spacing: -0.03em;
}

/* ====== PROFISSIONAIS ====== */

.pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}

.pro-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.2s var(--ease);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.pro-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: #ccc;
}

.pro-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pro-avatar {
    width: 56px; height: 56px;
    border-radius: var(--radius-full);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
}

.pro-avatar .verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px; height: 20px;
    background: var(--emerald);
    border-radius: var(--radius-full);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-avatar .verified-badge::after {
    content: '';
    width: 8px; height: 5px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin-top: -1px;
}

.pro-info h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
    font-weight: 700;
    color: #000;
}

.pro-info .categoria {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.pro-score-badge {
    margin-left: auto;
    text-align: center;
    flex-shrink: 0;
    background: var(--bg-alt);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    min-width: 58px;
}

.pro-score-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
}

.pro-score-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.15rem;
}

.score-elite .pro-score-value { color: #059669; }
.score-ouro .pro-score-value { color: #D97706; }
.score-prata .pro-score-value { color: #6B7280; }
.score-bronze .pro-score-value { color: #B45309; }

.pro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.pro-stat {
    background: var(--bg-alt);
    padding: 0.65rem 0.5rem;
    border-radius: var(--radius);
    text-align: center;
}

.pro-stat .label {
    font-size: 0.62rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
}

.pro-stat .value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
    margin-top: 0.1rem;
}

.pro-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.badge-verified {
    background: var(--success-bg);
    color: var(--success-dark);
}

.badge-antecedentes {
    background: var(--bg-alt);
    color: var(--text-secondary);
}

.badge-popular {
    background: var(--success);
    color: #fff;
}

/* ====== FORMS ====== */

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: #000;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.2s var(--ease);
    font-family: var(--font-body);
    color: #000;
    background: #fff;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover { border-color: #999; }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #000;
    outline: none;
    box-shadow: none;
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--danger);
}

.form-group .error-message { color: var(--danger); font-size: 0.8rem; margin-top: 0.3rem; display: none; }
.form-group input.error + .error-message,
.form-group textarea.error + .error-message { display: block; }

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group { display: flex; align-items: center; gap: 0.5rem; }
.checkbox-group input[type="checkbox"] { width: 20px; height: 20px; accent-color: #000; cursor: pointer; }
.checkbox-group label { cursor: pointer; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    font-family: var(--font-body);
    min-height: 48px;
}

.btn-primary {
    background: #000;
    color: #fff;
    width: 100%;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: #fff;
    color: #000;
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-alt);
    border-color: #999;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ====== DASHBOARD ====== */

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #fff;
    padding: 1.75rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.2s var(--ease);
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-card .stat-value {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: #000;
    letter-spacing: -1px;
}

.stat-card .stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ====== SCORE METER ====== */

.score-meter {
    width: 200px; height: 200px;
    margin: 0 auto;
}

.score-meter-circle {
    width: 100%; height: 100%;
    border-radius: var(--radius-full);
    background: conic-gradient(
        #000 calc(var(--score-pct) * 1%),
        var(--border) calc(var(--score-pct) * 1%)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.6s var(--ease);
}

.score-meter-inner {
    width: 160px; height: 160px;
    border-radius: var(--radius-full);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-meter-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    line-height: 1;
    letter-spacing: -1px;
}

.score-meter-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====== FILTER BAR ====== */

.filter-bar {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-bar select,
.filter-bar input {
    padding: 0.65rem 1.25rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: all 0.2s var(--ease);
    color: #000;
    background: #fff;
    min-height: 44px;
    cursor: pointer;
}

.filter-bar select:focus,
.filter-bar input:focus {
    border-color: #000;
    outline: none;
}

/* ====== SCORE BREAKDOWN ====== */

.score-breakdown { margin-top: 2rem; }
.score-bar-item { margin-bottom: 1rem; }

.score-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.score-bar-header span:last-child {
    font-weight: 700;
    color: #000;
}

.score-bar-track {
    height: 8px;
    background: var(--bg-alt);
    border-radius: 4px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: #000;
    transition: width 0.8s var(--ease);
}

/* ====== LOADING ====== */

.loading { display: none; text-align: center; padding: 3rem 2rem; }
.loading.show { display: block; }

.spinner {
    width: 36px; height: 36px;
    border: 3px solid var(--border);
    border-top-color: #000;
    border-radius: var(--radius-full);
    animation: spin 0.7s linear infinite;
    margin: 0 auto;
}

@keyframes spin { to { transform: rotate(360deg); } }
.loading p { margin-top: 1rem; color: var(--text-muted); font-size: 0.9rem; }

.skeleton {
    background: linear-gradient(90deg, var(--border) 25%, var(--bg-alt) 50%, var(--border) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ====== TOASTS ====== */

.toast-container {
    position: fixed;
    top: calc(var(--nav-height) + 1rem);
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.toast {
    background: #fff;
    border-radius: var(--radius);
    padding: 0.9rem 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    pointer-events: auto;
    animation: toastIn 0.3s var(--ease);
    max-width: 380px;
    min-width: 280px;
    border: 1px solid var(--border);
}

.toast.toast-out { animation: toastOut 0.3s var(--ease) forwards; }

@keyframes toastIn { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(100%); } }

.toast-icon { flex-shrink: 0; width: 20px; height: 20px; }
.toast-success { border-left: 3px solid var(--success); }
.toast-success .toast-icon { color: var(--success); }
.toast-error { border-left: 3px solid var(--danger); }
.toast-error .toast-icon { color: var(--danger); }
.toast-info { border-left: 3px solid #000; }
.toast-info .toast-icon { color: #000; }

.toast-close {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 0.25rem;
    border-radius: var(--radius-sm);
    min-width: 28px; min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover { background: var(--bg-alt); color: #000; }

/* ====== ALERTS ====== */

.alert {
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success { background: var(--success-bg); color: var(--success-dark); }
.alert-info { background: var(--bg-alt); color: var(--text-secondary); }
.alert-error { background: var(--danger-bg); color: var(--danger); }

/* ====== FOOTER ====== */

.footer {
    background: #000;
    color: #fff;
    padding: 5rem 2rem 2.5rem;
    position: relative;
}

.footer-content {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.footer-brand span {
    color: var(--cta);
}

.footer-desc { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.7; }

.footer-col h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.3);
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.35rem 0;
    transition: color 0.2s var(--ease);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    max-width: var(--container);
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: rgba(255,255,255,0.2);
    font-size: 0.8rem;
}

/* ====== CTA SECTION (legacy compat) ====== */

.cta-section {
    background: #000;
    border-radius: var(--radius-2xl);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    max-width: var(--container);
    margin: 0 auto;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.cta-section p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
    font-size: 1rem;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-section .btn-primary {
    width: auto;
    background: #fff;
    color: #000;
    font-weight: 700;
}

.cta-section .btn-primary:hover {
    background: #F6F6F6;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* ====== RESPONSIVE ====== */

@media (max-width: 768px) {
    .navbar { padding: 0 1rem; }
    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0; right: 0;
        flex-direction: column;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 0.75rem;
        gap: 0.25rem;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.85rem 1rem; border-radius: var(--radius-sm); font-size: 1rem; }
    .nav-cta { text-align: center; margin-top: 0.5rem; }

    .hero { padding: 6rem 1.25rem 3rem; min-height: 75vh; }
    .hero h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
    .hero-sub { font-size: 0.95rem; }

    .hero-input-wrapper {
        flex-direction: column;
        border-radius: var(--radius);
        padding: 4px;
    }

    .hero-input { border-radius: var(--radius) var(--radius) 0 0; padding: 0.85rem 1rem; }
    .hero-btn { border-radius: 0 0 var(--radius) var(--radius); padding: 0.85rem; justify-content: center; }

    .categories-strip { position: static; }
    .categories-inner { padding: 0 1rem; }
    .cat-pill { padding: 0.85rem 1rem; font-size: 0.82rem; }

    .how-section { padding: 3.5rem 1.25rem; }
    .how-inner { grid-template-columns: 1fr; gap: 2rem; }
    .how-steps { grid-template-columns: 1fr; gap: 1.25rem; }

    .value-section { padding: 3.5rem 1.25rem; }
    .value-inner { grid-template-columns: 1fr; }

    .cta-inline { padding: 3rem 1.25rem 4rem; }
    .cta-inline-inner { flex-direction: column; text-align: center; }

    .section { padding: 3.5rem 1.25rem; }
    .form-row { grid-template-columns: 1fr; }
    .pro-grid { grid-template-columns: 1fr; }
    .dashboard-stats { grid-template-columns: 1fr 1fr; }
    .form-container { padding: 1.5rem; margin: 0 0.25rem; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }

    .toast-container { left: 1rem; right: 1rem; }
    .toast { max-width: 100%; min-width: auto; }

    .cta-section {
        margin-left: 1rem;
        margin-right: 1rem;
        border-radius: var(--radius-xl);
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .price-value { font-size: 1.75rem; }
    .dashboard-stats { grid-template-columns: 1fr; }
    .how-steps { gap: 1rem; }
}

/* Admin link in main navbar */
.nav-admin-link {
    display: inline-flex; align-items: center; gap: 0.35rem;
    background: var(--bg-alt); color: #000 !important;
    padding: 0.4rem 0.85rem !important; border-radius: 6px;
    font-weight: 600 !important; font-size: 0.8rem;
    transition: all 0.2s;
}
.nav-admin-link:hover { background: #000; color: #fff !important; }
.nav-admin-link i { font-size: 0.85rem; }

/* ============================
   ADMIN DASHBOARD
   ============================ */

.admin-body { margin: 0; display: flex; min-height: 100vh; background: var(--bg); }

/* Sidebar */
.admin-sidebar {
    width: 260px; background: var(--text-primary); color: #fff;
    display: flex; flex-direction: column; position: fixed;
    top: 0; left: 0; bottom: 0; z-index: 100;
    transition: transform 0.3s ease;
}
.admin-sidebar-header { padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 0.75rem; }
.admin-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -0.5px; }
.admin-logo span { color: var(--cta); }
.admin-badge { background: var(--cta); color: #fff; padding: 0.15rem 0.5rem; border-radius: 4px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

.admin-nav { flex: 1; padding: 1rem 0; overflow-y: auto; }
.admin-nav-item {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 1.5rem; color: rgba(255,255,255,0.6);
    text-decoration: none; font-size: 0.9rem; font-weight: 500;
    transition: all 0.2s ease; border-left: 3px solid transparent;
}
.admin-nav-item:hover { color: #fff; background: rgba(255,255,255,0.06); }
.admin-nav-item.active { color: #fff; background: rgba(255,255,255,0.1); border-left-color: var(--cta); }
.admin-nav-item i { font-size: 1.1rem; width: 20px; text-align: center; }

.admin-sidebar-footer { padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.08); }

/* Main */
.admin-main { margin-left: 260px; flex: 1; min-height: 100vh; }
.admin-topbar {
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 1rem 2rem; display: flex; align-items: center; gap: 1rem;
    position: sticky; top: 0; z-index: 50;
}
.admin-menu-toggle { display: none; background: none; border: none; font-size: 1.25rem; cursor: pointer; color: var(--text-primary); padding: 0.5rem; }
.admin-page-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin: 0; }
.admin-topbar-right { margin-left: auto; }
.admin-user-name { font-size: 0.875rem; color: var(--text-secondary); font-weight: 500; }

.admin-content { padding: 2rem; max-width: 1400px; }

/* KPI Cards */
.admin-kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.admin-kpi-card {
    background: var(--surface); border-radius: var(--radius-lg); padding: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
}
.admin-kpi-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.admin-kpi-info { display: flex; flex-direction: column; }
.admin-kpi-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--text-primary); line-height: 1.2; }
.admin-kpi-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* Grid layouts */
.admin-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }

/* Cards */
.admin-card {
    background: var(--surface); border-radius: var(--radius-lg); padding: 1.5rem;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
    margin-bottom: 1.5rem;
}
.admin-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-primary); margin: 0 0 1rem; }
.admin-card-subtitle { font-size: 0.875rem; color: var(--text-secondary); margin: 0 0 1rem; }

/* Stats row */
.admin-stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.admin-stat { text-align: center; padding: 0.75rem; background: var(--bg-alt); border-radius: var(--radius); }
.admin-stat-value { display: block; font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.admin-stat-label { font-size: 0.75rem; color: var(--text-muted); }

/* Activity list */
.admin-activity-list { display: flex; flex-direction: column; gap: 0.5rem; max-height: 300px; overflow-y: auto; }
.admin-activity-item {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.625rem 0.75rem; background: var(--bg-alt); border-radius: var(--radius);
    font-size: 0.85rem;
}
.admin-activity-item .desc { flex: 1; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-activity-item .time { color: var(--text-muted); font-size: 0.75rem; white-space: nowrap; }

/* Toolbar */
.admin-toolbar { display: flex; gap: 0.75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.admin-input {
    flex: 1; min-width: 200px; padding: 0.625rem 1rem;
    border: 1px solid var(--border); border-radius: var(--radius);
    font-size: 0.875rem; font-family: var(--font-body); background: var(--bg-alt);
    outline: none; transition: border-color 0.2s;
}
.admin-input:focus { border-color: var(--primary); }
.admin-select {
    padding: 0.625rem 1rem; border: 1px solid var(--border);
    border-radius: var(--radius); font-size: 0.875rem; font-family: var(--font-body);
    background: var(--bg-alt); cursor: pointer; outline: none;
}

/* Table */
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.admin-table th {
    text-align: left; padding: 0.75rem; font-weight: 600;
    color: var(--text-muted); border-bottom: 2px solid var(--border);
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px;
    white-space: nowrap;
}
.admin-table td { padding: 0.75rem; border-bottom: 1px solid var(--border-light); color: var(--text-primary); }
.admin-table tbody tr:hover { background: var(--bg-alt); }

/* Status badges */
.admin-badge-status {
    display: inline-block; padding: 0.2rem 0.6rem; border-radius: 20px;
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px;
}
.badge-ativo, .badge-concluido { background: var(--success-bg); color: var(--success-dark); }
.badge-suspenso, .badge-cancelado { background: var(--danger-bg); color: var(--danger); }
.badge-pendente { background: var(--warning-bg); color: var(--warning); }
.badge-aceito, .badge-em_andamento { background: var(--info-bg); color: var(--info); }
.badge-cliente { background: var(--accent-bg); color: var(--accent); }
.badge-prestador { background: var(--primary-bg); color: var(--primary); }

/* Action buttons */
.admin-btn {
    padding: 0.4rem 0.75rem; border: none; border-radius: var(--radius);
    font-size: 0.75rem; font-weight: 600; cursor: pointer;
    transition: all 0.2s; font-family: var(--font-body);
}
.admin-btn-danger { background: var(--danger-bg); color: var(--danger); }
.admin-btn-danger:hover { background: var(--danger); color: #fff; }
.admin-btn-success { background: var(--success-bg); color: var(--success-dark); }
.admin-btn-success:hover { background: var(--success); color: #fff; }
.admin-btn-primary { background: var(--primary-bg); color: var(--primary); }
.admin-btn-primary:hover { background: var(--primary); color: #fff; }

/* Pagination */
.admin-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
.admin-page-btn {
    padding: 0.4rem 0.75rem; border: 1px solid var(--border);
    border-radius: var(--radius); background: var(--surface);
    font-size: 0.8rem; cursor: pointer; transition: all 0.2s; font-family: var(--font-body);
}
.admin-page-btn:hover { border-color: var(--primary); color: var(--primary); }
.admin-page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Pendentes grid */
.admin-pendentes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.admin-pendente-card {
    background: var(--bg-alt); border-radius: var(--radius); padding: 1.25rem;
    border: 1px solid var(--border-light);
}
.admin-pendente-card h4 { margin: 0 0 0.5rem; font-size: 1rem; color: var(--text-primary); }
.admin-pendente-card .meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; line-height: 1.6; }
.admin-pendente-card .checks { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.8rem; }
.check-ok { color: var(--success); }
.check-pending { color: var(--warning); }

/* Empty state */
.admin-empty { text-align: center; padding: 3rem; color: var(--text-muted); }
.admin-empty p { margin: 0.5rem 0 0; }

/* CSS Charts */
.admin-chart { min-height: 250px; }
.admin-bar-chart { display: flex; align-items: flex-end; gap: 0.5rem; height: 220px; padding-top: 1rem; }
.admin-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.admin-bar {
    width: 100%; border-radius: 6px 6px 0 0;
    background: #000;
    transition: height 0.5s ease;
    min-height: 2px; position: relative;
}
.admin-bar:hover { filter: brightness(1.15); }
.admin-bar-label { font-size: 0.7rem; color: var(--text-muted); text-align: center; }
.admin-bar-value { font-size: 0.7rem; font-weight: 700; color: var(--text-primary); }

/* Donut chart */
.admin-donut-chart { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.admin-donut { width: 160px; height: 160px; border-radius: 50%; position: relative; }
.admin-donut-center {
    position: absolute; inset: 30px; border-radius: 50%;
    background: var(--surface); display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.admin-donut-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--text-primary); }
.admin-donut-label { font-size: 0.7rem; color: var(--text-muted); }
.admin-donut-legend { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.admin-legend-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--text-secondary); }
.admin-legend-dot { width: 10px; height: 10px; border-radius: 50%; }

/* Responsive admin */
@media (max-width: 768px) {
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .admin-menu-toggle { display: block; }
    .admin-kpi-grid { grid-template-columns: 1fr 1fr; }
    .admin-grid-2 { grid-template-columns: 1fr; }
    .admin-content { padding: 1rem; }
    .admin-topbar { padding: 0.75rem 1rem; }
}

@media (max-width: 480px) {
    .admin-kpi-grid { grid-template-columns: 1fr; }
}

/* Pink variable kept for compat */
.pink { color: var(--cta-light); }

/* Tab active state */
.tab-active {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}
