/*
  Brand fonts vendored locally in assets/fonts/.
  Hubot Sans (GitHub, OFL 1.1) — titles and UI accents.
  Work Sans (Google Fonts, OFL 1.1, variable) — body text.
  No network requests at runtime.
*/
@font-face {
  font-family: "Hubot Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/HubotSans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Hubot Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/HubotSans-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Hubot Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/HubotSans-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Hubot Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/HubotSans-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Hubot Sans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/HubotSans-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "Hubot Sans";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/HubotSans-Black.woff2") format("woff2");
}

@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/WorkSans-variable-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/WorkSans-variable-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --color-pink: #fdb7e8;
  --color-pink-soft: #ffe4f5;
  --color-orange: #fc8d35;
  --color-orange-strong: #ff7100;
  --color-orange-soft: #ffe1c9;
  --color-yellow: #ffb300;
  --color-navy: #1d3f70;
  --color-bg: #fdfcfb;
  --color-surface: #e8e6e1;
  --color-ink: #000000;
  --color-text: #302c28;
  --color-muted: #6f6760;
  --color-border: rgba(48, 44, 40, 0.16);
  --color-white: #ffffff;

  --font-display: "Hubot Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Work Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-editorial: Georgia, "Times New Roman", Times, serif;

  --fs-hero: clamp(2.35rem, 5vw, 4.65rem);
  --fs-h2: clamp(2rem, 4.2vw, 3.25rem);
  --fs-h3: clamp(1.18rem, 2.2vw, 1.65rem);
  --fs-body: clamp(1rem, 1.1vw, 1.15rem);
  --fs-small: 0.88rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 5rem;
  --space-10: 6rem;
  --space-11: 8rem;
  --space-12: 10rem;

  --radius-sm: 14px;
  --radius-card: 24px;
  --radius-large: 34px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 70px rgba(74, 55, 37, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.section {
  padding-block: clamp(64px, 10vw, 128px);
}

.eyebrow {
  color: var(--color-orange-strong);
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.35rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: #df3bbd;
  box-shadow: none;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: #c92dac;
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding: 0.62rem 1.15rem;
  border-radius: 6px;
  background: var(--color-orange);
  box-shadow: none;
  color: var(--color-ink);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(48, 44, 40, 0.12);
  background: rgba(253, 252, 251, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-mark {
  position: relative;
  width: 22px;
  height: 16px;
  border-radius: 999px 999px 999px 0;
  background: linear-gradient(135deg, var(--color-orange-strong), var(--color-pink));
  transform: rotate(-28deg);
}

.brand-mark::after {
  position: absolute;
  right: -4px;
  bottom: -2px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-yellow);
  content: "";
}

.brand-logo {
  display: block;
  width: auto;
  height: 28px;
}

.hero {
  overflow: hidden;
  min-height: clamp(360px, 48vw, 620px);
  padding-block: clamp(48px, 7vw, 96px) clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at 82% 30%, rgba(253, 183, 232, 0.42), transparent 28%),
    linear-gradient(180deg, #fbf9f5 0%, #fff9f4 100%);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
  min-width: 0;
}

.hero-copy h1 {
  max-width: 22ch;
  margin-top: var(--space-3);
  color: var(--color-ink);
  font-family: var(--font-editorial);
  font-size: var(--fs-hero);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
  overflow-wrap: break-word;
}

.hero-copy h1 strong {
  font-weight: 700;
}

.hero-copy p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 1.15rem;
  color: #1f1f1f;
  font-size: clamp(1.1rem, 1.65vw, 1.65rem);
  line-height: 1.25;
}

.hero-copy .button {
  margin-top: 1.6rem;
}

.hero-button {
  gap: 0.65rem;
  min-height: 46px;
  padding-inline: 1.6rem;
}

.hero-visual {
  position: relative;
  min-height: 320px;
}

.hero-visual::before {
  position: absolute;
  inset: auto 0 0 4%;
  width: min(430px, 70vw);
  height: min(430px, 70vw);
  border-radius: 48% 52% 43% 57%;
  background: rgba(255, 255, 255, 0.72);
  filter: blur(1px);
  content: "";
}

.hero-visual img {
  position: relative;
  width: min(340px, 54vw);
  margin-inline: auto;
  filter: drop-shadow(0 18px 26px rgba(48, 44, 40, 0.08));
}

.partners {
  padding-block: 1.6rem 1.75rem;
  background: #ffffff;
  text-align: center;
}

.partners-inner > p,
.awards p {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 0.65rem;
}

.logo-strip img {
  max-width: clamp(60px, 9vw, 112px);
  max-height: 30px;
  object-fit: contain;
}

.text-logo {
  color: #1f1f1f;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.text-logo-tiktok {
  color: #222222;
}

.how {
  background: var(--color-orange);
}

.how.section {
  padding-block: clamp(42px, 6vw, 76px);
}

.section-heading {
  max-width: 760px;
  margin-inline: auto;
  min-width: 0;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2 {
  margin-top: var(--space-2);
  color: var(--color-ink);
  font-family: var(--font-editorial);
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.section-heading h2 .line {
  display: inline;
}

.section-heading p:not(.eyebrow) {
  margin-top: 0.65rem;
  color: #302c28;
  font-size: 0.98rem;
  line-height: 1.45;
}

.section-heading-dark .eyebrow,
.section-heading-dark p:not(.eyebrow),
.section-heading-dark h2 {
  color: var(--color-ink);
}

.how-cards {
  display: grid;
  gap: clamp(0.75rem, 2vw, 1.2rem);
  margin-top: clamp(1.5rem, 4vw, 2.4rem);
}

.process-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 0.8rem;
  border: 1px solid var(--color-ink);
  border-radius: 2px;
  background: #fff8ee;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.85);
}

.process-card img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  border-radius: 0;
  object-fit: cover;
}

.process-card h3 {
  margin-top: 0.75rem;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.process-card p {
  margin-top: 0.35rem;
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.callout-strip {
  padding-block: clamp(22px, 4vw, 38px);
  border-block: 1px solid var(--color-ink);
  background: linear-gradient(90deg, #fdb7e8, #fbd3ef 58%, #f8deec);
  text-align: center;
}

.callout-strip p {
  max-width: 900px;
  margin-inline: auto;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.7vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.ai-section {
  background: #fffdf8;
}

.ai-section.section {
  padding-block: clamp(52px, 7vw, 92px);
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.3rem;
}

.feature {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-text {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 4vw, 42px);
}

.feature-number {
  width: max-content;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--color-orange-soft);
  color: var(--color-orange-strong);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.feature h3 {
  margin-top: var(--space-4);
  color: var(--color-ink);
  font-family: var(--font-editorial);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.feature p:not(.feature-number) {
  max-width: 540px;
  margin-top: var(--space-4);
  color: var(--color-muted);
}

.feature-visual {
  display: grid;
  min-height: 250px;
  place-items: center;
  background: #fff8ef;
  border: 1px solid rgba(48, 44, 40, 0.14);
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center-action {
  margin-top: var(--space-7);
  text-align: center;
}

.personas {
  background: linear-gradient(180deg, #ffe2c8 0%, #ffdbe8 100%);
}

.personas.section {
  padding-block: clamp(72px, 8vw, 116px);
}

.personas .container {
  max-width: 1120px;
}

.personas .section-heading {
  max-width: none;
}

.personas .section-heading h2 {
  font-size: clamp(2.75rem, 5.4vw, 4.9rem);
  line-height: 0.98;
}

.personas .section-heading p:not(.eyebrow) {
  max-width: 920px;
  margin-top: 1.15rem;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.45;
}

.persona-grid {
  display: grid;
  gap: clamp(1.3rem, 2.4vw, 2rem);
  max-width: 880px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

.persona-card {
  min-height: 156px;
  padding: clamp(1.15rem, 2vw, 1.5rem);
  border: 1px solid rgba(48, 44, 40, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(91, 67, 45, 0.04);
}

.persona-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(48, 44, 40, 0.12);
  border-radius: 12px;
  background: #f4e8df;
}

.persona-icon img {
  width: 28px;
  height: 28px;
  opacity: 0.72;
}

.persona-card h3 {
  margin-top: 1rem;
  color: var(--color-ink);
  font-family: var(--font-editorial);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.persona-card p {
  margin-top: 0.75rem;
  color: #26211d;
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  line-height: 1.28;
}

.comparison {
  background: #fbf9f5;
}

.comparison.section {
  padding-block: clamp(72px, 8vw, 112px);
}

.comparison .container {
  max-width: 1180px;
}

.comparison .section-heading h2 {
  max-width: 1120px;
  margin-inline: auto;
  font-size: clamp(2.35rem, 3.5vw, 3.1rem);
  line-height: 0.98;
  text-transform: none;
}

.comparison-grid {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.35rem);
  max-width: 1110px;
  margin: clamp(2.75rem, 5vw, 4rem) auto 0;
}

.comparison-card {
  min-height: clamp(440px, 45vw, 560px);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1.5px solid #a54348;
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: none;
}

.comparison-card.with {
  border-color: #15927f;
  background: var(--color-white);
}

.comparison-card h3 {
  color: var(--color-ink);
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  text-align: center;
}

.comparison-card h3::after {
  display: block;
  width: 100%;
  height: 1px;
  margin: clamp(1.15rem, 2vw, 1.8rem) auto 0;
  background: rgba(48, 44, 40, 0.16);
  content: "";
}

.comparison-card ul {
  display: grid;
  gap: clamp(1rem, 1.7vw, 1.35rem);
  margin-top: clamp(1.5rem, 2.5vw, 2.2rem);
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 3rem;
  color: #2c2824;
  font-size: clamp(1rem, 1.35vw, 1.32rem);
  line-height: 1.42;
}

.comparison-card li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
}

.without li::before {
  background: #ef5b4f;
  content: "×";
}

.with li::before {
  background: #36a66a;
  content: "✓";
}

.awards {
  padding-block: 2rem;
  border-top: 1px solid rgba(48, 44, 40, 0.08);
  background: #fff6ed;
  text-align: center;
}

.award-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.award-list span {
  display: grid;
  min-height: 84px;
  place-items: center;
  padding: var(--space-4);
  border: 1px solid rgba(48, 44, 40, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-footer {
  padding-block: 2rem;
  background: var(--color-pink);
  text-align: center;
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: var(--space-3);
}

.footer-brand {
  font-size: 1.35rem;
}

.footer-brand .brand-logo {
  height: 52px;
}

.site-footer p {
  color: var(--color-text);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.62);
}

.social-links img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
}

@media (min-width: 640px) {
  .how-cards,
  .persona-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .award-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.75fr);
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-visual img {
    width: min(350px, 35vw);
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .header-inner {
    min-height: 58px;
  }

  .hero-grid {
    gap: clamp(3rem, 8vw, 7rem);
  }

  .how-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .persona-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-card:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 520px) {
  .container {
    padding-inline: 18px;
  }

  .header-inner {
    min-height: 50px;
  }

  .button-small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 2.2rem 1.8rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .hero-copy {
    max-width: 100%;
    z-index: 2;
  }

  .hero-copy h1 {
    max-width: 330px;
    font-size: clamp(2rem, 9.6vw, 2.7rem);
    letter-spacing: -0.04em;
    line-height: 1.03;
  }

  .hero-copy h1 span {
    display: inline;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 330px;
    font-size: 1rem;
    line-height: 1.32;
  }

  .hero-visual {
    overflow: hidden;
    min-height: 260px;
    margin-top: 0;
    isolation: isolate;
    z-index: 0;
  }

  .hero-visual::before {
    inset: auto 50% 0 auto;
    width: 270px;
    height: 270px;
    transform: translateX(50%);
  }

  .hero-visual img {
    width: min(250px, 68vw);
    max-height: 300px;
    margin-top: 0;
    object-fit: contain;
  }

  .partners-inner > p,
  .awards p {
    max-width: 280px;
    margin-inline: auto;
    line-height: 1.3;
  }

  .logo-strip {
    gap: 0.8rem 0.9rem;
  }

  .logo-strip img {
    max-width: 58px;
    max-height: 24px;
  }

  .text-logo {
    font-size: 0.88rem;
  }

  .section-heading h2 {
    font-size: clamp(1.85rem, 7.2vw, 2.15rem);
    letter-spacing: -0.03em;
    line-height: 1.06;
  }

  .process-card {
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.82);
  }
}

/* Legal pages (/termos, /privacidade) */
.legal {
  padding-block: clamp(40px, 6vw, 88px);
  background:
    radial-gradient(circle at 86% 6%, rgba(253, 183, 232, 0.32), transparent 26%),
    linear-gradient(180deg, #fbf9f5 0%, #fff9f4 100%);
}

.legal .container {
  max-width: 880px;
}

.legal-title {
  margin-top: var(--space-2);
  color: var(--color-ink);
  font-family: var(--font-editorial);
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  margin-top: var(--space-4);
  color: var(--color-muted);
  font-size: var(--fs-small);
}

.legal-intro {
  margin-top: var(--space-6);
  font-size: 1.05rem;
  line-height: 1.6;
}

.legal-intro p + p {
  margin-top: var(--space-4);
}

.legal-section {
  margin-top: var(--space-7);
}

.legal-section h2 {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.legal-section p {
  margin-top: var(--space-3);
  color: var(--color-text);
  line-height: 1.6;
}

.legal-list {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-3);
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-text);
  line-height: 1.55;
}

.legal-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0.2rem;
  width: 7px;
  height: 7px;
  border-radius: var(--radius-pill);
  background: var(--color-orange-strong);
  content: "";
}

.legal-back {
  margin-top: var(--space-7);
}

.legal-back a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-orange-strong);
  font-family: var(--font-display);
  font-weight: 600;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2) var(--space-4);
  margin-top: var(--space-2);
  font-size: var(--fs-small);
}

.footer-legal a {
  color: var(--color-text);
  transition: color 160ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--color-orange-strong);
}
