:root {
  --teal-profundo: #0E5A50;
  --teal-escuro: #0A3B35;
  --ambar: #E8973A;
  --off-white: #FAF8F4;
  --tinta: #14211E;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--off-white);
  color: var(--tinta);
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

h1, h2, .numero {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
}

header.topo {
  background: var(--teal-escuro);
  color: var(--off-white);
  padding: 32px 24px;
}

header.topo .eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin: 0 0 6px;
}

header.topo h1 {
  margin: 0;
  font-size: clamp(24px, 5vw, 34px);
}

header.topo h1 .destaque {
  color: var(--ambar);
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

section {
  margin-bottom: 40px;
}

section h2 {
  font-size: 20px;
  color: var(--teal-escuro);
  margin-bottom: 4px;
}

section p.legenda {
  margin-top: 0;
  color: #4a5450;
  font-size: 14px;
}

.embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 62%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ddd6c9;
  background: #fff;
}

.embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gbp-controles {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.gbp-controles select {
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--teal-profundo);
  background: #fff;
  color: var(--tinta);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.card {
  background: #fff;
  border: 1px solid #ddd6c9;
  border-radius: 12px;
  padding: 16px;
}

.card .numero {
  font-size: 28px;
  color: var(--teal-escuro);
  display: block;
}

.card .numero.destaque {
  color: var(--ambar);
}

.card .rotulo {
  font-size: 13px;
  color: #4a5450;
}

.sem-dados {
  color: #4a5450;
  font-style: italic;
}

footer {
  text-align: center;
  padding: 24px;
  font-size: 13px;
  color: #4a5450;
}

footer a {
  color: var(--teal-profundo);
}
