:root {
  
  --accent: #1a6fad;
  --accent-dark: #134f7d;
  --accent-light: #e8f3fb;

  
  --success: #16803c;
  --success-bg: #dcfce7;
  --success-border: #bbf7d0;
  --warning: #b45309;
  --warning-bg: #fef3c7;
  --warning-border: #fde68a;
  --danger: #b91c1c;
  --danger-bg: #fee2e2;
  --danger-border: #fecaca;
  --info: #0369a1;
  --info-bg: #e0f2fe;
  --info-border: #bae6fd;

  
  --bg: #f5f6f8;
  --bg-card: #ffffff;
  --bg-muted: #eef0f3;
  --bg-hover: #f0f4f8;

  
  --border: #dde1e7;
  --border-strong: #bcc2cc;

  
  --text: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;

  
  --text-primary: var(--text);
  --font-sans: "DM Sans", system-ui, sans-serif;

  
  --radius: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);

  --header-h: 64px;
  --container-w: 1500px;
  --t: 0.15s ease;
  --header-bg: rgba(255, 255, 255, 0.97);
}


[data-theme="escuro"] {
  --bg: #0f1620;
  --bg-card: #172233;
  --bg-muted: #1c2839;
  --bg-hover: #202d40;
  --border: #2a3749;
  --border-strong: #3a4a60;
  --text: #e5e9f0;
  --text-secondary: #b0b8c4;
  --text-muted: #77828f;
  --text-primary: var(--text);
  --accent-light: #17324a;
  --success-bg: #10321f;
  --success-border: #1b4a2c;
  --warning-bg: #3a2a0c;
  --warning-border: #55400f;
  --danger-bg: #3a1414;
  --danger-border: #55201f;
  --info-bg: #0d2c3d;
  --info-border: #123f57;
  --header-bg: rgba(23, 34, 51, 0.94);
}

[data-theme="escuro"] img {
  opacity: 0.92;
}

.page-container {
  padding-top: 28px;
  padding-bottom: 48px;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
svg {
  display: block;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button {
  font-family: var(--font-sans);
  cursor: pointer;
}


.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.main-content {
  flex: 1;
  padding-bottom: 48px;
}
.main-content--map {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}


.mt-4 {
  margin-top: 4px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-12 {
  margin-top: 12px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.pt-24 {
  padding-top: 24px;
}
.pt-32 {
  padding-top: 32px;
}
.gap-8 {
  gap: 8px;
}
.gap-12 {
  gap: 12px;
}
.gap-16 {
  gap: 16px;
}
.gap-20 {
  gap: 20px;
}


.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-muted {
  color: var(--text-muted);
}
.text-secondary {
  color: var(--text-secondary);
}
.text-sm {
  font-size: 13px;
}
.text-xs {
  font-size: 12px;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}


.flex {
  display: flex;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.w-full {
  width: 100%;
}
.hidden {
  display: none;
}


.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.gap-16 {
  gap: 16px;
}


@media (max-width: 900px) {
  .grid-2.responsive,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .hide-mobile {
    display: none;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
