html {
  font-size: 16px;
}
@media (orientation: portrait) and (min-width: 900px) {
  html {
    font-size: 18px;
  }
}

:root {
  --color-brand-primary: #1d6e45;
  --color-brand-primary-dark: #166534;
  --color-brand-primary-light: #2e7d4f;
  --color-brand-primary-subtle: #e8f5ee;
  --color-brand-accent: #f59e0b;
  --color-brand-accent-dark: #b45309;
  --color-brand-accent-subtle: #fffbeb;
  --color-neutral-900: #111827;
  --color-neutral-700: #374151;
  --color-neutral-600: #4b5563;
  --color-neutral-500: #6b7280;
  --color-neutral-300: #d1d5db;
  --color-neutral-100: #f3f4f6;
  --color-neutral-50: #f9fafb;
  --color-white: #ffffff;
  --color-bg-page: #F7F9FA;
  --color-input-bg: rgba(255, 255, 255, 0.55);
  --color-error: #dc2626;
  --color-error-subtle: #fef2f2;
  --color-success: #16a34a;
  --color-success-subtle: #f0fdf4;
  --color-warning: #f59e0b;
  --color-warning-subtle: #fffbeb;
  --color-gold: #f59e0b;
  --color-silver: #9ca3af;
  --color-bronze: #b45309;
  --color-focus-ring-primary: rgba(29, 110, 69, 0.15);
  --color-focus-ring-error: rgba(220, 38, 38, 0.15);
  --color-brand-secondary: #1a7a8a;
  --color-brand-secondary-dark: #136475;
  --color-brand-secondary-subtle: #e6f4f7;
  --color-bg-gradient-start: #e8f5f0;
  --color-bg-gradient-end: #cfe8de;
  --color-cta: #F28C28;
  --color-cta-dark: #D9771A;
  --font-family-base: Inter, system-ui, -apple-system, sans-serif;
  --font-family-mono: ui-monospace, SFMono-Regular, monospace;
  --font-size-xs: 0.875rem;
  --font-size-sm: 1rem;
  --font-size-base: 1.125rem;
  --font-size-md: 1.375rem;
  --font-size-lg: 1.75rem;
  --font-size-xl: 2.188rem;
  --font-size-2xl: 2.75rem;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-tight: 1.2;
  --line-height-snug: 1.35;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.65;
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.04em;
  --letter-spacing-wider: 0.08em;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-30: 7.5rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --radius-input: 12px;
  --radius-card: 16px;
  --radius-chip: 9999px;
  --radius-button: 9999px;
  --radius-modal: 24px;
  --radius-badge: 9999px;
  --shadow-none: none;
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-modal: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-nav: 0 -1px 0 0 rgba(0, 0, 0, 0.06);
  --shadow-fab: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-focus: 0 0 0 3px rgba(29, 110, 69, 0.35);
  --z-below: -1;
  --z-base: 0;
  --z-raised: 10;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
  --z-tooltip: 600;
  --duration-instant: 0ms;
  --duration-fast: 100ms;
  --duration-normal: 200ms;
  --duration-slow: 300ms;
  --duration-slower: 500ms;
  --easing-default: cubic-bezier(0.4, 0, 0.2, 1);
  --easing-in: cubic-bezier(0.4, 0, 1, 1);
  --easing-out: cubic-bezier(0, 0, 0.2, 1);
  --easing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 100ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --safe-area-top: env(safe-area-inset-top, 0px);
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
  --safe-area-left: env(safe-area-inset-left, 0px);
  --safe-area-right: env(safe-area-inset-right, 0px);
}

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

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-neutral-900);
  background-color: var(--color-bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--color-brand-primary);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus, .skip-link:focus-visible {
  position: fixed;
  left: var(--space-4, 16px);
  top: var(--space-4, 16px);
  width: auto;
  height: auto;
  overflow: visible;
  padding: var(--space-2, 8px) var(--space-4, 16px);
  background-color: var(--color-brand-primary, #1d6e45);
  color: var(--color-white, #fff);
  font-weight: 600;
  border-radius: 4px;
  z-index: 9999;
  outline: 3px solid var(--color-brand-secondary, #0d9488);
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}

* {
  -webkit-tap-highlight-color: transparent;
}

button,
a,
[role=button],
input[type=submit],
input[type=button] {
  touch-action: manipulation;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
h1 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-neutral-900);
}

h2 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-neutral-900);
}

h3 {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-snug);
  color: var(--color-neutral-900);
}

h4 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  color: var(--color-neutral-900);
}

p {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-normal);
  color: var(--color-neutral-700);
}

small {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-500);
}

label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-700);
}

#totem-root,
.app-shell {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  background-color: transparent;
  display: flex;
  flex-direction: column;
}
@media (orientation: portrait) and (min-width: 900px) {
  #totem-root,
  .app-shell {
    min-height: 100dvh;
    user-select: none;
    -webkit-user-select: none;
  }
}

.totem-scale-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  width: 100%;
}

.content-area {
  flex: 1 1 auto;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: var(--space-6);
  background-color: transparent;
}
@media (orientation: landscape) and (min-width: 768px) {
  .content-area {
    max-width: 42rem;
    margin-inline: auto;
  }
}
@media (orientation: portrait) and (min-width: 900px) {
  .content-area {
    padding: var(--space-8);
  }
}
.content-area::-webkit-scrollbar {
  width: 6px;
}
.content-area::-webkit-scrollbar-track {
  background: transparent;
}
.content-area::-webkit-scrollbar-thumb {
  background: var(--color-neutral-300);
  border-radius: var(--radius-full);
}

.page-public {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: var(--space-12) var(--space-8) var(--space-8);
  background: linear-gradient(135deg, var(--color-bg-gradient-start) 0%, var(--color-bg-gradient-end) 100%);
}
@media (orientation: portrait) and (min-width: 900px) {
  .page-public {
    padding: var(--space-16) var(--space-12) var(--space-12);
  }
}

.auth-logo-img {
  display: block;
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-top-app {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  flex: 0 0 auto;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: var(--shadow-nav);
  padding-top: var(--safe-area-top);
}
.nav-top-app__faixa {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background-color: var(--color-brand-primary-dark);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  min-height: 2rem;
}
@media (orientation: landscape) and (min-width: 768px) {
  .nav-top-app__faixa {
    padding-inline: calc((100% - 42rem) / 2 + var(--space-4));
  }
}
.nav-top-app__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--color-brand-accent);
  flex-shrink: 0;
}
.nav-top-app__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  min-height: 4rem;
}
@media (orientation: landscape) and (min-width: 768px) {
  .nav-top-app__bar {
    max-width: 42rem;
    margin-inline: auto;
  }
}
.nav-top-app__logo {
  text-decoration: none;
  color: inherit;
}
.nav-top-app__logo:focus-visible {
  outline: 3px solid var(--color-brand-primary);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}
.nav-top-app__logo-img {
  display: block;
  height: 3rem;
  width: auto;
  object-fit: contain;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin-bottom: var(--space-6);
  z-index: var(--z-modal, 40);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.bottom-nav__wrapper {
  position: relative;
  max-width: 28rem;
  margin-inline: auto;
  padding-inline: var(--space-3);
}

.bottom-nav__pill {
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  box-shadow: 0 8px 30px rgba(15, 42, 71, 0.12), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.bottom-nav__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding-block: 10px;
  text-decoration: none;
  color: #7C8A95;
  touch-action: manipulation;
}
.bottom-nav__item:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: -2px;
}

.bottom-nav__item--active,
.bottom-nav__item[aria-current] {
  color: var(--color-brand-primary-dark);
}
.bottom-nav__item--active .bottom-nav__label,
.bottom-nav__item[aria-current] .bottom-nav__label {
  font-weight: var(--font-weight-semibold);
}

.bottom-nav__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.bottom-nav__label {
  font-size: 0.625rem;
  font-weight: var(--font-weight-medium);
  line-height: 1;
}

.bottom-nav__fab-slot {
  display: flex;
  justify-content: center;
}

.bottom-nav__fab {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-top: -28px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #00873F 0%, #0B5C30 100%);
  color: var(--color-white);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 0 0 4px var(--color-white);
  text-decoration: none;
  touch-action: manipulation;
}
.bottom-nav__fab svg {
  width: 24px;
  height: 24px;
}
.bottom-nav__fab:focus-visible {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 0 0 4px var(--color-brand-primary-subtle);
}

body:has(.bottom-nav) {
  padding-bottom: calc(5.5rem + var(--safe-area-bottom, 0px));
}

.site-footer {
  padding: var(--space-6) var(--space-4) calc(var(--space-6) + var(--safe-area-bottom, 0px));
  text-align: center;
}
@media (orientation: landscape) and (min-width: 768px) {
  .site-footer {
    padding: var(--space-8) var(--space-8) calc(var(--space-8) + var(--safe-area-bottom, 0px));
  }
}

.site-footer--transparent {
  background: transparent;
  border-top: none;
  padding-block: 0;
  margin-top: var(--space-6);
}

.site-footer--solid {
  background: var(--color-white);
  border-top: 1px solid var(--color-neutral-100);
  margin-top: auto;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px var(--space-3);
  margin-bottom: var(--space-3);
}
.site-footer__nav a {
  font-size: 0.6875rem;
  color: var(--color-neutral-500);
  text-decoration: none;
  touch-action: manipulation;
}
.site-footer__nav a:hover, .site-footer__nav a:focus-visible {
  color: var(--color-brand-primary);
  text-decoration: underline;
}
.site-footer__nav a:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.site-footer__copy {
  font-size: 0.625rem;
  color: var(--color-neutral-500);
  margin: 0;
}

.auth-page {
  min-height: 100dvh;
  padding: var(--space-8) var(--space-4);
  background: radial-gradient(120% 80% at 10% 0%, rgba(60, 120, 90, 0.08) 0%, rgba(0, 0, 0, 0) 60%), linear-gradient(rgb(223, 243, 230) 0%, rgb(247, 249, 250) 100%);
  display: flex;
  flex-direction: column;
}

.auth-inner {
  width: 100%;
  max-width: 24rem;
  margin-inline: auto;
}

.auth-inner--wide {
  max-width: 28rem;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  cursor: pointer;
  border: none;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-button);
  min-height: 64px;
  padding: 0 var(--space-8);
  font-size: var(--font-size-md);
  transition: background-color 0.2s ease, opacity 0.2s ease;
  width: 100%;
  text-decoration: none;
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn:focus-visible {
  outline: 3px solid var(--color-brand-primary);
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn--primary {
  background-color: var(--color-brand-accent);
  color: var(--color-white);
}
.btn--primary:hover:not(:disabled) {
  background-color: var(--color-brand-accent-dark);
}
.btn--primary:focus-visible {
  outline-color: var(--color-brand-accent-dark);
}

.btn--secondary {
  background-color: transparent;
  border: 2px solid var(--color-brand-primary);
  color: var(--color-brand-primary);
}
.btn--secondary:hover:not(:disabled) {
  background-color: var(--color-brand-primary-subtle);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-brand-primary);
  text-decoration: underline;
}
.btn--ghost:hover:not(:disabled) {
  background-color: var(--color-brand-primary-subtle);
}

.btn--cta {
  background-color: var(--color-cta);
  color: var(--color-white);
}
.btn--cta:hover:not(:disabled) {
  background-color: var(--color-cta-dark);
}
.btn--cta:focus-visible {
  outline-color: var(--color-cta-dark);
}

.btn--submit {
  background-color: var(--color-brand-primary-dark);
  color: var(--color-white);
}
.btn--submit:hover:not(:disabled) {
  background-color: var(--color-brand-primary);
}
.btn--submit:focus-visible {
  outline-color: var(--color-brand-primary-dark);
}

.btn--auth-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  height: 36px;
  border-radius: 12px;
  background-color: rgb(0, 122, 61);
  color: var(--color-white);
  border: none;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  font-weight: 500;
  font-size: 14px;
  font-family: inherit;
}
.btn--auth-submit svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn--auth-submit:hover {
  opacity: 0.9;
}
.btn--auth-submit:focus-visible {
  outline: 2px solid rgb(0, 122, 61);
  outline-offset: 2px;
}

.btn--auth-submit-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 36px;
  padding: 8px 16px;
  border-radius: 12px;
  background-color: rgb(242, 140, 40);
  color: var(--color-white);
  border: none;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  font-weight: 500;
  font-size: 14px;
  font-family: inherit;
}
.btn--auth-submit-orange:hover {
  opacity: 0.9;
}
.btn--auth-submit-orange:focus-visible {
  outline: 2px solid rgb(242, 140, 40);
  outline-offset: 2px;
}

.btn--onb-back {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 12px;
  background-color: transparent;
  border: 1px solid rgb(215, 222, 226);
  color: rgb(74, 90, 99);
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  font-weight: 500;
  font-size: 14px;
  font-family: inherit;
}
.btn--onb-back:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.btn--onb-back:focus-visible {
  outline: 2px solid rgb(0, 122, 61);
  outline-offset: 2px;
}

.btn--save-prefs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: none;
  border-radius: 12px;
  background-color: #005C2E;
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  touch-action: manipulation;
}
.btn--save-prefs:hover {
  opacity: 0.92;
}
.btn--save-prefs:focus-visible {
  outline: 2px solid #005C2E;
  outline-offset: 2px;
}
.btn--save-prefs:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--action {
  background-color: #F28C28;
  color: var(--color-white);
}
.btn--action:hover:not(:disabled) {
  opacity: 0.9;
}

.btn--ranking-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border-radius: var(--radius-full);
  background-color: #007C9E;
  color: var(--color-white);
  border: none;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
}
.btn--ranking-submit:hover {
  opacity: 0.9;
}
.btn--ranking-submit:focus-visible {
  outline: 2px solid #007C9E;
  outline-offset: 2px;
}
.btn--ranking-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--color-brand-primary-subtle);
  color: var(--color-brand-primary-dark);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  flex-shrink: 0;
  text-decoration: none;
}
.avatar:focus-visible {
  outline: 3px solid var(--color-brand-primary);
  outline-offset: 2px;
}
@media (orientation: portrait) and (min-width: 900px) {
  .avatar {
    width: 48px;
    height: 48px;
  }
}

.avatar--initials {
  position: absolute;
  top: calc(var(--space-3) + var(--safe-area-top, 0px));
  right: var(--space-4);
  z-index: 10;
  gap: var(--space-1);
  width: auto;
  padding: 2px var(--space-2) 2px 2px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-brand-primary-dark);
  font-size: var(--font-size-xs);
}

.avatar__initials-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--color-brand-primary-subtle);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-brand-primary-dark);
  flex-shrink: 0;
}

.avatar__label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-brand-primary-dark);
  padding: 0 2px;
}

.avatar__chevron {
  color: var(--color-neutral-400);
  flex-shrink: 0;
}

.avatar--simple {
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: var(--color-brand-primary-subtle);
  box-shadow: var(--shadow-card);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.avatar--simple .avatar__initials-circle {
  width: 100%;
  height: 100%;
  background-color: transparent;
}
@media (orientation: portrait) and (min-width: 900px) {
  .avatar--simple {
    width: 48px;
    height: 48px;
  }
}

.avatar--icon {
  background-color: var(--color-brand-primary-subtle);
  color: var(--color-brand-primary-dark);
  width: 40px;
  height: 40px;
}
@media (orientation: portrait) and (min-width: 900px) {
  .avatar--icon {
    width: 48px;
    height: 48px;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-700);
}

.form-label--upper {
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
}

.form-label--required::after {
  content: " *";
  color: var(--color-error);
}

.form-select {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid rgb(226, 232, 235);
  border-radius: 18px;
  background-color: transparent;
  color: rgb(38, 50, 56);
  outline: none;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
}
.form-select:focus {
  border-color: #007C9E;
  box-shadow: 0 0 0 2px rgba(0, 124, 158, 0.15);
}
.form-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: transparent;
}

.form-select--uf {
  text-align: center;
}

.form-input {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid rgb(226, 232, 235);
  border-radius: 18px;
  background-color: transparent;
  color: rgb(38, 50, 56);
  outline: none;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
}
.form-input::placeholder {
  color: rgb(140, 150, 157);
}
.form-input:focus {
  border-color: #007C9E;
  box-shadow: 0 0 0 2px rgba(0, 124, 158, 0.15);
}

.form-textarea {
  display: block;
  width: 100%;
  min-height: 116px;
  padding: 8px 12px;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.45;
  border: 1px solid rgb(226, 232, 235);
  border-radius: 18px;
  background-color: transparent;
  color: rgb(38, 50, 56);
  outline: none;
  box-sizing: border-box;
  resize: vertical;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
}
.form-textarea::placeholder {
  color: rgb(140, 150, 157);
}
.form-textarea:focus {
  border-color: #007C9E;
  box-shadow: 0 0 0 2px rgba(0, 124, 158, 0.15);
}

.input-wrapper {
  position: relative;
}

.input-icon-btn {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-neutral-500);
  min-height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-icon-btn:focus-visible {
  outline: 3px solid var(--color-brand-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
.input-icon-btn:hover {
  color: var(--color-neutral-700);
}

.form-error {
  font-size: var(--font-size-xs);
  color: var(--color-error);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.form-hint {
  font-size: var(--font-size-xs);
  color: var(--color-neutral-500);
}

.auth-form {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.auth-label {
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-800);
}

.auth-input {
  display: block;
  width: 100%;
  height: 36px;
  padding: 4px 12px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid rgb(226, 232, 235);
  border-radius: 12px;
  background-color: transparent;
  color: inherit;
  outline: none;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
}

.auth-input--focus-accent:focus {
  border-color: rgb(0, 124, 158);
  box-shadow: 0 0 0 2px rgba(0, 124, 158, 0.15);
}

.form-alert {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background-color: var(--color-error-subtle);
  border: 1px solid var(--color-error);
  border-radius: var(--radius-md);
  color: var(--color-error);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-6);
}

.form-alert__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.form-divider {
  border: none;
  border-top: 1px solid var(--color-neutral-100);
  margin: var(--space-6) 0;
}

.form-link-row {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-neutral-700);
}

.form-link {
  color: var(--color-brand-primary);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
}
.form-link:hover {
  text-decoration: underline;
}
.form-link:focus-visible {
  outline: 3px solid var(--color-brand-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--radius-md);
}
.checkbox-wrapper:has(.checkbox-input:focus-visible) {
  border-color: var(--color-brand-primary);
  box-shadow: 0 0 0 3px var(--color-focus-ring-primary);
}

.checkbox-input {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  accent-color: var(--color-brand-accent);
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-label {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-700);
  line-height: var(--line-height-relaxed);
  cursor: pointer;
}

.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--space-2);
}

fieldset.chips-section {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.chips-section-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-neutral-700);
  float: left;
  width: 100%;
  margin-bottom: var(--space-2);
}

.chip {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 12px;
  border: 1px solid rgb(215, 222, 226);
  border-radius: 9999px;
  background-color: transparent;
  color: rgb(74, 90, 99);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  white-space: nowrap;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.chip input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.chip:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.chip.is-selected, .chip[aria-pressed=true], .chip:has(input:checked) {
  background-color: #DFF3E6;
  color: #005A75;
  border-color: #007C9E;
}
.chip:focus-visible, .chip:has(input:focus-visible) {
  outline: 2px solid #007C9E;
  outline-offset: 2px;
}

.city-uf-row {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: var(--space-4);
}

.toast {
  position: absolute;
  top: var(--space-4);
  left: var(--space-8);
  right: var(--space-8);
  z-index: var(--z-toast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}
.toast__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}
.toast--success {
  background-color: var(--color-success-subtle);
  color: var(--color-success);
}
.toast--error {
  background-color: var(--color-error-subtle);
  color: var(--color-error);
}
@media (orientation: portrait) and (min-width: 900px) {
  .toast {
    left: var(--space-12);
    right: var(--space-12);
    padding: var(--space-4) var(--space-5);
    font-size: var(--font-size-base);
  }
  .toast .toast__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  min-width: 48px;
  min-height: 48px;
  padding: var(--space-1) var(--space-2);
  color: var(--color-neutral-500);
  text-decoration: none;
  border-radius: var(--radius-md);
  touch-action: manipulation;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.nav-item:hover, .nav-item:focus-visible {
  color: var(--color-brand-primary);
  background-color: var(--color-brand-primary-subtle);
}
.nav-item:focus-visible {
  outline: 3px solid var(--color-brand-primary);
  outline-offset: 2px;
}
.nav-item.is-active, .nav-item[aria-current] {
  color: var(--color-brand-primary);
}
@media (orientation: portrait) and (min-width: 900px) {
  .nav-item {
    min-width: 56px;
    min-height: 56px;
  }
}

.nav-item__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@media (orientation: portrait) and (min-width: 900px) {
  .nav-item__icon {
    width: 26px;
    height: 26px;
  }
}

.nav-item__label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
}

.fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: var(--color-brand-primary);
  color: var(--color-white);
  box-shadow: 0 0 0 4px var(--color-white), var(--shadow-fab);
  transform: translateY(-1.5rem);
  text-decoration: none;
  flex-shrink: 0;
  touch-action: manipulation;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.fab svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.fab:hover {
  background-color: var(--color-brand-primary-dark);
}
.fab:focus-visible {
  outline: 3px solid var(--color-brand-primary);
  outline-offset: 3px;
}
@media (orientation: portrait) and (min-width: 900px) {
  .fab {
    width: 64px;
    height: 64px;
  }
  .fab svg {
    width: 28px;
    height: 28px;
  }
}

.counter-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
@media (orientation: portrait) and (min-width: 900px) {
  .counter-cards {
    gap: var(--space-4);
  }
}

.counter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-2);
  border-radius: var(--radius-card);
  background-color: var(--color-neutral-50);
  box-shadow: var(--shadow-card);
  text-align: center;
  gap: var(--space-1);
}
@media (orientation: portrait) and (min-width: 900px) {
  .counter-card {
    padding: var(--space-5) var(--space-3);
  }
}

.counter-card__number {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.counter-card__label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-neutral-600);
}

.counter-card--publicadas .counter-card__number {
  color: var(--color-success);
}

.counter-card--moderacao .counter-card__number {
  color: var(--color-warning);
}

.counter-card--terra .counter-card__number {
  color: var(--color-brand-secondary);
}

.initiative-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.initiative-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--radius-card);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.initiative-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
}

.initiative-card__title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-900);
  line-height: 1.3;
  margin: 0;
}

.initiative-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-600);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.initiative-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.initiative-card__location {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-size-xs);
  color: var(--color-neutral-500);
}

.initiative-card__pin-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.initiative-card__ods {
  display: flex;
  gap: var(--space-1);
  flex-wrap: wrap;
}

.toggle-pill {
  display: flex;
  background-color: var(--color-neutral-100);
  border-radius: var(--radius-full);
  padding: var(--space-1);
  gap: var(--space-1);
  margin-bottom: var(--space-5);
  width: 100%;
}

.toggle-pill__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: none;
  border-radius: var(--radius-full);
  background-color: transparent;
  color: var(--color-neutral-600);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.toggle-pill__btn:focus-visible {
  outline: 3px solid var(--color-brand-primary);
  outline-offset: 2px;
}
.toggle-pill__btn {
  gap: var(--space-2);
}
.toggle-pill__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.toggle-pill__btn.is-active, .toggle-pill__btn[aria-selected=true] {
  background-color: var(--color-brand-secondary);
  color: var(--color-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
@media (orientation: portrait) and (min-width: 900px) {
  .toggle-pill__btn {
    min-height: 48px;
  }
}

.ods-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}
@media (orientation: landscape) and (min-width: 768px) {
  .ods-checkbox-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (orientation: portrait) and (min-width: 900px) {
  .ods-checkbox-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }
}

.ods-checkbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  cursor: pointer;
  touch-action: manipulation;
}
.ods-checkbox input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ods-checkbox:focus-within .ods-checkbox__number {
  outline: 3px solid var(--color-brand-primary);
  outline-offset: 2px;
}

.ods-checkbox__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-neutral-300);
  background-color: var(--color-neutral-50);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-neutral-700);
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.ods-checkbox input:checked ~ .ods-checkbox__number {
  background-color: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
  color: var(--color-white);
}
@media (orientation: portrait) and (min-width: 900px) {
  .ods-checkbox__number {
    width: 52px;
    height: 52px;
  }
}

.ods-checkbox__label {
  font-size: var(--font-size-xs);
  color: var(--color-neutral-600);
  text-align: center;
  line-height: 1.2;
}

.ods-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background-color: var(--color-brand-primary-subtle);
  color: var(--color-brand-primary-dark);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-badge);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge--publicado {
  background-color: var(--color-success-subtle);
  color: var(--color-success);
}

.badge--moderacao {
  background-color: var(--color-warning-subtle);
  color: var(--color-brand-accent-dark);
}

.badge--rascunho {
  background-color: var(--color-neutral-100);
  color: var(--color-neutral-600);
}

.hero-home {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding: var(--space-8) var(--space-6) var(--space-4);
  background-color: var(--color-white);
}
@media (orientation: landscape) and (min-width: 768px) {
  .hero-home {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    padding: var(--space-10) var(--space-8) var(--space-6);
  }
}
@media (orientation: portrait) and (min-width: 900px) {
  .hero-home {
    flex-direction: column;
    padding: var(--space-8) var(--space-6) var(--space-4);
  }
}

.hero-home__text {
  flex: 1 1 auto;
}
@media (orientation: landscape) and (min-width: 768px) {
  .hero-home__text {
    flex: 0 0 50%;
    padding-right: var(--space-8);
  }
}

.hero-home__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-neutral-900);
  margin: 0;
}
@media (orientation: landscape) and (min-width: 768px) {
  .hero-home__title {
    font-size: var(--font-size-xl);
  }
}

.hero-home__illustration {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-card);
  background-color: var(--color-brand-primary-subtle);
}
@media (orientation: landscape) and (min-width: 768px) {
  .hero-home__illustration {
    flex: 0 0 45%;
  }
}
.hero-home__illustration img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-home__ods-strip {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 0 0 100%;
  gap: 2px;
}
.hero-home__ods-strip::-webkit-scrollbar {
  display: none;
}
@media (orientation: landscape) and (min-width: 768px) {
  .hero-home__ods-strip {
    flex: 0 0 100%;
    overflow-x: visible;
  }
}

.hero-home__ods-item {
  flex: 0 0 auto;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  line-height: 1;
  border-radius: 2px;
}
@media (orientation: landscape) and (min-width: 768px) {
  .hero-home__ods-item {
    flex: 1 1 0;
    min-width: 0;
    height: 48px;
    font-size: 0.75rem;
  }
}
@media (orientation: portrait) and (min-width: 900px) {
  .hero-home__ods-item {
    height: 44px;
    min-width: 44px;
  }
}

.impact-banner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-6);
  background-color: var(--color-brand-primary);
  color: var(--color-white);
}
@media (orientation: landscape) and (min-width: 768px) {
  .impact-banner {
    flex-direction: row;
    align-items: center;
    padding: var(--space-5) var(--space-8);
    gap: var(--space-6);
  }
}
@media (orientation: portrait) and (min-width: 900px) {
  .impact-banner {
    flex-direction: column;
    padding: var(--space-5) var(--space-6);
  }
}

.impact-banner__label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0;
  opacity: 0.85;
}

.impact-banner__score {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin: 0;
  line-height: var(--line-height-snug);
}
@media (orientation: landscape) and (min-width: 768px) {
  .impact-banner__score {
    margin-right: auto;
  }
}

.impact-banner__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-white);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  padding: var(--space-2) 0;
  opacity: 0.9;
  transition: opacity 0.15s ease;
  touch-action: manipulation;
}
.impact-banner__link:hover, .impact-banner__link:focus-visible {
  opacity: 1;
  text-decoration: underline;
}
.impact-banner__link:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.challenge-banner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  background-color: var(--color-brand-primary);
  color: var(--color-white);
  touch-action: manipulation;
  cursor: pointer;
}
@media (orientation: landscape) and (min-width: 768px) {
  .challenge-banner {
    padding: var(--space-5) var(--space-8);
  }
}
@media (orientation: portrait) and (min-width: 900px) {
  .challenge-banner {
    padding: var(--space-5) var(--space-8);
  }
}

.challenge-banner__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
}
.challenge-banner__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
  stroke: none;
}

.challenge-banner__body {
  flex: 1 1 auto;
}

.challenge-banner__kicker {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 var(--space-1);
  opacity: 0.8;
}

.challenge-banner__text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  margin: 0;
  line-height: var(--line-height-snug);
}

.challenge-banner__arrow {
  font-size: var(--font-size-lg);
  flex-shrink: 0;
  opacity: 0.9;
}

.section-tiles {
  padding: 0 var(--space-6);
}
@media (orientation: landscape) and (min-width: 768px) {
  .section-tiles {
    padding: 0 var(--space-8);
  }
}

.section-tiles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
@media (orientation: landscape) and (min-width: 768px) {
  .section-tiles__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}
@media (orientation: portrait) and (min-width: 900px) {
  .section-tiles__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }
}

.section-tile {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4);
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-100);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  touch-action: manipulation;
  transition: box-shadow 0.15s ease, transform 0.1s ease;
}
.section-tile:hover, .section-tile:focus-visible {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.section-tile:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
}
.section-tile:active {
  transform: translateY(0);
  box-shadow: var(--shadow-card);
}

.section-tile__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-primary);
  flex-shrink: 0;
}
.section-tile__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
}

.section-tile__label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: var(--line-height-tight);
}

.section-tile__desc {
  font-size: var(--font-size-xs);
  color: var(--color-neutral-500);
  margin: 0;
  line-height: var(--line-height-normal);
  flex: 1 1 auto;
}

.section-tile__arrow {
  font-size: var(--font-size-md);
  color: var(--color-brand-primary);
  align-self: flex-end;
  line-height: 1;
}

.trail-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  touch-action: manipulation;
  transition: box-shadow 0.15s ease, transform 0.1s ease;
}
.trail-card:hover, .trail-card:focus-visible {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.trail-card:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
}
.trail-card:active {
  transform: translateY(0);
}

.trail-card__image {
  width: 100%;
  display: block;
  object-fit: cover;
  background-color: var(--color-brand-primary-subtle);
  flex-shrink: 0;
}

.trail-card__body {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  flex: 1 1 auto;
}

.trail-card__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-900);
  margin: 0;
  line-height: var(--line-height-snug);
  flex: 1 1 auto;
}

.trail-card__arrow {
  font-size: var(--font-size-md);
  color: var(--color-brand-primary);
  flex-shrink: 0;
  line-height: 1;
}

.trail-card--featured {
  box-shadow: var(--shadow-md);
}
.trail-card--featured .trail-card__image {
  aspect-ratio: 16/9;
  height: auto;
}
@media (orientation: landscape) and (min-width: 768px) {
  .trail-card--featured .trail-card__image {
    aspect-ratio: 21/9;
  }
}
.trail-card--featured .trail-card__title {
  font-size: var(--font-size-base);
}

.trail-card--horizontal {
  flex-direction: row;
  align-items: center;
}
.trail-card--horizontal .trail-card__image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
}
@media (orientation: landscape) and (min-width: 768px) {
  .trail-card--horizontal .trail-card__image {
    width: 96px;
    height: 96px;
  }
}
.trail-card--horizontal .trail-card__body {
  flex-direction: row;
  padding: var(--space-3) var(--space-4);
}

.preference-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preference-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgb(215, 222, 226);
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  color: rgb(38, 50, 56);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.preference-chip:hover {
  background-color: #EEF2F4;
}
.preference-chip.preference-chip--active, .preference-chip[aria-pressed=true] {
  background-color: #005C2E;
  color: var(--color-white);
  border-color: transparent;
}
.preference-chip:focus-visible {
  outline: 2px solid #007C9E;
  outline-offset: 2px;
}

.switch {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  touch-action: manipulation;
}

.switch__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.switch__track {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  border-radius: var(--radius-full);
  background-color: rgb(215, 222, 226);
  transition: background-color 0.15s ease;
}

.switch__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease;
}

.switch__input:checked + .switch__track {
  background-color: #007A3D;
}

.switch__input:checked + .switch__track .switch__thumb {
  transform: translateX(20px);
}

.switch__input:focus-visible + .switch__track {
  outline: 2px solid #007C9E;
  outline-offset: 2px;
}

.ecosystem-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-100);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  color: inherit;
  touch-action: manipulation;
  transition: box-shadow 0.15s ease, transform 0.1s ease;
}
.ecosystem-card:hover, .ecosystem-card:focus-visible {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.ecosystem-card:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
}
.ecosystem-card:active {
  transform: translateY(0);
}

.ecosystem-card__logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-brand-primary-subtle);
  border-radius: var(--radius-md);
  color: var(--color-brand-primary);
  flex-shrink: 0;
}
.ecosystem-card__logo svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

.ecosystem-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: var(--space-2);
}

.ecosystem-card__name {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-brand-primary-dark);
  margin: 0;
  line-height: var(--line-height-snug);
  flex: 1 1 auto;
}

.ecosystem-card__desc {
  font-size: var(--font-size-xs);
  color: var(--color-neutral-600);
  margin: 0;
  line-height: var(--line-height-snug);
}

.ecosystem-card__ext-badge {
  font-size: 0.625rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ecosystem-card__ext-badge svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-neutral-100);
  text-decoration: none;
  color: inherit;
  touch-action: manipulation;
  transition: background-color 0.1s ease;
}
.news-card:last-child {
  border-bottom: none;
}
.news-card:hover .news-card__title, .news-card:focus-visible .news-card__title {
  color: var(--color-brand-primary);
}
.news-card:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.news-card__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-900);
  margin: 0;
  line-height: var(--line-height-snug);
  transition: color 0.15s ease;
}

.news-card__summary {
  font-size: var(--font-size-xs);
  color: var(--color-neutral-700);
  margin: 0;
  line-height: var(--line-height-normal);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__date {
  font-size: var(--font-size-xs);
  color: var(--color-neutral-500);
  display: block;
}

.efa-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.efa-head__main {
  min-width: 0;
}

.efa-head__title {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #005A75;
}

.efa-head__sub {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
}

.efa-head__points {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 8px 12px;
  text-decoration: none;
  touch-action: manipulation;
  box-shadow: 0 1px 0 rgba(0, 124, 158, 0.06), 0 8px 24px -14px rgba(0, 124, 158, 0.22);
}

.efa-head__points-icon {
  color: #005C2E;
}
.efa-head__points-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.efa-head__points-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(74, 90, 99);
  line-height: 1.2;
}

.efa-head__points-value {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #005C2E;
  line-height: 1.2;
}

.efa-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.efa-card {
  --tone: #2E8B57;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  box-shadow: 0 1px 0 rgba(0, 124, 158, 0.06), 0 8px 24px -14px rgba(0, 124, 158, 0.22);
  text-decoration: none;
  color: inherit;
  touch-action: manipulation;
  transition: border-color 0.15s ease;
}
.efa-card:hover {
  border-color: color-mix(in oklab, #007A3D 35%, transparent);
}
.efa-card:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
}

.efa-card--blue {
  --tone: #2C7BB6;
}

.efa-card--orange {
  --tone: #F18A2B;
}

.efa-card__media {
  position: relative;
  aspect-ratio: 5/4;
  width: 100%;
  overflow: hidden;
}

.efa-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.efa-card__body {
  padding: 12px;
}

.efa-card__pill {
  display: inline-flex;
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  background-color: var(--tone);
}

.efa-card__title {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  color: rgb(38, 50, 56);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.efa-card__desc {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: rgb(74, 90, 99);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.efa-card__footer {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.efa-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--tone);
}
.efa-card__meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.efa-card__arrow {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  color: var(--color-white);
  background-color: var(--tone);
}
.efa-card__arrow svg {
  width: 16px;
  height: 16px;
}

.ods-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.ods-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 6px;
  border: 1px solid color-mix(in oklab, var(--ods-color) 45%, transparent);
  background-color: var(--color-white);
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ods-color);
  white-space: nowrap;
}

.ods-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: var(--ods-color);
  flex-shrink: 0;
}

.pill-tabs {
  --pill-tabs-active: #005C2E;
  margin-top: 20px;
  display: inline-flex;
  width: 100%;
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  padding: 4px;
  box-shadow: inset 0 0 0 1px rgb(215, 222, 226), 0 1px 0 rgba(0, 124, 158, 0.06), 0 8px 24px -14px rgba(0, 124, 158, 0.22);
}

.pill-tab {
  flex: 1 1 0;
  min-width: 0;
  border: none;
  background-color: transparent;
  border-radius: var(--radius-full);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
  color: rgb(74, 90, 99);
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.pill-tab[aria-pressed=true] {
  background-color: var(--pill-tabs-active);
  color: var(--color-white);
}
.pill-tab:focus-visible {
  outline: 2px solid var(--pill-tabs-active);
  outline-offset: 2px;
}

.filter-chips {
  margin: 20px -16px 0;
  padding: 0 16px 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.filter-chips__row {
  display: flex;
  gap: 8px;
}

.filter-chip {
  flex-shrink: 0;
  border: none;
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  background-color: var(--color-white);
  color: rgb(74, 90, 99);
  box-shadow: inset 0 0 0 1px rgb(215, 222, 226);
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.filter-chip[aria-pressed=true] {
  background-color: #005C2E;
  color: var(--color-white);
  box-shadow: none;
}
.filter-chip:focus-visible {
  outline: 2px solid #005C2E;
  outline-offset: 2px;
}

.info-banner {
  position: relative;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgb(215, 222, 226);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 1px 0 rgba(0, 124, 158, 0.06), 0 8px 24px -14px rgba(0, 124, 158, 0.22);
}

.info-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7) 50%, transparent);
}

.info-banner__content {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.info-banner__main {
  min-width: 0;
}

.info-banner__title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #005C2E;
}

.info-banner__desc {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: rgb(74, 90, 99);
}

.info-banner__icons {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}

.info-banner__trophy {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  box-shadow: inset 0 0 0 1px rgb(215, 222, 226);
  color: #E0A92B;
}
.info-banner__trophy svg {
  width: 20px;
  height: 20px;
}

.info-banner__chev {
  width: 16px;
  height: 16px;
  color: rgb(74, 90, 99);
}

.login-title {
  margin-top: var(--space-6);
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: rgb(0, 124, 158);
}

.login-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--color-neutral-500);
}

.login-forgot {
  margin-top: var(--space-4);
  margin-bottom: 0;
  text-align: center;
  font-size: 14px;
}

.login-link {
  color: rgb(0, 124, 158);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.login-link:hover {
  text-decoration: underline;
}

.login-link--bold {
  font-weight: 600;
}

.login-account-row {
  margin-top: var(--space-6);
  margin-bottom: 0;
  text-align: center;
  font-size: 14px;
  color: var(--color-neutral-500);
}

.login-visitor-row {
  margin-top: var(--space-2);
  margin-bottom: 0;
  text-align: center;
}

.login-visitor-link {
  font-size: 14px;
  color: rgb(38, 50, 56);
  text-decoration: none;
}

.login-visitor-link:hover {
  text-decoration: underline;
}

.cadastro-title {
  margin-top: var(--space-6);
  margin-bottom: 0;
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: rgb(0, 90, 117);
  line-height: 1.33;
}

.cadastro-subtitle {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
}

.cadastro-form {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  line-height: 24px;
}

.cadastro-field {
  display: block;
}

.cadastro-label {
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  color: rgb(74, 90, 99);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.cadastro-input {
  display: block;
  width: 100%;
  height: 36px;
  margin-top: 4px;
  padding: 4px 12px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid rgb(226, 232, 235);
  border-radius: 18px;
  background-color: transparent;
  color: rgb(38, 50, 56);
  outline: none;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
}
.cadastro-input:focus {
  border-color: rgb(0, 90, 117);
  box-shadow: 0 0 0 2px rgba(0, 90, 117, 0.15);
}

.cadastro-field--password {
  position: relative;
  margin-top: 4px;
}
.cadastro-field--password .cadastro-input {
  padding-right: 40px;
  margin-top: 0;
}
.cadastro-field--password .cadastro-toggle-pw {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgb(74, 90, 99);
  padding: 0;
  display: flex;
  align-items: center;
}

.cadastro-form .form-select {
  margin-top: 4px;
}

.cadastro-city-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
}

.cadastro-chips-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.cadastro-chips-fieldset legend {
  line-height: 1.5;
}

.cadastro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.cadastro-divider {
  border-top: 1px solid rgb(226, 232, 235);
  padding-top: 8px;
}

.cadastro-terms {
  border-radius: 12px;
  border: 1px solid rgb(226, 232, 235);
  background-color: rgb(255, 255, 255);
  padding: 16px;
}
.cadastro-terms__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.cadastro-terms__label input[type=checkbox] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: rgb(242, 140, 40);
}
.cadastro-terms__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgb(38, 50, 56);
}
.cadastro-terms__text a {
  color: #007C9E;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cadastro-account-row {
  margin-top: var(--space-4);
  text-align: center;
  font-size: 14px;
  color: rgb(74, 90, 99);
}

.cadastro-link {
  color: #007C9E;
  font-weight: 600;
  text-decoration: none;
}
.cadastro-link:hover {
  text-decoration: underline;
}

.forgot-title {
  margin-top: var(--space-6);
  margin-bottom: 0;
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: rgb(0, 124, 158);
  line-height: 1.33;
}

.forgot-subtitle {
  margin: var(--space-1) 0 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
}

.forgot-back {
  margin-top: var(--space-4);
  text-align: center;
}

.forgot-link {
  font-size: 14px;
  font-weight: 600;
  color: rgb(0, 124, 158);
  text-decoration: none;
}
.forgot-link:hover {
  text-decoration: underline;
}

.forgot-confirm-card {
  background-color: var(--color-white);
  border: none;
  border-radius: 8px;
  padding: var(--space-5);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
  font-size: 14px;
  color: rgb(74, 90, 99);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  outline: none;
}
.forgot-confirm-card strong {
  color: rgb(38, 50, 56);
}

#forgot-success-banner {
  position: static;
  margin-bottom: var(--space-4);
  width: 100%;
}

.reset-title {
  margin-top: var(--space-6);
  margin-bottom: 0;
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: rgb(0, 124, 158);
  line-height: 1.33;
}

.reset-body {
  margin: var(--space-4) 0 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
}
.reset-body a {
  color: rgb(0, 124, 158);
  font-weight: 600;
  text-decoration: none;
}
.reset-body a:hover {
  text-decoration: underline;
}

.onboarding-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  width: 100%;
}

.onboarding-logo {
  margin-bottom: var(--space-8);
}

.onboarding-step {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(0, 122, 61);
  margin-bottom: var(--space-2);
}

.onboarding-title {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: rgb(0, 90, 117);
  margin-bottom: var(--space-2);
  line-height: 1.33;
}

.onboarding-subtitle {
  font-size: 14px;
  color: rgb(74, 90, 99);
  margin-bottom: var(--space-6);
}

.radio-cards-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.radio-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 48px;
  padding: var(--space-3);
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.radio-card input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.radio-card span {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-700);
  font-family: var(--font-family-base);
}
.radio-card:has(input:checked) {
  border-color: var(--color-brand-primary);
  background-color: var(--color-brand-primary-subtle);
}
.radio-card:has(input:checked) span {
  color: var(--color-brand-primary-dark);
  font-weight: var(--font-weight-semibold);
}
.radio-card:focus-within {
  outline: 3px solid var(--color-brand-primary);
  outline-offset: 2px;
}
@media (orientation: portrait) and (min-width: 900px) {
  .radio-card {
    min-height: 64px;
    padding: var(--space-4) var(--space-5);
  }
}

.onboarding-nav {
  display: flex;
  flex-direction: row;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
@media (orientation: landscape) and (min-width: 768px) {
  .onboarding-nav {
    margin-top: var(--space-6);
  }
}
@media (orientation: portrait) and (min-width: 900px) {
  .onboarding-nav {
    margin-top: var(--space-10);
    gap: var(--space-4);
  }
}

.onboarding-nav .btn--onb-back {
  flex: 0 0 auto;
  width: auto;
}

.onboarding-nav .btn--auth-submit,
.onboarding-nav .btn--auth-submit-orange {
  flex: 1;
  width: auto;
}

.summary-card {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.summary-row {
  font-size: var(--font-size-md);
  color: var(--color-neutral-700);
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.summary-row strong {
  color: var(--color-neutral-900);
  font-weight: var(--font-weight-semibold);
}

.onboarding-cta {
  margin-top: var(--space-8);
}

.onboarding-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.home-page {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 var(--space-4);
}

.home-section {
  padding-top: var(--space-8);
  padding-bottom: var(--space-4);
}
@media (orientation: landscape) and (min-width: 768px) {
  .home-section {
    padding-top: var(--space-10);
  }
}

.home-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.home-section-header__title {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-brand-secondary-dark);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
@media (orientation: landscape) and (min-width: 768px) {
  .home-section-header__title {
    font-size: var(--font-size-sm);
  }
}

.home-section-header__sparkle {
  color: var(--color-brand-secondary-dark);
}

.home-section-header__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-500);
  text-decoration: none;
  touch-action: manipulation;
}
.home-section-header__link:hover, .home-section-header__link:focus-visible {
  color: var(--color-brand-primary);
  text-decoration: underline;
}

.home-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: var(--space-6);
  padding-left: 0;
  padding-right: 0;
}

.home-hero__logo {
  height: 224px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  user-select: none;
  display: block;
  margin: 0 auto;
}
@media (orientation: landscape) and (min-width: 768px) {
  .home-hero__logo {
    height: 192px;
  }
}
@media (orientation: portrait) and (min-width: 900px) {
  .home-hero__logo {
    height: 224px;
  }
}

.home-hero__sub {
  max-width: 20rem;
  margin: var(--space-2) auto 0;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-snug);
  color: var(--color-neutral-700);
  text-align: center;
  font-weight: var(--font-weight-regular);
}

.home-hero__sub-accent {
  font-weight: var(--font-weight-semibold);
  color: var(--color-brand-primary);
}

.home-hero__ods-strip {
  display: flex;
  width: 100%;
  max-width: 20rem;
  margin: var(--space-3) auto 0;
  overflow: hidden;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  outline: 1px solid rgba(0, 0, 0, 0.06);
}

.home-hero__ods-bar {
  height: 0.5rem;
  flex: 1;
  display: block;
}

.home-hero__img-wrap {
  width: calc(100% + var(--space-8));
  margin-left: calc(-1 * var(--space-4));
  margin-right: calc(-1 * var(--space-4));
  margin-top: var(--space-3);
  overflow: hidden;
}

.home-hero__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.8;
  -webkit-mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
}

.home-impact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-2);
  padding: var(--space-3);
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  outline: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  touch-action: manipulation;
  transition: box-shadow var(--transition-fast);
}
.home-impact-card:hover, .home-impact-card:focus-visible {
  box-shadow: var(--shadow-md);
}
.home-impact-card:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
}

.home-impact-card__left {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.home-impact-card__icon-wrap {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background-color: var(--color-brand-primary-subtle);
  color: var(--color-brand-primary-dark);
  flex-shrink: 0;
}

.home-impact-card__icon {
  width: 1.25rem;
  height: 1.25rem;
}

.home-impact-card__label {
  font-size: 0.6875rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-neutral-500);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.home-impact-card__score {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-brand-secondary-dark);
  line-height: 1;
}

.home-impact-card__arrow {
  width: 1rem;
  height: 1rem;
  color: var(--color-neutral-500);
  flex-shrink: 0;
}

.home-impact-card--guest {
  background: linear-gradient(120deg, #0B5C30 0%, #00873F 100%);
  outline: none;
  box-shadow: var(--shadow-sm);
  color: var(--color-white);
}
.home-impact-card--guest:hover, .home-impact-card--guest:focus-visible {
  box-shadow: var(--shadow-md);
}

.home-impact-card__icon-wrap--guest {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.home-impact-card__label--guest {
  color: rgba(255, 255, 255, 0.85);
}

.home-impact-card__score--guest {
  color: var(--color-white);
}

.home-impact-card__arrow--guest {
  color: var(--color-white);
}

.home-trails-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: var(--space-5);
  margin-top: var(--space-5);
  background: linear-gradient(120deg, #00773C 0%, #0B5C30 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-xl, 0 20px 40px -10px rgba(0, 0, 0, 0.25));
  text-decoration: none;
  touch-action: manipulation;
  transition: filter var(--transition-fast);
}
.home-trails-card:hover, .home-trails-card:focus-visible {
  filter: brightness(1.05);
}
.home-trails-card:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.home-trails-card__leaves {
  pointer-events: none;
  position: absolute;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 7rem;
  height: 7rem;
  opacity: 0.6;
}

.home-trails-card__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.home-trails-card__icon-wrap {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  color: var(--color-brand-primary-dark);
}

.home-trails-card__icon {
  width: 1.75rem;
  height: 1.75rem;
}

.home-trails-card__body {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 2.5rem;
}

.home-trails-card__kicker {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-white);
  line-height: 1;
}

.home-trails-card__desc {
  margin: var(--space-1) 0 0;
  font-size: 0.8125rem;
  line-height: var(--line-height-snug);
  color: rgba(255, 255, 255, 0.95);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-trails-card__arrow-wrap {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  color: var(--color-brand-primary-dark);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.home-blocks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-5);
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}
@media (orientation: landscape) and (min-width: 768px) {
  .home-blocks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

.home-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6) var(--space-4) var(--space-5);
  border-radius: 1.5rem;
  background-color: var(--color-white);
  outline: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 12px 24px -14px rgba(0, 90, 117, 0.22);
  text-decoration: none;
  height: 100%;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  touch-action: manipulation;
}
.home-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 28px -14px rgba(0, 90, 117, 0.28);
}
.home-block:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
}

.home-block__icon-wrap {
  display: grid;
  place-items: center;
  width: 6rem;
  height: 6rem;
  border-radius: var(--radius-full);
  background-color: var(--color-brand-primary-subtle);
  color: var(--color-brand-primary-dark);
}

.home-block__icon-wrap--blue {
  background-color: var(--color-brand-secondary-subtle);
  color: var(--color-brand-secondary-dark);
}

.home-block__icon {
  width: 2.75rem;
  height: 2.75rem;
}

.home-block__title {
  margin: var(--space-5) 0 0;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: var(--line-height-tight);
  letter-spacing: 0.02em;
  color: var(--color-brand-secondary-dark);
}

.home-block__desc {
  margin: var(--space-2) 0 0;
  font-size: 0.75rem;
  line-height: var(--line-height-snug);
  color: var(--color-neutral-500);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-block__arrow-wrap {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-full);
  margin-top: var(--space-4);
  background-color: var(--color-brand-primary-subtle);
  color: var(--color-brand-primary);
}

.home-block__arrow-wrap--blue {
  background-color: var(--color-brand-secondary-subtle);
  color: var(--color-brand-secondary);
}

.home-ecosystem__sub {
  font-size: 0.6875rem;
  color: var(--color-neutral-500);
  margin: 0 0 var(--space-3);
  line-height: var(--line-height-snug);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (orientation: landscape) and (min-width: 768px) {
  .ecosystem-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }
}
@media (orientation: portrait) and (min-width: 900px) {
  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }
}

.home-recs {
  padding-bottom: var(--space-6);
}

.home-recs__group {
  margin-top: var(--space-5);
  transition: opacity 0.2s ease;
}

.home-recs__group--hiding {
  opacity: 0;
}

.home-recs__group[hidden] {
  display: none;
}

.home-recs__group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}

.home-recs__group-label {
  font-size: 0.6875rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-neutral-500);
  margin: 0;
}

.home-recs__group-hide {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.6875rem;
  color: var(--color-neutral-500);
  cursor: pointer;
}
.home-recs__group-hide svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.home-recs__carousel {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding-bottom: var(--space-1);
  margin-left: calc(-1 * var(--space-4));
  margin-right: calc(-1 * var(--space-4));
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  scrollbar-width: none;
}
.home-recs__carousel::-webkit-scrollbar {
  display: none;
}

.home-rec-card {
  position: relative;
  flex: 0 0 78%;
  scroll-snap-align: start;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-neutral-100);
  background-color: var(--color-white);
  padding: var(--space-3);
  box-shadow: var(--shadow-xs, 0 1px 3px rgba(0, 0, 0, 0.06));
}
@media (orientation: landscape) and (min-width: 768px) {
  .home-rec-card {
    flex: 0 0 30%;
  }
}

.home-rec-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.home-rec-card__link:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
  border-radius: var(--radius-card);
}

.home-rec-card__type {
  font-size: 0.625rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-neutral-500);
}

.home-rec-card__title {
  margin: 2px 0 0;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
  color: var(--color-neutral-900);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-rec-card__desc {
  margin: var(--space-1) 0 0;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-snug);
  color: var(--color-neutral-500);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-rec-card__reason {
  margin: var(--space-2) 0 0;
  font-size: 0.6875rem;
  font-style: italic;
  color: var(--color-neutral-500);
}

.home-rec-card__fav {
  position: absolute;
  right: var(--space-2);
  top: var(--space-2);
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-neutral-100);
  color: var(--color-neutral-500);
  cursor: pointer;
  touch-action: manipulation;
  transition: color var(--transition-fast);
}
.home-rec-card__fav:hover, .home-rec-card__fav:focus-visible {
  color: var(--color-brand-primary-dark);
}
.home-rec-card__fav:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
}

.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;
}

.perfil-page {
  padding: 24px 16px 40px;
}

.perfil-hero {
  border-radius: 16px;
  padding: 20px;
  color: var(--color-white);
  background: linear-gradient(135deg, #005A75 0%, #007C9E 55%, #007A3D 100%);
  box-shadow: 0 1px 0 rgba(0, 124, 158, 0.06), 0 8px 24px -14px rgba(0, 124, 158, 0.22);
}

.perfil-hero h1,
.perfil-hero p {
  color: inherit;
}

.perfil-hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.perfil-hero__id {
  min-width: 0;
}

.perfil-hero__name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.perfil-hero__role {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.perfil-hero__territory {
  margin: 2px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  opacity: 0.9;
}
.perfil-hero__territory svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.perfil-hero__edit {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  text-decoration: none;
  touch-action: manipulation;
}
.perfil-hero__edit svg {
  width: 16px;
  height: 16px;
}

.perfil-hero__stats {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.perfil-hero__stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.perfil-hero__stat-value {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.perfil-hero__level-name {
  font-size: 11px;
  opacity: 0.9;
}

.perfil-hero__progress {
  margin-top: 12px;
  height: 8px;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.25);
}

.perfil-hero__progress-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background-color: var(--color-white);
}

.perfil-hero__progress-text {
  margin-top: 4px;
  font-size: 11px;
  opacity: 0.9;
}

.perfil-actions {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.perfil-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgb(226, 232, 235);
  background-color: var(--color-white);
  text-align: center;
  text-decoration: none;
  color: inherit;
  touch-action: manipulation;
}

.perfil-action__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: #DFF3E6;
  color: #005A75;
}
.perfil-action__icon svg {
  width: 16px;
  height: 16px;
}

.perfil-action__label {
  font-size: 11px;
  font-weight: 600;
  color: rgb(38, 50, 56);
}

.perfil-stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.perfil-stat {
  border-radius: 12px;
  border: 1px solid rgb(226, 232, 235);
  background-color: var(--color-white);
  padding: 12px;
}

.perfil-stat__head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(74, 90, 99);
}
.perfil-stat__head svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.perfil-stat__label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.perfil-stat__value {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  color: #005A75;
}

.perfil-section {
  margin-top: 24px;
}

.perfil-section__title {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgb(74, 90, 99);
}

.perfil-temas {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.perfil-tema {
  border-radius: var(--radius-full);
  background-color: #DFF3E6;
  color: #005A75;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
}

.perfil-card {
  margin-top: 24px;
  border-radius: 16px;
  border: 1px solid rgb(226, 232, 235);
  background-color: var(--color-white);
  padding: 16px;
}

.perfil-card__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.perfil-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgb(38, 50, 56);
}

.perfil-card__desc {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgb(74, 90, 99);
}

.perfil-card__link {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: #007C9E;
  text-decoration: none;
  white-space: nowrap;
}

.perfil-account {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.perfil-account .btn--onb-back {
  width: 100%;
  gap: 6px;
}
.perfil-account .btn--onb-back svg {
  width: 16px;
  height: 16px;
}

.perfil-account__danger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-error);
  text-decoration: none;
  touch-action: manipulation;
}
.perfil-account__danger svg {
  width: 16px;
  height: 16px;
}

.perfil-note {
  margin-top: 24px;
  text-align: center;
  font-size: 11px;
  color: rgb(74, 90, 99);
}

.perfil-guest-head {
  text-align: center;
}

.perfil-guest-head__icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: #DFF3E6;
  color: #005A75;
}
.perfil-guest-head__icon svg {
  width: 28px;
  height: 28px;
}

.perfil-guest-head__title {
  margin: 12px 0 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #005A75;
}

.perfil-guest-head__sub {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
}

.perfil-guest-cta {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.perfil-guest-cta .btn--auth-submit,
.perfil-guest-cta .btn--onb-back {
  height: 44px;
  gap: 4px;
}
.perfil-guest-cta .btn--auth-submit svg,
.perfil-guest-cta .btn--onb-back svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.perfil-guest-cta .btn--onb-back {
  width: 100%;
}

.perfil-guest-forgot {
  margin: 12px 0 0;
  text-align: center;
  font-size: 14px;
}

.perfil-guest-forgot a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: #007C9E;
  text-decoration: none;
  touch-action: manipulation;
}
.perfil-guest-forgot a svg {
  width: 14px;
  height: 14px;
}
.perfil-guest-forgot a:hover {
  text-decoration: underline;
}

.perfil-guest-benefits {
  margin-top: 28px;
  border-radius: 16px;
  border: 1px solid rgb(226, 232, 235);
  background-color: var(--color-white);
  padding: 16px;
}

.perfil-guest-benefits__title {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgb(74, 90, 99);
}

.perfil-guest-benefits__list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perfil-guest-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.perfil-guest-benefit__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: #DFF3E6;
  color: #005A75;
}
.perfil-guest-benefit__icon svg {
  width: 16px;
  height: 16px;
}

.perfil-guest-benefit__text {
  padding-top: 4px;
  font-size: 14px;
  color: rgb(38, 50, 56);
}

.perfil-guest-note {
  margin-top: 20px;
  text-align: center;
  font-size: 11px;
  color: rgb(74, 90, 99);
}

.impacto-page {
  padding: 24px 16px 32px;
}

.impacto-head__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #005A75;
}

.impacto-head__sub {
  margin: 2px 0 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
}

.impacto-level {
  margin-top: 20px;
  border-radius: 16px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 20px;
  box-shadow: 0 1px 0 rgba(0, 124, 158, 0.06), 0 8px 24px -14px rgba(0, 124, 158, 0.22);
}

.impacto-level__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.impacto-level__overline {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(74, 90, 99);
}

.impacto-level__name {
  font-size: 18px;
  font-weight: 700;
  color: #005A75;
}

.impacto-level__desc {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgb(74, 90, 99);
}

.impacto-level__points-col {
  text-align: right;
  flex-shrink: 0;
}

.impacto-level__points {
  font-size: 24px;
  font-weight: 800;
  color: #005C2E;
}

.impacto-level__bar {
  margin-top: 16px;
  height: 8px;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-full);
  background-color: #EEF2F4;
}

.impacto-level__bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, #007C9E, #007A3D);
}

.impacto-level__hint {
  margin-top: 6px;
  font-size: 11px;
  color: rgb(74, 90, 99);
}

.impacto-stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.impacto-stat {
  border-radius: 12px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 12px;
}

.impacto-stat__head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(74, 90, 99);
}
.impacto-stat__head svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.impacto-stat__label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.impacto-stat__value {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 800;
  color: #005A75;
}

.impacto-section {
  margin-top: 28px;
}

.impacto-section__title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(74, 90, 99);
}

.impacto-section__sub {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgb(74, 90, 99);
}

.impacto-badges {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.impacto-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 12px;
  text-align: center;
  opacity: 0.6;
}

.impacto-badge--owned {
  border-color: #007A3D;
  background-color: #DFF3E6;
  opacity: 1;
}

.impacto-badge__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: #EEF2F4;
  color: rgb(74, 90, 99);
}
.impacto-badge__icon svg {
  width: 16px;
  height: 16px;
}

.impacto-badge--owned .impacto-badge__icon {
  background-color: #007A3D;
  color: var(--color-white);
}
.impacto-badge--owned .impacto-badge__icon svg {
  width: 20px;
  height: 20px;
}

.impacto-badge__name {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.impacto-badge__pts {
  margin-top: 4px;
  font-size: 10px;
  color: rgb(74, 90, 99);
}

.impacto-track {
  margin-top: 12px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.impacto-track__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 12px;
}

.impacto-track__item--current {
  border-color: #007C9E;
  background-color: #DFF3E6;
}

.impacto-track__badge {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  background-color: #EEF2F4;
  color: rgb(74, 90, 99);
}
.impacto-track__badge svg {
  width: 16px;
  height: 16px;
}

.impacto-track__item--reached .impacto-track__badge {
  background-color: #007C9E;
  color: var(--color-white);
}

.impacto-track__body {
  flex: 1;
  min-width: 0;
}

.impacto-track__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.impacto-track__name {
  font-size: 14px;
  font-weight: 600;
  color: rgb(38, 50, 56);
}

.impacto-track__min {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(74, 90, 99);
  white-space: nowrap;
}

.impacto-track__desc {
  font-size: 12px;
  color: rgb(74, 90, 99);
}

.impacto-note {
  margin-top: 24px;
  text-align: center;
  font-size: 11px;
  color: rgb(74, 90, 99);
}
.impacto-note svg {
  width: 12px;
  height: 12px;
  display: inline;
  vertical-align: -1px;
  margin-right: 4px;
}

.prefs-page {
  padding: 16px 16px 32px;
}

.prefs-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: rgb(74, 90, 99);
  text-decoration: none;
  touch-action: manipulation;
}
.prefs-back svg {
  width: 16px;
  height: 16px;
}
.prefs-back:hover {
  color: rgb(38, 50, 56);
}

.prefs-title {
  margin: 12px 0 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #005A75;
}

.prefs-intro {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
}

.prefs-toggle {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 16px;
}

.prefs-toggle__icon {
  margin-top: 2px;
  flex-shrink: 0;
  color: #005C2E;
}
.prefs-toggle__icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.prefs-toggle__label {
  display: flex;
  flex: 1;
  cursor: pointer;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  touch-action: manipulation;
}

.prefs-toggle__title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgb(38, 50, 56);
}

.prefs-toggle__desc {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: rgb(74, 90, 99);
}

.prefs-toggle__check {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: #007C9E;
  touch-action: manipulation;
}

.prefs-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prefs-field {
  display: block;
}

.prefs-field__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgb(38, 50, 56);
}

.prefs-field__hint {
  display: block;
  font-size: 11px;
  color: rgb(74, 90, 99);
}

.prefs-field__control {
  display: block;
  margin-top: 6px;
}

.prefs-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
}

.prefs-page .btn--ranking-submit {
  margin-top: 24px;
}

.trilhas-page {
  padding: 24px 16px 32px;
}

.trilha-foot {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trilha-foot__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 6px;
  font-size: 11px;
  color: rgb(74, 90, 99);
}

.trilha-foot__bar {
  display: block;
  height: 6px;
  width: 128px;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius-full);
  background-color: #EEF2F4;
}

.trilha-foot__bar-fill {
  display: block;
  height: 100%;
  border-radius: var(--radius-full);
  background-color: var(--tone);
}

.trilha-foot__cta {
  font-size: 11px;
  font-weight: 600;
  color: #007C9E;
}

.trilha-detalhe-page {
  padding: 16px 16px 32px;
}

.trilha-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: rgb(74, 90, 99);
  text-decoration: none;
  touch-action: manipulation;
}
.trilha-back svg {
  width: 16px;
  height: 16px;
}
.trilha-back:hover {
  color: rgb(38, 50, 56);
}

.trilha-hero {
  margin-top: 12px;
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  box-shadow: 0 1px 0 rgba(0, 124, 158, 0.06), 0 8px 24px -14px rgba(0, 124, 158, 0.22);
  background: linear-gradient(135deg, #0EA5A4 0%, color-mix(in oklab, #0EA5A4 60%, #000) 100%);
}

.trilha-hero__top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trilha-hero__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.trilha-hero__icon svg {
  width: 24px;
  height: 24px;
}

.trilha-hero__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.8);
}

.trilha-hero__title {
  margin: 2px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.trilha-hero__desc {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.trilha-hero__long {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.trilha-hero__meta {
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
}

.trilha-hero__progress {
  margin-top: 12px;
}

.trilha-hero__progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
}

.trilha-hero__bar {
  margin-top: 4px;
  height: 8px;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
}

.trilha-hero__bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: #fff;
  transition: width 0.3s ease;
}

.trilha-hero__cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: none;
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  color: #0EA5A4;
  cursor: pointer;
  touch-action: manipulation;
}

.trilha-steps {
  margin-top: 20px;
}

.trilha-steps__title {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgb(74, 90, 99);
}

.trilha-steps__list {
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.trilha-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgb(215, 222, 226);
  border-radius: 16px;
  background: var(--color-white);
  padding: 14px;
}

.trilha-step__badge {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  background: #DFF3E6;
  color: #005A75;
}
.trilha-step__badge svg {
  width: 16px;
  height: 16px;
}
.trilha-step__badge.is-done {
  background: #007A3D;
  color: #fff;
}
.trilha-step__badge .trilha-step__check {
  display: none;
}
.trilha-step__badge.is-done .trilha-step__num {
  display: none;
}
.trilha-step__badge.is-done .trilha-step__check {
  display: block;
}

.trilha-step__title {
  font-size: 14px;
  font-weight: 600;
  color: rgb(38, 50, 56);
}

.trilha-step__desc {
  font-size: 12px;
  color: rgb(74, 90, 99);
}

.trilha-section {
  margin-top: 24px;
  scroll-margin-top: 80px;
}

.trilha-section__head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trilha-section__head svg {
  width: 16px;
  height: 16px;
  color: #005A75;
}

.trilha-section__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #005A75;
}

.trilha-section__body {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trilha-content {
  border: 1px solid rgb(215, 222, 226);
  border-radius: 12px;
  background: var(--color-white);
  padding: 12px;
}

.trilha-content__title {
  font-size: 14px;
  font-weight: 600;
  color: rgb(38, 50, 56);
}

.trilha-content__summary {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgb(74, 90, 99);
}

.trilha-content__link {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #007C9E;
  text-decoration: none;
}
.trilha-content__link svg {
  width: 12px;
  height: 12px;
}

.trilha-ods-card {
  border: 1px solid rgb(215, 222, 226);
  border-radius: 12px;
  background: var(--color-white);
  padding: 12px;
}

.trilha-ods-card__text {
  margin: 0;
  font-size: 12px;
  color: rgb(74, 90, 99);
}

.trilha-ods-pills {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.trilha-ods-pill {
  border-radius: var(--radius-full);
  background: #DFF3E6;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #005A75;
}

.trilha-step-btn {
  margin-top: 4px;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: none;
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #007C9E;
  cursor: pointer;
  touch-action: manipulation;
}
.trilha-step-btn svg {
  width: 16px;
  height: 16px;
}
.trilha-step-btn:disabled, .trilha-step-btn.is-done {
  background: #005C2E;
  opacity: 0.6;
  cursor: default;
}

.trilha-quiz {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trilha-quiz__q {
  margin: 0;
  border: 1px solid rgb(215, 222, 226);
  border-radius: 12px;
  background: var(--color-white);
  padding: 12px;
}

.trilha-quiz__legend {
  padding: 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: rgb(38, 50, 56);
}

.trilha-quiz__opts {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trilha-quiz__opt {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgb(215, 222, 226);
  border-radius: 8px;
  background: var(--color-white);
  padding: 8px 12px;
  font-size: 14px;
  color: rgb(38, 50, 56);
  cursor: pointer;
  touch-action: manipulation;
}

.trilha-quiz__result {
  border-radius: 12px;
  padding: 12px;
  font-size: 14px;
}
.trilha-quiz__result--pass {
  background: color-mix(in oklab, #007A3D 12%, transparent);
  color: #005C2E;
}
.trilha-quiz__result--fail {
  background: color-mix(in oklab, #D92D20 12%, transparent);
  color: #D92D20;
}

.trilha-selo {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgb(215, 222, 226);
  border-radius: 12px;
  background: rgba(223, 243, 230, 0.6);
  padding: 16px;
}

.trilha-selo__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: #EEF2F4;
  color: rgb(74, 90, 99);
}
.trilha-selo__icon svg {
  width: 20px;
  height: 20px;
}
.trilha-selo__icon.is-done {
  background: #007A3D;
  color: #fff;
}
.trilha-selo__icon.is-done svg {
  width: 24px;
  height: 24px;
}

.trilha-selo__title {
  font-size: 14px;
  font-weight: 700;
  color: #005A75;
}

.trilha-selo__desc {
  font-size: 12px;
  color: rgb(74, 90, 99);
}

.trilha-complete {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgb(215, 222, 226);
  border-radius: 16px;
  background: var(--color-white);
  padding: 20px;
  text-align: center;
  box-shadow: 0 1px 0 rgba(0, 124, 158, 0.06), 0 8px 24px -14px rgba(0, 124, 158, 0.22);
}

.trilha-complete__icon {
  margin: 0 auto;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: #0EA5A4;
}
.trilha-complete__icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.trilha-complete__title {
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 700;
  color: #005A75;
}

.trilha-complete__text {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
}

.trilha-complete__actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.trilha-complete__btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  touch-action: manipulation;
}
.trilha-complete__btn--primary {
  background: #005C2E;
  color: #fff;
}
.trilha-complete__btn--ghost {
  border: 1px solid rgb(215, 222, 226);
  color: rgb(38, 50, 56);
}

.ranking-page {
  padding: 24px 16px 32px;
}

.ranking-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.ranking-head__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgb(74, 90, 99);
}

.ranking-head__title {
  margin: 4px 0 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #005A75;
}

.ranking-head__sub {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
}

.ranking-head__prefs {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  color: rgb(38, 50, 56);
  touch-action: manipulation;
}
.ranking-head__prefs svg {
  width: 16px;
  height: 16px;
}
.ranking-head__prefs:focus-visible {
  outline: 2px solid #007C9E;
  outline-offset: 2px;
}

.ranking-tabs {
  margin: 20px -16px 0;
  padding: 0 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ranking-tabs__list {
  display: inline-flex;
  gap: 4px;
  border-radius: var(--radius-full);
  background-color: #EEF2F4;
  padding: 4px;
}

.ranking-tabs__tab {
  min-height: 40px;
  border: none;
  border-radius: var(--radius-full);
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  background-color: transparent;
  color: rgb(74, 90, 99);
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.ranking-tabs__tab[aria-selected=true] {
  background-color: #007C9E;
  color: var(--color-white);
}
.ranking-tabs__tab:focus-visible {
  outline: 2px solid #007C9E;
  outline-offset: 2px;
}

.ranking-periods {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ranking-chip {
  min-height: 36px;
  border: 1px solid rgb(215, 222, 226);
  border-radius: var(--radius-full);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  background-color: transparent;
  color: rgb(74, 90, 99);
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.ranking-chip[aria-pressed=true] {
  background-color: #DFF3E6;
  border-color: #007C9E;
  color: #005A75;
}
.ranking-chip:focus-visible {
  outline: 2px solid #007C9E;
  outline-offset: 2px;
}

.ranking-panel {
  margin-top: 24px;
}

.ranking-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ranking-metric {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid rgb(215, 222, 226);
  border-radius: 12px;
  padding: 8px 12px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  background-color: var(--color-white);
  color: rgb(38, 50, 56);
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.ranking-metric svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.ranking-metric[aria-pressed=true] {
  background-color: #DFF3E6;
  border-color: #007C9E;
  color: #005A75;
}
.ranking-metric:focus-visible {
  outline: 2px solid #007C9E;
  outline-offset: 2px;
}

.ranking-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  border: 1px solid #007C9E;
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  background-color: #DFF3E6;
  color: #005A75;
}
.ranking-demo svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.ranking-board {
  margin-top: 20px;
}

.ranking-top3 {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ranking-top3__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px solid rgb(215, 222, 226);
  border-radius: 16px;
  padding: 12px;
  text-align: center;
  background-color: var(--color-white);
  box-shadow: 0 1px 0 rgba(0, 124, 158, 0.06), 0 8px 24px -14px rgba(0, 124, 158, 0.22);
}
.ranking-top3__card.is-you {
  border-color: #007C9E;
}

.ranking-top3__name {
  font-size: 12px;
  font-weight: 600;
  color: rgb(38, 50, 56);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ranking-top3__value {
  font-size: 14px;
  font-weight: 700;
  color: #005A75;
}

.ranking-rest {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
}

.ranking-rest__item {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgb(215, 222, 226);
  border-radius: 12px;
  padding: 10px 12px;
  background-color: var(--color-white);
}
.ranking-rest__item.is-you {
  border-color: #007C9E;
}

.ranking-rest__rank {
  width: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: rgb(74, 90, 99);
}

.ranking-rest__name {
  min-width: 0;
  flex: 1;
  font-size: 14px;
  color: rgb(38, 50, 56);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ranking-rest__value {
  font-size: 14px;
  font-weight: 600;
  color: #005A75;
}

.rank-medal {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  background-color: #DFF3E6;
  color: #005A75;
}
.rank-medal svg {
  width: 14px;
  height: 14px;
}

.rank-medal--lg {
  width: 40px;
  height: 40px;
}
.rank-medal--lg svg {
  width: 20px;
  height: 20px;
}

.rank-medal--1 {
  background: linear-gradient(135deg, #F2C94C, #C29010);
  color: #fff;
}

.rank-medal--2 {
  background: linear-gradient(135deg, #C9D1D9, #8B95A3);
  color: #fff;
}

.rank-medal--3 {
  background: linear-gradient(135deg, #D9A07A, #8B5E3C);
  color: #fff;
}

.ranking-track-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgb(74, 90, 99);
}

.ranking-panel .ranking-track-label + .form-select {
  margin-top: 6px;
}

.ranking-scopes {
  display: flex;
  gap: 6px;
}

.ranking-scopes .ranking-chip {
  flex: 1;
}

.ranking-territories {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.ranking-territory {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgb(215, 222, 226);
  border-radius: 12px;
  padding: 12px;
  background-color: var(--color-white);
}

.ranking-territory__main {
  min-width: 0;
  flex: 1;
}

.ranking-territory__name {
  font-size: 14px;
  font-weight: 600;
  color: rgb(38, 50, 56);
}

.ranking-territory__meta {
  font-size: 12px;
  color: rgb(74, 90, 99);
}

.ranking-territory__pin {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgb(74, 90, 99);
}

.ranking-collective-intro {
  margin: 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
}

.ranking-collective {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.ranking-stat {
  border: 1px solid rgb(215, 222, 226);
  border-radius: 16px;
  padding: 16px;
  background-color: var(--color-white);
}

.ranking-stat__icon {
  width: 20px;
  height: 20px;
  color: #007C9E;
}

.ranking-stat__value {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #005A75;
}

.ranking-stat__label {
  font-size: 12px;
  color: rgb(74, 90, 99);
}

.noticias-page {
  padding: 24px 16px 32px;
}

.noticias-empty {
  grid-column: 1/-1;
  border: 1px dashed rgb(215, 222, 226);
  border-radius: 16px;
  background-color: var(--color-white);
  padding: 24px;
  text-align: center;
  font-size: 14px;
  color: rgb(74, 90, 99);
}

.noticias-fonte {
  margin-top: 16px;
  text-align: center;
  font-size: 11px;
  color: rgb(74, 90, 99);
}
.noticias-fonte a {
  color: inherit;
  text-decoration: underline;
}

.noticia-detalhe {
  padding: 24px 16px 40px;
}

.noticia-back {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  color: rgb(74, 90, 99);
  text-decoration: none;
  touch-action: manipulation;
}
.noticia-back svg {
  width: 16px;
  height: 16px;
}
.noticia-back:hover {
  color: rgb(38, 50, 56);
}
.noticia-back:focus-visible {
  outline: 2px solid #005C2E;
  outline-offset: 2px;
  border-radius: 4px;
}

.noticia-detalhe__source {
  margin: 12px 0 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #005C2E;
}

.noticia-detalhe__title {
  margin: 4px 0 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: #005A75;
}

.noticia-detalhe__subtitle {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
}

.noticia-detalhe__meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
  font-size: 12px;
  color: rgb(74, 90, 99);
}
.noticia-detalhe__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.noticia-detalhe__meta svg {
  width: 14px;
  height: 14px;
}

.noticia-detalhe__media {
  margin-top: 16px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgb(215, 222, 226);
  box-shadow: 0 1px 0 rgba(0, 124, 158, 0.06), 0 8px 24px -14px rgba(0, 124, 158, 0.22);
}

.noticia-detalhe__img {
  display: block;
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
}

.noticia-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.noticia-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  box-shadow: 0 1px 0 rgba(0, 124, 158, 0.06), 0 8px 24px -14px rgba(0, 124, 158, 0.22);
}
.noticia-action svg {
  width: 16px;
  height: 16px;
}
.noticia-action:focus-visible {
  outline: 2px solid #005C2E;
  outline-offset: 2px;
}

.noticia-action--ghost {
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  color: rgb(38, 50, 56);
}
.noticia-action--ghost[aria-pressed=true] .noticia-action__icon-default {
  display: none;
}
.noticia-action--ghost .noticia-action__icon-checked {
  display: none;
  color: #005C2E;
}
.noticia-action--ghost[aria-pressed=true] .noticia-action__icon-checked {
  display: inline-flex;
}

.noticia-action--source {
  border: none;
  background-color: #005C2E;
  color: var(--color-white);
}

.noticia-section {
  margin-top: 20px;
}

.noticia-section--temas {
  margin-top: 24px;
}

.noticia-section__label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(74, 90, 99);
}

.noticia-section__body {
  margin-top: 8px;
}

.noticia-body {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  line-height: 1.625;
  color: rgb(38, 50, 56);
}
.noticia-body p {
  margin: 0;
}

.noticia-temas {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.noticia-tema {
  border-radius: var(--radius-full);
  background-color: #EEF2F4;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  color: rgb(38, 50, 56);
}

.noticia-nota {
  margin-top: 32px;
  border-radius: 16px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 16px;
  box-shadow: 0 1px 0 rgba(0, 124, 158, 0.06), 0 8px 24px -14px rgba(0, 124, 158, 0.22);
}

.noticia-nota__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgb(74, 90, 99);
}

.noticia-nota__link {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #005A75;
  text-decoration: none;
}
.noticia-nota__link svg {
  width: 14px;
  height: 14px;
}
.noticia-nota__link:hover {
  text-decoration: underline;
}
.noticia-nota__link:focus-visible {
  outline: 2px solid #005A75;
  outline-offset: 2px;
  border-radius: 4px;
}

.eventos-page {
  padding: 24px 16px 32px;
}

.eventos-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.eventos-empty {
  margin-top: 24px;
  font-size: 14px;
  color: rgb(74, 90, 99);
}

.evento-card {
  border-radius: 16px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 16px;
  box-shadow: 0 1px 0 rgba(0, 124, 158, 0.06), 0 8px 24px -14px rgba(0, 124, 158, 0.22);
}

.evento-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.evento-card__main {
  min-width: 0;
  flex: 1 1 auto;
}

.evento-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.evento-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: var(--radius-full);
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.evento-status svg {
  width: 12px;
  height: 12px;
}

.evento-status--proximo {
  background-color: color-mix(in oklab, #007A3D 10%, transparent);
  color: #007A3D;
}

.evento-status--andamento {
  background-color: #DCFCE7;
  color: #166534;
}

.evento-status--encerrado {
  background-color: #EEF2F4;
  color: rgb(74, 90, 99);
}

.evento-format {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: var(--radius-full);
  background-color: #EEF2F4;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 500;
  color: rgb(74, 90, 99);
}
.evento-format svg {
  width: 14px;
  height: 14px;
}

.evento-card__link {
  display: block;
  margin-top: 8px;
  text-decoration: none;
}

.evento-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #005A75;
}

.evento-card__desc {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.evento-fav {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 8px;
  cursor: pointer;
  touch-action: manipulation;
  color: rgb(38, 50, 56);
}
.evento-fav svg {
  width: 16px;
  height: 16px;
}
.evento-fav[aria-pressed=true] .evento-fav__default {
  display: none;
}
.evento-fav .evento-fav__checked {
  display: none;
  color: #005C2E;
}
.evento-fav[aria-pressed=true] .evento-fav__checked {
  display: grid;
}
.evento-fav:focus-visible {
  outline: 2px solid #005C2E;
  outline-offset: 2px;
}

.evento-meta {
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: rgb(74, 90, 99);
}

.evento-meta__row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.evento-meta__row svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.evento-meta__row span {
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.evento-ods {
  margin-top: 12px;
}

.evento-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.evento-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-size: 12px;
  text-decoration: none;
  touch-action: manipulation;
}
.evento-action svg {
  width: 14px;
  height: 14px;
}
.evento-action:focus-visible {
  outline: 2px solid #005C2E;
  outline-offset: 2px;
}

.evento-action--detail {
  font-weight: 600;
  background-color: #007A3D;
  color: var(--color-white);
}

.evento-action--portal {
  font-weight: 500;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  color: rgb(38, 50, 56);
}

.mapa-page {
  padding: 24px 16px 96px;
}

.mapa-page__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #007C9E;
}

.mapa-page__sub {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
}

.mapa-counters {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mapa-counter {
  border-radius: 12px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 12px;
}

.mapa-counter__value {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.mapa-counter__label {
  margin-top: 2px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgb(74, 90, 99);
}

.mapa-counter--green .mapa-counter__value {
  color: #007A3D;
}

.mapa-counter--sun .mapa-counter__value {
  color: #F2C94C;
}

.mapa-counter--blue .mapa-counter__value {
  color: #007C9E;
}

.mapa-cadastrar {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 44px;
  border: none;
  border-radius: 12px;
  background-color: #F28C28;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
}
.mapa-cadastrar svg {
  width: 16px;
  height: 16px;
}
.mapa-cadastrar:hover {
  opacity: 0.92;
}
.mapa-cadastrar:focus-visible {
  outline: 2px solid #F28C28;
  outline-offset: 2px;
}

.mapa-toggle {
  margin-top: 20px;
  display: inline-flex;
  border-radius: var(--radius-full);
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 4px;
}

.mapa-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: none;
  background-color: transparent;
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgb(74, 90, 99);
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.mapa-toggle__btn svg {
  width: 14px;
  height: 14px;
}
.mapa-toggle__btn[aria-selected=true] {
  background-color: #007C9E;
  color: var(--color-white);
}
.mapa-toggle__btn:focus-visible {
  outline: 2px solid #007C9E;
  outline-offset: 2px;
}

.mapa-panel {
  margin-top: 12px;
}

.mapa-panel[hidden] {
  display: none;
}

.mapa-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mapa-card {
  border-radius: 12px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 16px;
  box-shadow: 0 1px 0 rgba(0, 124, 158, 0.06), 0 8px 24px -14px rgba(0, 124, 158, 0.22);
}

.mapa-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.mapa-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: rgb(38, 50, 56);
}

.mapa-card__badge {
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background-color: color-mix(in oklab, #007A3D 15%, transparent);
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #007A3D;
}

.mapa-card__desc {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mapa-card__meta {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
  font-size: 12px;
  color: rgb(74, 90, 99);
}
.mapa-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mapa-card__meta svg {
  width: 12px;
  height: 12px;
}

.mapa-card__ods {
  margin-top: 8px;
}

.mapa-terra {
  margin-top: 24px;
  border-radius: 12px;
  border: 1px dashed rgb(215, 222, 226);
  background-color: rgba(238, 242, 244, 0.3);
  padding: 16px;
}

.mapa-terra__title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #007C9E;
}

.mapa-terra__desc {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgb(74, 90, 99);
}

.mapa-terra__link {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #007C9E;
  text-decoration: underline;
}

.mapa-map {
  height: 420px;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgb(215, 222, 226);
  box-shadow: 0 1px 0 rgba(0, 124, 158, 0.06), 0 8px 24px -14px rgba(0, 124, 158, 0.22);
  background-color: #EEF2F4;
}

.mapa-legend {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: rgb(74, 90, 99);
}
.mapa-legend span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mapa-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
}

.mapa-legend__dot--blue {
  background-color: #007C9E;
}

.mapa-legend__dot--action {
  background-color: #F28C28;
}

.mapa-popup__eyebrow {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mapa-popup__eyebrow--blue {
  color: #007C9E;
}

.mapa-popup__eyebrow--action {
  color: #F28C28;
}

.mapa-popup__title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 2px;
}

.mapa-popup__meta {
  font-size: 11px;
  color: rgb(74, 90, 99);
  margin-top: 2px;
}

.mapa-popup__link {
  font-size: 12px;
  font-weight: 600;
  color: #007A3D;
  text-decoration: underline;
  margin-top: 2px;
  display: inline-block;
}

.iniciativa-page {
  padding: 24px 16px 96px;
}

.iniciativa-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  font-size: 14px;
  font-weight: 500;
  color: rgb(74, 90, 99);
  text-decoration: none;
  touch-action: manipulation;
}
.iniciativa-back svg {
  width: 14px;
  height: 14px;
}
.iniciativa-back:hover {
  color: rgb(38, 50, 56);
}
.iniciativa-back:focus-visible {
  outline: 2px solid #007C9E;
  outline-offset: 2px;
  border-radius: 6px;
}

.iniciativa-page__title {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 700;
  color: #007C9E;
}

.iniciativa-page__sub {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
}

.iniciativa-form {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 12px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 16px;
}

.iniciativa-field {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.iniciativa-label {
  display: block;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgb(38, 50, 56);
}

.iniciativa-label--required::after {
  content: " *";
}

.iniciativa-label + .form-input,
.iniciativa-label + .form-textarea,
.iniciativa-label + .form-select {
  margin-top: 6px;
}

.iniciativa-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.iniciativa-ods-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

@media (min-width: 640px) {
  .iniciativa-ods-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.iniciativa-ods {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(215, 222, 226);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 12px;
  color: rgb(38, 50, 56);
  background-color: var(--color-white);
  cursor: pointer;
  touch-action: manipulation;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.iniciativa-ods:has(input:checked) {
  border-color: #007C9E;
  background-color: rgba(0, 124, 158, 0.1);
}
.iniciativa-ods:focus-within {
  outline: 2px solid #007C9E;
  outline-offset: 2px;
}

.iniciativa-ods__check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #007C9E;
  cursor: pointer;
}

.iniciativa-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-radius: 8px;
  background-color: rgba(238, 242, 244, 0.4);
  padding: 12px;
  font-size: 12px;
  color: rgb(74, 90, 99);
  cursor: pointer;
}
.iniciativa-consent a {
  color: inherit;
  text-decoration: underline;
}

.iniciativa-consent__check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #007A3D;
  cursor: pointer;
}

.iniciativa-success {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 32px 20px;
}
.iniciativa-success[hidden] {
  display: none;
}
.iniciativa-success:focus-visible {
  outline: 2px solid #007A3D;
  outline-offset: 2px;
}

.iniciativa-success__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: rgba(0, 122, 61, 0.12);
  color: #007A3D;
}
.iniciativa-success__icon svg {
  width: 26px;
  height: 26px;
}

.iniciativa-success__title {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 700;
  color: rgb(38, 50, 56);
}

.iniciativa-success__desc {
  margin: 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
  max-width: 32ch;
}

.iniciativa-success__link {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #007C9E;
  text-decoration: underline;
}
.iniciativa-success__link svg {
  width: 14px;
  height: 14px;
}

.assistente-page {
  padding: 12px 12px 96px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.assistente-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 12px 16px;
  box-shadow: 0 1px 0 rgba(0, 124, 158, 0.06), 0 8px 24px -14px rgba(0, 124, 158, 0.22);
}

.assistente-head__id {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.assistente-head__avatar {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background-color: #DFF3E6;
  color: #005C2E;
}
.assistente-head__avatar svg {
  width: 20px;
  height: 20px;
}

.assistente-head__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #005A75;
}

.assistente-head__sub {
  margin: 2px 0 0;
  font-size: 11px;
  color: rgb(74, 90, 99);
}

.assistente-new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgb(38, 50, 56);
  cursor: pointer;
  touch-action: manipulation;
}
.assistente-new svg {
  width: 16px;
  height: 16px;
}
.assistente-new:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.assistente-new:focus-visible {
  outline: 2px solid #007C9E;
  outline-offset: 2px;
}

.assistente-convos {
  margin-top: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.assistente-convos[hidden] {
  display: none;
}

.assistente-convos__row {
  display: flex;
  gap: 8px;
  padding-bottom: 4px;
}

.assistente-convo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  border: 1px solid #007C9E;
  background-color: #DFF3E6;
  color: #005A75;
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 12px;
}

.assistente-convo__label {
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.assistente-convo__del {
  display: grid;
  place-items: center;
  border: none;
  background: none;
  color: inherit;
  opacity: 0.6;
  cursor: pointer;
}
.assistente-convo__del svg {
  width: 12px;
  height: 12px;
}
.assistente-convo__del:hover {
  opacity: 1;
}

.assistente-msgs {
  margin-top: 12px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  border-radius: 16px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 12px;
}

.assistente-welcome {
  margin-bottom: 16px;
}

.assistente-welcome__hi {
  border-radius: 16px;
  border: 1px solid rgba(0, 124, 158, 0.2);
  background-color: rgba(223, 243, 230, 0.4);
  padding: 16px;
  font-size: 14px;
  color: #005A75;
}
.assistente-welcome__hi p {
  margin: 0;
}
.assistente-welcome__hi p + p {
  margin-top: 4px;
  color: rgba(38, 50, 56, 0.8);
}
.assistente-welcome__hi strong {
  font-weight: 700;
}

.assistente-quick {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.assistente-quick__btn {
  border-radius: 12px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 12px;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  color: rgb(38, 50, 56);
  cursor: pointer;
  touch-action: manipulation;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.assistente-quick__btn:hover {
  border-color: #007C9E;
  background-color: rgba(223, 243, 230, 0.3);
}
.assistente-quick__btn:focus-visible {
  outline: 2px solid #007C9E;
  outline-offset: 2px;
}

.assistente-suggested {
  margin-top: 16px;
}

.assistente-suggested__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(74, 90, 99);
}

.assistente-suggested__row {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.assistente-suggested__chip {
  border-radius: var(--radius-full);
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 4px 12px;
  font-size: 12px;
  color: rgb(38, 50, 56);
  cursor: pointer;
  touch-action: manipulation;
}
.assistente-suggested__chip:hover {
  border-color: #007C9E;
}
.assistente-suggested__chip:focus-visible {
  outline: 2px solid #007C9E;
  outline-offset: 2px;
}

.assistente-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assistente-msg--user {
  display: flex;
  justify-content: flex-end;
}

.assistente-bubble-user {
  max-width: 85%;
  border-radius: 16px 16px 6px 16px;
  background-color: #005A75;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--color-white);
  overflow-wrap: anywhere;
}

.assistente-msg--bot {
  display: flex;
  gap: 8px;
}

.assistente-bot__avatar {
  margin-top: 4px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background-color: #DFF3E6;
  color: #005C2E;
}
.assistente-bot__avatar svg {
  width: 16px;
  height: 16px;
}

.assistente-bot__body {
  min-width: 0;
  flex: 1;
}

.assistente-bubble-bot {
  border-radius: 16px 16px 16px 6px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgb(38, 50, 56);
}
.assistente-bubble-bot p {
  margin: 0 0 8px;
}
.assistente-bubble-bot p:last-child {
  margin-bottom: 0;
}
.assistente-bubble-bot strong {
  font-weight: 700;
}

.assistente-sources {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.assistente-source {
  border-radius: var(--radius-full);
  border: 1px solid rgb(215, 222, 226);
  background-color: rgba(223, 243, 230, 0.4);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  color: #005A75;
  text-decoration: none;
}
.assistente-source:hover {
  text-decoration: underline;
}

.assistente-actions {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgb(74, 90, 99);
}

.assistente-action {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  border-radius: var(--radius-full);
  color: inherit;
  cursor: pointer;
  touch-action: manipulation;
}
.assistente-action svg {
  width: 14px;
  height: 14px;
}
.assistente-action:hover {
  background-color: rgba(223, 243, 230, 0.4);
}
.assistente-action:focus-visible {
  outline: 2px solid #007C9E;
  outline-offset: 2px;
}

.assistente-action--on-up {
  color: #005C2E;
}

.assistente-action--on-down {
  color: #c0392b;
}

.assistente-action--on-save {
  color: #007C9E;
}

.assistente-typing {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgb(74, 90, 99);
}
.assistente-typing svg {
  width: 14px;
  height: 14px;
  animation: assistente-pulse 1.2s ease-in-out infinite;
}

@keyframes assistente-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.assistente-composer {
  margin-top: 12px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.assistente-input {
  flex: 1;
  min-height: 44px;
  max-height: 140px;
  resize: none;
  border-radius: 12px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.4;
  color: rgb(38, 50, 56);
  outline: none;
  box-sizing: border-box;
}
.assistente-input::placeholder {
  color: rgb(140, 150, 157);
}
.assistente-input:focus {
  border-color: #007C9E;
  box-shadow: 0 0 0 2px rgba(0, 124, 158, 0.18);
}

.assistente-send {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background-color: #F28C28;
  color: var(--color-white);
  cursor: pointer;
  touch-action: manipulation;
}
.assistente-send svg {
  width: 16px;
  height: 16px;
}
.assistente-send:hover:not(:disabled) {
  opacity: 0.9;
}
.assistente-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.assistente-send:focus-visible {
  outline: 2px solid #F28C28;
  outline-offset: 2px;
}

.assistente-disclaimer {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
  font-size: 11px;
  color: rgb(74, 90, 99);
}
.assistente-disclaimer svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.prefs-page {
  padding: 24px 16px 48px;
}

.prefs-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: rgb(74, 90, 99);
  text-decoration: none;
  touch-action: manipulation;
}
.prefs-back svg {
  width: 16px;
  height: 16px;
}
.prefs-back:hover {
  color: rgb(38, 50, 56);
}
.prefs-back:focus-visible {
  outline: 2px solid #007C9E;
  outline-offset: 2px;
  border-radius: 6px;
}

.prefs-page__title {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 700;
  color: #005A75;
}

.prefs-page__sub {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgb(74, 90, 99);
}

.prefs-section {
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid rgb(215, 222, 226);
  background-color: var(--color-white);
  padding: 16px;
}

.prefs-section--first {
  margin-top: 24px;
}

.prefs-section__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: rgb(38, 50, 56);
}

.prefs-section__hint {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgb(74, 90, 99);
}

.prefs-topics {
  margin-top: 12px;
}

.prefs-grid {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .prefs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.prefs-field {
  display: flex;
  flex-direction: column;
}

.prefs-field__label {
  font-size: 14px;
  font-weight: 500;
  color: rgb(38, 50, 56);
}

.prefs-field__label + .form-input,
.prefs-field__label + .form-select {
  margin-top: 6px;
}

.prefs-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: rgb(38, 50, 56);
}

.prefs-switch-row + .prefs-switch-row {
  margin-top: 8px;
}

.prefs-save {
  margin-top: 24px;
}

.prefs-status {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #005C2E;
  text-align: center;
}
.prefs-status[hidden] {
  display: none;
}

.prefs-note {
  margin-top: 16px;
  font-size: 11px;
  color: rgb(74, 90, 99);
}

.landing-page {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-x: hidden;
  background-color: transparent;
}

.landing-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: calc(var(--space-6) + var(--safe-area-top, 0px));
  margin-left: var(--space-4);
  margin-right: var(--space-4);
  padding-bottom: var(--space-6);
}

.landing-hero__logo {
  height: 224px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  user-select: none;
  display: block;
  margin: 0 auto;
}
@media (orientation: landscape) and (min-width: 768px) {
  .landing-hero__logo {
    height: 192px;
  }
}
@media (orientation: portrait) and (min-width: 900px) {
  .landing-hero__logo {
    height: 224px;
  }
}

.landing-hero__sub {
  max-width: 20rem;
  margin: var(--space-2) auto 0;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-snug);
  color: var(--color-neutral-700);
  text-align: center;
  font-weight: var(--font-weight-regular);
}

.landing-hero__sub--accent {
  font-weight: var(--font-weight-semibold);
  color: var(--color-brand-primary);
}

.landing-hero__img {
  display: block;
  width: 100%;
  height: auto;
  margin: var(--space-3) auto 0;
  -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent);
  mask-image: linear-gradient(180deg, #000 78%, transparent);
}

.ods-strip {
  display: flex;
  width: 100%;
  max-width: 20rem;
  overflow: hidden;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-card);
  margin: var(--space-2) auto 0;
}

.ods-strip__bar {
  flex: 1;
  height: 10px;
  display: block;
  transition: transform 0.15s ease;
}
.ods-strip__bar:hover {
  transform: scaleY(1.5);
}

.landing-hero__ods-label {
  max-width: 20rem;
  margin: var(--space-2) auto 0;
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-neutral-500);
  text-align: center;
}

.challenge-banner {
  position: relative;
  display: block;
  margin: calc(-1 * var(--space-6)) var(--space-4) 0;
  overflow: hidden;
  border-radius: var(--radius-xl, 24px);
  padding: var(--space-5);
  text-decoration: none;
  color: var(--color-white);
  background: linear-gradient(120deg, #00773C 0%, #0B5C30 100%);
  box-shadow: 0 8px 30px rgba(11, 92, 48, 0.35);
  touch-action: manipulation;
}
.challenge-banner:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}
.challenge-banner:hover .challenge-banner__inner {
  opacity: 0.92;
}

.challenge-banner__leaves {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 112px;
  height: 112px;
  pointer-events: none;
  opacity: 0.6;
}

.challenge-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.challenge-banner__icon-wrap {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  box-shadow: var(--shadow-card);
}

.challenge-banner__flag-icon {
  width: 32px;
  height: 32px;
}

.challenge-banner__body {
  flex: 1;
  min-width: 0;
  padding-right: var(--space-4);
}

.challenge-banner__kicker {
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-white);
  margin: 0;
}

.challenge-banner__text {
  margin: var(--space-1) 0 0;
  font-size: 0.8125rem;
  line-height: var(--line-height-snug);
  color: rgba(255, 255, 255, 0.95);
}

.challenge-banner__arrow {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  color: #0B5C30;
  box-shadow: var(--shadow-card);
}
.challenge-banner__arrow svg {
  width: 16px;
  height: 16px;
}

.landing-section {
  padding: var(--space-4);
}

.landing-tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.tile-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background-color: var(--color-white);
  padding: var(--space-3);
  box-shadow: 0 2px 12px rgba(15, 42, 71, 0.06);
  outline: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  touch-action: manipulation;
  transition: box-shadow 0.15s ease, transform 0.1s ease;
}
.tile-card:hover, .tile-card:focus-visible {
  box-shadow: 0 4px 20px rgba(15, 42, 71, 0.12);
  transform: translateY(-1px);
}
.tile-card:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
}
.tile-card:active {
  transform: translateY(0);
}

.tile-card--wide {
  grid-column: 1/-1;
}

.tile-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  background-color: var(--color-brand-primary-subtle);
  flex-shrink: 0;
}

.tile-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tile-card__ext-badge {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.9);
  color: #0B5C30;
  box-shadow: var(--shadow-card);
}
.tile-card__ext-badge svg {
  width: 14px;
  height: 14px;
}

.tile-card__foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.tile-card__info {
  min-width: 0;
  flex: 1;
}

.tile-card__title {
  display: block;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: var(--line-height-snug);
  letter-spacing: 0.02em;
  color: #0F2A47;
}

.tile-card__desc {
  display: block;
  margin-top: var(--space-1);
  font-size: 0.6875rem;
  line-height: var(--line-height-snug);
  color: var(--color-neutral-500);
}

.tile-card__arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background-color: var(--color-brand-primary-subtle);
  color: var(--color-brand-primary-dark);
  margin-top: 2px;
}
.tile-card__arrow svg {
  width: 16px;
  height: 16px;
}

.landing-about {
  margin: var(--space-8) var(--space-4) 0;
  padding: var(--space-4);
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-100);
  border-radius: var(--radius-card);
  text-align: center;
}
.landing-about .landing-cta__primary {
  margin-top: var(--space-3);
}

.landing-about__text {
  font-size: 0.8125rem;
  line-height: var(--line-height-normal);
  color: var(--color-neutral-700);
  margin: 0;
}

.landing-about__text--accent {
  font-weight: var(--font-weight-semibold);
  color: var(--color-brand-primary-dark);
}

.landing-about__visitor-wrap {
  margin-top: var(--space-3);
}

.landing-cta__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  font-size: 0.8125rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  background: linear-gradient(135deg, #00873F, #0B5C30);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  touch-action: manipulation;
}
.landing-cta__primary svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.landing-cta__primary:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
}

.landing-cta__visitor {
  display: block;
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-500);
  text-decoration: none;
  text-underline-offset: 2px;
  touch-action: manipulation;
}
.landing-cta__visitor:hover, .landing-cta__visitor:focus-visible {
  text-decoration: underline;
}
.landing-cta__visitor:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.desafios-page {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--space-10) var(--space-4) var(--space-12);
}

.desafios-card {
  width: 100%;
  max-width: 28rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-neutral-100);
  background-color: var(--color-white);
  box-shadow: var(--shadow-card);
  padding: var(--space-6);
  text-align: center;
}

.desafios-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: var(--radius-full);
  background-color: var(--color-brand-primary-subtle);
  color: var(--color-brand-primary-dark);
}
.desafios-icon svg {
  width: 28px;
  height: 28px;
}

.desafios-title {
  margin: var(--space-4) 0 0;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-brand-primary-dark);
}

.desafios-desc {
  margin: var(--space-2) 0 0;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-normal);
  color: var(--color-neutral-500);
}

.desafios-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  min-height: 44px;
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  background: var(--color-brand-primary-dark);
  text-decoration: none;
  touch-action: manipulation;
}
.desafios-back svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.desafios-back:hover, .desafios-back:focus-visible {
  opacity: 0.9;
}
.desafios-back:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
}

.legal-page {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: var(--color-bg-page);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.legal-header {
  background: var(--color-white);
  border-bottom: 1px solid #D7DEE2;
}

.legal-header__inner {
  max-width: 42rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4);
  width: 100%;
}

.legal-header__logo {
  height: 48px;
  width: auto;
  display: block;
}

.legal-header__back {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: #005A75;
  text-decoration: none;
  white-space: nowrap;
}
.legal-header__back:hover {
  text-decoration: underline;
}
.legal-header__back:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.legal-doc {
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  padding: var(--space-6) var(--space-4) var(--space-10);
}

.legal-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-neutral-500);
}

.legal-title {
  margin: var(--space-2) 0 0;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-tight);
  color: #005A75;
  line-height: var(--line-height-tight);
}

.legal-updated {
  margin: var(--space-1) 0 0;
  font-size: var(--font-size-sm);
  color: var(--color-neutral-500);
}

.legal-prose {
  margin-top: var(--space-6);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-neutral-700);
}
.legal-prose > * + * {
  margin-top: var(--space-5);
}
.legal-prose h2 {
  margin-top: var(--space-6);
  margin-bottom: 0;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: #005A75;
}
.legal-prose p {
  margin-top: 0;
}
.legal-prose ul,
.legal-prose ol {
  margin-top: 0;
  padding-left: var(--space-5);
  list-style: disc;
}
.legal-prose ol {
  list-style: decimal;
}
.legal-prose li {
  margin-top: var(--space-1);
}
.legal-prose li::marker {
  color: var(--color-neutral-500);
}
.legal-prose strong {
  color: #005A75;
}
.legal-prose a {
  color: var(--color-brand-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-prose a:hover {
  color: var(--color-brand-secondary-dark);
}
.legal-prose a:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.legal-related {
  margin-top: var(--space-12);
  border: 1px solid var(--color-neutral-100);
  border-radius: var(--radius-xl);
  background-color: var(--color-white);
  padding: var(--space-5);
}

.legal-related__title {
  margin: 0;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  color: var(--color-neutral-500);
}

.legal-related__list {
  list-style: none;
  margin: var(--space-3) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
}
@media (orientation: landscape) and (min-width: 768px) {
  .legal-related__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (orientation: portrait) and (min-width: 900px) {
  .legal-related__list {
    grid-template-columns: 1fr 1fr;
  }
}

.legal-related__link {
  display: block;
  border: 1px solid var(--color-neutral-100);
  border-radius: var(--radius-md);
  background-color: var(--color-bg-page);
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-700);
  text-decoration: none;
}
.legal-related__link:hover {
  background-color: var(--color-brand-primary-subtle);
  border-color: var(--color-brand-primary-subtle);
}
.legal-related__link:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
}
.legal-related__link[aria-current=page] {
  background-color: var(--color-brand-primary-subtle);
  border-color: var(--color-brand-primary-light);
  color: var(--color-brand-primary-dark);
  font-weight: var(--font-weight-semibold);
}

.legal-contact {
  margin: var(--space-8) 0 0;
  font-size: var(--font-size-xs);
  color: var(--color-neutral-500);
}
.legal-contact a {
  color: var(--color-brand-secondary);
  text-decoration: underline;
}
.legal-contact a:hover {
  color: var(--color-brand-secondary-dark);
}

.legal-callout {
  margin-top: var(--space-5);
  border: 1px solid #D7DEE2;
  border-radius: 18px;
  background-color: rgba(223, 243, 230, 0.3);
  padding: var(--space-4);
}

.legal-callout__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.legal-callout__title {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-900);
}

.legal-callout__channel {
  font-size: var(--font-size-xs);
  color: var(--color-neutral-500);
}

.legal-callout__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--space-2);
}

.legal-callout .btn {
  width: auto;
  text-decoration: none;
  min-height: 0;
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  line-height: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.legal-callout .btn--ghost {
  background-color: var(--color-bg-page);
  border: 1px solid var(--color-neutral-100);
  color: var(--color-neutral-900);
}

.legal-callout .btn--action {
  color: var(--color-white);
}

.legal-callout .btn--ghost:hover {
  background-color: #007C9E;
  color: var(--color-white);
}

.legal-callout .btn--action:hover {
  background-color: rgba(0, 122, 61, 0.9);
  color: var(--color-white);
  opacity: 0.9;
}
