/* ===============================
   FONTES LOCAIS
   =============================== */

   @font-face {
    font-family: 'Futura PT';
    src: url('../fonts/FuturaPT-HeavyObl.woff2') format('woff2'),
         url('../fonts/FuturaPT-HeavyObl.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
  }
  
  /* ===============================
     VARIÁVEIS
     =============================== */
  
  :root {
    --bg: #e7e7e7;
    --text: #0e8eef;
    --muted: #818c99;
  }
  
  /* ===============================
     ESTILOS GERAIS
     =============================== */
  
  body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, sans-serif;
  }
  
  .wrap {
    text-align: center;
    animation: fadeIn 900ms ease both;
  }
  
  /* ===============================
     TITLE WRAPPER (flex + alinhamento)
     =============================== */
  
  .title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  
  /* Texto "Regional" acima */
  .regional-label {
    font-size: clamp(0.7rem, 1.1vw, 0.95rem);
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.09em;
    text-transform: uppercase;
    line-height: 1;
    margin-left: 4px;
  }
  
  /* Título NORTE usando Futura PT local */
  h1 {
    margin: 0;
    font-family: 'Futura PT', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(3.8rem, 11vw, 8rem);
    letter-spacing: 0.03em;
    line-height: 0.9;
    color: #2D388D;
  }
  .highlight {
    color: #EF3A33;
  }
  
  div#contador {
      margin-top: 6px;
      opacity: .75;
      display: block;
      margin: 0 auto;
      text-align: center;
      font-variant-caps: all-petite-caps;
    }

  .invite-page {
    --inv-bg: #0b0d10;
    --inv-card: rgba(20, 24, 30, 0.92);
    --inv-card-border: rgba(255, 255, 255, 0.08);
    --inv-text: #f5f7fa;
    --inv-muted: #a8b0bb;
    --inv-primary: #19c37d;
    --inv-primary-dark: #12a368;
    --inv-danger: #ff6b6b;
    --inv-danger-bg: rgba(255, 107, 107, 0.12);
    --inv-success-bg: rgba(25, 195, 125, 0.12);
    --inv-input-bg: rgba(255, 255, 255, 0.04);
    --inv-input-border: rgba(255, 255, 255, 0.10);
    --inv-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --inv-radius: 18px;

    width: 100%;
    min-height: 100vh;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    color: var(--inv-text);
    background:
      radial-gradient(circle at top, rgba(25, 195, 125, 0.14), transparent 30%),
      linear-gradient(180deg, #0b0d10 0%, #12161c 100%);
    box-sizing: border-box;
  }

  .invite-page *,
  .invite-page *::before,
  .invite-page *::after {
    box-sizing: border-box;
  }

  .invite-page .container {
    width: 100%;
    max-width: 520px;
  }

  .invite-page .card {
    background: var(--inv-card);
    border: 1px solid var(--inv-card-border);
    border-radius: var(--inv-radius);
    box-shadow: var(--inv-shadow);
    padding: 32px 28px;
    backdrop-filter: blur(8px);
  }

  .invite-page .top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgb(195 25 88 / 12%);
    border: 1px solid rgb(255 110 110 / 25%);
    color: #ff5381;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 18px;
  }

  .invite-page h1 {
    margin: 0 0 28px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--inv-text);
    font-family: Arial, sans-serif;
    text-transform: none;
    letter-spacing: normal;
  }

  .invite-page .highlight {
    color: #ff5381;
  }

  .invite-page .subtitle {
    color: var(--inv-muted);
    font-size: 15px;
    line-height: 1.6;
  }

  .invite-page form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .invite-page .field-group {
    display: flex;
    flex-direction: column;
  }

  .invite-page label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #dbe2ea;
  }

  .invite-page input {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--inv-input-border);
    background: var(--inv-input-bg);
    color: var(--inv-text);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .invite-page input::placeholder {
    color: #7f8895;
  }

  .invite-page input:focus {
    border-color: rgba(240, 28, 102, 0.55);
    box-shadow: 0 0 0 4px rgba(121, 16, 20, 0.12);
    background: rgba(255, 255, 255, 0.06);
  }

  .invite-page .helper {
    margin-top: 8px;
    color: var(--inv-muted);
    font-size: 12px;
    line-height: 1.5;
  }

  .invite-page button {
    margin-top: 8px;
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(180deg, #ff5381 0%, #df2456 100%);
    color: white;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.15s ease, filter 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px rgb(109 7 49 / 24%);
  }

  .invite-page button:hover {
    filter: brightness(1.03);
    transform: translateY(-1px);
  }

  .invite-page button:active {
    transform: translateY(0);
  }

  .invite-page .msg {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid transparent;
  }

  .invite-page .ok {
    background: var(--inv-success-bg);
    border-color: rgba(25, 195, 125, 0.35);
    color: #c9f8e4;
  }

  .invite-page .erro {
    background: var(--inv-danger-bg);
    border-color: rgba(255, 107, 107, 0.35);
    color: #ffd3d3;
  }

  .invite-page .footer-note {
    margin-top: 20px;
    text-align: center;
    color: #7f8895;
    font-size: 12px;
    line-height: 1.5;
  }

  @media (max-width: 520px) {
    .invite-page .card {
      padding: 24px 18px;
    }

    .invite-page h1 {
      font-size: 24px;
    }
  }
  .invite-page .invite-result {
  margin-top: 18px;
  padding-top: 6px;
}

.invite-page .invite-result-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #dbe2ea;
}

.invite-page .invite-result-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.invite-page .invite-result-input {
  flex: 1;
  min-width: 0;
}

.invite-page .invite-copy-btn {
  width: auto;
  min-width: 96px;
  margin-top: 0;
  padding: 14px 16px;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .invite-page .invite-result-row {
    flex-direction: column;
  }

  .invite-page .invite-copy-btn {
    width: 100%;
  }
}

/* ===============================
   SELECT (EMISSOR)
   =============================== */

.invite-page select {
  width: 100%;
  padding: 14px;
  padding-right: 44px;

  border-radius: 12px;
  border: 1px solid var(--inv-input-border);

  background: var(--inv-input-bg);
  color: var(--inv-text);

  font-size: 15px;
  outline: none;

  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* seta custom */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'><path d='M5 7.5L10 12.5L15 7.5' stroke='%23a8b0bb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}

/* hover */
.invite-page select:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

/* focus (igual input) */
.invite-page select:focus {
  border-color: rgba(240, 28, 102, 0.55);
  box-shadow: 0 0 0 4px rgba(121, 16, 20, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

/* opções (fallback básico) */
.invite-page select option {
  background: #1a1f26;
  color: #fff;
}

/* ===============================
   HOME PAGE - LOCALIZE
   =============================== */

body.home-page {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 83, 129, 0.10), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(25, 195, 125, 0.10), transparent 22%),
    linear-gradient(180deg, #0b0d10 0%, #12161c 100%);
  color: #f5f7fa;
  font-family: Arial, sans-serif;
  display: block;
}

.home-page .home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  box-sizing: border-box;
}

.home-page .home-shell {
  width: 100%;
  max-width: 1120px;
}

.home-page .home-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  background: rgba(20, 24, 30, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  padding: 32px 28px;
}

.home-page .home-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgb(195 25 88 / 12%);
  border: 1px solid rgb(255 110 110 / 25%);
  color: #ff5381;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}

.home-page .home-brand h1 {
  margin: 0;
  font-family: 'Futura PT', sans-serif;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: 0.03em;
  line-height: 0.9;
  color: #f5f7fa;
  word-break: break-word;
}

.home-page .home-brand .highlight {
  color: #ff5381;
}

.home-page .home-subtitle {
  margin: 12px 0 0;
  max-width: 720px;
  color: #a8b0bb;
  font-size: 18px;
  line-height: 1.65;
}

.home-page .home-metrics {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.home-page .home-metric {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 20px;
}

.home-page .home-metric-label {
  display: block;
  color: #a8b0bb;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.home-page .home-metric-value {
  text-align: center;
  display: block;
  color: #ff5381;
  font-size: clamp(3.05rem, 7vw, 4.45rem);
  line-height: 1.2;
}

.home-page .home-features {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-page .home-feature {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px 18px;
  box-sizing: border-box;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

.home-page .home-feature h2 {
  margin: 0 0 10px;
  color: #f5f7fa;
  font-size: 22px;
  line-height: 1.2;
}

.home-page .home-feature p {
    margin: 0;
    color: #a8b0bb;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-align: justify;
    text-justify: inter-word;
    max-width: 65ch;
}

.home-page .home-feature:hover {
  background: linear-gradient(180deg, #ff5381 0%, #df2456 100%);
  box-shadow: 0 12px 28px rgb(109 7 49 / 30%);
  transform: translateY(-3px);
  cursor: pointer;
}

.home-page .home-feature:hover h2,
.home-page .home-feature:hover p {
  color: #ffffff;
}

.home-page .home-cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.home-page .home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.home-page .home-btn-cta {
  width: 100%;
  max-width: 360px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  border-radius: 14px;
  text-align: center;
  background: linear-gradient(180deg, #ff5381 0%, #df2456 100%);
  color: #fff;
  box-shadow: 0 14px 34px rgba(223, 36, 86, 0.35);
  transition:
    transform 0.18s ease,
    box-shadow 0.25s ease,
    filter 0.2s ease;
}

.home-page .home-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(223, 36, 86, 0.45);
  filter: brightness(1.05);
}

.home-page .home-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  opacity: 0.45;
}

.home-page .home-orb-1 {
  width: 220px;
  height: 220px;
  background: rgba(255, 83, 129, 0.22);
  top: -60px;
  right: -60px;
}

.home-page .home-orb-2 {
  width: 180px;
  height: 180px;
  background: rgba(25, 195, 125, 0.18);
  bottom: -40px;
  left: -40px;
}

/* tablet */
@media (max-width: 900px) {
  .home-page .home-card {
    padding: 28px 22px;
  }

  .home-page .home-features {
    grid-template-columns: 1fr;
  }

  .home-page .home-feature h2 {
    font-size: 20px;
  }

  .home-page .home-subtitle {
    font-size: 16px;
  }

  .home-page .home-orb-1,
  .home-page .home-orb-2 {
    display: none;
  }
}

/* celular */
@media (max-width: 600px) {
  .home-page .home-hero {
    min-height: auto;
    padding: 14px 10px;
    align-items: flex-start;
  }

  .home-page .home-card {
    padding: 20px 14px;
    border-radius: 18px;
  }

  .home-page .home-badge {
    width: 100%;
    margin-bottom: 16px;
    text-align: center;
    font-size: 12px;
  }

  .home-page .home-brand h1 {
    font-size: clamp(2.2rem, 14vw, 4rem);
    line-height: 0.95;
  }

  .home-page .home-subtitle {
    font-size: 14px;
    line-height: 1.5;
  }

  .home-page .home-metrics {
    margin-top: 20px;
    gap: 12px;
  }

  .home-page .home-metric {
    padding: 16px 14px;
  }

  .home-page .home-metric-label {
    font-size: 12px;
  }

  .home-page .home-metric-value {
    font-size: 1.2rem;
  }

  .home-page .home-features {
    margin-top: 20px;
    gap: 12px;
  }

  .home-page .home-feature {
    padding: 16px 14px;
  }

  .home-page .home-feature h2 {
    font-size: 18px;
  }

  .home-page .home-feature p {
    font-size: 14px;
  }

  .home-page .home-cta {
    margin-top: 22px;
  }

  .home-page .home-btn-cta {
    max-width: 100%;
    font-size: 14px;
    padding: 14px 16px;
    border-radius: 12px;
  }
}

/* celular muito pequeno */
@media (max-width: 380px) {
  .home-page .home-card {
    padding: 16px 12px;
  }

  .home-page .home-brand h1 {
    font-size: clamp(1.9rem, 15vw, 3rem);
  }

  .home-page .home-subtitle {
    font-size: 13px;
  }

  .home-page .home-feature h2 {
    font-size: 17px;
  }

  .home-page .home-feature p {
    font-size: 13px;
  }
}

/* ===============================
   HOME FEATURE - BASE
   =============================== */

.home-page .home-feature {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 20px;

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

/* textos */
.home-page .home-feature h2,
.home-page .home-feature p {
  transition: color 0.25s ease;
}

/* ===============================
   HOVER (ELEGANTE)
   =============================== */

.home-page .home-feature:hover {
  background: linear-gradient(180deg, #ff5381 0%, #df2456 100%);
  box-shadow: 0 12px 28px rgb(109 7 49 / 30%);
  transform: translateY(-3px);
  cursor: pointer;
}

/* mudança de cor dos textos */
.home-page .home-feature:hover h2,
.home-page .home-feature:hover p {
  color: #ffffff;
}

.home-page .home-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.home-page .home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.15s ease, filter 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-page .home-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.home-page .home-btn-primary {
  background: linear-gradient(180deg, #ff5381 0%, #df2456 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgb(109 7 49 / 24%);
}

.home-page .home-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #f5f7fa;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.home-page .home-footer-note {
  margin-top: 20px;
  color: #7f8895;
  font-size: 12px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.home-page .home-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  opacity: 0.45;
}

.home-page .home-orb-1 {
  width: 220px;
  height: 220px;
  background: rgba(255, 83, 129, 0.22);
  top: -60px;
  right: -60px;
}

.home-page .home-orb-2 {
  width: 180px;
  height: 180px;
  background: rgba(25, 195, 125, 0.18);
  bottom: -40px;
  left: -40px;
}

@media (max-width: 860px) {
  .home-page .home-card {
    padding: 28px 22px;
  }

  .home-page .home-features {
    grid-template-columns: 1fr;
  }

  .home-page .home-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .home-page .home-actions {
    flex-direction: column;
  }

  .home-page .home-btn {
    width: 100%;
    min-width: 0;
  }

  .home-page .home-metric {
    width: 100%;
    min-width: 0;
  }
}

/* ===============================
   CTA - GERAR CONVITE
   =============================== */

.home-page .home-cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.home-page .home-btn-cta {
  min-width: 280px;
  padding: 16px 22px;

  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;

  border-radius: 14px;
  text-align: center;

  background: linear-gradient(180deg, #ff5381 0%, #df2456 100%);
  color: #fff;

  box-shadow: 0 14px 34px rgba(223, 36, 86, 0.35);

  transition:
    transform 0.18s ease,
    box-shadow 0.25s ease,
    filter 0.2s ease;
}

/* hover mais forte que os outros botões */
.home-page .home-btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 42px rgba(223, 36, 86, 0.45);
  filter: brightness(1.05);
}

/* clique */
.home-page .home-btn-cta:active {
  transform: translateY(0) scale(0.99);
}

.home-page .home-btn-cta {
  position: relative;
  overflow: hidden;
}

.home-page .home-btn-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.home-page .home-btn-cta:hover::after {
  transform: translateX(100%);
}
/* ===============================
   MARQUEE - TÉCNICA DE LOOP SUAVE
   =============================== */

.home-page .home-marquee {
  margin-top: 28px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
  padding-bottom: 16px;
  z-index: 2;
}

.home-page .home-marquee-track {
  display: flex;
  width: max-content;
  animation: home-marquee-scroll 26s linear infinite;
  will-change: transform;
}

.home-page .home-marquee:hover .home-marquee-track {
  animation-play-state: paused;
}

.home-page .home-marquee-content {
  flex: 0 0 auto;
}

.home-page .home-marquee-list {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0 18px 0 0;
}

.home-page .home-marquee-item {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: #a8b0bb;
  letter-spacing: 0.04em;
  opacity: 0.88;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.home-page .home-marquee-item:hover {
  color: #ff5381;
  opacity: 1;
}

.home-page .home-marquee-item:first-child {
  color: #f5f7fa;
  font-weight: 700;
}

.home-page .home-marquee::before,
.home-page .home-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 56px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.home-page .home-marquee::before {
  left: 0;
  background: linear-gradient(to right, #14181e, transparent);
}

.home-page .home-marquee::after {
  right: 0;
  background: linear-gradient(to left, #14181e, transparent);
}

@keyframes home-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 520px) {
  .home-page .home-marquee-list {
    gap: 14px;
  }

  .home-page .home-marquee-item {
    font-size: 12px;
  }
}
/* ===============================
   SAIBA MAIS
   =============================== */

body.info-page {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 83, 129, 0.10), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(25, 195, 125, 0.10), transparent 22%),
    linear-gradient(180deg, #0b0d10 0%, #12161c 100%);
  color: #f5f7fa;
  font-family: Arial, sans-serif;
  display: block;
}

h2.home-tag {
    margin: 0;
    display: block;
}

.info-page .info-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.info-page .info-card {
  position: relative;
  overflow: hidden;
}

.info-page .info-section {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.info-page .info-section h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
  color: #f5f7fa;
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.info-page .info-section p {
  margin: 0;
  color: #a8b0bb;
  font-size: 16px;
  line-height: 1.8;
}

.info-page .info-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 2;
}

.info-page .info-list {
  margin: 0;
  padding-left: 18px;
  color: #a8b0bb;
  line-height: 1.9;
  font-size: 15px;
}

@media (max-width: 860px) {
  .info-page .info-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   HOME RESPONSIVO - AJUSTES
   =============================== */

.home-page .home-shell {
  width: 100%;
  max-width: 1120px;
  min-width: 0;
}

.home-page .home-card {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.home-page .home-brand,
.home-page .home-subtitle,
.home-page .home-metrics,
.home-page .home-features,
.home-page .home-cta,
.home-page .home-marquee {
  min-width: 0;
}

.home-page .home-feature,
.home-page .home-metric,
.home-page .home-btn,
.home-page .home-btn-cta {
  min-width: 0;
  box-sizing: border-box;
}

/* tablets e notebooks menores */
@media (max-width: 860px) {
  .home-page .home-hero {
    min-height: auto;
    padding: 24px 14px;
    align-items: flex-start;
  }

  .home-page .home-shell {
    max-width: 100%;
  }

  .home-page .home-card {
    padding: 26px 18px;
    border-radius: 20px;
  }

  .home-page .home-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  max-width: 100%;
  margin: 0 auto 16px;

  padding: 8px 16px;
  text-align: center;
}

  .home-page .home-brand h1 {
    font-size: clamp(3rem, 14vw, 5rem);
    line-height: 0.92;
    word-break: break-word;
  }

  .home-page .home-subtitle {
    font-size: 16px;
    line-height: 1.55;
    max-width: 100%;
  }

  .home-page .home-metrics {
    margin-top: 22px;
    gap: 14px;
    padding: 0;
  }

  .home-page .home-metric {
    padding: 16px 16px;
    border-radius: 16px;
  }

  .home-page .home-features {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-page .home-feature {
    padding: 18px 16px;
  }

  .home-page .home-feature h2 {
    font-size: 20px;
    line-height: 1.2;
  }

  .home-page .home-feature p {
    font-size: 15px;
    line-height: 1.6;
  }

  .home-page .home-cta {
    margin-top: 24px;
  }

  .home-page .home-btn-cta {
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
    font-size: 15px;
  }

  .home-page .home-marquee {
    margin-top: 22px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .home-page .home-orb-1,
  .home-page .home-orb-2 {
    display: none;
  }
}

/* celulares */
@media (max-width: 640px) {
  .home-page .home-hero {
    padding: 16px 10px;
  }

  .home-page .home-card {
    padding: 20px 14px;
    border-radius: 18px;
  }

  .home-page .home-badge {
    width: 94%;
    justify-content: center;
    text-align: center;
    padding: 8px 10px;
    margin-bottom: 16px;
  }

  .home-page .home-brand h1 {
    font-size: clamp(2.4rem, 15vw, 4rem);
    letter-spacing: 0.02em;
  }

  .home-page .home-subtitle {
    font-size: 15px;
    line-height: 1.5;
  }

  .home-page .home-metric-label {
    font-size: 12px;
    line-height: 1.3;
  }

  .home-page .home-metric-value {
    font-size: clamp(3.05rem, 7vw, 4.45rem);
  }

  .home-page .home-feature h2 {
    font-size: 18px;
  }

  .home-page .home-feature p {
    font-size: 14px;
    line-height: 1.55;
  }

  .home-page .home-btn-cta {
    font-size: 14px;
    border-radius: 12px;
  }

  .home-page .home-marquee::before,
  .home-page .home-marquee::after {
    width: 28px;
  }

  .home-page .home-marquee-list {
    gap: 12px;
    padding-right: 12px;
  }

  .home-page .home-marquee-item {
    font-size: 11px;
  }
}

/* celulares muito pequenos */
@media (max-width: 420px) {
  .home-page .home-hero {
    padding: 12px 8px;
  }

  .home-page .home-card {
    padding: 16px 12px;
  }

  .home-page .home-badge {
    font-size: 11px;
  }

  .home-page .home-brand h1 {
    font-size: clamp(2rem, 16vw, 3.2rem);
    line-height: 0.95;
  }

  .home-page .home-subtitle {
    font-size: 14px;
  }

  .home-page .home-metric {
    padding: 14px 14px;
  }

  .home-page .home-feature {
    padding: 16px 14px;
  }

  .home-page .home-feature h2 {
    font-size: 17px;
  }

  .home-page .home-feature p {
    font-size: 13px;
  }

  .home-page .home-btn-cta {
    padding: 13px 14px;
    font-size: 14px;
  }
}

.numbers-card {
    overflow: hidden;
}

.numbers-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0;
    position: relative;
    z-index: 2;
}

.number-kpi {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.number-kpi strong {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
    color: #ffffff;
    margin-bottom: 10px;
}

.number-kpi span {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    position: relative;
    z-index: 2;
}

.numbers-panel {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.numbers-panel h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.1rem;
}

.numbers-panel p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.5;
}

.numbers-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.numbers-table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
}

.numbers-table th,
.numbers-table td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.numbers-table th {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.numbers-table td:last-child,
.numbers-table th:last-child {
    text-align: right;
}

.numbers-note {
    margin: 22px 0 8px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 83, 129, 0.08);
    border: 1px solid rgba(255, 83, 129, 0.18);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .numbers-kpis,
    .numbers-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .numbers-kpis,
    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .number-kpi,
    .numbers-panel {
        padding: 18px;
    }

    .numbers-table th,
    .numbers-table td {
        padding: 10px 8px;
        font-size: 0.84rem;
    }
}

.numbers-impact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 30px 0 18px;
    position: relative;
    z-index: 2;
}

.number-kpi-main {
    background: linear-gradient(
        145deg,
        rgba(255, 83, 129, 0.18),
        rgba(255, 255, 255, 0.05)
    );
    border-color: rgba(255, 83, 129, 0.35);
}

.number-kpi strong,
.numbers-table td:last-child,
.numbers-record strong {
    color: #ff5381;
    text-shadow: 0 0 18px rgba(255, 83, 129, 0.35);
}

.numbers-story {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 24px 0;
    position: relative;
    z-index: 2;
}

.numbers-story article {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.numbers-story h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.2rem;
}

.numbers-story p {
    margin: 0;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.6;
    font-size: 0.95rem;
}

.numbers-panel-highlight {
    background: linear-gradient(
        145deg,
        rgba(255, 83, 129, 0.18),
        rgba(255, 255, 255, 0.05)
    );
    border: 1px solid rgba(255, 83, 129, 0.35);
}

.numbers-record {
    margin-top: 18px;
}

.numbers-record strong {
    display: block;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: 10px;
}

.numbers-record span {
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
}

.numbers-updated {
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
}

@media (max-width: 1000px) {
    .numbers-impact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .numbers-impact,
    .numbers-story {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   NOSSOS NÚMEROS - CARDS DE IMPACTO
   =============================== */

.numbers-impact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 24px;
  position: relative;
  z-index: 2;
}

.impact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 24px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 83, 129, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.impact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff5381 0%, rgba(255, 83, 129, 0.15) 100%);
}

.impact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 83, 129, 0.34);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.impact-card-featured {
  background:
    radial-gradient(circle at top right, rgba(255, 83, 129, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(255, 83, 129, 0.28);
}

.impact-card-top {
  margin-bottom: 18px;
}

.impact-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 83, 129, 0.10);
  border: 1px solid rgba(255, 83, 129, 0.20);
  color: #ff5381;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.impact-value {
  display: block;
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  font-weight: 900;
  color: #ff5381;
  text-shadow: 0 0 18px rgba(255, 83, 129, 0.28);
}

.impact-title {
  margin: 0 0 12px;
  color: #f5f7fa;
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 800;
}

.impact-text {
  margin: 0;
  color: #a8b0bb;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .numbers-impact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .numbers-impact {
    grid-template-columns: 1fr;
  }

  .impact-card {
    min-height: auto;
    padding: 20px 18px;
    border-radius: 20px;
  }

  .impact-value {
    font-size: clamp(2.1rem, 9vw, 3.2rem);
  }

  .impact-title {
    font-size: 1rem;
  }

  .impact-text {
    font-size: 0.92rem;
    line-height: 1.65;
  }
}
/* ===============================
   DARK CHART - NOSSOS NÚMEROS
   =============================== */

.numbers-chart-card {
  position: relative;
  z-index: 2;
  margin: 28px 0;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 83, 129, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 83, 129, 0.22);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.numbers-chart-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff5381 0%, rgba(255, 83, 129, 0.12) 100%);
}

.numbers-chart-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.numbers-chart-header h2 {
  margin: 14px 0 8px;
  color: #f5f7fa;
  font-size: 1.25rem;
  font-weight: 800;
}

.numbers-chart-header p {
  margin: 0;
  max-width: 760px;
  color: #a8b0bb;
  font-size: 0.95rem;
  line-height: 1.65;
}

.numbers-chart-wrap {
  position: relative;
  width: 100%;
  height: 320px;
}

@media (max-width: 640px) {
  .numbers-chart-card {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .numbers-chart-wrap {
    height: 260px;
  }

  .numbers-chart-header h2 {
    font-size: 1.1rem;
  }

  .numbers-chart-header p {
    font-size: 0.9rem;
  }
}
.analytics-map-section {
  width: 100%;
  padding: 56px 20px;
}

.analytics-map-card {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.analytics-map-header {
  margin-bottom: 20px;
}

.analytics-map-header h2 {
  margin: 14px 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #f8fafc;
}

.analytics-map-header p {
  max-width: 760px;
  margin: 0;
  color: #94a3b8;
  line-height: 1.7;
}

#mapaCidades {
  width: 100%;
  height: 520px;
  border-radius: 22px;
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.leaflet-container {
  background: #020617;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.22);
}

.city-popup strong {
  color: #0284c7;
  font-size: 14px;
}

.city-popup span {
  color: #16a34a;
  font-weight: 800;
  font-size: 16px;
}

@media (max-width: 768px) {
  .analytics-map-section {
    padding: 36px 14px;
  }

  .analytics-map-card {
    padding: 16px;
    border-radius: 22px;
  }

  #mapaCidades {
    height: 420px;
    border-radius: 18px;
  }
}

  

  
