/* Rede de Recuperação e Identificação — estilos base */
:root {
  --milk: #f7f7f5;
  --bg: #f1f2f5;
  --soft-dark: #1b263b;
  --dark-yellow: #d19d1d;
  --dark-yellow-hover: #b8891a;
  --card-border: #e8e8e4;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --radius: 1rem;
  --shadow: 0 10px 30px rgba(27, 38, 59, 0.08);
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--milk);
  color: var(--soft-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

ul {
  list-style: none;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container-sm {
  max-width: 64rem;
}

.container-xs {
  max-width: 48rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-yellow);
}

.logo-mark {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.15rem;
  font-size: 0.9rem;
}

.nav-links a {
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--dark-yellow);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-pill {
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

.btn-outline {
  color: var(--soft-dark);
  border: 1px solid var(--soft-dark);
  background: transparent;
}

.btn-outline:hover {
  background: var(--soft-dark);
  color: white;
}

.btn-yellow {
  background: var(--dark-yellow);
  color: white;
}

.btn-yellow:hover {
  background: var(--dark-yellow-hover);
}

.btn-dark {
  background: var(--soft-dark);
  color: white;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-dark:hover {
  background: #243450;
}

.btn-yellow-lg {
  background: var(--dark-yellow);
  color: white;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-yellow-lg:hover {
  background: var(--dark-yellow-hover);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--soft-dark);
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--card-border);
  background: white;
  padding: 1rem 1.5rem 1.25rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--dark-yellow);
}

.mobile-menu .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.75rem;
}

.mobile-menu .btn-pill {
  text-align: center;
}

@media (min-width: 1024px) {
  .nav-links,
  .nav-actions {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* Hero */
.page-home {
  background: var(--bg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.7s;
  background: linear-gradient(to bottom right, var(--c1), var(--c2), var(--c3));
}

.hero-slide.active {
  opacity: 1;
  z-index: 10;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 0.04;
  background-image:
    linear-gradient(white 1px, transparent 1px),
    linear-gradient(90deg, white 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 20;
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  max-width: 32rem;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  max-width: 28rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.hero-dots button {
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.3);
  width: 0.5rem;
  height: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.hero-dots button:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-dots button.active {
  width: 1.5rem;
  background: var(--dark-yellow);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 300px;
  flex-shrink: 0;
  display: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow::before {
  content: "";
  width: 12rem;
  height: 12rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(48px);
}

.float-card {
  position: absolute;
  background: white;
  border-radius: 1rem;
  padding: 0.875rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s;
}

.float-card:hover {
  transform: rotate(0deg) !important;
}

.float-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card p {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--soft-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.float-card span {
  font-size: 0.625rem;
  font-weight: 600;
}

.hero-search-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  color: white;
}

.hero-stat {
  position: absolute;
  top: -0.5rem;
  right: 5rem;
  background: var(--dark-yellow);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero-nav.prev {
  left: 1rem;
}

.hero-nav.next {
  right: 1rem;
}

@media (min-width: 640px) {
  .hero-visual {
    display: block;
  }
}

@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
    padding: 6rem 1.5rem;
    gap: 4rem;
  }
  .hero-copy {
    align-items: flex-start;
    text-align: left;
  }
  .hero-ctas {
    justify-content: flex-start;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero-visual {
    height: 380px;
  }
}

/* Search */
.search-section {
  max-width: 64rem;
  margin: -2.5rem auto 0;
  padding: 0 1.5rem;
  position: relative;
  z-index: 30;
}

.card {
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--soft-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.muted {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: var(--soft-dark);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  outline: none;
  transition: box-shadow 0.2s;
}

.form-control:focus {
  box-shadow: 0 0 0 2px var(--dark-yellow);
}

textarea.form-control {
  resize: none;
}

.form-row-end {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.form-msg {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(27, 38, 59, 0.8);
  background: var(--gray-50);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}

/* Ad banner */
.ad-banner {
  margin-top: 1.5rem;
}

.ad-banner-inner {
  border-radius: 1rem;
  background: linear-gradient(to right, #d19d1d, #e8b830);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.ad-banner .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ad-banner h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-top: 0.125rem;
}

.ad-banner p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.btn-white {
  flex-shrink: 0;
  padding: 0.625rem 1.25rem;
  background: white;
  color: var(--dark-yellow);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0.75rem;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Grid sections */
.home-grid {
  margin-top: 3rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.panel {
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.panel-head {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-head h2 {
  font-size: 1rem;
  font-weight: 700;
}

.panel-head p {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.125rem;
}

.panel-body {
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-400);
}

.panel-foot {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.link-yellow {
  font-size: 0.875rem;
  color: var(--dark-yellow);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.link-yellow:hover {
  color: var(--dark-yellow-hover);
}

.panel-pad {
  padding: 1.5rem;
}

.panel-pad h2 {
  font-size: 1rem;
  font-weight: 700;
}

.panel-pad .list {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #4b5563;
  display: grid;
  gap: 0.5rem;
}

.panel-pad .btn-dark {
  margin-top: 1.5rem;
}

/* Collaborator */
.cta-band {
  margin-top: 3rem;
}

.cta-band-inner {
  background: linear-gradient(to bottom right, #1b263b, #2a3f5f);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.pill-yellow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(209, 157, 29, 0.2);
  color: var(--dark-yellow);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-band h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.cta-band .desc {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.75rem;
  font-size: 0.875rem;
  max-width: 32rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.how-box {
  width: 100%;
  max-width: 20rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  text-align: left;
  display: grid;
  gap: 0.75rem;
}

.how-box strong {
  color: white;
}

@media (min-width: 768px) {
  .cta-band-inner {
    flex-direction: row;
    padding: 3rem;
    text-align: left;
  }
  .cta-band h2 {
    font-size: 1.875rem;
  }
  .cta-actions {
    justify-content: flex-start;
  }
}

/* Newsletter */
.newsletter {
  margin: 3rem 0;
}

.newsletter-inner {
  background: linear-gradient(to bottom right, #1b263b, #243450);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.newsletter h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.newsletter .desc {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.5rem;
  font-size: 0.875rem;
  max-width: 28rem;
  margin-inline: auto;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 1.5rem auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: var(--soft-dark);
  background: white;
  border: none;
  outline: none;
}

.newsletter-form input:focus {
  box-shadow: 0 0 0 2px var(--dark-yellow);
}

.newsletter-form .btn-yellow-lg {
  box-shadow: none;
}

.newsletter .fine {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-top: 1rem;
}

.newsletter .ok {
  color: #86efac;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
  .newsletter-inner {
    padding: 3rem;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--card-border);
  background: var(--soft-dark);
  color: white;
  margin-top: 5rem;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: cover;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
}

.site-footer h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-yellow);
}

.site-footer h4 {
  font-weight: 600;
}

.site-footer p,
.site-footer li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer p {
  margin-top: 0.75rem;
}

.site-footer ul {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.5rem;
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.socials {
  display: flex;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-bottom {
    flex-direction: row;
  }
}

/* Auth / inner pages */
.page-inner {
  background: var(--bg);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.auth-card {
  width: 100%;
  max-width: 28rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.auth-card.wide {
  max-width: 32rem;
}

.auth-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(209, 157, 29, 0.15);
  color: var(--dark-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.auth-card .center {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-card h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

.auth-card .sub {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
}

.form-stack {
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.password-wrap {
  position: relative;
}

.password-wrap input {
  padding-right: 2.75rem;
}

.password-wrap .toggle-pw {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
}

.form-grid-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.role-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  padding: 0.25rem;
  background: var(--gray-100);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.role-tabs button {
  border: none;
  background: transparent;
  padding: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  border-radius: 0.5rem;
  cursor: pointer;
}

.role-tabs button.active {
  background: white;
  color: var(--soft-dark);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}

.auth-foot {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.auth-foot a {
  color: var(--dark-yellow);
  font-weight: 600;
}

.text-right {
  text-align: right;
}

.text-right a {
  font-size: 0.75rem;
  color: var(--dark-yellow);
  font-weight: 500;
}

.w-full {
  width: 100%;
}

/* Contact */
.page-pad {
  background: var(--bg);
  padding: 4rem 1.5rem;
}

.page-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-head h1 {
  font-size: 1.875rem;
  font-weight: 700;
}

.page-head p {
  color: var(--gray-500);
  margin-top: 0.75rem;
  max-width: 36rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .page-head h1 {
    font-size: 2.25rem;
  }
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.info-card {
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  padding: 1.25rem;
  display: flex;
  gap: 0.75rem;
}

.info-card + .info-card {
  margin-top: 1rem;
}

.info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(209, 157, 29, 0.15);
  color: var(--dark-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card strong {
  font-size: 0.875rem;
  display: block;
}

.info-card span {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 0.125rem;
  display: block;
}

.terms-article {
  margin-top: 2rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  display: grid;
  gap: 1.5rem;
}

.terms-article h2 {
  font-size: 1.125rem;
  font-weight: 700;
}

.terms-article p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
}

@media (min-width: 768px) {
  .terms-article {
    padding: 2.5rem;
  }
}

.green {
  color: #22c55e;
}
.amber {
  color: #f59e0b;
}
.blue-bg {
  background: #eff6ff;
  color: #3b82f6;
}
.amber-bg {
  background: #fffbeb;
  color: #f59e0b;
}
.green-bg {
  background: #f0fdf4;
  color: #22c55e;
}
.purple-bg {
  background: #faf5ff;
  color: #a855f7;
}

.hidden {
  display: none !important;
}

.role-info {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  display: grid;
  gap: 0.25rem;
}

.role-info span {
  color: var(--gray-500);
  font-size: 0.75rem;
}

.login-hints {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  font-size: 0.75rem;
  color: var(--gray-500);
  display: grid;
  gap: 0.35rem;
}

.login-hints a {
  color: var(--dark-yellow);
  font-weight: 600;
}

.dash-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dash-head h1 {
  font-size: 1.75rem;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.stat-card span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.75rem;
  color: var(--soft-dark);
}

.dash-list {
  display: grid;
}

.dash-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-50);
}

.dash-item:last-child {
  border-bottom: none;
}

.dash-item strong {
  font-size: 0.9rem;
}

.dash-item p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.15rem;
}

.dash-item .tiny {
  font-size: 0.7rem;
  color: var(--gray-400);
}

.status {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
}

.status-pendente {
  background: #fffbeb;
  color: #d97706;
}

.status-em_analise {
  background: #eff6ff;
  color: #2563eb;
}

.status-devolvido {
  background: #f0fdf4;
  color: #16a34a;
}

.status-publicado {
  background: #ecfdf5;
  color: #047857;
}

.status-rejeitado {
  background: #fef2f2;
  color: #b91c1c;
}

.people-list {
  display: grid;
}

.person-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--gray-50);
}

.person-row:last-child {
  border-bottom: none;
}

.person-row strong {
  font-size: 0.9rem;
}

.person-row p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.1rem;
}

.person-row .status {
  margin-left: auto;
}

.person-avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 9999px;
  background: #fff7ed;
  color: #c2410c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.estado-form {
  min-width: 9rem;
}

.estado-form .form-control {
  padding: 0.45rem 0.6rem;
  font-size: 0.75rem;
}

.admin-item {
  align-items: center;
}

.btn-cinzento {
  background: #9ca3af;
  color: #fff;
  border: none;
  border-radius: 0.55rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: not-allowed;
  opacity: 0.95;
}

.token-box {
  background: #1b263b;
  color: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  margin: 1rem 0;
}
.token-box span { display:block; font-size:0.75rem; letter-spacing:0.12em; text-transform:uppercase; color:#d19d1d; }
.token-box strong { font-size:2rem; letter-spacing:0.12em; }
.verify-card { background:#fff; border:1px solid #e5e7eb; border-radius:1.25rem; padding:1.5rem; }
.verify-h { font-size:1rem; margin:1.25rem 0 0.5rem; }
.verify-feats { list-style:none; padding:0; margin:0; }
.verify-feats li { padding:0.4rem 0; border-bottom:1px solid #f3f4f6; font-size:0.95rem; }
.verify-feats em { display:inline-block; min-width:8rem; color:#6b7280; font-style:normal; }
.verify-status { padding:1rem; border-radius:0.85rem; margin:1rem 0; font-size:0.95rem; line-height:1.45; }
.verify-status.is-ok { background:#ecfdf5; color:#065f46; }
.verify-status.is-alert { background:#fef2f2; color:#991b1b; }
.verify-status.is-warn { background:#fffbeb; color:#92400e; }
.legal-box { margin-top:1.25rem; font-size:0.75rem; color:#4b5563; line-height:1.5; background:#f8fafc; padding:0.9rem; border-radius:0.75rem; }
.label-print { border:2px dashed #1b263b; padding:1.5rem; text-align:center; border-radius:1rem; background:#fff; }
.q-badge { font-size:0.7rem; background:#fef3c7; color:#92400e; padding:0.15rem 0.45rem; border-radius:999px; }

.dash-item > div {
  flex: 1;
  min-width: 0;
}

.dash-item a.status {
  text-decoration: none;
}

.thumb-doc {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.55rem;
  flex-shrink: 0;
  background: #f3f4f6;
}

.cam-box {
  border: 1px dashed #e5e7eb;
  border-radius: 0.85rem;
  padding: 0.75rem;
  background: #fafafa;
}

.cam-video {
  display: none;
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 0.7rem;
  background: #111;
  margin-bottom: 0.6rem;
}

.cam-box.is-live .cam-video {
  display: block;
}

.cam-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.6rem;
}

.photo-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.6rem;
}

.photo-preview img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.photo-grid-lg {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .photo-grid-lg {
    grid-template-columns: 1fr 1fr;
  }
}

.photo-grid-lg img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 0.9rem;
  background: #f3f4f6;
}

.comp-preview {
  max-width: 100%;
  max-height: 280px;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
}

.saque-block {
  border-bottom: 1px solid var(--gray-50);
}

.saque-block:last-child {
  border-bottom: none;
}

@media print {
  .site-header, .site-footer, .dash-head button, .nav, .menu-toggle { display:none !important; }
  .label-print { border-style:solid; }
}

