/* KeeperSearch — folha de estilos principal */

:root {
  --ink: #200e0e;
  --ink-80: rgba(32, 14, 14, 0.8);
  --red: #ed212d;
  --red-deep: #c41722;
  --white: #ffffff;
  --cream: #f8f0ec;
  --rose: #f3e7e2;
  --apricot: #fde3d6;
  --line: #d2cfcf;
  --espresso: #202020;
  --muted: #6a5551;
  --muted-dark: #cbb9b4;

  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;

  --radius: 2px;
  --container: 1280px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(56px, 8vw, 96px);
  --header-h: 64px;

  --text-caption: 11px;
  --text-small: 13px;
  --text-body: 16px;
  --text-h3: clamp(19px, 2.2vw, 22px);
  --text-h2: clamp(27px, 4vw, 42px);
  --text-display: clamp(34px, 6.4vw, 62px);
}

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

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: var(--text-small);
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Elementos partilhados ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-caption);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
}
.eyebrow--light { color: var(--apricot); }

.section__head { max-width: 780px; margin-bottom: clamp(28px, 4vw, 48px); }
.section__title { font-size: var(--text-h2); }
.section__lead {
  margin-top: 16px;
  max-width: 66ch;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
}
.section__lead--light { color: var(--apricot); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.btn:hover { background: #3a1c1c; border-color: #3a1c1c; }
.btn svg { flex: none; }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--rose); border-color: var(--ink); }

.btn--ondark { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn--ondark:hover { background: var(--apricot); border-color: var(--apricot); }

.btn--ghostlight { background: transparent; border-color: rgba(255, 255, 255, 0.65); color: var(--white); }
.btn--ghostlight:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }

.tag {
  display: inline-block;
  padding: 5px 9px;
  border-radius: var(--radius);
  background: var(--rose);
  color: var(--ink);
  font-size: var(--text-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.tag--onphoto { background: var(--white); }
.tag--red { background: var(--red-deep); color: var(--white); }

.rating { display: inline-flex; align-items: center; gap: 7px; }
.rating__stars { display: inline-flex; gap: 2px; }
.rating__stars svg { display: block; }
.rating__value { font-size: var(--text-small); font-weight: 600; }

/* ---------- 1. Cabeçalho ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header__strip {
  background: var(--ink);
  color: var(--apricot);
}
.header__strip-text {
  display: block;
  padding: 7px 0;
  text-align: center;
  font-size: var(--text-caption);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.logo__accent { color: var(--red); }
.logo--footer { color: var(--cream); font-size: 24px; }

.nav__list {
  display: none;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
}
.nav__link {
  text-decoration: none;
  font-size: var(--text-small);
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.nav__link:hover { border-bottom-color: var(--ink); }

.burger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: var(--text-small);
  cursor: pointer;
}

.nav__panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.nav__panel.is-open { display: block; }
.nav__panel-list { padding: 10px 0 22px; }
.nav__panel-list li { border-bottom: 1px solid var(--line); }
.nav__panel-list a {
  display: block;
  padding: 13px 0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .nav__list { display: flex; }
  .burger { display: none; }
  .nav__panel { display: none !important; }
}

/* ---------- 2. Hero ---------- */

.hero {
  position: relative;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 88vh;
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 80% at 50% 46%, rgba(32, 14, 14, 0.5) 0%, rgba(32, 14, 14, 0.72) 62%, rgba(32, 14, 14, 0.82) 100%),
    linear-gradient(180deg, rgba(32, 14, 14, 0.34) 0%, rgba(32, 14, 14, 0.12) 38%, rgba(32, 14, 14, 0.58) 100%);
}
.hero__inner {
  width: 100%;
  padding-top: clamp(72px, 12vw, 132px);
  padding-bottom: clamp(48px, 7vw, 96px);
}
.hero__title {
  font-size: var(--text-display);
  max-width: 17ch;
  margin-inline: auto;
  letter-spacing: -0.03em;
}
.hero__accent {
  color: var(--apricot);
  white-space: nowrap;
  display: inline-block;
  border-bottom: 0.07em solid var(--red);
  padding-bottom: 0.02em;
}
.hero__text {
  margin: 22px auto 0;
  max-width: 58ch;
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.92);
}
.hero__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.hero__metrics {
  margin: clamp(36px, 6vw, 64px) auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  padding-top: 22px;
  display: grid;
  gap: 20px 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
  text-align: center;
}
@media (min-width: 700px) {
  .hero__metrics { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.hero__metric { min-width: 0; }
.hero__metric-label {
  font-size: var(--text-caption);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--apricot);
}
.hero__metric-value {
  margin: 6px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  color: var(--white);
}

/* ---------- 3. Catálogo ---------- */

.catalog { padding-block: var(--section); background: var(--white); }
.catalog__list { display: grid; gap: 18px; }

.catalog__card {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.catalog__bg { position: absolute; inset: 0; z-index: -2; }
.catalog__bg img { width: 100%; height: 100%; object-fit: cover; }
.catalog__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(32, 14, 14, 0.15) 0%, rgba(32, 14, 14, 0.9) 78%),
    linear-gradient(90deg, rgba(32, 14, 14, 0.88) 0%, rgba(32, 14, 14, 0.2) 78%);
}
.catalog__card--mirror::after {
  background:
    linear-gradient(180deg, rgba(32, 14, 14, 0.15) 0%, rgba(32, 14, 14, 0.9) 78%),
    linear-gradient(270deg, rgba(32, 14, 14, 0.88) 0%, rgba(32, 14, 14, 0.2) 78%);
}

.catalog__body {
  width: 100%;
  max-width: 620px;
  padding: clamp(20px, 3.4vw, 34px);
}
.catalog__card--mirror .catalog__body { margin-left: auto; }
@media (min-width: 900px) {
  .catalog__card--mirror .catalog__body { text-align: right; }
  .catalog__card--mirror .catalog__meta,
  .catalog__card--mirror .catalog__top { justify-content: flex-end; }
}

.catalog__top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.catalog__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.catalog__index {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--apricot);
  letter-spacing: 0.08em;
}
.catalog__title { font-size: clamp(26px, 3.6vw, 40px); }
.catalog__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 14px;
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.86);
}
.catalog__meta-item { display: inline-flex; align-items: center; gap: 6px; }
.catalog__sep { opacity: 0.5; }
.catalog__desc { margin-top: 16px; font-size: 15px; color: rgba(255, 255, 255, 0.9); }
.catalog__actions { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.catalog__card--mirror .catalog__actions { justify-content: flex-start; }
@media (min-width: 900px) {
  .catalog__card--mirror .catalog__actions { justify-content: flex-end; }
}

/* ---------- 4. Testadas pela redação ---------- */

.tested { padding-block: var(--section); background: var(--cream); }
.tested__list { display: grid; gap: clamp(40px, 6vw, 80px); }
.tested__item { display: grid; gap: clamp(20px, 3vw, 40px); }
@media (min-width: 900px) {
  .tested__item { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
  .tested__item--reverse .tested__media { order: 2; }
}

.tested__media { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
.tested__media img { width: 100%; border: 1px solid var(--ink); border-radius: var(--radius); }
.tested__media img:first-child { grid-column: 1 / -1; }

.tested__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.tested__title { font-size: var(--text-h2); }
.tested__dev { margin-top: 10px; font-size: var(--text-small); color: var(--muted); }
.tested__text { margin-top: 16px; color: var(--muted); }
.tested__facts { margin-top: 20px; display: grid; gap: 12px; }
.tested__facts li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.tested__facts svg { margin-top: 3px; color: var(--red); }
.tested__actions { margin-top: 22px; }

/* ---------- 5. Sobre / modelo editorial ---------- */

.about { padding-block: var(--section); background: var(--white); }
.about__grid { display: grid; gap: clamp(24px, 4vw, 56px); }
@media (min-width: 900px) { .about__grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.about__figure { margin: 0; }
.about__figure img { width: 100%; border: 1px solid var(--ink); border-radius: var(--radius); }
.about__caption { margin-top: 10px; font-size: var(--text-caption); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.about__text p + p { margin-top: 14px; }
.about__text { color: var(--muted); }
.about__panel {
  margin-top: 26px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 2.6vw, 26px);
}
.about__panel h3 { font-size: var(--text-h3); }
.about__points { margin-top: 16px; display: grid; gap: 14px; }
.about__points li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
}
.about__points svg { margin-top: 3px; color: var(--red); }
.about__note { margin-top: 18px; font-size: var(--text-small); color: var(--muted); }
.about__note a { color: var(--ink); }

/* ---------- 6. Como começar ---------- */

.steps { padding-block: var(--section); background: var(--rose); }
.steps__grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); }
@media (min-width: 700px) { .steps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps__grid { grid-template-columns: repeat(4, 1fr); } }
.steps__item { background: var(--white); padding: clamp(20px, 2.6vw, 28px); }
.steps__num {
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
  color: var(--red);
}
.steps__icon { margin-top: 18px; color: var(--ink); }
.steps__title { margin-top: 14px; font-size: var(--text-h3); }
.steps__text { margin-top: 10px; font-size: 15px; color: var(--muted); }

/* ---------- 7. Galeria ---------- */

.gallery { padding-block: var(--section); background: var(--white); }
.gallery__grid { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .gallery__grid { grid-template-columns: repeat(4, 1fr); } }
.gallery__item { margin: 0; }
.gallery__item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
}
.gallery__cap { margin-top: 8px; font-size: var(--text-caption); letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* ---------- 8. Números ---------- */

.stats {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background: var(--ink);
  padding-block: var(--section);
}
.stats__media { position: absolute; inset: 0; z-index: -2; }
.stats__media img { width: 100%; height: 100%; object-fit: cover; }
.stats::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(32, 14, 14, 0.8), rgba(32, 14, 14, 0.9));
}
.stats__grid { display: grid; gap: 28px; margin-top: 8px; }
@media (min-width: 640px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stats__item { border-top: 1px solid rgba(255, 255, 255, 0.35); padding-top: 18px; }
.stats__num { font-family: var(--font-serif); font-size: clamp(40px, 6vw, 62px); line-height: 1; }
.stats__label { margin-top: 12px; font-size: var(--text-small); color: var(--apricot); }

/* ---------- 9. Opiniões ---------- */

.reviews { padding-block: var(--section); background: var(--cream); }
.reviews__grid { display: grid; gap: 16px; }
@media (min-width: 800px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }
.reviews__card {
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(18px, 2.4vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reviews__quote { font-size: 15px; }
.reviews__person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.reviews__avatar {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--rose);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.04em;
}
.reviews__name { font-size: 15px; font-weight: 600; }
.reviews__role { font-size: var(--text-small); color: var(--muted); }

/* ---------- 10. FAQ ---------- */

.faq { padding-block: var(--section); background: var(--white); }
.faq__list { border-top: 1px solid var(--line); max-width: 900px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  background: transparent;
  border: 0;
  text-align: left;
  font-size: clamp(16px, 1.9vw, 19px);
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
}
.faq__icon { flex: none; transition: transform 0.2s ease; }
.faq__item--open .faq__icon { transform: rotate(45deg); }
.faq__panel { display: none; padding-bottom: 22px; max-width: 72ch; color: var(--muted); font-size: 15px; }
.faq__item--open .faq__panel { display: block; }

/* ---------- 11. Subscrição ---------- */

.subscribe {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background: var(--ink);
  padding-block: var(--section);
}
.subscribe__media { position: absolute; inset: 0; z-index: -2; }
.subscribe__media img { width: 100%; height: 100%; object-fit: cover; }
.subscribe::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(32, 14, 14, 0.95) 0%, rgba(32, 14, 14, 0.86) 60%, rgba(32, 14, 14, 0.78) 100%);
}
.subscribe__grid { display: grid; gap: clamp(28px, 4vw, 56px); }
@media (min-width: 900px) { .subscribe__grid { grid-template-columns: 1fr 1fr; align-items: start; } }

.form { display: grid; gap: 14px; }
.form .btn { justify-self: start; }
.form__row { display: grid; gap: 6px; }
.form__label { font-size: var(--text-small); color: var(--apricot); }
.form__input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
}
.form__input:focus-visible { outline: 2px solid var(--apricot); outline-offset: 2px; }

.form__consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.88);
}
.form__consent input {
  width: 18px; height: 18px;
  margin: 2px 0 0;
  accent-color: var(--red);
}
.form__consent a { color: var(--white); }
.form__note { font-size: var(--text-caption); color: rgba(255, 255, 255, 0.7); }

.form__success {
  display: none;
  margin-top: 4px;
  padding: 14px 16px;
  background: var(--apricot);
  color: var(--ink);
  border-radius: var(--radius);
  font-size: 15px;
}
.form__success.is-visible { display: block; }

.subscribe__points { margin-top: 22px; display: grid; gap: 12px; }
.subscribe__points li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.subscribe__points svg { margin-top: 3px; color: var(--apricot); }

/* ---------- 12. Rodapé ---------- */

.footer { background: var(--ink); color: var(--cream); padding-block: clamp(44px, 6vw, 72px); }
.footer__grid { display: grid; gap: 32px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer__about { font-size: var(--text-small); color: var(--muted-dark); margin-top: 14px; max-width: 34ch; }
.footer__title {
  font-size: var(--text-caption);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--apricot);
  margin-bottom: 14px;
}
.footer__links { display: grid; gap: 9px; }
.footer__links a { font-size: var(--text-small); text-decoration: none; color: var(--cream); }
.footer__links a:hover { text-decoration: underline; }
.footer__mail { font-size: var(--text-small); }
.footer__mail a { color: var(--cream); }
.footer__bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(248, 240, 236, 0.22);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  font-size: var(--text-caption);
  color: var(--muted-dark);
}
.footer :focus-visible { outline-color: var(--apricot); }
.subscribe :focus-visible { outline-color: var(--apricot); }
.hero :focus-visible { outline-color: var(--apricot); }
.stats :focus-visible { outline-color: var(--apricot); }
.catalog__card :focus-visible { outline-color: var(--apricot); }

/* ---------- Páginas legais ---------- */

.page { padding-block: var(--section); background: var(--white); }
.page__head { max-width: 780px; margin-bottom: 34px; }
.page__title { font-size: var(--text-h2); }
.page__updated { margin-top: 14px; font-size: var(--text-small); color: var(--muted); }
.page__back { margin-top: 22px; }
.prose { max-width: 78ch; }
.prose h2 { font-size: var(--text-h3); margin-top: 34px; }
.prose h3 { font-size: 17px; margin-top: 24px; }
.prose p { margin-top: 12px; color: var(--muted); }
.prose ul { margin-top: 12px; display: grid; gap: 9px; }
.prose ul li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--muted);
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--red);
}
.prose a { color: var(--ink); }
.prose table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: var(--text-small); }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.prose th { background: var(--cream); font-weight: 600; }

/* ---------- Banner de cookies / botão subir ---------- */

.cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--ink);
}
.cookie.is-visible { display: block; }
.cookie__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  padding-block: 16px;
}
.cookie__text { font-size: var(--text-small); max-width: 68ch; color: var(--ink); }
.cookie__text a { color: var(--ink); }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__actions .btn { padding: 10px 18px; font-size: var(--text-small); }

.totop {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 80;
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
}
.totop.is-visible { display: inline-flex; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
