:root {
    --blue-950: #08254f;
    --blue-900: #0a326d;
    --blue-800: #0849a7;
    --blue-700: #0b5ed7;
    --blue-600: #1976e9;
    --blue-100: #e8f2ff;
    --blue-50: #f3f8ff;
    --cyan-100: #dff8ff;
    --cyan-600: #0d91b8;
    --green-600: #0d9d66;
    --green-50: #ebfff6;
    --amber-600: #b66900;
    --amber-50: #fff7e8;
    --red-600: #d73b47;
    --red-50: #fff0f1;
    --ink: #172033;
    --muted: #657086;
    --line: #e5eaf2;
    --surface: #ffffff;
    --surface-2: #f7f9fc;
    --shadow: 0 18px 60px rgba(15, 53, 102, .10);
    --shadow-sm: 0 8px 28px rgba(15, 53, 102, .08);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.section { padding: 76px 0; }
.full { width: 100%; grid-column: 1 / -1; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229,234,242,.9);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
    width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center;
    color: white; font-weight: 800; letter-spacing: -.03em;
    background: linear-gradient(145deg, var(--blue-800), var(--blue-600));
    box-shadow: 0 9px 20px rgba(11, 94, 215, .26);
}
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1.15; }
.brand strong { font-size: 1.02rem; }
.brand small { color: var(--muted); font-size: .72rem; margin-top: 3px; }
.main-nav { display: flex; align-items: center; gap: 18px; font-size: .92rem; font-weight: 600; color: #42506a; }
.main-nav > a:not(.btn):hover { color: var(--blue-700); }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    min-height: 42px; padding: 9px 16px; border-radius: 12px;
    border: 1px solid transparent; font-weight: 700; font-size: .91rem; line-height: 1;
    transition: .18s ease; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { min-height: 36px; padding: 7px 12px; border-radius: 10px; font-size: .82rem; }
.btn-lg { min-height: 50px; padding: 13px 20px; border-radius: 14px; }
.btn-primary { color: white; background: linear-gradient(135deg, var(--blue-800), var(--blue-600)); box-shadow: 0 10px 24px rgba(11, 94, 215, .20); }
.btn-primary:hover { box-shadow: 0 14px 28px rgba(11, 94, 215, .28); }
.btn-white { color: var(--blue-900); background: #fff; border-color: rgba(255,255,255,.6); }
.btn-soft { color: var(--blue-800); background: var(--blue-50); border-color: #d8e9ff; }
.btn-outline { color: #40506d; background: #fff; border-color: var(--line); }
.btn-ghost { color: #40506d; background: transparent; border-color: #d9e1ec; }
.btn-whatsapp { color: #086b47; background: var(--green-50); border-color: #c7f5e1; }
.btn-verified { color: white; background: linear-gradient(135deg, #145bd1, #2489ff); }
.btn-warning { color: var(--amber-600); background: var(--amber-50); border-color: #f6dfb6; }
.btn-danger-soft { color: var(--red-600); background: var(--red-50); border-color: #ffd8dc; }

.eyebrow { display: inline-block; color: var(--blue-700); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; margin-bottom: 9px; }
.eyebrow.light { color: #cfe4ff; }

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(74, 164, 255, .18), transparent 32%),
        linear-gradient(135deg, #f5f9ff 0%, #edf5ff 48%, #f9fcff 100%);
    padding: 76px 0 88px;
}
.hero::after { content: ''; position: absolute; inset: auto -150px -260px auto; width: 580px; height: 580px; border-radius: 50%; background: rgba(14, 104, 226, .06); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 68px; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(2.7rem, 5.6vw, 5.2rem); line-height: 1.01; letter-spacing: -.055em; color: var(--blue-950); }
.hero h1 span { color: var(--blue-700); }
.hero-copy > p { max-width: 690px; margin: 22px 0 0; color: #526079; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; color: #52627b; font-size: .86rem; font-weight: 600; }
.trust-row span::first-letter { color: var(--green-600); }

.hero-panel {
    position: relative; overflow: hidden;
    padding: 28px; border-radius: var(--radius-xl); color: white;
    background: linear-gradient(145deg, #0a397b 0%, #0b5ed7 58%, #2489ff 100%);
    box-shadow: 0 28px 80px rgba(16, 76, 160, .28);
    transform: rotate(1.2deg);
}
.hero-panel > * { position: relative; z-index: 2; }
.hero-panel-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.mini-label { font-size: .76rem; color: rgba(255,255,255,.72); font-weight: 600; }
.sample-profile { display: flex; align-items: center; gap: 15px; margin-top: 32px; }
.sample-profile > div:last-child { display: flex; flex-direction: column; }
.sample-profile strong { font-size: 1.15rem; }
.sample-profile span { font-size: .83rem; color: rgba(255,255,255,.75); }
.hero-panel > p { color: rgba(255,255,255,.86); margin: 18px 0 24px; }
.sample-actions { display: flex; gap: 9px; }
.hero-panel .btn-soft, .hero-panel .btn-whatsapp { background: rgba(255,255,255,.13); color: #fff; border-color: rgba(255,255,255,.16); }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; z-index: 1; }
.orbit-one { width: 300px; height: 300px; right: -150px; bottom: -130px; }
.orbit-two { width: 180px; height: 180px; right: -80px; top: -70px; }

.avatar { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; font-weight: 800; color: var(--blue-800); background: linear-gradient(145deg, #e9f3ff, #d9eaff); border: 1px solid #cfe2fb; }
.avatar-lg { width: 62px; height: 62px; border-radius: 19px; color: white; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.18); }
.avatar-xl { width: 82px; height: 82px; border-radius: 24px; font-size: 1.3rem; }
.avatar-sm { width: 38px; height: 38px; border-radius: 11px; font-size: .8rem; }

.verified-badge { display: inline-flex; align-items: center; gap: 5px; padding: 6px 9px; border-radius: 999px; color: #fff; background: var(--blue-700); font-size: .72rem; font-weight: 800; white-space: nowrap; }
.hero-panel .verified-badge { background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.2); }
.verified-dot { display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: var(--blue-700); color: white; font-size: .67rem; font-weight: 900; }

.search-section { position: relative; z-index: 4; margin-top: -28px; }
.search-card {
    display: grid; grid-template-columns: 1.25fr 1fr .85fr auto; gap: 10px; align-items: end;
    padding: 14px; border: 1px solid rgba(217, 228, 241, .95); border-radius: 18px; background: #fff; box-shadow: var(--shadow);
}
.search-field, .field { display: flex; flex-direction: column; gap: 7px; }
.search-field span, .field > span { color: #4c5a71; font-size: .75rem; font-weight: 800; }
.search-field input, .search-field select, .field input, .field select, .field textarea, .admin-filters input, .admin-filters select, .sort-form select {
    width: 100%; min-height: 44px; border: 1px solid #dce4ef; border-radius: 11px; padding: 9px 12px; color: var(--ink); background: #fff; outline: none; transition: .18s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.search-field input:focus, .search-field select:focus, .field input:focus, .field select:focus, .field textarea:focus, .admin-filters input:focus, .admin-filters select:focus, .sort-form select:focus { border-color: #8bbfff; box-shadow: 0 0 0 4px rgba(34, 126, 240, .09); }
.search-button { min-height: 44px; }

.professionals-section { padding-top: 62px; }
.section-toolbar { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 24px; }
.section-toolbar h2 { margin: 0; font-size: clamp(1.55rem, 3vw, 2.15rem); letter-spacing: -.035em; color: var(--blue-950); }
.sort-form label { display: flex; align-items: center; gap: 8px; }
.sort-form span { color: var(--muted); font-size: .8rem; font-weight: 700; }
.sort-form select { min-height: 38px; padding-block: 6px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.professional-card {
    position: relative; display: flex; flex-direction: column;
    padding: 19px; min-height: 332px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 9px 26px rgba(17, 51, 94, .04); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    overflow: hidden;
}
.professional-card:hover { transform: translateY(-3px); border-color: #c9dcf5; box-shadow: var(--shadow-sm); }

/* Identidade visual suave por ramo de atividade. As variáveis são definidas no card pelo PHP. */
.category-colored-card {
    border-color: var(--category-border);
    background: linear-gradient(180deg, var(--category-soft) 0, #fff 46%);
}
.category-colored-card:hover {
    border-color: var(--category-accent);
    box-shadow: 0 14px 34px rgba(17, 51, 94, .10);
}
.category-accent-bar {
    position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--category-accent);
}
.card-top { display: flex; align-items: center; gap: 11px; padding-top: 3px; padding-right: 76px; }
.card-title { min-width: 0; flex: 1; }
.name-line { display: flex; align-items: center; gap: 6px; }
.name-line h3 { margin: 0; min-width: 0; font-size: 1rem; letter-spacing: -.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-title > span { display: block; color: var(--blue-700); font-size: .79rem; font-weight: 700; margin-top: 2px; }
.service-avatar {
    flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center;
    border: 1px solid var(--category-border); border-radius: 14px;
    color: var(--category-text); background: rgba(255,255,255,.78);
    box-shadow: 0 6px 16px rgba(17, 51, 94, .06);
    font-size: 1.38rem; line-height: 1;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.professional-card:hover .service-avatar {
    transform: translateY(-1px) rotate(-2deg);
    background: var(--category-soft);
    box-shadow: 0 8px 20px rgba(17, 51, 94, .09);
}
.category-avatar {
    color: var(--category-text);
    background: var(--category-soft);
    border: 1px solid var(--category-border);
}
.card-title > .category-name-pill {
    display: inline-flex; align-items: center; width: fit-content; max-width: 100%;
    padding: 4px 8px; margin-top: 5px; border: 1px solid var(--category-border); border-radius: 999px;
    color: var(--category-text); background: rgba(255,255,255,.62); font-size: .7rem; font-weight: 800;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card-badge { position: absolute; top: 13px; right: 13px; transform: scale(.88); transform-origin: top right; }
.location-line { margin-top: 15px; color: #5c6980; font-size: .84rem; font-weight: 600; }

.card-phone-highlight {
    display: flex; align-items: center; gap: 10px; margin-top: 12px; padding: 10px 11px;
    border: 1px solid var(--category-border); border-radius: 13px;
    color: var(--category-text); background: rgba(255,255,255,.78);
    box-shadow: 0 5px 16px rgba(17, 51, 94, .045); transition: .18s ease;
}
.card-phone-highlight:hover {
    transform: translateY(-1px); border-color: var(--category-accent); background: #fff;
    box-shadow: 0 8px 20px rgba(17, 51, 94, .08);
}
.card-phone-icon {
    flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center;
    border-radius: 10px; color: #fff; background: var(--category-accent); font-size: .94rem; font-weight: 900;
}
.card-phone-copy { display: flex; flex: 1; min-width: 0; flex-direction: column; align-items: flex-start; }
.card-phone-copy small { color: #778397; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .045em; }
.card-phone-copy strong { margin-top: 2px; color: var(--category-text); font-size: 1.06rem; line-height: 1.15; letter-spacing: -.015em; white-space: nowrap; }
.card-phone-action {
    display: inline-flex; align-items: center; gap: 4px; margin-top: 5px; padding: 4px 7px; border-radius: 8px;
    color: var(--category-text); background: var(--category-soft); font-size: .66rem; font-weight: 900; white-space: nowrap;
}

.card-description { flex: 1; margin: 13px 0 17px; color: #5f6b80; font-size: .89rem; line-height: 1.62; }
.card-meta { display: flex; justify-content: space-between; gap: 12px; padding-top: 13px; border-top: 1px solid #edf1f6; color: #748094; font-size: .76rem; }
.card-meta strong { color: var(--ink); }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 13px; }

.empty-state { text-align: center; padding: 58px 24px; border: 1px dashed #d7e1ee; border-radius: var(--radius-xl); background: var(--surface-2); }
.empty-state h3, .empty-state h1 { margin: 8px 0 6px; }
.empty-state p { color: var(--muted); margin: 0 0 18px; }
.empty-icon { font-size: 2.5rem; color: var(--blue-700); }
.compact-empty { padding: 38px 20px; }
.pagination { display: flex; justify-content: center; gap: 7px; margin-top: 30px; }
.pagination a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; color: #59677c; font-weight: 700; }
.pagination a.active { color: white; background: var(--blue-700); border-color: var(--blue-700); }

.stats-section { padding-block: 0 76px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 20px; border-radius: var(--radius-xl); background: var(--blue-50); border: 1px solid #dbeaff; }
.stats-grid div { text-align: center; padding: 20px 10px; }
.stats-grid div + div { border-left: 1px solid #d2e4fa; }
.stats-grid strong { display: block; color: var(--blue-900); font-size: 2rem; line-height: 1; letter-spacing: -.04em; }
.stats-grid span { display: block; color: var(--muted); font-size: .82rem; margin-top: 7px; }

.cta-section { padding-top: 0; }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 38px 42px; border-radius: var(--radius-xl); color: white; background: linear-gradient(135deg, var(--blue-950), var(--blue-700)); box-shadow: 0 24px 65px rgba(11, 75, 163, .24); }
.cta-card h2 { margin: 0; font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.05; letter-spacing: -.045em; }
.cta-card p { margin: 10px 0 0; max-width: 760px; color: rgba(255,255,255,.78); }
.compact-cta { padding: 28px 32px; }
.compact-cta h2 { font-size: 1.7rem; }

.site-footer { padding: 54px 0 22px; background: #081d3b; color: #d7e4f7; }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr .75fr; gap: 46px; }
.footer-brand .brand-mark { background: rgba(255,255,255,.12); box-shadow: none; }
.footer-brand small { color: #9fb2cc; }
.site-footer p { color: #9fb2cc; font-size: .86rem; line-height: 1.75; }
.footer-bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); color: #7e96b6; font-size: .78rem; }

.flash-wrap { margin-top: 16px; }
.flash { padding: 13px 15px; border-radius: 12px; font-size: .89rem; font-weight: 600; }
.flash ul { margin: 7px 0 0; padding-left: 20px; }
.flash-success { color: #08724a; background: var(--green-50); border: 1px solid #c4efd9; }
.flash-error { color: #a92f3b; background: var(--red-50); border: 1px solid #ffd7dc; }
.flash-info { color: #1a63a8; background: var(--blue-50); border: 1px solid #d7e9ff; }

.page-hero { padding: 56px 0; background: linear-gradient(135deg, #f2f7ff, #eaf3ff); border-bottom: 1px solid #dae8f9; }
.page-hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.page-hero h1 { margin: 0; max-width: 790px; font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1.02; letter-spacing: -.05em; color: var(--blue-950); }
.page-hero p { margin: 14px 0 0; color: #5d6c82; }
.price-mini-card { flex: 0 0 190px; display: flex; flex-direction: column; padding: 20px; border: 1px solid #d9e7f7; border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.price-mini-card span { color: var(--blue-700); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.price-mini-card strong { color: var(--blue-950); font-size: 2.15rem; letter-spacing: -.05em; line-height: 1.1; margin-top: 6px; }
.price-mini-card small { color: var(--muted); margin-top: 4px; }

.form-section { background: #f8fafd; }
.form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 22px; align-items: start; }
.form-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-sm); }
.section-heading.compact h1, .section-heading.compact h2 { margin: 0; font-size: clamp(1.65rem, 3vw, 2.35rem); letter-spacing: -.04em; line-height: 1.08; color: var(--blue-950); }
.section-heading.compact p { color: var(--muted); margin: 9px 0 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-top: 24px; }
.form-section-title { grid-column: 1 / -1; margin-top: 4px; padding-top: 10px; color: var(--blue-900); font-weight: 800; font-size: .87rem; }
.field small { color: #8490a2; font-size: .72rem; }
.type-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.type-option { position: relative; }
.type-option input { position: absolute; opacity: 0; pointer-events: none; }
.type-option span { display: flex; flex-direction: column; padding: 15px; border: 1px solid #dce4ef; border-radius: 14px; cursor: pointer; transition: .18s ease; }
.type-option strong { font-size: .9rem; }
.type-option small { color: var(--muted); margin-top: 3px; }
.type-option input:checked + span { border-color: #7cb4ff; background: var(--blue-50); box-shadow: 0 0 0 3px rgba(34, 126, 240, .08); }
.check-field { display: flex; align-items: flex-start; gap: 9px; color: #5f6b80; font-size: .82rem; }
.check-field input { margin-top: 5px; }
.company-payment { display: none; padding: 17px; border: 1px solid #d8e8fb; border-radius: 16px; background: var(--blue-50); }
.company-payment.active { display: block; }
.pix-box { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 14px; }
.pix-icon { display: inline-grid; place-items: center; min-width: 46px; height: 34px; padding: 0 8px; border-radius: 10px; color: white; background: #149b8f; font-size: .7rem; font-weight: 900; }
.pix-box p { margin: 4px 0 8px; color: var(--muted); font-size: .82rem; }
.copy-pix { padding: 0; border: 0; color: var(--blue-700); background: transparent; font-weight: 800; font-size: .78rem; }
.pending-note { display: flex; gap: 11px; align-items: flex-start; padding: 14px; border-radius: 13px; color: #5e6a7c; background: #f6f8fb; border: 1px solid #e7ecf2; }
.pending-note p { margin: 2px 0 0; font-size: .8rem; }
.form-sidebar { display: grid; gap: 12px; position: sticky; top: 94px; }
.info-card { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.info-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; color: var(--blue-700); background: var(--blue-50); font-weight: 900; }
.info-card h3 { margin: 12px 0 5px; font-size: 1rem; }
.info-card p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }
.other-city-field { display: none; }
.other-city-field.active { display: flex; }

.profile-section { background: #f8fafd; }
.profile-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 22px; align-items: start; }
.profile-main, .contact-card { border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-sm); }
.profile-main { padding: 30px; }
.profile-header { display: flex; align-items: center; gap: 18px; padding-bottom: 24px; border-bottom: 1px solid #edf1f6; }
.profile-heading { min-width: 0; }
.profile-name-line { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.profile-name-line h1 { margin: 0; font-size: clamp(1.65rem, 4vw, 2.55rem); letter-spacing: -.045em; line-height: 1.05; }
.profile-heading > p { margin: 7px 0 0; color: var(--blue-700); font-weight: 700; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.profile-tags span { padding: 5px 8px; border-radius: 8px; background: #f5f7fa; color: #677489; font-size: .76rem; font-weight: 600; }
.verification-panel { display: flex; gap: 12px; align-items: flex-start; margin-top: 22px; padding: 15px; border-radius: 14px; background: var(--blue-50); border: 1px solid #d7e8ff; }
.verification-panel > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-700); color: white; font-weight: 900; }
.verification-panel p { margin: 3px 0 0; color: var(--muted); font-size: .8rem; }
.profile-content-block { padding: 28px 0 6px; }
.profile-content-block h2 { margin: 0; font-size: 1.55rem; letter-spacing: -.035em; }
.profile-content-block p { color: #5e6a7d; line-height: 1.8; }
.profile-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 22px; }
.profile-stats div { padding: 15px; border-radius: 14px; background: var(--surface-2); border: 1px solid #edf0f5; }
.profile-stats strong { display: block; color: var(--blue-950); font-size: 1.08rem; }
.profile-stats span { color: var(--muted); font-size: .72rem; }
.contact-card { position: sticky; top: 94px; padding: 24px; }
.contact-card h2 { margin: 0; font-size: 1.5rem; line-height: 1.1; letter-spacing: -.035em; }
.contact-card > p { color: var(--muted); font-size: .84rem; }
.phone-display { margin: 12px 0; padding: 10px; text-align: center; border-radius: 11px; background: #f6f8fb; color: #56647b; font-weight: 700; font-size: .88rem; }
.recommend-form { margin-bottom: 9px; }
.disclaimer { display: block; margin-top: 15px; color: #8792a3; font-size: .68rem; line-height: 1.55; }
.profile-cta { padding-top: 0; background: #f8fafd; }

.install-body, .login-body { min-height: 100vh; margin: 0; display: grid; place-items: center; padding: 28px 0; background: radial-gradient(circle at 10% 0%, #e3f0ff, transparent 35%), #f6f9fd; }
.install-shell { width: min(760px, calc(100% - 28px)); }
.login-shell { width: min(460px, calc(100% - 28px)); }
.install-card, .login-card { padding: 30px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.install-brand, .login-brand { margin-bottom: 28px; }
.success-panel { text-align: center; padding: 16px 8px 8px; }
.success-panel h1 { margin: 12px 0 7px; color: var(--blue-950); letter-spacing: -.04em; }
.success-panel p { color: var(--muted); margin-bottom: 22px; }
.success-panel .btn { margin: 4px; }
.success-icon { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto; border-radius: 50%; color: white; background: var(--green-600); font-size: 1.7rem; font-weight: 900; }
.back-link { display: block; margin-top: 18px; text-align: center; color: var(--muted); font-size: .82rem; font-weight: 700; }

.admin-body { background: #f5f8fc; }
.admin-header { position: sticky; }
.admin-main { min-height: calc(100vh - 74px); }
.admin-section { padding: 42px 0 70px; }
.admin-welcome { display: flex; justify-content: space-between; align-items: end; gap: 22px; margin-bottom: 22px; }
.admin-welcome h1 { margin: 0; font-size: clamp(2rem, 4.5vw, 3.3rem); line-height: 1; letter-spacing: -.05em; color: var(--blue-950); }
.admin-welcome p { margin: 9px 0 0; color: var(--muted); }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.admin-stat { display: flex; flex-direction: column; padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: 0 6px 20px rgba(16, 53, 101, .04); }
.admin-stat.accent { color: white; background: linear-gradient(135deg, var(--blue-900), var(--blue-600)); border-color: transparent; }
.admin-stat span { font-size: .76rem; font-weight: 700; opacity: .78; }
.admin-stat strong { margin-top: 6px; font-size: 2rem; line-height: 1; letter-spacing: -.045em; }
.admin-stat small { margin-top: 6px; opacity: .72; }
.admin-table-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.admin-table-head { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 18px; border-bottom: 1px solid var(--line); }
.admin-table-head h2 { margin: 0; font-size: 1.2rem; }
.admin-table-head p { margin: 3px 0 0; color: var(--muted); font-size: .78rem; }
.admin-filters { display: flex; gap: 7px; align-items: center; }
.admin-filters input, .admin-filters select { min-height: 36px; padding-block: 6px; font-size: .8rem; }
.admin-filters input { width: 220px; }
.table-responsive { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 850px; }
.admin-table th { padding: 11px 14px; text-align: left; background: #f8fafc; color: #748094; font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.admin-table td { padding: 12px 14px; border-top: 1px solid #edf1f5; font-size: .82rem; color: #56647a; }
.table-profile { display: flex; align-items: center; gap: 9px; min-width: 220px; }
.table-profile > div { display: flex; flex-direction: column; min-width: 0; }
.table-profile strong { color: var(--ink); }
.table-profile small { color: var(--muted); max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.status-pill, .type-pill { display: inline-flex; align-items: center; padding: 4px 7px; border-radius: 999px; font-size: .68rem; font-weight: 800; white-space: nowrap; }
.status-pending { color: #936005; background: #fff6df; }
.status-approved { color: #08724a; background: #e8fbf3; }
.status-rejected { color: #b23642; background: #ffedef; }
.type-pill { color: #58667d; background: #f1f4f8; }
.breadcrumb { margin-bottom: 15px; }
.breadcrumb a { color: var(--blue-700); font-size: .82rem; font-weight: 700; }
.review-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 20px; align-items: start; }
.review-card, .action-card { border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.review-card { padding: 26px; }
.review-header { display: flex; align-items: center; gap: 16px; padding-bottom: 21px; border-bottom: 1px solid #edf1f5; }
.review-header h1 { margin: 0; font-size: 2rem; letter-spacing: -.045em; }
.review-header p { margin: 6px 0 0; color: var(--blue-700); font-weight: 700; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 20px; }
.review-grid > div { padding: 13px; border-radius: 13px; background: #f8fafc; }
.review-grid span:first-child { display: block; color: var(--muted); font-size: .7rem; margin-bottom: 3px; }
.review-grid strong { font-size: .84rem; }
.review-description { margin-top: 20px; }
.review-description > span { color: var(--muted); font-size: .75rem; font-weight: 700; }
.review-description p { color: #5d697d; line-height: 1.75; }
.payment-review { display: flex; gap: 12px; align-items: flex-start; margin-top: 20px; padding: 15px; border-radius: 14px; background: var(--blue-50); border: 1px solid #d6e7fb; }
.payment-review p { margin: 3px 0 9px; color: var(--muted); font-size: .8rem; }
.action-card { position: sticky; top: 94px; padding: 21px; }
.action-card h2 { margin: 0; font-size: 1.35rem; letter-spacing: -.03em; }
.action-card > p { color: var(--muted); font-size: .82rem; }
.action-stack { display: grid; gap: 8px; margin: 16px 0 9px; }

@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 38px; }
    .hero-panel { max-width: 650px; }
    .search-card { grid-template-columns: 1fr 1fr; }
    .search-main { grid-column: 1 / -1; }
    .search-button { width: 100%; }
    .cards-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .form-layout, .profile-layout, .review-layout { grid-template-columns: 1fr; }
    .form-sidebar, .contact-card, .action-card { position: static; }
    .form-sidebar { grid-template-columns: repeat(3,1fr); }
    .admin-stats { grid-template-columns: repeat(2,1fr); }
    .admin-table-head { align-items: stretch; flex-direction: column; }
    .admin-filters { flex-wrap: wrap; }
    .admin-filters input { flex: 1 1 220px; width: auto; }
}

@media (max-width: 560px) {
    .service-avatar { flex-basis: 42px; width: 42px; height: 42px; border-radius: 12px; font-size: 1.22rem; }
}

@media (max-width: 720px) {
    .container { width: min(100% - 22px, 1180px); }
    .section { padding: 52px 0; }
    .nav-wrap { min-height: 66px; }
    .main-nav > a:not(.btn) { display: none; }
    .brand-mark { width: 38px; height: 38px; border-radius: 12px; }
    .brand small { display: none; }
    .hero { padding: 52px 0 70px; }
    .hero h1 { font-size: clamp(2.45rem, 14vw, 4.2rem); }
    .hero-copy > p { font-size: .98rem; }
    .hero-actions { display: grid; grid-template-columns: 1fr; }
    .hero-actions .btn { width: 100%; }
    .hero-panel { padding: 22px; transform: none; }
    .search-section { margin-top: -20px; }
    .search-card { grid-template-columns: 1fr; padding: 11px; }
    .search-main { grid-column: auto; }
    .section-toolbar { align-items: stretch; flex-direction: column; }
    .sort-form label { justify-content: space-between; }
    .cards-grid { grid-template-columns: 1fr; }
    .professional-card { min-height: 0; }
    .stats-grid { grid-template-columns: 1fr; }
    .stats-grid div + div { border-left: 0; border-top: 1px solid #d2e4fa; }
    .cta-card { align-items: stretch; flex-direction: column; padding: 28px 24px; }
    .cta-card .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 22px; }
    .page-hero { padding: 42px 0; }
    .page-hero-inner { align-items: stretch; flex-direction: column; }
    .price-mini-card { flex-basis: auto; }
    .form-card { padding: 18px; }
    .form-grid { grid-template-columns: 1fr; }
    .type-selector { grid-template-columns: 1fr; }
    .form-sidebar { grid-template-columns: 1fr; }
    .profile-main { padding: 20px; }
    .profile-header { align-items: flex-start; }
    .avatar-xl { width: 66px; height: 66px; border-radius: 19px; }
    .profile-stats { grid-template-columns: 1fr; }
    .contact-card { padding: 19px; }
    .install-card, .login-card { padding: 21px; }
    .admin-welcome { align-items: stretch; flex-direction: column; }
    .admin-welcome .btn { width: 100%; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
    .admin-stat { padding: 14px; }
    .admin-stat strong { font-size: 1.65rem; }
    .admin-filters { display: grid; grid-template-columns: 1fr; }
    .admin-filters input { width: 100%; }
    .review-card { padding: 18px; }
    .review-header { align-items: flex-start; }
    .review-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 440px) {
    .main-nav .btn { padding-inline: 10px; }
    .hero-panel-top { align-items: flex-start; flex-direction: column; }
    .sample-actions { display: grid; grid-template-columns: 1fr; }
    .card-actions { grid-template-columns: 1fr 1fr; }
    .profile-header { flex-direction: column; }
    .review-header { flex-direction: column; }
    .review-grid { grid-template-columns: 1fr; }
    .admin-stats { grid-template-columns: 1fr; }
}

.narrow-admin-container { max-width: 660px; }
.password-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.password-card h1 { margin: 7px 0 8px; font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: -.045em; }
.password-intro { margin: 0 0 22px; color: var(--muted); line-height: 1.65; }


@media (max-width: 440px) {
    .card-phone-copy strong { font-size: 1rem; }
    .card-top { padding-right: 0; }
    .card-badge { position: static; transform: none; margin-left: auto; }
}

/* Club Indica MySQL — edição e gerenciamento administrativo */
.admin-page-title { display:flex; justify-content:space-between; align-items:end; gap:18px; margin: 8px 0 20px; }
.admin-page-title h1 { margin: 3px 0 4px; font-size: 2rem; letter-spacing: -.045em; }
.admin-page-title p { margin:0; color:var(--muted); }
.edit-review-layout { grid-template-columns:minmax(0,1fr) 300px; }
.edit-professional-card { padding: 0; overflow:hidden; }
.edit-professional-card .review-header { padding:24px 26px 20px; background:linear-gradient(180deg,#f8fbff,#fff); }
.edit-professional-card .review-header h2 { margin:0; font-size:1.55rem; letter-spacing:-.035em; }
.admin-edit-form { padding:24px 26px 28px; margin-top:0; }
.admin-verified-check { padding:14px 16px; border:1px solid #cfe1f8; border-radius:14px; background:#f5f9ff; }
.admin-edit-footer { display:flex; align-items:center; justify-content:space-between; gap:16px; padding-top:18px; border-top:1px solid var(--line); }
.admin-edit-meta { display:flex; flex-wrap:wrap; gap:8px; color:var(--muted); font-size:.72rem; }
.admin-edit-meta span { padding:6px 9px; border-radius:999px; background:#f4f7fa; border:1px solid #e6ebf0; }
.status-summary-card { display:flex; align-items:center; justify-content:space-between; gap:10px; padding:12px 13px; margin:14px 0; border:1px solid var(--line); border-radius:13px; background:#f8fafc; }
.status-summary-card > span { color:var(--muted); font-size:.75rem; font-weight:700; }
.categories-welcome { margin-bottom:18px; }
.compact-stats { grid-template-columns:repeat(3,1fr); max-width:760px; }
.category-manager-grid { display:grid; grid-template-columns:280px minmax(0,1fr); gap:18px; align-items:start; margin-top:20px; }
.category-add-card { position:sticky; top:94px; padding:20px; border:1px solid var(--line); border-radius:20px; background:#fff; box-shadow:var(--shadow-sm); }
.category-add-card h2 { margin:3px 0 6px; font-size:1.3rem; }
.category-add-card > p { margin:0; color:var(--muted); font-size:.8rem; line-height:1.55; }
.single-column-form { grid-template-columns:1fr; gap:12px; }
.category-list-card { min-width:0; }
.category-filters { flex-wrap:wrap; }
.category-filters input { min-width:180px; }
.category-edit-list { padding:0; }
.category-edit-row { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:12px; align-items:end; padding:13px 15px; border-top:1px solid #edf1f5; transition:.2s ease; }
.category-edit-row:first-child { border-top:0; }
.category-edit-row:hover { background:#fbfdff; }
.category-edit-row.is-inactive { opacity:.68; background:#fafafa; }
.category-edit-main { display:grid; grid-template-columns:minmax(180px,.9fr) minmax(220px,1.1fr); gap:10px; }
.category-edit-main label > span, .small-number-field > span { display:block; margin-bottom:4px; color:var(--muted); font-size:.65rem; font-weight:800; text-transform:uppercase; letter-spacing:.04em; }
.category-edit-main input, .small-number-field input { width:100%; padding:9px 10px; border:1px solid var(--line); border-radius:10px; font:inherit; font-size:.78rem; outline:none; background:#fff; }
.category-edit-main input:focus, .small-number-field input:focus { border-color:var(--blue-500); box-shadow:0 0 0 3px rgba(32,112,224,.08); }
.category-edit-controls { display:flex; align-items:end; gap:8px; }
.small-number-field { width:72px; }
.compact-check { display:flex; align-items:center; gap:5px; min-height:38px; padding:0 8px; border:1px solid var(--line); border-radius:10px; background:#fff; font-size:.72rem; font-weight:700; white-space:nowrap; }
.category-use-count { min-height:38px; display:flex; align-items:center; padding:0 9px; border-radius:10px; background:#f5f7fa; color:var(--muted); font-size:.68rem; white-space:nowrap; }
.icon-danger-button { min-height:38px; padding:0 9px; border:1px solid #f0cece; border-radius:10px; background:#fff7f7; color:#a64444; font:inherit; font-size:.69rem; font-weight:800; cursor:pointer; }
.admin-pagination { padding:16px; border-top:1px solid var(--line); }

@media (max-width: 1100px) {
    .category-manager-grid { grid-template-columns:1fr; }
    .category-add-card { position:static; }
    .category-edit-row { grid-template-columns:1fr; }
    .category-edit-controls { flex-wrap:wrap; }
}
@media (max-width: 780px) {
    .admin-page-title { align-items:stretch; flex-direction:column; }
    .edit-review-layout { grid-template-columns:1fr; }
    .admin-edit-footer { align-items:stretch; flex-direction:column; }
    .admin-edit-footer .btn { width:100%; }
    .compact-stats { grid-template-columns:1fr; max-width:none; }
    .category-edit-main { grid-template-columns:1fr; }
    .category-edit-controls { align-items:stretch; }
    .small-number-field { width:90px; }
    .category-use-count { flex:1; }
}
.select-filter-input { margin-bottom:8px; background:#fbfdff !important; border-color:#cfdceb !important; }
.select-filter-input::placeholder { color:#8998aa; }
@media (max-width: 720px) {
    .admin-header .nav-wrap { flex-wrap:wrap; padding-top:10px; padding-bottom:8px; }
    .admin-header .main-nav { width:100%; display:flex; gap:8px; overflow-x:auto; padding-bottom:2px; }
    .admin-header .main-nav > a:not(.btn) { display:inline-flex; flex:0 0 auto; padding:7px 9px; border:1px solid #e2e9f1; border-radius:9px; background:#fff; font-size:.72rem; }
    .admin-header .main-nav .btn { flex:0 0 auto; }
}
.admin-welcome-actions { display:flex; gap:9px; align-items:center; flex-wrap:wrap; }
@media (max-width:720px) { .admin-welcome-actions { display:grid; grid-template-columns:1fr; } .admin-welcome-actions .btn { width:100%; } }
