@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-latin-wght.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Identidade herdada do site atual */
  --azul: #023a51;
  --azul-fundo: #01293a;
  --verde: #2cbc63;
  --vermelho: #ed3237;

  --tinta: #0d2733;
  --tinta-suave: #3f5661;
  --papel: #ffffff;
  --papel-alt: #eef3f5;
  --linha: #d5e0e5;
  --claro-sobre-azul: #c9dbe3;
  --alerta-texto: #b3161b;
  --alerta-fundo: #fff1f1;
  --alerta-linha: #f6c9ca;

  --raio: 12px;
  --raio-botao: 10px;
  --largura: 72rem;
  --gutter: clamp(1rem, 4vw, 2rem);
  --sombra: 0 1px 2px rgb(2 58 81 / 0.06), 0 8px 24px -12px rgb(2 58 81 / 0.18);
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--tinta);
  background: var(--papel);
}

h1, h2, h3 { line-height: 1.15; text-wrap: balance; margin: 0; }
p { margin: 0; }
img { display: block; max-width: 100%; height: auto; }

a { color: var(--azul); text-underline-offset: 0.2em; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }

::selection { background: var(--verde); color: var(--azul); }

:focus-visible {
  outline: 3px solid var(--azul);
  outline-offset: 3px;
  border-radius: 4px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.i {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wrap {
  width: 100%;
  max-width: var(--largura);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  background: var(--azul);
  color: #fff;
  font-weight: 700;
  border-radius: var(--raio-botao);
}
.skip:focus { top: 1rem; }

/* Topo */

.topo {
  border-top: 4px solid var(--vermelho);
  background: var(--papel);
}

.topo__linha {
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  padding-block: 0.875rem;
}

.topo__marca { flex: none; }
.topo__marca img { width: 7.5rem; }

.topo__nome {
  display: none;
  max-width: 24rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--azul);
}

.topo__tel {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding-inline: 0.25rem;
  font-weight: 800;
  font-size: 1.0625rem;
  font-variant-numeric: tabular-nums;
  color: var(--azul);
  text-decoration: none;
  white-space: nowrap;
}

@media (min-width: 48rem) {
  .topo__marca img { width: 8.5rem; }
  .topo__nome { display: block; }
  .topo__tel { font-size: 1.1875rem; }
}

/* Aviso principal */

.aviso {
  background: var(--azul);
  color: #fff;
  padding-block: clamp(2.5rem, 7vw, 4.5rem) clamp(2.5rem, 6vw, 4rem);
}

.aviso h1 {
  max-width: 20ch;
  font-size: clamp(2rem, 1.35rem + 3.2vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.aviso__texto {
  margin-top: 1rem;
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  color: var(--claro-sobre-azul);
}

.acoes {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 40rem) {
  .acoes { grid-template-columns: repeat(3, max-content); }
}

.aviso__horario {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-top: 1.75rem;
  color: var(--claro-sobre-azul);
}
.aviso__horario .i { margin-top: 0.2em; }

.aviso__email {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.875rem;
  margin-top: 1.25rem;
  color: var(--claro-sobre-azul);
}
.aviso__email strong { color: #fff; }
.aviso__email a { color: #fff; font-weight: 700; }
.aviso__email .copiar__botao {
  margin-left: 0;
  border-color: rgb(255 255 255 / 0.6);
  background: transparent;
  color: #fff;
}
.aviso__email .copiar__botao:hover { border-color: #fff; background: rgb(255 255 255 / 0.08); }

.aviso :focus-visible { outline-color: var(--verde); }

/* Botões */

.botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 56px;
  padding: 0.75rem 1.375rem;
  border: 2px solid transparent;
  border-radius: var(--raio-botao);
  font: inherit;
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease-out, border-color 160ms ease-out, transform 160ms ease-out;
}
.botao:active { transform: translateY(1px); }

.botao--whats { background: var(--verde); color: var(--azul); }
.botao--whats:hover { background: #35cc6f; }

.botao--claro { background: #fff; color: var(--azul); }
.botao--claro:hover { background: #e6f0f4; }

.botao--contorno { border-color: rgb(255 255 255 / 0.7); color: #fff; }
.botao--contorno:hover { border-color: #fff; background: rgb(255 255 255 / 0.08); }

.botao--escuro { background: var(--azul); color: #fff; }
.botao--escuro:hover { background: #034a67; }

.botao--solo { margin-top: 1.5rem; }

/* Atalhos */

.atalhos {
  padding-block: clamp(2.5rem, 6vw, 3.5rem);
  border-bottom: 1px solid var(--linha);
}

.atalhos h2 {
  font-size: clamp(1.375rem, 1.2rem + 0.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--azul);
}

.atalhos ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 48rem) {
  .atalhos ul { grid-template-columns: repeat(2, 1fr); }
}

.atalhos a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  min-height: 64px;
  padding: 0.875rem 1.125rem;
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  background: var(--papel);
  color: var(--azul);
  font-weight: 700;
  font-size: 1.0625rem;
  text-decoration: none;
  transition: border-color 160ms ease-out, background-color 160ms ease-out;
}
.atalhos a:hover { border-color: var(--azul); background: var(--papel-alt); }
.atalhos a > span { flex: 1; }
.atalhos .seta { color: var(--tinta-suave); }

/* Blocos */

.bloco {
  padding-block: clamp(3rem, 8vw, 5rem);
  scroll-margin-top: 1rem;
}
.bloco--alt { background: var(--papel-alt); }

.bloco h2 {
  font-size: clamp(1.625rem, 1.3rem + 1.5vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--azul);
}

.bloco__intro {
  max-width: 62ch;
  margin-top: 0.875rem;
  font-size: 1.125rem;
  color: var(--tinta-suave);
}

.alerta {
  max-width: 62ch;
  margin-top: 1.25rem;
  padding: 0.875rem 1.125rem;
  border: 1px solid var(--alerta-linha);
  border-radius: var(--raio-botao);
  background: var(--alerta-fundo);
  color: var(--alerta-texto);
  font-weight: 700;
}

/* Pedido de CCT */

.pedidos {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 56rem) {
  .pedidos { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

.pedido {
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--raio);
  background: var(--papel);
  box-shadow: var(--sombra);
}

.pedido h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--azul);
}

.pedido__rotulo {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--tinta-suave);
}

.campos {
  flex: 1;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.campos li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--papel-alt);
}
.campos li::before {
  content: "";
  flex: none;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 2px;
  background: var(--verde);
  transform: translateY(-0.1em);
}

.pedido__acoes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.pedido__acoes .botao--whats { grid-column: 1 / -1; }

/* E-mail por aparelho: no toque, o mailto abre o app já preenchido;
   com mouse quase ninguém tem app de e-mail padrão, então oferecemos Gmail/Outlook na web. */
@media (pointer: coarse) {
  .so-mouse { display: none !important; }
}
@media not all and (pointer: coarse) {
  .so-toque { display: none !important; }
}

.copiar {
  margin-top: 1rem;
  color: var(--tinta-suave);
}

.copiar__email {
  color: var(--azul);
  font-weight: 800;
  user-select: all;
  overflow-wrap: anywhere;
}

.copiar__botao {
  margin-left: 0.375rem;
  padding: 0.25rem 0.75rem;
  min-height: 2.25rem;
  border: 1px solid var(--linha);
  border-radius: 8px;
  background: var(--papel);
  color: var(--azul);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease-out, border-color 160ms ease-out;
}
.copiar__botao:hover { background: var(--papel-alt); border-color: var(--azul); }

.copiar__botao { min-width: 6.5rem; }

/* Aviso só para leitores de tela; o retorno visual é o próprio botão. */
.copiar__aviso {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Homologação */

.documentos {
  display: grid;
  gap: 0 3rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: doc;
}

@media (min-width: 56rem) {
  .documentos { grid-template-columns: repeat(2, 1fr); }
}

.documentos li {
  counter-increment: doc;
  position: relative;
  padding: 0.875rem 0 0.875rem 2.75rem;
  border-bottom: 1px solid var(--linha);
}
.documentos li::before {
  content: counter(doc);
  position: absolute;
  left: 0;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--azul);
}
.documentos strong { color: var(--azul); }

/* Endereços */

.locais {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
}

@media (min-width: 48rem) {
  .locais { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

.local h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--azul);
}

.linha {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.875rem;
}
.linha .i { margin-top: 0.2em; color: var(--azul); }
.linha a { font-weight: 700; font-variant-numeric: tabular-nums; }

.link-forte {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 0.5rem;
  margin-left: 2rem;
  font-weight: 800;
}

/* Rodapé */

.rodape {
  background: var(--azul-fundo);
  color: #fff;
  padding-top: clamp(2.5rem, 6vw, 3.5rem);
}

.rodape a { color: #fff; }
.rodape :focus-visible { outline-color: var(--verde); }

.rodape__grade {
  display: grid;
  gap: 2rem;
}

@media (min-width: 56rem) {
  .rodape__grade { grid-template-columns: 1.2fr 1fr; gap: 4rem; }
}

.rodape__sobre {
  max-width: 55ch;
  color: #b7cdd6;
}

.rodape__contatos { display: grid; gap: 1rem; margin: 0; }
.rodape__contatos dt { font-size: 0.9375rem; color: #b7cdd6; }
.rodape__contatos dd { margin: 0; font-weight: 700; overflow-wrap: anywhere; }

.rodape__base {
  margin-top: 2.5rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / 0.14);
  font-size: 0.9375rem;
  color: #b7cdd6;
}

/* Página 404 */

.erro {
  padding-block: clamp(3rem, 10vw, 6rem);
}
.erro h1 {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--azul);
}
.erro p { margin-top: 1rem; max-width: 55ch; color: var(--tinta-suave); font-size: 1.125rem; }
.erro .botao { margin-top: 2rem; }
