/* Zember — site institucional
   CSS único, sem framework. Tokens no :root; mobile-first. */

:root {
  --azul: #117bcb;
  --azul-escuro: #0b5c99;
  --amarelo: #f3b61f;
  --laranja: #eb6d29;
  --verde: #5cae00;
  --verde-escuro: #4a8f00;
  --preto: #0f0f0f;
  --grafite: #242424;
  --cinza-100: #f8f8f8;
  --cinza-200: #ececec;
  --cinza-400: #bdbdbd;
  --texto: #333;
  --texto-suave: #4e4949;
  --cinza-texto: #595959;
  --azul-claro: #b7e1e4;
  --branco: #fff;
  --fonte: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --raio: 10px;
  --sombra: 0 6px 24px rgba(0, 0, 0, .08);
  --largura: 1180px;
  --header-h: 72px;
}

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

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

body {
  margin: 0;
  font-family: var(--fonte);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--texto);
  background: var(--branco);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--azul); text-decoration: none; }
a:hover { text-decoration: none; color: var(--azul-escuro); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 .6em; line-height: 1.2; font-weight: 700; color: var(--grafite); }
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

.container { width: min(100% - 2rem, var(--largura)); margin-inline: auto; }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--cinza { background: var(--cinza-100); }
.section__titulo { text-align: center; color: var(--azul); font-size: 2rem; line-height: 1.5; }
.section__sub { text-align: center; color: var(--texto-suave); font-size: 1rem; max-width: 46rem; margin: -0.5rem auto 2.5rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* Botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 10px 18px; border-radius: 50px; font-weight: 500; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0; text-decoration: none;
  border: 0; cursor: pointer; transition: background .3s;
  font-family: inherit;
}
.btn:hover, .btn:focus-visible { text-decoration: none; color: inherit; }
.btn--verde { background: var(--verde); color: var(--branco); }
.btn--verde:hover, .btn--verde:focus-visible { color: var(--branco); }
.btn--contorno { border-color: var(--branco); color: var(--branco); }
.btn--contorno:hover { background: rgba(255, 255, 255, .12); }
.btn--pequeno { padding: 10px 15px; }
.btn--grande, .btn--grande:hover { font-size: 14px; font-weight: 700; line-height: 14px; padding: 20px 30px; min-height: 54px; color: #faf3f0; letter-spacing: 0; }
.btn--grande svg { width: 14px; height: 14px; }
.btn svg { width: 1.1em; height: 1.1em; fill: currentColor; }

/* Cabeçalho */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--azul); color: var(--branco);
  transition: background .3s;
}
.header--rolado { background: var(--preto); }
.header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.header__logo img { width: 150px; height: 36px; }
.nav { margin-left: auto; }
.nav__lista { display: flex; gap: 1.6rem; align-items: center; }
.nav__link { color: var(--azul-claro); font-size: 12px; font-weight: 600; text-transform: uppercase; }
.nav__link:hover, .nav__link:focus-visible { color: var(--amarelo); text-decoration: none; }
.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; border: 0; border-radius: 6px;
  background: var(--verde); color: var(--branco); cursor: pointer; padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: currentColor; margin: 5px 0; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Aviso de suporte */
.aviso { background: var(--amarelo); color: var(--grafite); }
.aviso__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .6rem 1rem; padding-block: .7rem; }
.aviso__icone { width: 24px; height: 24px; fill: var(--grafite); flex: none; }
.aviso p { margin: 0; font-size: 15px; font-weight: 500; line-height: 1.45; text-align: center; }
.aviso p strong { font-weight: 700; }
.aviso__whats {
  display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap;
  background: var(--branco); color: var(--grafite); font-size: 16px; font-weight: 700; letter-spacing: .3px;
  padding: 7px 16px 7px 12px; border-radius: 50px; box-shadow: 0 2px 8px rgba(0, 0, 0, .12); transition: transform .2s, box-shadow .2s;
}
.aviso__whats svg { width: 22px; height: 22px; fill: #25d366; }
.aviso__whats:hover, .aviso__whats:focus-visible { color: var(--grafite); text-decoration: none; box-shadow: 0 4px 14px rgba(0, 0, 0, .18); }
@media (max-width: 599px) { .aviso__icone { display: none; } .aviso p { font-size: 14px; } }

/* Hero */
.hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) 0; }
.hero__grid { display: grid; gap: 2.5rem; align-items: start; }
.hero__titulo { font-size: clamp(1.5rem, 2.6vw, 1.875rem); line-height: 1.2; }
.hero__titulo .destaque { color: var(--amarelo); display: block; }
.hero__titulo .digitado { color: var(--grafite); }
.hero__titulo .cursor { display: inline-block; width: 2px; height: 1em; background: var(--grafite); vertical-align: -0.15em; margin-left: 2px; animation: piscar 1s steps(1) infinite; }
@keyframes piscar { 50% { opacity: 0; } }
.hero__texto { color: var(--texto-suave); max-width: 466px; font-size: 14px; font-weight: 500; line-height: 23.8px; letter-spacing: .3px; margin: 1.4rem 0 1.6rem; }
.hero__img { margin-top: 1rem; max-width: 440px; }

/* Formulário */
.form-card { background: var(--branco); }
.form-card label { display: block; font-size: 13px; color: var(--texto-suave); margin-bottom: .35rem; font-weight: 500; }
.form-card input[type="text"], .form-card input[type="email"], .form-card input[type="tel"] {
  width: 100%; padding: .7rem .8rem; border: 1px solid var(--cinza-400); border-radius: 4px;
  font: inherit; font-size: .95rem; color: var(--texto); background: var(--branco);
}
.form-card input:focus { outline: 2px solid var(--azul); outline-offset: 1px; border-color: var(--azul); }
.form-card .campo { margin-bottom: 1.1rem; }
.form-card fieldset { border: 0; padding: 0; margin: 0 0 1.2rem; }
.form-card legend { font-size: .8rem; color: var(--texto-suave); font-weight: 600; margin-bottom: .4rem; padding: 0; }
.form-card .opcoes { display: flex; gap: 1.2rem; font-size: .85rem; }
.form-card .opcoes label { display: inline-flex; align-items: center; gap: .35rem; margin: 0; font-weight: 400; }
.form-card .btn { width: 100%; }

/* Faixa azul com ondas */
.missao { position: relative; z-index: 1; background: var(--azul); color: var(--azul-claro); margin-top: 5rem; padding: 40px 0 34px; }
.missao__onda { position: absolute; left: 0; width: 100%; height: 60px; display: block; fill: var(--azul); }
.missao__onda--topo { top: -59px; }
.missao h2 { color: var(--azul-claro); font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.5; font-weight: 700; margin: 0 0 1.6rem; text-align: left; }
.missao p { margin: 0; color: var(--azul-claro); font-size: 1rem; text-align: center; }

/* Slider (ERP completo) */
.slider { position: relative; padding: 0 3.5rem; }
.slider__trilho { position: relative; overflow: hidden; }
.slider__faixa { display: flex; align-items: center; height: 100%; transition: transform .6s cubic-bezier(.4, 0, .2, 1); will-change: transform; touch-action: pan-y; cursor: grab; user-select: none; }
.slider__faixa--arrastando { transition: none; cursor: grabbing; }
.slider__faixa img { -webkit-user-drag: none; pointer-events: none; }
.slide { flex: 0 0 100%; width: 100%; display: grid; gap: 2rem; align-items: center; }
.slide__texto h3 { font-size: 1.5rem; line-height: 1.4; color: var(--texto-suave); margin-bottom: 1.6rem; }
.slide__texto p { color: var(--texto-suave); font-size: 14px; font-weight: 500; line-height: 1.7; margin-bottom: 2.2rem; }
.slide__link { font-weight: 500; font-size: 1rem; padding-left: 1rem; }
.slider__seta {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 40px; height: 40px; border: 0; background: transparent; color: #999; cursor: pointer; padding: 8px;
}
.slider__seta:hover { color: var(--grafite); }
.slider__seta svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.slider__seta--ant { left: 0; }
.slider__seta--prox { right: 0; }
.slider__pontos { display: flex; justify-content: center; gap: .9rem; margin-top: 2.5rem; }
.slider__ponto { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: var(--cinza-400); cursor: pointer; }
.slider__ponto--ativo { background: var(--azul); }

/* Faixa de contato */
.contato-faixa { background: var(--cinza-100); padding: 50px 0; }
.contato-faixa__inner { display: flex; flex-wrap: wrap; gap: 2rem 3.5rem; align-items: center; justify-content: center; }
.contato-faixa p { margin: 0; font-size: 14px; font-weight: 500; line-height: 1.5; letter-spacing: 2.2px; text-align: center; color: var(--texto-suave); max-width: 370px; }
.contato-faixa__tel { text-align: center; }
.contato-faixa__tel span { display: block; font-size: 18px; font-weight: 500; line-height: 1; text-transform: uppercase; color: var(--texto-suave); }
.contato-faixa__tel a { display: block; font-size: 32px; font-weight: 700; line-height: 48px; letter-spacing: 1.4px; color: var(--texto-suave); margin-top: -8px; }
.contato-faixa__tel a:hover { color: var(--texto-suave); }

/* Cards de funcionalidades */
.cards { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--branco); border-radius: var(--raio); box-shadow: var(--sombra);
  padding: 2rem 1.5rem 1.6rem; text-align: center; border-bottom: 4px solid var(--azul);
}
.card__icone { width: 44px; height: 44px; margin: 0 auto 1rem; color: var(--azul); }
.card__icone svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 20px; font-weight: 600; line-height: 1.2; color: var(--texto-suave); }
.card p { margin: 0; font-size: 14px; font-weight: 500; line-height: 1.5; color: var(--cinza-texto); }
.cards__cta { text-align: center; margin-top: 2.8rem; }

/* Atendimento */
.atendimento__grid { display: grid; gap: 2.5rem; align-items: center; }
.atendimento__img img { border-radius: 50% 50% 50% 0 / 50% 50% 50% 0; aspect-ratio: 1; object-fit: cover; }
.atendimento h2 { color: var(--azul); font-size: 26px; line-height: 1.5; }
.check { display: grid; gap: .7rem; margin-bottom: 1.8rem; }
.check li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1rem; color: var(--texto); }
.check li::before { content: "✓"; color: var(--cinza-400); font-weight: 700; flex: none; }

/* Depoimentos (carrossel) */
.depo { text-align: center; }
.depo { display: block; }
.depo__interno { max-width: 1000px; margin: 0 auto; }
.depo__card { position: relative; padding: 0 1rem 38px; margin-bottom: 40px; box-shadow: 0 6px 6px -6px rgba(0, 0, 0, .15); }
.depo__aspas { display: block; font-size: 60px; line-height: .8; color: #bdbdbd; font-weight: 400; margin-bottom: 1.4rem; }
.depo blockquote { margin: 0 0 1.6rem; font-size: 14px; font-weight: 500; line-height: 25.2px; color: var(--texto-suave); }
.depo__estrelas { color: var(--amarelo); font-size: 15px; letter-spacing: .1em; }
.depo__foto { position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 50%); width: 44px; height: 44px; border-radius: 50%; object-fit: contain; background: var(--branco); box-shadow: 0 2px 6px rgba(0, 0, 0, .12); }
.depo cite { display: block; font-style: normal; font-size: 1rem; font-weight: 500; color: var(--texto); }

/* FAQ */
.faq-titulo { color: var(--texto-suave); line-height: 1; margin-bottom: 3.2rem; }
.faq { width: 100%; }
.faq__item { border-bottom: 1px solid #d5d5d5; }
.faq__pergunta { margin: 0; font-size: inherit; }
.faq__botao {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left; font-family: inherit;
  padding: 22px 0; font-size: 20px; font-weight: 600; line-height: 1.2; color: #353131;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq__botao::after { content: "+"; font-size: 24px; font-weight: 700; line-height: 1; color: #353131; flex: none; }
.faq__botao[aria-expanded="true"]::after { content: "\2013"; }
.faq__painel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s ease; }
.faq__painel > .faq__resposta { overflow: hidden; min-height: 0; opacity: 0; transform: translateY(-6px); transition: opacity .35s ease, transform .35s ease; }
.faq__painel[data-aberto="true"] { grid-template-rows: 1fr; }
.faq__painel[data-aberto="true"] > .faq__resposta { opacity: 1; transform: none; }
.faq__resposta p { padding: 0 0 22px; margin: 0; font-size: 16px; line-height: 24px; color: var(--texto-suave); }
@media (max-width: 599px) { .faq__botao { font-size: 17px; padding: 16px 0; } }

/* Sobre */
.sobre { background: var(--amarelo); color: var(--grafite); overflow: hidden; }
.sobre__grid { display: grid; gap: 2rem; align-items: end; }
.sobre__img { align-self: end; margin-bottom: -1px; }
.sobre__img img { max-height: 400px; width: auto; margin-inline: auto; }
.sobre__logo { width: 220px; height: 78px; margin: 0 auto 1.5rem; }
.sobre__texto { text-align: center; padding-bottom: 2.5rem; }
.sobre__texto p { font-size: 1rem; line-height: 2.3; color: var(--grafite); }
.social { display: flex; justify-content: center; gap: 2rem; margin-top: 1.8rem; }
.social a { color: var(--grafite); display: inline-flex; }
.social svg { width: 40px; height: 40px; fill: currentColor; }

/* Rodapé (medidas do original) */
.footer { background: var(--grafite); color: var(--cinza-400); padding: 50px 0; }
.footer__grid { display: grid; gap: 0; align-items: start; }
.footer__col { padding: 10px; }
.footer h2 { color: var(--azul-claro); font-size: 17px; font-weight: 500; line-height: 17px; margin: 0 0 20px; }
.footer a { color: var(--cinza-400); transition: color .3s; }
.footer a:hover { color: var(--branco); }
.footer__marca { text-align: center; }
.footer__marca img { width: 126px; height: 84px; margin: 0 auto 30px; }
.footer__marca p { margin: 0; font-size: 14px; line-height: 21px; }
.footer__marca p + p { margin-top: 15px; }
.footer ul li { display: flex; gap: 5px; align-items: flex-start; font-size: 13px; line-height: 19.5px; padding: 3px 0 2px; }
.footer ul li + li { margin-top: 4.5px; }
.footer__icone { flex: none; width: 18px; height: 19.5px; display: inline-flex; align-items: center; justify-content: flex-start; }
.footer__icone svg { width: 14px; height: 14px; fill: currentColor; }
.footer address { font-style: normal; }

/* WhatsApp flutuante */
.whats-flutuante {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: var(--branco);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 1px 6px 24px rgba(7, 94, 84, .24); transition: background .3s;
}
.whats-flutuante svg { width: 32px; height: 32px; fill: currentColor; }
.whats-flutuante:hover, .whats-flutuante:focus-visible { background: #128c7e; color: var(--branco); text-decoration: none; }
.whats-flutuante__dica {
  position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%);
  background: var(--branco); color: var(--texto); font-size: 15px; font-weight: 500; white-space: nowrap;
  padding: 10px 16px; border-radius: 30px; box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.whats-flutuante__dica::after {
  content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--branco); border-right: 0;
}
.whats-flutuante:hover .whats-flutuante__dica, .whats-flutuante:focus-visible .whats-flutuante__dica { opacity: 1; visibility: visible; }

/* Responsivo */
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
  .slide { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
  .slide__texto { padding-left: 1rem; }
  .atendimento__grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
  .sobre__grid { grid-template-columns: 1fr 1.6fr; gap: 3rem; }
  .sobre__texto { text-align: center; }
  .footer__grid { grid-template-columns: 49.6% 25.2% 25.2%; }
}
@media (max-width: 899px) {
  .sobre__img { display: none; }
  .sobre__texto { padding-top: 2.5rem; }
  .slider { padding: 0; }
  .slider__seta { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%; background: var(--preto);
    padding: 1rem 1rem 1.5rem; display: none;
  }
  .nav[data-aberto="true"] { display: block; }
  .nav__lista { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { display: block; padding: .8rem .4rem; border-bottom: 1px solid #222; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .slider__faixa, .faq__painel, .faq__resposta { transition: none; }
  .hero__titulo .cursor { animation: none; }
  .btn { transition: none; }

}

/* ===== Mobile ===== */
@media (max-width: 899px) {
  .section { padding-block: 3rem; }
  .section__titulo { font-size: 26px; line-height: 1.25; }
  .hero { padding-top: 2rem; }
  .hero__titulo { font-size: 26px; }
  .hero__img { max-width: 100%; }
  .missao { margin-top: 5.5rem; padding: 34px 0 30px; }
  .missao h2 { font-size: 22px; text-align: center; }
  .missao p { font-size: 15px; }

  /* slider ERP */
  .slide { text-align: center; }
  .slide__texto h3 { font-size: 22px; }
  .slide__texto p br { display: none; }
  .slide__link { padding-left: 0; }
  .slide img { max-width: 420px; margin: 0 auto; }

  /* faixa de contato */
  .contato-faixa { padding: 40px 0; }
  .contato-faixa__inner { flex-direction: column; gap: 1.6rem; }
  .contato-faixa p { max-width: 20rem; }
  .contato-faixa__tel a { font-size: 30px; }

  /* cards */
  .cards { gap: 1.6rem; }
  .card { padding: 2.4rem 1.6rem 3.4rem; border-radius: 14px; }
  .card__icone { width: 50px; height: 50px; }
  .card h3 { font-size: 20px; }
  .card p { font-size: 15px; line-height: 1.45; }
  .cards__cta { margin-top: 2.4rem; }
  .cards__cta .btn { width: 100%; max-width: 360px; }

  /* atendimento */
  .atendimento__grid { text-align: center; }
  .atendimento__img { max-width: 360px; margin: 0 auto; }
  .atendimento h2 { font-size: 26px; text-align: center; letter-spacing: .5px; }
  .check { text-align: left; max-width: 26rem; margin: 0 auto 1.8rem; }
  .atendimento .btn--grande { width: auto; }

  /* depoimentos */
  .depo blockquote { font-size: 15px; line-height: 25px; }
  .depo__card { padding: 0 .5rem 38px; }

  /* faq */
  .faq-titulo { font-size: 26px; margin-bottom: 2rem; }
  .faq__resposta p { font-size: 15px; }

  /* sobre */
  .sobre__texto p { font-size: 15px; line-height: 1.8; }

  /* rodapé */
  .footer { padding: 40px 0 30px; }
  .footer__grid { grid-template-columns: 1fr; gap: 0; }
  .footer__col { padding: 0 0 2rem; }
  .footer__col + .footer__col { border-top: 1px solid #3a3a3a; padding-top: 2rem; }
  .footer__marca { padding-bottom: 2.5rem; }
  .footer__marca img { width: 170px; height: 113px; margin-bottom: 2.4rem; }
  .footer__marca p { font-size: 15px; line-height: 1.6; }
  .footer h2 { font-size: 20px; margin-bottom: 1.4rem; }
  .footer ul li { font-size: 15px; line-height: 1.4; padding: 5px 0; }
  .footer ul li + li { margin-top: 6px; }
  .footer__icone { width: 22px; }
  .footer__icone svg { width: 16px; height: 16px; }

  .whats-flutuante { width: 56px; height: 56px; right: 14px; bottom: 14px; }
}
@media (max-width: 599px) {
  .container { width: min(100% - 2.5rem, var(--largura)); }
  .hero__titulo { font-size: 24px; }
  .btn--grande { padding: 18px 26px; }
  .slide img { max-width: 100%; }
}

/* ===== Páginas internas ===== */
.pagina__topo { background: var(--azul); color: var(--branco); text-align: center; padding: clamp(2.5rem, 6vw, 4rem) 0; }
.pagina__topo h1 { color: var(--branco); font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: .6rem; }
.pagina__sub { color: var(--azul-claro); font-size: 1.05rem; max-width: 46rem; margin: 0 auto; }
.pagina__topo--amarelo { background: var(--amarelo); color: var(--grafite); }
.pagina__topo--amarelo h1 { color: var(--grafite); font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
.pagina__topo--amarelo .pagina__sub { color: var(--grafite); font-size: 1.15rem; margin-bottom: 1.8rem; }
.pagina__rotulo { text-transform: uppercase; letter-spacing: 3px; font-size: 13px; font-weight: 700; margin: 0 0 .4rem; color: var(--grafite); }
.pagina__texto { max-width: 820px; color: var(--texto-suave); font-size: 16px; line-height: 1.75; }
.pagina__texto h2 { font-size: 22px; color: var(--azul); margin: 2.2rem 0 .8rem; }
.pagina__texto p { margin-bottom: 1.1rem; }
.pagina__texto a { font-weight: 600; }
.pagina__data { font-size: 14px; color: var(--cinza-texto); margin-top: 2.5rem; }
.lista { list-style: none; padding: 0; margin: 0 0 1rem; }
.lista li { position: relative; padding-left: 1.6rem; margin-bottom: .6rem; }
.lista li::before { content: ""; position: absolute; left: 0; top: .6em; width: 9px; height: 9px; border-radius: 50%; background: var(--verde); }
.passos { display: grid; gap: 1.4rem; margin: 0 0 1rem; }
.passo { background: var(--cinza-100); border-radius: var(--raio); padding: 1.6rem 1.6rem 1.4rem; border-top: 4px solid var(--azul); position: relative; }
.passo__num { display: inline-flex; width: 36px; height: 36px; border-radius: 50%; background: var(--azul); color: var(--branco); font-weight: 700; align-items: center; justify-content: center; margin-bottom: .8rem; }
.passo h2 { margin: 0 0 .5rem; font-size: 19px; }
.passo p { margin: 0; font-size: 15px; }
.pagina__cta { text-align: center; margin-top: 2.5rem; }
@media (min-width: 900px) { .passos { grid-template-columns: repeat(3, 1fr); } }

/* ===== Página de links ===== */
.links { min-height: 100vh; background: var(--branco); }
.links__topo { position: relative; background: var(--azul); height: 130px; margin-bottom: 70px; }
.links__onda { position: absolute; left: 0; bottom: -59px; width: 100%; height: 60px; fill: var(--azul); }
.links__logo { position: absolute; left: 50%; bottom: -60px; transform: translateX(-50%); width: 130px; height: 130px; border-radius: 50%; background: var(--branco); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0, 0, 0, .12); z-index: 2; }
.links__logo img { width: 96px; height: 84px; }
.links__lista { width: min(100% - 2rem, 420px); margin: 0 auto; padding: 2.2rem 0 2rem; display: grid; gap: .8rem; }
.links__lista h1 { text-align: center; font-size: 1.15rem; font-weight: 600; color: var(--texto-suave); margin: 0 0 .6rem; }
.links__botao {
  display: flex; align-items: center; justify-content: center; gap: .6rem; position: relative;
  background: var(--azul); color: var(--branco); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px;
  padding: 14px 44px; border-radius: 50px; transition: background .3s, transform .15s;
}
.links__botao svg { position: absolute; left: 18px; width: 20px; height: 20px; fill: currentColor; }
.links__botao:hover, .links__botao:focus-visible { background: var(--azul-escuro); color: var(--branco); text-decoration: none; transform: translateY(-1px); }
.links__rodape { text-align: center; font-size: 13px; color: var(--cinza-texto); padding-bottom: 2rem; }
