@font-face { font-family: 'Ropa Sans'; src: url('fonts/ropa-sans.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Open Sans'; src: url('fonts/open-sans.woff2') format('woff2'); font-weight: 400 600; font-display: swap; }

:root {
  --navy: #203A4B;
  --navy-card: #222226;
  --navy-brand: #003C78;
  --gold: #D4AF37;                 /* dourado da marca: só decoração (fios, halos, ícones) */
  --gold-ink: #8A6D1F;             /* dourado escuro: texto e botões (4.9:1 com branco) */
  --gold-dim: rgba(212,175,55,.63);
  --gold-grad: linear-gradient(178deg, rgba(212,175,55,.72) 0%, rgba(212,175,55,1) 100%);
  --gold-btn: linear-gradient(360deg, #7E621B 0%, #A9851F 100%);
  --bg: #FFFFFF;
  --bg-alt: #F6F7FA;
  --bar: #202020;
  --text: #3E3E3E;
  --muted: #545454;
  --line: #E3E6EC;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: 'Open Sans', Arial, sans-serif; font-size: 15px; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
p { margin: 0 0 1rem; }

h1, h2, h3, h4, h5 { margin: 0; font-weight: 700; color: #262626; }
h2 { font-family: 'Ropa Sans', Arial, sans-serif; font-size: clamp(28px, 3.2vw, 38px); line-height: 1.25; }
.serif { font-family: 'Times New Roman', Georgia, serif; font-style: italic; }
.eyebrow { color: var(--gold-ink); font-family: 'Ropa Sans', sans-serif; font-size: 17px; margin-bottom: 2px; }
.center { text-align: center; }

/* brilho dourado à volta dos blocos (assinatura visual do site original) */
.glow {
  border: 1px solid var(--gold-dim);
  box-shadow: 0 0 24px rgba(212,175,55,.42);
  border-radius: 4px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 30px;
  background: var(--gold-btn); color: #fff;   /* 4.9:1 - passa WCAG AA */
  font-family: 'Ropa Sans', sans-serif; font-size: 17px; text-decoration: none;
  box-shadow: 0 10px 24px rgba(169,133,18,.32);
  border: 1px solid rgba(255,255,255,.45);
  transition: transform .12s ease, filter .2s ease;
}
.btn:hover { filter: brightness(1.08); }
.btn:active { transform: translateY(1px); }
.btn--navy { background: var(--navy); box-shadow: 0 10px 24px rgba(32,58,75,.28); border-color: transparent; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 30; background: #fff;
  height: 92px; display: flex; align-items: center; border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; gap: 26px; width: 100%; }
.nav__logo img { height: 66px; width: auto; }
.nav__links { display: flex; gap: 22px; list-style: none; margin: 0 auto; padding: 0; }
.nav__links a {
  font-family: 'Ropa Sans', sans-serif; font-size: 17px; color: #1c1c1c;
  text-decoration: none; white-space: nowrap; transition: color .2s ease;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--gold); }
.nav .btn { padding: 12px 26px; font-size: 16px; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 600px; display: flex; align-items: center;
  text-align: center; background: #282B30 url('img/sala-reunioes.jpg') center/cover no-repeat;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,22,30,.62), rgba(16,22,30,.72));
}
/* corte diagonal branco na base, como no original */
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 90px;
  background: #fff;
  clip-path: polygon(0 62%, 100% 0, 100% 100%, 0 100%);
}
.hero .wrap { position: relative; z-index: 1; padding: 96px 24px 120px; }
.hero h1 {
  font-family: 'Times New Roman', Georgia, serif; font-weight: 700;
  font-size: clamp(40px, 6.6vw, 84px); line-height: 1.1;
  color: var(--gold); margin-bottom: 14px; text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero__rule { width: min(520px, 80%); height: 1px; background: rgba(212,175,55,.75); margin: 0 auto 18px; }
.hero__sub {
  font-family: 'Times New Roman', Georgia, serif; font-style: italic; font-weight: 700;
  color: var(--gold); font-size: clamp(19px, 2.1vw, 26px); margin-bottom: 8px;
}
.hero__sub2 {
  font-family: 'Times New Roman', Georgia, serif; font-style: italic; font-weight: 700;
  color: #fff; font-size: 17px; margin-bottom: 34px;
}

/* ---------- serviços ---------- */
.section { padding: 76px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 74ch; margin: 0 auto 44px; text-align: center; }
.section__head h2 {
  font-family: 'Times New Roman', Georgia, serif; font-style: normal;
  font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 14px;
}
.section__head p { color: var(--text); }

.svcs { display: grid; grid-template-columns: repeat(3, 1fr); }
.svcs.glow { overflow: hidden; }
.svc { padding: 40px 32px; text-align: center; background: #fff; }
.svc--dark { background: var(--navy); color: #fff; }
.svc__icon { margin: 0 auto 22px; width: 34px; height: 34px; }
.svc__icon svg { width: 100%; height: 100%; fill: var(--gold); }
.svc h3 {
  font-family: 'Times New Roman', Georgia, serif; font-style: italic; font-weight: 700;
  font-size: 24px; margin-bottom: 16px; color: inherit;
}
.svc--dark h3 { color: #fff; }
.svc__tag { font-weight: 700; font-size: 14px; margin-bottom: 14px; }
.svc p { font-size: 13.5px; line-height: 1.75; margin: 0; }
.svc--dark p, .svc--dark .svc__tag { color: #fff; }
.svc:not(.svc--dark) p { color: var(--muted); }

/* ---------- citação: foto | painel dourado | painel escuro ---------- */
.quote { display: grid; grid-template-columns: 1fr 1.25fr 1fr; overflow: hidden; }
.quote__photo { background: url('img/dra-cheila.jpg') center/cover no-repeat; min-height: 400px; }
.quote__gold { background: var(--gold-grad); padding: 48px 42px; display: flex; flex-direction: column; justify-content: center; }
.quote__gold p {
  font-family: 'Times New Roman', Georgia, serif; color: #1E2E1E; color: #22303B;
  font-size: 20px; line-height: 1.5; margin-bottom: 12px;
}
.quote__gold cite { font-style: normal; color: #3A4A57; font-size: 13.5px; font-weight: 600; }
.quote__dark { background: var(--navy-card); padding: 44px 36px; }
.quote__dark h2 { color: #fff; font-size: 30px; margin-bottom: 20px; }
.quote__dark ul { list-style: none; margin: 0 0 22px; padding: 0; }
.quote__dark li { border-bottom: 1px solid rgba(255,255,255,.12); }
.quote__dark li a {
  display: block; padding: 10px 0; color: rgba(255,255,255,.88);
  text-decoration: none; font-size: 14px; transition: color .2s ease, padding-left .2s ease;
}
.quote__dark li a:hover { color: var(--gold); padding-left: 5px; }
.quote__dark > a.more { color: #fff; font-size: 14px; text-decoration: underline; }
.quote__dark > a.more:hover { color: var(--gold); }

/* ---------- testemunhos ---------- */
.tests { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; max-width: 940px; margin: 0 auto; }
.test { padding: 34px 30px; text-align: center; background: #fff; }
.test img.avatar { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px; }
.test h3 { font-size: 16px; margin-bottom: 12px; }
.test p { color: var(--muted); font-size: 14px; }
.test hr { border: 0; border-top: 1px solid var(--line); width: 180px; margin: 20px auto; }
.test img.stars { margin: 0 auto; height: 22px; width: auto; }

/* ---------- diferencial (mapa colado à esquerda) ---------- */
.diff { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.diff__map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }
.diff__body { background: var(--bg-alt); padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.diff__body h2 {
  font-family: 'Times New Roman', Georgia, serif; font-style: italic;
  font-size: 34px; margin-bottom: 18px;
}
.diff__body > p { color: var(--muted); max-width: 46ch; }
.feat { display: flex; gap: 12px; align-items: center; margin-top: 14px; }
.feat svg { width: 20px; height: 20px; fill: var(--navy); flex-shrink: 0; }
.feat span {
  font-family: 'Times New Roman', Georgia, serif; font-style: italic;
  font-size: 19px; color: #262626;
}
.diff__body .btn { align-self: flex-start; margin-top: 34px; }

/* ---------- CTA ---------- */
.cta { padding: 84px 0; text-align: center; }
.cta h2 { margin-bottom: 14px; }
.cta > .wrap > p { color: var(--muted); max-width: 62ch; margin: 0 auto 30px; }
.cta small { display: block; margin-top: 18px; font-weight: 700; font-size: 13px; color: #262626; }

/* ---------- rodapé ---------- */
.foot { display: grid; grid-template-columns: 1fr 1.6fr; }
/* fundo no azul do próprio logótipo: o logo funde-se com o painel */
.foot__brand {
  background: var(--navy-brand); padding: 64px 40px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.foot__brand img { width: 190px; margin: 0 auto 22px; }
.foot__brand p { color: rgba(255,255,255,.86); font-size: 13.5px; max-width: 34ch; margin: 0 auto; }
.foot__cols { background: var(--bg-alt); padding: 56px 48px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.foot h4 { font-family: 'Ropa Sans', sans-serif; font-size: 17px; color: #262626; margin-bottom: 14px; letter-spacing: .03em; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.foot ul a, .foot ul li { color: var(--muted); font-size: 13.5px; text-decoration: none; }
.foot ul a:hover { color: var(--gold); }
.foot__loc { display: flex; gap: 8px; align-items: flex-start; margin-top: 14px; }
.foot__loc svg { width: 16px; height: 16px; fill: var(--muted); flex-shrink: 0; margin-top: 4px; }
.foot__loc span { color: var(--muted); font-size: 13.5px; }
.social { display: flex; gap: 10px; margin-top: 20px; }
.social a {
  width: 34px; height: 34px; border-radius: 6px; background: var(--navy-card);
  display: grid; place-items: center; transition: background .2s ease;
}
.social a:hover { background: var(--gold); }
.social svg { width: 17px; height: 17px; fill: #fff; }
.foot__bar {
  background: var(--bar); color: #b9b9b9; font-size: 12.5px;
  padding: 12px 0;
}
.foot__bar .wrap { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.foot__bar a { color: #b9b9b9; text-decoration: none; }
.foot__bar a:hover { color: var(--gold); }

/* ---------- prova social do Google ---------- */
.rating {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 30px; background: #fff;
}
.rating b { font-size: 17px; color: #262626; }
.rating img { height: 18px; width: auto; }
.rating span { color: var(--muted); font-size: 13.5px; }

/* ---------- menu mobile (nativo, sem JS) ---------- */
.burger { display: none; margin-left: auto; }
.burger summary {
  list-style: none; cursor: pointer; width: 44px; height: 44px;
  display: grid; place-items: center; border: 1px solid var(--line); border-radius: 6px;
}
.burger summary::-webkit-details-marker { display: none; }
.burger summary svg { width: 22px; height: 22px; fill: var(--navy); }
.burger[open] .burger__panel { display: block; }
.burger__panel {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(0,0,0,.12); padding: 8px 24px 20px;
}
.burger__panel ul { list-style: none; margin: 0 0 14px; padding: 0; }
.burger__panel li { border-bottom: 1px solid var(--line); }
.burger__panel a {
  display: block; padding: 14px 2px; text-decoration: none; color: #1c1c1c;
  font-family: 'Ropa Sans', sans-serif; font-size: 18px;
}
.burger__panel .btn { width: 100%; margin-top: 14px; }

/* ---------- responsivo ---------- */
@media (max-width: 980px) {
  .nav { height: 76px; position: sticky; }
  .nav .wrap { position: static; }
  .nav__links { display: none; }
  .burger { display: block; }
  .nav > .wrap > .btn { display: none; }
  .nav__logo img { height: 52px; }
  .hero { min-height: 500px; }
  .hero::after { height: 50px; }
  .svcs, .tests, .diff, .foot, .foot__cols { grid-template-columns: 1fr; }
  .quote { grid-template-columns: 1fr; }
  .quote__photo { min-height: 320px; }
  .section, .cta { padding: 52px 0; }
  .diff__body, .foot__cols, .foot__brand { padding: 44px 28px; }
  .diff__map iframe { min-height: 300px; }
  .hero h1 { font-size: clamp(30px, 8.6vw, 46px); }
  .quote__gold, .quote__dark { padding: 34px 26px; }
  .svc { padding: 34px 26px; }
  .btn { width: auto; max-width: 100%; white-space: normal; text-align: center; }
  .foot__bar .wrap { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
}

@media (max-width: 480px) {
  .tests { gap: 22px; }
  .hero .wrap { padding: 68px 20px 90px; }
  .rating { flex-wrap: wrap; justify-content: center; }
}

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

/* ========================= páginas internas ========================= */
.pagehero {
  position: relative; padding: 74px 0 62px; text-align: center;
  background: #16232F url('img/sala-reunioes.jpg') center/cover no-repeat;
}
.pagehero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,16,24,.74), rgba(10,16,24,.84)); }
.pagehero .wrap { position: relative; z-index: 1; }
.pagehero h1 {
  font-family: 'Times New Roman', Georgia, serif; font-weight: 700;
  font-size: clamp(30px, 4.4vw, 52px); color: var(--gold); line-height: 1.15; margin-bottom: 12px;
}
.pagehero__sub {
  font-family: 'Times New Roman', Georgia, serif; font-style: italic;
  color: #fff; font-size: clamp(16px, 1.8vw, 20px); max-width: 62ch; margin: 0 auto;
}

.section + .section { padding-top: 0; }
.prose { max-width: 74ch; }
.prose h2 {
  font-family: 'Times New Roman', Georgia, serif; font-size: 30px;
  margin-bottom: 14px; margin-top: 8px;
}
.prose h2 + p { margin-top: 0; }
.prose p { color: var(--muted); }

.crumbs { font-size: 13px; color: var(--muted); }
.crumbs a { color: var(--gold-ink); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* cartões de link para serviços */
.lcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lcard {
  display: flex; flex-direction: column; gap: 6px;
  padding: 26px 24px; text-decoration: none; background: #fff;
  border: 1px solid var(--line); border-radius: 4px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .12s ease;
}
.lcard:hover { border-color: var(--gold-dim); box-shadow: 0 0 20px rgba(212,175,55,.28); transform: translateY(-2px); }
.lcard h3 {
  font-family: 'Times New Roman', Georgia, serif; font-style: italic;
  font-size: 20px; color: #262626;
}
.lcard p { color: var(--muted); font-size: 13.5px; margin: 0; }
.lcard__go { color: var(--gold-ink); font-family: 'Ropa Sans', sans-serif; font-size: 14px; margin-top: auto; padding-top: 8px; }

/* listas com visto */
.checks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.checks h3 { font-family: 'Ropa Sans', sans-serif; font-size: 20px; margin-bottom: 14px; }
.checks ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; }
.checks svg { width: 18px; height: 18px; fill: var(--gold-ink); flex-shrink: 0; margin-top: 5px; }
.checks span { color: var(--muted); font-size: 14.5px; }

/* caixa de preço */
.pricebox {
  display: flex; align-items: center; justify-content: space-between; gap: 26px;
  padding: 28px 34px; background: var(--bg-alt); flex-wrap: wrap;
}
.pricebox span { display: block; color: var(--muted); font-size: 13.5px; }
.pricebox b {
  font-family: 'Times New Roman', Georgia, serif; font-size: 42px;
  color: var(--navy); line-height: 1.1;
}
.pricebox__cta { text-align: right; }
.pricebox__cta p { color: var(--muted); font-size: 12.5px; margin: 10px 0 0; max-width: 46ch; }

/* tabelas de honorários */
.pricetables { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; }
.pricetable { background: #fff; padding: 26px 28px; }
.pricetable h3 { font-family: 'Ropa Sans', sans-serif; font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.pricetable table { width: 100%; border-collapse: collapse; }
.pricetable td { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.pricetable tr:last-child td { border-bottom: 0; }
.pricetable td.n { text-align: right; white-space: nowrap; font-weight: 600; color: #262626; }
.pricetable .per { font-weight: 400; color: var(--muted); font-size: 12.5px; }

/* contactos */
.contacto { display: grid; grid-template-columns: 1.35fr 1fr; gap: 34px; align-items: start; }
.contacto__form { background: #fff; padding: 34px; }
.contacto__form h2 { font-family: 'Ropa Sans', sans-serif; font-size: 24px; margin-bottom: 20px; }
.contacto__form label {
  display: block; font-size: 13.5px; font-weight: 600; color: #262626; margin: 16px 0 6px;
}
.contacto__form input[type=text],
.contacto__form input[type=email],
.contacto__form input[type=tel],
.contacto__form select,
.contacto__form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #C9CFD8; border-radius: 4px;
  font: inherit; font-size: 15px; color: #262626; background: #fff;
}
.contacto__form input:focus, .contacto__form select:focus, .contacto__form textarea:focus {
  outline: 2px solid var(--gold-ink); outline-offset: 1px; border-color: var(--gold-ink);
}
.contacto__form textarea { resize: vertical; }
.consent { display: flex !important; gap: 10px; align-items: flex-start; margin-top: 20px !important; font-weight: 400 !important; }
.consent input { margin-top: 4px; width: 17px; height: 17px; flex-shrink: 0; }
.consent span { color: var(--muted); font-size: 13px; line-height: 1.5; }
.consent a { color: var(--gold-ink); }
.contacto__form .btn { width: 100%; margin-top: 22px; border: 0; cursor: pointer; }
.form-note { color: var(--muted); font-size: 12.5px; margin-top: 14px; }

.contacto__info h3 { font-family: 'Ropa Sans', sans-serif; font-size: 21px; margin-bottom: 16px; }
.contacto__list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 14px; }
.contacto__list li { display: grid; gap: 2px; font-size: 15px; color: #262626; }
.contacto__list span { color: var(--muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; }
.contacto__list a { color: #262626; text-decoration: none; }
.contacto__list a:hover { color: var(--gold-ink); }
.contacto__map { margin-top: 24px; overflow: hidden; }
.contacto__map iframe { width: 100%; height: 260px; border: 0; display: block; }

/* marcações */
.booking { background: var(--bg-alt); padding: 40px; text-align: center; }
.booking h2 { font-family: 'Ropa Sans', sans-serif; font-size: 26px; margin-bottom: 10px; }
.booking p { color: var(--muted); }
.booking__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 22px 0 6px; }

@media (max-width: 980px) {
  .lcards { grid-template-columns: 1fr; }
  .contacto { grid-template-columns: 1fr; }
  .pricebox { flex-direction: column; align-items: flex-start; }
  .pricebox__cta { text-align: left; }
  .pagehero { padding: 52px 0 44px; }
}

/* ========================= listas, FAQs, passos, barra móvel ========================= */
.dots { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: 8px; }
.dots li { position: relative; padding-left: 20px; color: var(--muted); }
.dots li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

/* acordeão de perguntas */
.faqs { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq { border: 1px solid var(--line); border-radius: 4px; background: #fff; overflow: hidden; }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'Ropa Sans', sans-serif; font-size: 19px; color: #262626;
  transition: color .2s ease, background .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-ink); background: var(--bg-alt); }
.faq summary svg { width: 20px; height: 20px; fill: var(--gold-ink); flex-shrink: 0; transition: transform .25s ease; }
.faq[open] summary { color: var(--gold-ink); border-bottom: 1px solid var(--line); }
.faq[open] summary svg { transform: rotate(180deg); }
.faq__body { padding: 20px 24px 6px; max-width: none; }
.faq__body p, .faq__body li { font-size: 14.5px; }

/* passos numerados */
.steps__title { font-family: 'Times New Roman', Georgia, serif; font-size: 32px; text-align: center; margin-bottom: 34px; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: s; }
.steps li { display: flex; gap: 16px; align-items: flex-start; }
.step__n {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-family: 'Ropa Sans', sans-serif; font-size: 19px;
  background: var(--gold-btn); box-shadow: 0 6px 16px rgba(169,133,18,.28);
}
.steps h3 { font-family: 'Ropa Sans', sans-serif; font-size: 19px; margin-bottom: 4px; }
.steps p { color: var(--muted); font-size: 14px; margin: 0; }

/* barra de ação fixa no telemóvel */
.mobilebar { display: none; }
@media (max-width: 780px) {
  .mobilebar {
    display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.97); border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(0,0,0,.10);
  }
  .mobilebar__call {
    display: flex; align-items: center; gap: 7px; text-decoration: none;
    padding: 13px 16px; border: 1px solid var(--navy); border-radius: 30px;
    color: var(--navy); font-family: 'Ropa Sans', sans-serif; font-size: 16px;
  }
  .mobilebar__call svg { width: 17px; height: 17px; fill: var(--navy); }
  .mobilebar__cta { width: 100%; padding: 13px 18px; }
  body { padding-bottom: 78px; }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .faq summary { padding: 16px 18px; font-size: 17px; }
  .faq__body { padding: 16px 18px 4px; }
}

/* revelação suave ao entrar no ecrã */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); }
  .reveal.is-in {
    opacity: 1; transform: none;
    transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1);
  }
}
