:root {
  --bg: #ffffff;
  --text: #202124;
  --muted: #5f6368;
  --border: #dfe1e5;
  --panel: #ffffff;
  --primary: #1a73e8;
  --primary-dark: #1558d6;
  --success: #188038;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%; /* Trava a largura pra nao vazar pro lado */
  font-family: Roboto, Arial, sans-serif;
  background: var(--bg); /* Fundo 100% limpo igual ao Google */
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

html {
  overflow-x: hidden;
}

@supports (min-height: 100dvh) {
  body {
    min-height: 100dvh;
  }
}

.page-content {
  flex: 1 0 auto;
  padding-bottom: 92px;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  color: #071d49;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-decoration: none !important;
}

.brand:hover {
  color: #071d49;
}

.brand-dark {
  color: #071d49;
}

.brand-cyan {
  color: #08bfdc;
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  flex-shrink: 0;
  background: #f1f3f4;
  border-top: 1px solid #dadce0;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.site-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.site-footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  color: #5f6368;
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer-links a:hover {
  color: #202124;
  text-decoration: underline;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  width: min(320px, calc(100vw - 24px));
  max-width: calc(100vw - 12px);
  height: 100dvh;
  padding: 84px 14px 18px;
  border-left: 1px solid #e6e9ef;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: -16px 0 36px rgba(15, 31, 61, 0.16);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  color: #5f6368;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none !important;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.site-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: currentColor;
  flex-shrink: 0;
}

.site-nav-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-nav-label {
  line-height: 1;
}

.site-nav a:hover {
  background: #f1f3f4;
  color: var(--text);
}

.site-nav-chip-link {
  border: 1px solid #dadce0;
  background: #fff;
  color: #1f1f1f !important;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.1);
}

.site-nav-chip-link:hover {
  border-color: #c4c7c5;
  background: #f8f9fa !important;
}

.menu-toggle {
  position: relative;
  z-index: 80;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle:hover {
  background: #f1f3f4;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: #5f6368;
  border-radius: 999px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle span + span {
  margin-top: 4px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.site-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  border: 0;
  background: rgba(15, 23, 42, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.site-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

/* --- Identidade Visual do Logo --- */
.hero-logo {
  margin-bottom: 24px;
  font-family: 'Product Sans', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  user-select: none;
}

/* Cores oficias para dar vida */
.c-blue { color: #4285F4; }
.c-red { color: #EA4335; }
.c-yellow { color: #FBBC05; }
.c-green { color: #34A853; }

.hero {
  padding: 40px 0 32px;
  text-align: center;
}

.home-hero {
  display: grid;
  gap: 34px;
  justify-items: center;
  padding: 44px 0 52px;
}

.home-branding {
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

.home-branding-logo {
  font-weight: 900;
  font-size: clamp(54px, 9vw, 128px);
  letter-spacing: -0.06em;
  line-height: 1;
  white-space: nowrap;
  max-width: 100%;
}

.home-logo-dark {
  color: #071d49;
}

.home-logo-cyan {
  color: #08bfdc;
}

.home-logo-orange {
  margin-left: 6px;
  color: #ff6b00;
  font-size: 0.52em;
  letter-spacing: -0.05em;
}

.home-tagline-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

.home-tagline-wrap p {
  margin: 0;
  color: #0f1f3d;
  font-size: clamp(18px, 2.2vw, 29px);
  font-weight: 400;
}

.home-tagline-line {
  width: 110px;
  height: 3px;
  border-radius: 999px;
  background: #08bfdc;
}

.home-services-carousel {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  min-height: 96px;
  overflow: hidden;
  margin-top: 38px;
  transition: opacity 0.35s ease;
}

.home-service-item {
  display: flex;
  width: 145px;
  padding: 0 18px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-right: 1px solid #e5e7eb;
  animation: fadeUp 0.45s ease both;
}

.home-service-item:last-child {
  border-right: 0;
}

.home-service-item i {
  margin-bottom: 14px;
  font-size: 42px;
}

.home-service-item span {
  color: #071d49;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.home-service-cyan {
  color: #08bfdc;
}

.home-service-blue {
  color: #0b83ff;
}

.home-service-orange {
  color: #ff6b00;
}

.home-service-yellow {
  color: #f5b400;
}

.home-service-purple {
  color: #7550c8;
}

.home-service-green {
  color: #4cae38;
}

.home-service-red {
  color: #ef4444;
}

.home-service-pink {
  color: #ec4899;
}

.home-service-dark {
  color: #071d49;
}

.home-search-form {
  width: 100%;
  max-width: 780px;
}

.home-search-shell {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 0 14px;
  border: 1px solid #d7dbe3;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 29, 73, 0.06);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.home-search-shell:hover,
.home-search-shell:focus-within {
  border-color: #b8c3d8;
  box-shadow: 0 14px 30px rgba(7, 29, 73, 0.1);
}

.home-search-submit,
.home-search-voice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #60708f;
  text-decoration: none !important;
}

.home-search-submit {
  cursor: pointer;
}

.home-search-voice {
  width: 44px;
  height: 44px;
  border: 1px solid #f3b3ae;
  background: #fff1f0;
  color: #d93025;
  box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.1);
}

.home-search-submit:hover,
.home-search-voice:hover {
  background: #f4f7fb;
  color: #071d49;
}

.home-search-voice:hover,
.home-search-voice:focus-visible {
  border-color: #d93025;
  background: #fde7e5;
  color: #b3261e;
  box-shadow: 0 0 0 5px rgba(217, 48, 37, 0.15);
}

.home-search-shell input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 14px 10px;
  background: transparent;
  color: #071d49;
  font-size: 1.02rem;
}

.home-search-shell input:focus {
  outline: none;
}

.home-search-shell input::placeholder {
  color: #8390a6;
}

.home-search-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: nowrap;
}

.home-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  min-width: 124px;
  padding: 0 16px;
  border: 1px solid #f1f3f4;
  border-radius: 4px;
  background: #f8f9fa;
  color: #3c4043;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.home-action-btn-primary,
.home-action-btn-secondary,
.home-action-btn-secondary:hover {
  color: #202124;
}

.home-action-btn:hover {
  border-color: #dadce0;
  background: #f8f9fa;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.home-stats-chip {
  background: #f0f7ff;
  border: 1px solid #d0e3ff;
  color: #0b4b9b;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: fadeUp 0.6s ease-out;
}
.home-stats-chip i {
  color: #0d6efd;
}

.home-contribute-banner {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e1e4e8;
  padding: 20px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  animation: fadeUp 0.8s ease-out;
}
.home-contribute-banner p {
  color: #4a5568;
  font-size: 14px;
  margin: 0;
  font-weight: 500;
  text-align: center;
}
.home-contribute-btn {
  background: #0d6efd;
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s, transform 0.2s;
}
.home-contribute-btn:hover {
  background: #0b5ed7;
  color: white;
  transform: translateY(-1px);
}

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

.hero-search {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: min(620px, calc(100vh - 180px));
  padding: 20px;
}

/* --- Barra de Pesquisa --- */
.search-google {
  width: 100%;
  max-width: 584px; /* Largura padrão do Google */
  margin: 0 auto;
}

.search-shell {
  position: relative;
  display: flex;
  align-items: center;
  height: 46px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  margin: 0 auto;
}

/* O Segredo do Google: Sombra suave ao passar o mouse ou focar */
.search-shell:hover,
.search-shell:focus-within {
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
  border-color: transparent;
}

.search-shell input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 10px 8px;
  background: transparent;
  font-size: 16px;
  color: var(--text);
}

.search-shell input:focus {
  outline: none;
}

.search-icon,
.search-tool-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.search-submit-btn {
  padding: 0;
}

.search-icon svg {
  width: 20px;
  height: 20px;
}

.search-tool-btn svg {
  width: 24px;
  height: 24px;
}

.search-tools {
  display: flex;
  align-items: center;
}

.search-tool-btn.is-listening {
  color: #ea4335;
}

/* --- Botões Estilo Google --- */
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.btn-google {
  background-color: #f8f9fa;
  border: 1px solid #f8f9fa;
  border-radius: 4px; /* Google usa botões levemente quadrados */
  color: #3c4043;
  font-family: inherit;
  font-size: 14px;
  padding: 0 16px;
  line-height: 27px;
  height: 36px;
  min-width: 54px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  text-decoration: none !important;
  transition: all 0.2s;
}

.btn-google:hover {
  box-shadow: 0 1px 1px rgba(0,0,0,.1);
  background-color: #f8f9fa;
  border: 1px solid #dadce0;
  color: #202124;
}

.voice-page {
  min-height: calc(100vh - 140px);
  padding: 24px 0 40px;
}

.voice-back {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #dadce0;
  border-radius: 999px;
  background: #f8f9fa;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none !important;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.voice-back:hover {
  background: #f1f3f4;
  border-color: #c7c9cc;
  color: var(--text);
  box-shadow: 0 2px 6px rgba(60, 64, 67, 0.16);
}

.voice-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: calc(100vh - 240px);
  text-align: center;
}

.voice-copy {
  max-width: 460px;
}

.voice-intro-block {
  display: grid;
  gap: 0;
}

.voice-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 400;
}

.voice-lead {
  margin: 0 0 8px;
  color: #1f1f1f;
  font-size: 1rem;
  line-height: 1.55;
}

.voice-live-transcript {
  margin: 0 0 12px;
  color: #0f1f3d;
  font-size: clamp(1.08rem, 3vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
}

.voice-page.is-listening .voice-copy {
  display: grid;
  align-content: center;
  min-height: 180px;
}

.voice-page.is-listening .voice-intro-block,
.voice-page.is-listening [data-voice-status-message] {
  display: none !important;
}

.voice-mic-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  width: 144px;
  height: 144px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(60, 64, 67, 0.18);
  cursor: pointer;
  overflow: visible;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.voice-mic-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(60, 64, 67, 0.22);
}

.voice-mic-button svg {
  width: 58px;
  height: 58px;
  fill: #9aa0a6;
}

.voice-mic-button span {
  color: #1f1f1f;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
}

.voice-mic-button.is-listening {
  box-shadow: 0 0 0 6px rgba(255, 75, 75, 0.12), 0 6px 20px rgba(255, 75, 75, 0.18);
}

.voice-mic-button.is-listening svg {
  fill: #ea4335;
}

.voice-mic-button.is-listening span {
  color: #b3261e;
}

/* Autocomplete e extras */
.autocomplete-box {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(32, 33, 36, 0.18);
  overflow: hidden;
}

.autocomplete-box.is-open {
  display: block;
}

.autocomplete-list {
  display: grid;
  gap: 0;
}

.autocomplete-item {
  width: 100%;
  display: grid;
  gap: 3px;
  padding: 12px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  font-size: 1rem;
}

.autocomplete-item:hover {
  background: #f8f9fa;
}

.autocomplete-item-label {
  display: block;
}

.autocomplete-item-meta {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.voice-context-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 8px 0 0;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef4ff;
  color: #174ea6;
  font-size: 0.92rem;
  font-weight: 600;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 140px);
  padding: 32px 0 56px;
}

.auth-copy {
  max-width: 440px;
}

.auth-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.auth-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.auth-card {
  padding: 32px;
  border: 1px solid #dadce0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.16);
}

.auth-card-header {
  margin-bottom: 24px;
}

.auth-card-header h2 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.auth-card-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

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

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-field {
  display: grid;
  gap: 8px;
}

.auth-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px dashed #cfd4dc;
  border-radius: 18px;
  background: #fbfcfe;
}

.auth-label {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.auth-help {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.auth-help-compact {
  font-size: 0.78rem;
}

.char-counter {
  display: block;
  margin-top: 6px;
  text-align: right;
  color: #6b7280;
}

.auth-input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid #dadce0;
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.auth-input::placeholder {
  color: #80868b;
}

.auth-input:hover {
  border-color: #c4c7c5;
}

.auth-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
}

.auth-error {
  color: #d93025;
  font-size: 0.88rem;
}

.auth-switch {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  width: 52px;
  height: 32px;
  cursor: pointer;
}

.auth-switch-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.auth-switch-slider {
  position: relative;
  width: 52px;
  height: 32px;
  border-radius: 999px;
  background: #dadce0;
  transition: background-color 0.18s ease;
}

.auth-switch-slider::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
  transition: transform 0.18s ease;
}

.auth-switch-input:checked + .auth-switch-slider {
  background: #1a73e8;
}

.auth-switch-input:checked + .auth-switch-slider::after {
  transform: translateX(20px);
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231a73e8' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E\");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

.auth-switch-input:focus + .auth-switch-slider {
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.14);
}

.auth-submit {
  min-height: 50px;
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.auth-submit:hover {
  background: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.28);
}

.auth-submit:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.18);
}

.community-success-card {
  display: grid;
  justify-items: start;
  gap: 14px;
  width: min(100%, 520px);
}

.community-success-card h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.community-success-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.community-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #e6f4ea;
  color: #137333;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.community-success-button {
  min-width: 220px;
}

.community-thanks-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #f1d58a;
  border-radius: 999px;
  background: #fff7d6;
  color: #8a5a00;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.auth-inline-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 2px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}

.auth-inline-chip-danger {
  background: #fce8e6;
  color: #c5221f;
}

.auth-inline-chip-warning {
  background: #fef7e0;
  color: #b06000;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 18px;
  color: #80868b;
  font-size: 0.88rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e8eaed;
}

.auth-social-placeholder {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px dashed #dadce0;
  border-radius: 16px;
  background: #f8f9fa;
}

.auth-social-placeholder span {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 500;
}

.auth-social-placeholder small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.auth-footer {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.auth-footer a {
  font-weight: 500;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 8px;
}

.dashboard-header h1 {
  margin: 0 0 6px;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 16px 0 40px;
}

.dashboard-highlight {
  display: flex;
  align-items: center;
  gap: 18px;
}

.dashboard-highlight-whatsapp {
  border-color: #cae9d3;
  background: linear-gradient(180deg, #f7fff9 0%, #eefbf2 100%);
}

.dashboard-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.18);
}

.dashboard-highlight-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.dashboard-highlight-copy {
  display: grid;
  gap: 4px;
}

.dashboard-highlight-label {
  color: #188038;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dashboard-highlight-value {
  color: #0f1f3d;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
}

.panel {
  padding: 24px;
  border: 1px solid #dadce0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12);
}

.panel h2,
.panel h1 {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 500;
}

.info-page {
  display: grid;
  gap: 24px;
  width: min(100%, 920px);
  margin: 0 auto;
}

.info-hero {
  display: grid;
  gap: 14px;
  padding: 8px 0 4px;
}

.info-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e8f0fe;
  color: #174ea6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-hero h1 {
  margin: 0;
  max-width: 14ch;
  color: #0f1f3d;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.info-lead {
  max-width: 720px;
  margin: 0;
  color: #334155;
  font-size: 1.08rem;
  line-height: 1.7;
}

.info-highlight {
  margin: 2px 0 0;
  color: #174ea6;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.5;
}

.info-brand-inline {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.info-brand-inline .home-logo-orange {
  margin-left: 2px;
}

.info-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #d2e3fc;
  border-radius: 999px;
  background: #f8fbff;
  color: #174ea6;
  font-size: 0.92rem;
  font-weight: 600;
}

.info-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-story-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid #dfe1e5;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow: 0 10px 30px rgba(15, 31, 61, 0.06);
}

.info-story-card-accent {
  border-color: #d2e3fc;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.info-card-kicker {
  color: #1a73e8;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-story-card h2 {
  margin: 0;
  color: #0f1f3d;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.info-story-card p {
  margin: 0;
  color: #3c4043;
  line-height: 1.75;
}

.info-quote-block {
  display: grid;
  gap: 10px;
  padding: 30px 28px;
  border-radius: 30px;
  background: #0f1f3d;
  box-shadow: 0 18px 40px rgba(15, 31, 61, 0.18);
}

.info-quote {
  margin: 0;
  color: #fff;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.info-quote-support {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.info-cta {
  display: grid;
  gap: 12px;
  padding: 4px 0 10px;
}

.info-cta h2 {
  margin: 0;
  color: #0f1f3d;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.info-cta p {
  max-width: 760px;
  margin: 0;
  color: #3c4043;
  line-height: 1.75;
}

.info-cta-end {
  color: #174ea6 !important;
  font-size: 1.02rem;
  font-weight: 700;
}

.admin-dashboard-shell {
  display: grid;
  gap: 20px;
}

.admin-dashboard-header h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.admin-dashboard-header .muted {
  margin: 0;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-stat-card {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid #dadce0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12);
}

.admin-stat-card strong {
  color: #0f1f3d;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1;
}

.admin-stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.admin-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-list-panel {
  padding: 26px;
}

.admin-list-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-list-header h1 {
  margin-bottom: 8px;
}

.admin-list-header h2 {
  margin: 0 0 8px;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid #eceff1;
  border-radius: 22px;
  background: #fff;
}

.admin-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 16px 14px;
  border-bottom: 1px solid #eceff1;
  text-align: left;
  vertical-align: top;
}

.admin-table thead th {
  color: #5f6368;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #f8f9fa;
}

.admin-table tbody tr:nth-child(even) {
  background: #fbfcfe;
}

.admin-table tbody tr:hover {
  background: #f5f8ff;
}

.admin-table tbody tr:last-child td {
  border-bottom: 0;
}

.admin-osm-intro,
.admin-osm-footer,
.admin-empty-state {
  display: grid;
  gap: 12px;
}

.admin-osm-intro {
  margin-bottom: 20px;
}

.admin-osm-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-osm-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-osm-footer {
  margin-top: 16px;
}

.admin-company-cell {
  display: grid;
  gap: 4px;
}

.admin-company-cell strong {
  color: var(--text);
  font-size: 0.98rem;
}

.admin-company-cell span,
.admin-contact-cell span,
.admin-empty {
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-contact-cell {
  display: grid;
  gap: 6px;
}

.admin-tag-list,
.admin-action-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-tag-chip,
.admin-badge,
.admin-action-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1;
}

.admin-tag-chip {
  background: #eef3fd;
  color: #174ea6;
}

.admin-badge-origin {
  background: #f1f3f4;
  color: #3c4043;
}

.admin-badge-status-ativo {
  background: #e6f4ea;
  color: #137333;
}

.admin-badge-status-pendente {
  background: #fef7e0;
  color: #b06000;
}

.admin-badge-status-bloqueado {
  background: #fce8e6;
  color: #c5221f;
}

.admin-badge-status-inativo {
  background: #f1f3f4;
  color: #5f6368;
}

.admin-action-chip {
  border: 1px solid transparent;
  text-decoration: none !important;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.admin-action-chip-edit {
  background: #eef3fd;
  color: #174ea6;
}

.admin-action-chip-edit:hover {
  background: #e2ebfc;
}

.admin-action-chip-approve {
  background: #e6f4ea;
  color: #137333;
}

.admin-action-chip-approve:hover {
  background: #d7efdd;
}

.admin-action-chip-verify {
  background: #e8f0fe;
  color: #185abc;
}

.admin-action-chip-verify:hover {
  background: #dce7fd;
}

.admin-action-chip-ia {
  background: #f3e8ff;
  color: #7c3aed;
}

.admin-action-chip-ia:hover {
  background: #eadcff;
}

.admin-action-chip-block {
  background: #fce8e6;
  color: #c5221f;
}

.admin-action-chip-block:hover {
  background: #f9dedc;
}

.admin-action-chip-create {
  background: #fff7e0;
  color: #8a4b00;
}

.admin-search-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-search-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid #eceff1;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  scroll-margin-top: 92px;
}

.admin-search-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-search-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f1f3f4;
  color: #3c4043;
  font-size: 0.84rem;
}

.admin-ai-insight {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid #eadcff;
  border-radius: 18px;
  background: #fbf7ff;
}

.admin-ai-insight strong {
  color: #5b21b6;
  font-size: 0.86rem;
}

.admin-ai-insight p {
  margin: 0;
  color: #3c4043;
  line-height: 1.5;
  font-size: 0.9rem;
}

.admin-search-help {
  margin: -2px 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.admin-search-form {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #eceff1;
  border-radius: 18px;
  background: #fff;
}

.admin-search-field {
  display: grid;
  gap: 6px;
}

.admin-search-field span {
  color: #5f6368;
  font-size: 0.84rem;
  font-weight: 600;
}

.admin-search-field input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #d2d6db;
  border-radius: 12px;
  background: #fff;
  color: #202124;
  font: inherit;
}

.admin-search-field input:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
}

.admin-action-button {
  justify-content: center;
  min-height: 40px;
  cursor: pointer;
}

.admin-empty-row {
  color: var(--muted);
  text-align: center !important;
}

.admin-badge-status-aprovada {
  background: #e6f4ea;
  color: #137333;
}

.admin-badge-status-recusada {
  background: #fce8e6;
  color: #c5221f;
}

.admin-moderation-panel h2 {
  margin: 0 0 8px;
}

.admin-moderation-list {
  display: grid;
  gap: 16px;
}

.admin-moderation-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #eceff1;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
}

.admin-moderation-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.admin-moderation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-moderation-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f1f3f4;
  color: #3c4043;
  font-size: 0.84rem;
}

.admin-moderation-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-moderation-body h3 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 600;
}

.admin-moderation-body p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.simple-list {
  display: grid;
  gap: 14px;
}

.list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid #eceff1;
}

.simple-list > :first-child.list-row {
  padding-top: 0;
  border-top: 0;
}

.dashboard-company-clicks {
  margin: 6px 0 0;
  color: #188038;
  font-size: 0.92rem;
  line-height: 1.4;
}

.muted {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary {
  border: 0;
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.26);
}

.btn-secondary {
  border: 1px solid #dadce0;
  background: #fff;
  color: var(--text);
}

.btn-secondary:hover {
  border-color: #c4c7c5;
  background: #f8f9fa;
}

.onboarding-shell {
  display: flex;
  justify-content: center;
  padding: 24px 0 48px;
}

.onboarding-card {
  width: min(100%, 560px);
  padding: 24px;
  border: 1px solid #dadce0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12);
}

.onboarding-header {
  margin-bottom: 18px;
}

.onboarding-header h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.onboarding-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.onboarding-form {
  display: grid;
  gap: 16px;
}

.services-hidden-input {
  display: none;
}

.services-chipbox {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid #dadce0;
  border-radius: 16px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.services-chipbox:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
}

.services-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.services-chip-input {
  flex: 1 1 140px;
  min-width: 120px;
  border: 0;
  padding: 6px 0;
  background: transparent;
  color: var(--text);
  font: inherit;
}

.services-chip-input:focus {
  outline: none;
}

.services-chip-input::placeholder {
  color: #80868b;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px 0 12px;
  border-radius: 999px;
  background: #eef3fd;
  color: #174ea6;
}

.service-chip-label {
  font-size: 0.9rem;
  font-weight: 500;
}

.service-chip-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 78, 166, 0.12);
  color: #174ea6;
  font-size: 0.8rem;
  cursor: pointer;
}

.service-chip-remove:hover {
  background: rgba(23, 78, 166, 0.2);
}

.category-chipbox {
  border-color: #b7dfc1;
  background: #f7fff8;
}

.category-chipbox:focus-within {
  border-color: #1e8e3e;
  box-shadow: 0 0 0 3px rgba(30, 142, 62, 0.12);
}

.category-chipbox .service-chip {
  background: rgba(30, 142, 62, 0.14);
  border-color: rgba(30, 142, 62, 0.18);
  color: #137333;
}

.category-chipbox .service-chip-remove {
  background: rgba(30, 142, 62, 0.12);
  color: #137333;
}

.category-chipbox .service-chip-remove:hover {
  background: rgba(30, 142, 62, 0.2);
}

.city-id-input {
  display: none;
}

.city-suggestions {
  display: none;
  margin-top: 8px;
  border: 1px solid #dadce0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(60, 64, 67, 0.14);
  overflow: hidden;
}

.city-suggestions.is-open {
  display: grid;
}

.city-suggestion-item {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-top: 1px solid #eceff1;
  background: #fff;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.city-suggestion-item:first-child {
  border-top: 0;
}

.city-suggestion-item:hover {
  background: #f8f9fa;
}

.city-suggestion-item.is-active,
.city-suggestion-item:focus-visible {
  background: #e8f0fe;
  outline: none;
}

.duplicate-check-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #d7e3fc;
  border-radius: 18px;
  background: #f8fbff;
}

.duplicate-check-panel.is-hidden,
.duplicate-selected-summary.is-hidden,
.duplicate-continue-button.is-hidden {
  display: none;
}

.duplicate-check-header {
  display: grid;
  gap: 4px;
}

.duplicate-check-header strong {
  font-size: 0.98rem;
  color: #174ea6;
}

.duplicate-check-header span,
.duplicate-selected-summary {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.duplicate-card-list {
  display: grid;
  gap: 12px;
}

.duplicate-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border: 1px solid #dfe4ea;
  border-radius: 16px;
  background: #fff;
}

.duplicate-card.is-selected {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
}

.duplicate-card-photo {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #eef1f4;
}

.duplicate-card-body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.duplicate-card-body strong {
  font-size: 0.96rem;
}

.duplicate-card-body span {
  color: var(--muted);
  font-size: 0.9rem;
}

.duplicate-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.duplicate-card-action,
.duplicate-continue-button {
  justify-self: start;
  margin-top: 6px;
}

@media (max-width: 640px) {
  .duplicate-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .duplicate-card-photo {
    width: 72px;
    height: 72px;
  }
}

.onboarding-location-field {
  gap: 10px;
}

.gps-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px dashed #c7d0d9;
  border-radius: 999px;
  background: #f8fbff;
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
}

.gps-pill:hover {
  background: #eef6ff;
}

.gps-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}

.gps-pill-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.gps-modal[hidden] {
  display: none;
}

.gps-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}

.gps-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 61, 0.42);
}

.gps-modal-card {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(640px, 100%);
  max-width: calc(100vw - 32px);
  max-height: calc(100dvh - 32px);
  margin: 0;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(15, 31, 61, 0.24);
  overflow-x: hidden;
  overflow-y: auto;
}

.gps-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gps-modal-header h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.gps-modal-close {
  width: 36px;
  height: 36px;
  border: 1px solid #dadce0;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.gps-modal-help,
.gps-map-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.gps-map {
  width: 100%;
  max-width: 100%;
  min-height: 340px;
  border: 1px solid #dadce0;
  border-radius: 20px;
  overflow: hidden;
}

.gps-map .leaflet-container {
  width: 100%;
  max-width: 100%;
}

.gps-map .leaflet-control-attribution {
  font-size: 10px;
}

.gps-modal-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.gps-modal-action {
  min-width: 150px;
}

/* Estilos moveis do GPS movidos para o final para garantir override */

.onboarding-textarea {
  min-height: 112px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

.onboarding-submit {
  margin-top: 4px;
}

.auth-access-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
  min-height: 50px;
  line-height: 1.2;
}

.edit-company-shell {
  display: flex;
  justify-content: center;
  padding: 24px 0 48px;
}

.edit-company-card {
  width: min(100%, 860px);
  padding: 24px;
  border: 1px solid #dadce0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12);
}

.edit-company-header {
  margin-bottom: 12px;
}

.edit-company-form {
  display: grid;
  gap: 18px;
}

.edit-company-block {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #eceff1;
}

.edit-company-form > .edit-company-block:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.edit-company-block h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.edit-company-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.edit-company-select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #5f6368 50%),
    linear-gradient(135deg, #5f6368 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.edit-company-select::-ms-expand {
  display: none;
}

.edit-company-actions {
  display: flex;
  justify-content: flex-end;
}

.edit-company-submit {
  min-width: 180px;
}

.company-profile-shell {
  display: grid;
  gap: 18px;
  padding: 18px 0 42px;
}

.company-profile-hero {
  display: grid;
  gap: 16px;
}

.company-profile-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.company-profile-copy h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.company-profile-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.result-source-chip,
.result-verified-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #dfe4ee;
  border-radius: 999px;
  background: #fff;
  color: #44546a;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
}

.result-source-chip svg,
.result-verified-chip svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: currentColor;
}

.result-source-chip-community {
  border-color: #bfd3ff;
  background: #edf3ff;
  color: #174ea6;
}

.result-source-chip-system {
  border-color: #d9dde4;
  background: #f3f5f7;
  color: #4b5563;
}

.result-verified-chip-team {
  border-color: #b7e1c1;
  background: #e8f5e9;
  color: #137333;
}

.result-verified-chip-owner {
  border-color: #d7c6ff;
  background: #f3e8ff;
  color: #7c3aed;
}

.company-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.company-profile-meta li {
  position: relative;
}

.company-profile-meta li + li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c4c7c5;
  transform: translateY(-50%);
}

.company-profile-description {
  margin: 12px 0 0;
  color: #3c4043;
  font-size: 1rem;
  line-height: 1.7;
}

.company-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.company-profile-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f1f3f4;
  color: #3c4043;
  font-size: 0.87rem;
  font-weight: 500;
}

.company-profile-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.company-action-btn {
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
}

.company-action-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.company-action-whatsapp {
  border: 1px solid #1f9d4c;
  background: #25d366;
  color: #fff;
}

.company-action-whatsapp:hover {
  border-color: #188038;
  background: #1fbd58;
}

.company-action-map {
  border: 1px solid #dadce0;
  background: #fff;
  color: #1f1f1f;
}

.company-action-map:hover {
  border-color: #c4c7c5;
  background: #f8f9fa;
}

.company-claim-link {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none !important;
}

.company-claim-link:hover {
  text-decoration: underline !important;
}

.company-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 18px;
}

.company-info-panel,
.company-suggest-panel {
  display: grid;
  gap: 16px;
}

.company-info-list {
  display: grid;
  gap: 14px;
}

.company-info-row {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid #eceff1;
}

.company-info-list > .company-info-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.company-info-label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.company-info-value,
.company-info-link {
  color: var(--text);
  line-height: 1.6;
}

.company-info-link {
  text-decoration: none;
}

.company-info-link:hover {
  text-decoration: underline;
}

.company-suggest-accordion {
  border: 1px solid #eceff1;
  border-radius: 18px;
  background: #fbfcfe;
  overflow: hidden;
}

.company-suggest-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.company-suggest-accordion summary::-webkit-details-marker {
  display: none;
}

.company-suggest-accordion summary span:first-child {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.company-suggest-summary-note {
  color: var(--muted);
  font-size: 0.84rem;
}

.company-suggest-accordion[open] summary {
  border-bottom: 1px solid #eceff1;
}

.company-suggest-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
}

.company-suggest-form .full {
  grid-column: 1 / -1;
}

.company-suggest-submit {
  width: 100%;
}

.versions-shell {
  width: min(100%, 920px);
  margin: 0 auto 18px;
}

.versions-hero {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid #eceff1;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 32px rgba(15, 31, 61, 0.08);
}

.versions-hero h1 {
  margin: 0;
}

.versions-hero-chips,
.versions-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.versions-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef3fd;
  color: #174ea6;
  font-size: 0.84rem;
  font-weight: 600;
}

.versions-chip-theme-0 {
  background: #eef3fd;
  color: #174ea6;
}

.versions-chip-theme-1 {
  background: #e6f4ea;
  color: #137333;
}

.versions-chip-theme-2 {
  background: #fff7e0;
  color: #8a4b00;
}

.versions-chip-theme-3 {
  background: #f3e8ff;
  color: #7c3aed;
}

.versions-chip-theme-4 {
  background: #fdecef;
  color: #b3261e;
}

.versions-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.versions-overview-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid #e6ebf1;
  border-radius: 20px;
  background: #fff;
}

.versions-overview-card strong {
  color: #0f1f3d;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.1;
}

.versions-overview-card span {
  color: var(--muted);
  line-height: 1.5;
}

.versions-timeline {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid #e6ebf1;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 12px 28px rgba(15, 31, 61, 0.07);
}

.versions-timeline-head h2 {
  margin: 0 0 10px;
}

.versions-timeline-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.versions-timeline-track::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #8ab4f8 0%, #7c3aed 100%);
  opacity: 0.45;
}

.versions-timeline-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 22px 18px 18px;
  border: 1px solid #e6ebf1;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 31, 61, 0.05);
}

.versions-timeline-card-current {
  border-color: #d7c6ff;
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.14), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #fcf9ff 100%);
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.14);
}

.versions-timeline-card::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 22px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8ab4f8 0%, #7c3aed 100%);
  box-shadow: 0 0 0 5px rgba(138, 180, 248, 0.18);
}

.versions-timeline-card-current::before {
  background: linear-gradient(180deg, #a855f7 0%, #7c3aed 100%);
  box-shadow: 0 0 0 6px rgba(168, 85, 247, 0.18);
}

.versions-timeline-step {
  color: #185abc;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.versions-timeline-card strong {
  color: var(--text);
  font-size: 1rem;
}

.versions-timeline-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.versions-accordion-list {
  display: grid;
  gap: 14px;
  width: min(100%, 920px);
  margin: 0 auto;
}

.versions-accordion {
  border: 1px solid #e6ebf1;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 31, 61, 0.06);
}

.versions-accordion-current {
  border-color: #dbcdfc;
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
  box-shadow: 0 16px 30px rgba(124, 58, 237, 0.12);
}

.versions-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.versions-accordion summary::-webkit-details-marker {
  display: none;
}

.versions-accordion[open] summary {
  border-bottom: 1px solid #eceff1;
  background: #fbfcfe;
}

.versions-accordion-current summary {
  position: relative;
}

.versions-accordion-current summary::after {
  content: "Atual";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f3e8ff;
  color: #7c3aed;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.versions-summary-main {
  display: grid;
  gap: 6px;
}

.versions-summary-version {
  color: #185abc;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.versions-summary-title {
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.4;
}

.versions-status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fef7e0;
  color: #b06000;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.versions-accordion-body {
  display: grid;
  gap: 16px;
  padding: 20px 22px 22px;
}

.versions-explanation {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  font-size: 0.98rem;
}

.versions-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.versions-list li {
  color: var(--text);
  line-height: 1.6;
}

.versions-roadmap {
  display: grid;
  gap: 20px;
  padding: 26px;
  border: 1px solid #e6ebf1;
  border-radius: 28px;
  background: linear-gradient(180deg, #0f1f3d 0%, #13264a 100%);
  box-shadow: 0 16px 34px rgba(15, 31, 61, 0.16);
}

.versions-roadmap-head h2 {
  margin: 0 0 10px;
  color: #fff;
}

.versions-roadmap-head .muted {
  color: rgba(255, 255, 255, 0.82);
}

.versions-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.versions-roadmap-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.versions-roadmap-card strong {
  color: #fff;
  font-size: 1rem;
}

.versions-roadmap-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.results-shell {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 24px 0 40px;
}

.results-search-form {
  width: 100%;
  margin-bottom: 14px;
}

.results-search-shell {
  min-height: 62px;
  box-shadow: 0 10px 24px rgba(7, 29, 73, 0.08);
}

.results-summary {
  margin-bottom: 10px;
}

.results-approx-note {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid #eceff3;
  border-radius: 18px;
  background: #fbfcff;
}

.results-approx-graphic {
  position: relative;
  height: 14px;
}

.results-approx-track {
  display: block;
  width: 100%;
  height: 6px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ea4335 0%, #fbbc04 52%, #34a853 100%);
}

.results-approx-marker {
  position: absolute;
  top: 0;
  width: 12px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #1f1f1f;
  box-shadow: 0 1px 4px rgba(32, 33, 36, 0.18);
  transform: translateX(-50%);
}

.results-approx-copy strong {
  display: block;
  margin: 0 0 2px;
  font-size: 0.92rem;
}

.results-approx-copy p {
  margin: 0;
  color: #5f6368;
  font-size: 0.9rem;
  line-height: 1.5;
}

.results-approx-note-low {
  border-color: #f4d7d4;
  background: #fff8f7;
}

.results-approx-note-medium {
  border-color: #f3e3b5;
  background: #fffdf6;
}

.results-context-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.results-context-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #dfe4ee;
  border-radius: 999px;
  background: #f8fbff;
  color: #506077;
  font-size: 0.79rem;
  font-weight: 600;
  line-height: 1;
}

.results-context-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  color: #6d7f99;
}

.results-context-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.results-list {
  display: grid;
  gap: 12px;
}

.results-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
}

.results-page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.results-page-link,
.results-page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.results-page-link {
  border: 1px solid #dfe4ee;
  background: #fff;
  color: #3b4a60;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.results-page-link:hover {
  border-color: #a7c4ff;
  background: #f4f8ff;
  color: #0b57d0;
}

.results-page-link.is-current {
  border-color: #0b57d0;
  background: #0b57d0;
  color: #fff;
}

.results-page-link.is-disabled {
  border-color: #eceff3;
  background: #f7f8fa;
  color: #9aa0a6;
  pointer-events: none;
}

.results-page-prev,
.results-page-next {
  min-width: 96px;
}

.results-page-ellipsis {
  color: #7a8594;
}

.result-card {
  border: 1px solid #e4e8ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 31, 61, 0.04);
}

.result-card-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 16px;
}

.result-media-col {
  flex: 0 0 108px;
}

.result-media-button {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.result-media-image,
.result-media-placeholder {
  width: 108px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  border: 1px solid #e3e6ec;
  background: #f7f8fa;
  object-fit: cover;
}

.result-media-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  background: linear-gradient(180deg, #f6f9ff 0%, #eef3fb 100%);
}

.result-media-brand {
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.result-media-brand-dark {
  color: #071d49;
}

.result-media-brand-cyan {
  color: #08bfdc;
}

.result-media-empty-text {
  color: #5f6b7c;
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
}

.result-card-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.result-card-copy h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.result-card-copy h2 a {
  color: #1f1f1f;
  text-decoration: none;
}

.result-card-copy h2 a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.result-source-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.result-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid #dfe4ee;
  border-radius: 999px;
  background: #fff;
  color: #5f6b7c;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 31, 61, 0.06);
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.result-badge-icon:hover {
  transform: translateY(-1px);
}

.result-badge-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.result-badge-icon-community {
  border-color: #bfd3ff;
  background: #edf3ff;
  color: #174ea6;
}

.result-badge-icon-system {
  border-color: #d9dde4;
  background: #f3f5f7;
  color: #4b5563;
}

.result-badge-icon-team {
  border-color: #b7e1c1;
  background: #e8f5e9;
  color: #137333;
}

.result-badge-icon-owner {
  border-color: #d7c6ff;
  background: #f3e8ff;
  color: #7c3aed;
}

.result-confidence-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.result-confidence-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.result-confidence-score {
  color: #5f6368;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.result-confidence-high {
  background: #e6f4ea;
  color: #137333;
}

.result-confidence-medium {
  background: #fef7e0;
  color: #b06000;
}

.result-confidence-low {
  background: #fce8e6;
  color: #c5221f;
}

.result-confidence-bar {
  position: relative;
  flex: 1 1 auto;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ea4335 0%, #fbbc04 52%, #34a853 100%);
  overflow: visible;
}

.result-confidence-marker {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #1f1f1f;
  box-shadow: 0 1px 5px rgba(32, 33, 36, 0.22);
  transform: translate(-50%, -50%);
}

.result-confidence-marker-high {
  background: #137333;
}

.result-confidence-marker-medium {
  background: #b06000;
}

.result-confidence-marker-low {
  background: #c5221f;
}

.result-confidence-copy {
  margin: -4px 0 10px;
  color: #5f6368;
  font-size: 0.88rem;
  line-height: 1.5;
}

.result-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.result-meta-list li {
  position: relative;
}

.result-meta-list li + li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c4c7c5;
  transform: translateY(-50%);
}

.result-distance-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid #d2e3fc;
  border-radius: 999px;
  background: #e8f0fe;
  color: #174ea6;
  font-size: 0.75rem;
  font-weight: 700;
}

.nearby-mobile-only {
  display: none !important;
}

@media (max-width: 900px) {
  .nearby-mobile-only {
    display: inline-flex !important;
  }
}

.result-description {
  margin: 10px 0 0;
  color: #3c4043;
  line-height: 1.6;
}

.result-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.result-feedback-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.result-feedback-label {
  color: #5f6368;
  font-size: 0.86rem;
  font-weight: 600;
}

.result-feedback-label-mobile {
  display: none;
}

.result-feedback-btn {
  border: 1px solid #dfe4ee;
  background: #fff;
  border-radius: 999px;
  min-width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
}

.result-feedback-btn:hover {
  background: #f4f8ff;
  border-color: #a7c4ff;
}

.result-feedback-btn.is-selected {
  background: #e8f0fe;
  border-color: #8ab4f8;
}

.result-feedback-thanks {
  color: #137333;
  font-size: 0.82rem;
  font-weight: 600;
}

.result-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f1f3f4;
  color: #3c4043;
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none !important;
}

.result-tag:hover {
  background: #e8f0fe;
  color: #174ea6;
}

.result-action-row {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.result-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  box-shadow: none;
}

.result-btn-label {
  display: none;
}

.result-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.result-btn-profile {
  border: 1px solid #dadce0;
  background: #fff;
  color: #1f1f1f;
}

.result-btn-profile:hover {
  border-color: #c4c7c5;
  background: #f8f9fa;
}

.result-btn-map {
  border: 1px solid #f4c7b7;
  background: #fff7f3;
  color: #b3261e;
}

.result-btn-map:hover {
  border-color: #efb39d;
  background: #feefe8;
}

.result-btn-whatsapp {
  border: 1px solid #1f9d4c;
  background: #25d366;
  color: #fff;
}

.result-btn-whatsapp:hover {
  border-color: #188038;
  background: #1fbd58;
}

.result-photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1250;
}

.result-photo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.86);
}

.result-photo-lightbox-dialog {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100% - 24px, 760px);
  min-height: calc(100vh - 24px);
  margin: 12px auto;
}

.result-photo-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  border-radius: 18px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.28);
}

.result-photo-lightbox-close {
  position: absolute;
  top: 12px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #1f1f1f;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.result-badge-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.result-badge-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.42);
}

.result-badge-dialog {
  position: relative;
  width: min(100% - 28px, 360px);
  margin: min(16vh, 96px) auto 0;
  padding: 22px 18px 18px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.18);
}

.result-badge-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f3f5f7;
  color: #425466;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.result-badge-dialog-title {
  margin: 0 32px 8px 0;
  font-size: 1.1rem;
  color: #1f1f1f;
}

.result-badge-dialog-copy {
  margin: 0;
  color: #5f6368;
  line-height: 1.6;
}

body.result-badge-modal-open {
  overflow: hidden;
}

body.result-photo-lightbox-open {
  overflow: hidden;
}

.empty-state-results {
  margin-top: 16px;
  display: grid;
  gap: 14px;
  justify-items: flex-start;
  padding: 24px;
  border: 1px solid #dbe7ff;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  box-shadow: 0 10px 28px rgba(26, 115, 232, 0.08);
}

.empty-state-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e8f0fe;
  color: #174ea6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.empty-state-results h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 1.8rem);
  line-height: 1.15;
}

.empty-state-lead,
.empty-state-copy {
  margin: 0;
  max-width: 620px;
  line-height: 1.65;
}

.empty-state-lead {
  color: #1f1f1f;
  font-size: 1.03rem;
  font-weight: 500;
}

.empty-state-copy {
  color: #4d5156;
}

.empty-state-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.empty-state-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #d2e3fc;
  border-radius: 999px;
  background: #fff;
  color: #174ea6;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.empty-state-chip:hover {
  background: #eef4ff;
  border-color: #a8c7fa;
  box-shadow: 0 6px 16px rgba(26, 115, 232, 0.12);
  transform: translateY(-1px);
}

.empty-state-cta {
  min-width: 0;
  white-space: normal;
  text-align: center;
}

.empty-state-copy-tight {
  margin-top: 6px;
}

.results-footer-note {
  margin-top: 14px;
}

@keyframes voice-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 67, 53, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(234, 67, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(234, 67, 53, 0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes voice-mic-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 75, 75, 0.22);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(255, 75, 75, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 75, 75, 0);
  }
}

@keyframes voice-ring-pulse {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  12% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@media (max-width: 600px) {
  .versions-overview-grid,
  .versions-timeline-track,
  .versions-roadmap-grid {
    grid-template-columns: 1fr;
  }

  .versions-timeline {
    padding: 20px;
    border-radius: 22px;
  }

  .versions-timeline-track::before {
    display: none;
  }

  .versions-hero {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .versions-accordion summary {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .versions-accordion-body {
    padding: 18px;
  }

  .versions-roadmap {
    padding: 20px;
    border-radius: 22px;
  }

  .info-page {
    gap: 18px;
  }

  .info-hero h1 {
    max-width: none;
  }

  .info-lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .info-story-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .info-story-card,
  .info-quote-block {
    padding: 20px;
    border-radius: 22px;
  }

  .info-chip {
    min-height: 34px;
    font-size: 0.84rem;
  }

  .info-quote {
    font-size: 1.15rem;
  }

  .admin-stats-grid {
    grid-template-columns: 1fr;
  }

  .admin-list-header {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-moderation-top {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-moderation-body {
    grid-template-columns: 1fr;
  }

  .admin-search-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    min-height: 56px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .site-nav {
    width: min(300px, calc(100vw - 18px));
    padding-top: 76px;
  }

  .site-footer {
    min-height: 52px;
  }

  .page-content {
    padding-bottom: 112px;
  }

  .site-footer-inner {
    justify-content: flex-start;
    min-height: 52px;
  }

  .site-footer-links {
    justify-content: flex-start;
    width: 100%;
  }

  .site-footer-links a {
    min-height: 52px;
    padding: 0 14px 0 0;
    font-size: 0.82rem;
  }

  .hero-logo {
    font-size: 3rem;
  }

  /* Removido duplicata do gps-modal-card ja tratado no media query de 640px */



  .home-hero {
    gap: 24px;
    padding: 26px 0 40px;
  }

  .home-branding-logo {
    font-size: clamp(34px, 10.3vw, 54px);
    letter-spacing: -0.04em;
  }

  .home-logo-orange {
    margin-left: 3px;
    font-size: 0.5em;
  }

  .home-tagline-wrap {
    gap: 10px;
    margin-top: 14px;
  }

  .home-tagline-wrap p {
    max-width: 330px;
    font-size: 16px;
    line-height: 1.35;
  }

  .home-tagline-line {
    width: 38px;
    height: 2px;
  }

  .home-services-carousel {
    width: 100%;
    min-height: 78px;
    margin-top: 24px;
    justify-content: flex-start;
    overflow: hidden;
  }

  .home-service-item {
    width: 25%;
    min-width: 25%;
    padding: 0 8px;
  }

  .home-service-item i {
    margin-bottom: 10px;
    font-size: 26px;
  }

  .home-service-item span {
    font-size: 10px;
    line-height: 1.2;
  }

  .home-search-actions {
    gap: 10px;
  }

  .hero-search {
    justify-content: flex-start;
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 32px;
  }

  .voice-page {
    min-height: calc(100vh - 96px);
    padding-top: 12px;
  }

  .voice-stage {
    min-height: auto;
    padding-top: 56px;
    flex-direction: column;
    flex-direction: column-reverse;
    justify-content: flex-start;
    gap: 28px;
  }

  .voice-copy {
    max-width: 100%;
    align-self: stretch;
    text-align: left;
  }

  .voice-back {
    align-self: flex-start;
  }

  .voice-mic-button {
    width: 148px;
    height: 148px;
  }

  .voice-mic-button svg {
    width: 62px;
    height: 62px;
  }

  .search-google {
    max-width: 100%;
  }

  .search-actions .btn-google {
    flex: 1;
    min-width: 120px;
  }

  .dashboard-header {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-highlight {
    flex-direction: column;
    align-items: flex-start;
  }

  .panel {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .list-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .onboarding-shell {
    padding-top: 8px;
  }

  .onboarding-card {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .gps-pill {
    width: 100%;
  }

  .edit-company-shell {
    padding-top: 8px;
  }

  .edit-company-card {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .edit-company-grid {
    grid-template-columns: 1fr;
  }

  .edit-company-actions {
    justify-content: stretch;
  }

  .edit-company-submit {
    width: 100%;
    min-width: 0;
  }

  .company-profile-shell {
    padding-top: 10px;
  }

  .company-profile-grid {
    grid-template-columns: 1fr;
  }

  .company-profile-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .company-action-btn {
    width: 100%;
  }

  .company-suggest-form {
    grid-template-columns: 1fr;
  }

  .auth-shell {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    padding-top: 24px;
  }

  .auth-copy {
    max-width: 100%;
  }

  .auth-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .auth-copy h1 {
    font-size: 2rem;
  }

  .auth-toggle-row {
    align-items: flex-start;
  }

  .results-shell {
    padding-top: 12px;
  }

  .results-search-shell {
    min-height: 58px;
  }

  .results-context-row {
    gap: 7px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .results-context-chip {
    flex: 0 0 auto;
    font-size: 0.73rem;
    min-height: 28px;
    padding: 0 9px;
    white-space: nowrap;
  }

  .results-context-row::-webkit-scrollbar {
    display: none;
  }

  .results-pagination {
    flex-direction: column;
    align-items: stretch;
  }

  .results-page-numbers {
    order: -1;
  }

  .results-page-prev,
  .results-page-next {
    width: 100%;
  }

  .results-approx-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .result-card-body {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 14px 12px;
  }

  .result-media-col {
    width: 100%;
    flex: 0 0 auto;
  }

  .result-media-image,
  .result-media-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }

  .result-photo-lightbox-dialog {
    width: min(100% - 16px, 760px);
    min-height: calc(100vh - 16px);
    margin: 8px auto;
  }

  .result-photo-lightbox-image {
    max-height: 90vh;
    border-radius: 14px;
  }

  .result-card-copy {
    width: 100%;
    flex: 1 1 auto;
  }

  .result-card-copy h2 {
    font-size: 1.45rem;
    line-height: 1.15;
  }

  .result-meta-list {
    gap: 6px 14px;
    font-size: 0.9rem;
  }

  .result-description {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .result-source-row {
    gap: 6px;
    margin-bottom: 10px;
  }

  .result-badge-icon {
    width: 30px;
    height: 30px;
  }

  .result-source-chip,
  .result-verified-chip {
    min-height: 30px;
    padding: 0 10px;
    gap: 6px;
    font-size: 0.8rem;
  }

  .result-source-chip svg,
  .result-verified-chip svg {
    width: 14px;
    height: 14px;
  }

  .result-tag-row {
    gap: 6px;
  }

  .result-tag {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .result-feedback-row {
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: 0;
  }

  .result-feedback-label {
    width: auto;
    font-size: 0.82rem;
  }

  .result-feedback-label-desktop {
    display: none;
  }

  .result-feedback-label-mobile {
    display: inline;
  }

  .result-feedback-thanks {
    width: auto;
    order: 4;
    font-size: 0.78rem;
  }

  .result-confidence-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .result-confidence-bar {
    width: 100%;
  }

  .result-action-row {
    width: 100%;
    margin-top: 0;
    justify-content: flex-start;
    gap: 12px;
  }

  .result-btn {
    width: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 999px;
    flex: 0 0 46px;
  }

  .empty-state-results {
    gap: 12px;
    padding: 20px 16px;
    border-radius: 24px;
  }

  .empty-state-results h2 {
    font-size: 1.5rem;
  }

  .empty-state-lead {
    font-size: 1rem;
  }

  .empty-state-chip-row {
    width: 100%;
    gap: 8px;
  }

  .empty-state-chip {
    width: 100%;
    justify-content: center;
  }

  .empty-state-cta {
    width: 100%;
  }

  .home-contribute-banner {
    padding: 16px;
    margin-top: 32px;
    width: 100%;
    box-sizing: border-box;
  }
  .home-contribute-btn {
    width: 100%;
    justify-content: center;
  }
  .home-stats-chip {
    font-size: 12px;
    padding: 4px 10px;
    text-align: center;
  }
}

/* --- MOBILE GPS MODAL (BOTTOM SHEET STYLE) --- */
@media (max-width: 800px) {
  .gps-modal {
    padding: 0 !important;
    align-items: flex-end !important;
    justify-content: center !important;
  }

  .gps-modal-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 85vh !important;
    height: 85dvh !important;
    margin: 0 !important;
    padding: 24px 16px calc(24px + env(safe-area-inset-bottom)) !important;
    border-radius: 28px 28px 0 0 !important;
    box-shadow: 0 -12px 48px rgba(15, 31, 61, 0.3) !important;
    gap: 16px !important;
  }

  .gps-modal-header h2 {
    font-size: 1.15rem !important;
  }

  .gps-map {
    flex: 1 !important;
    min-height: 0 !important;
    height: 100% !important;
    border-radius: 20px !important;
  }

  .gps-modal-actions {
    flex-direction: column-reverse !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .gps-modal-action {
    width: 100% !important;
    min-width: 0 !important;
    height: 52px !important;
    border-radius: 14px !important;
  }
}

/* --- LOADING STATE --- */
.auth-submit.is-loading {
  position: relative !important;
  color: transparent !important;
  pointer-events: none !important;
}

.auth-submit.is-loading::after {
  content: "" !important;
  position: absolute !important;
  width: 20px !important;
  height: 20px !important;
  top: 50% !important;
  left: 50% !important;
  margin-top: -10px !important;
  margin-left: -10px !important;
  border: 3px solid rgba(255, 255, 255, 0.3) !important;
  border-top-color: #fff !important;
  border-radius: 50% !important;
  animation: auth-spin 0.8s linear infinite !important;
}

@keyframes auth-spin {
  to { transform: rotate(360deg); }
}

/* --- INLINE GPS --- */
.gps-inline-container {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid #dfe1e5;
  border-radius: 20px;
  background: #f8f9fa;
  animation: fadeUp 0.3s ease-out;
}

.gps-inline-container.is-active {
  display: flex;
}

.gps-inline-map {
  width: 100%;
  height: 300px;
  border-radius: 14px;
  border: 1px solid #dadce0;
  overflow: hidden;
}

.gps-inline-actions {
  display: flex;
  gap: 8px;
}

.gps-inline-actions .btn {
  flex: 1;
  height: 40px;
  font-size: 0.9rem;
}

.gps-pill-success {
  background: #e6f4ea !important;
  border-color: #1e8e3e !important;
  color: #1e8e3e !important;
}

/* --- GLOBAL LOADING OVERLAY (REFIXED) --- */
.global-loading {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  height: 100dvh !important;
  z-index: 99999 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px) !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body.is-loading {
  overflow: hidden !important;
  height: 100vh !important;
  width: 100vw !important;
  position: fixed !important;
}

.global-loading[hidden] {
  display: none !important;
}

.global-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #f1f3f4;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: auth-spin 0.8s linear infinite;
}

.global-loading-text {
  color: var(--text);
  font-weight: 500;
  font-size: 1.1rem;
}

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

/* --- TOAST NOTIFICATIONS --- */
.toast-container {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  width: 90%;
  max-width: 400px;
}

.toast {
  background: #1e8e3e;
  color: #fff;
  padding: 14px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  pointer-events: auto;
  animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-error { background: #d93025; }
.toast-warning { background: #f9ab00; color: #000; }
.toast-info { background: var(--primary); }

@keyframes toastIn {
  from { transform: translateY(-40px) scale(0.9); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* --- ADMIN ENHANCEMENTS --- */
.admin-status-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-badge-verified {
  background: #e6fffa !important;
  color: #047481 !important;
  border: 1px solid #b2f5ea !important;
  font-size: 0.65rem !important;
  padding: 1px 6px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  width: fit-content !important;
}

.admin-list-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.onboarding-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .onboarding-social-grid {
    grid-template-columns: 1fr;
  }
}
