:root {
  --color-ink: #090e1a;
  --color-navy: #111a2a;
  --color-slate: #1b273a;
  --color-gold: #d9af3b;
  --color-gold-light: #f1cf67;
  --color-ivory: #f7f6f1;
  --color-text: #d7dce5;
  --color-muted: #9aa6b9;
  --color-success: #25d366;
  --color-border: #2c384b;
  --shadow: 0 18px 38px rgba(2, 6, 14, 0.4);
  --radius-sm: 12px;
  --radius-lg: 18px;
  --container: 1200px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  min-height: 100vh;
  color: var(--color-text);
  font-family: var(--font-sans);
  background: var(--color-ink);
  background-image: radial-gradient(circle at 10% 16%, rgba(26, 39, 57, 0.9), transparent 44%),
    radial-gradient(circle at 84% 22%, rgba(14, 23, 38, 0.8), transparent 38%),
    radial-gradient(circle at 75% 74%, rgba(217, 175, 59, 0.05), transparent 50%),
    linear-gradient(165deg, #070b16 0%, #080f1c 30%, #111a2a 100%);
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
label {
  line-height: 1.6;
  color: var(--color-text);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-ivory);
}

h1 {
  font-size: clamp(2.7rem, 5.5vw, 5.75rem);
  line-height: 1.02;
  text-wrap: balance;
  max-width: 20ch;
}

h1 span {
  color: var(--color-gold);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: clamp(68px, 8vw, 98px) 0;
}

.section-copy {
  max-width: 70ch;
}

.section-elevated {
  background: rgba(11, 18, 32, 0.6);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.eyebrow {
  color: var(--color-gold);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 8px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-gold);
  color: var(--color-ink);
  padding: 12px 18px;
  font-weight: 800;
  z-index: 999;
}

.skip-link:focus {
  left: 14px;
  top: 14px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
}

.icon {
  width: 1.05rem;
  height: 1.05rem;
  vertical-align: middle;
  flex: 0 0 auto;
}

.button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.94rem;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button .icon {
  width: 1.15rem;
  height: 1.15rem;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 3px solid rgba(241, 207, 103, 0.45);
  outline-offset: 3px;
}

.button-primary {
  background: var(--color-gold);
  color: #0a1020;
  border-color: #d9af3b;
  box-shadow: 0 10px 20px rgba(217, 175, 59, 0.27);
}

.button-primary:hover {
  background: var(--color-gold-light);
}

.button-secondary {
  background: transparent;
  color: var(--color-gold);
  border-color: rgba(217, 175, 59, 0.5);
}

.button-secondary:hover {
  background: rgba(217, 175, 59, 0.16);
}

.text-link {
  color: var(--color-gold-light);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.text-link:hover {
  color: var(--color-gold);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 70;
  background: linear-gradient(to bottom, rgba(7, 10, 20, 0.68), rgba(7, 10, 20, 0));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 11, 22, 0.94);
  border-color: rgba(43, 56, 75, 0.86);
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 244px;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 47px;
  aspect-ratio: 1;
  object-fit: contain;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.17rem;
  color: var(--color-gold);
}

.brand-text small {
  color: var(--color-muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.menu-toggle {
  margin-left: auto;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-ivory);
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  font-weight: 700;
  position: relative;
}

.site-nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  border-radius: 4px;
  transition: width 0.2s ease;
  margin-top: 5px;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.header-button {
  white-space: nowrap;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 100vh, 900px);
  display: grid;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  width: min(44vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.18;
  pointer-events: none;
  z-index: -2;
}

.hero-orb-1 {
  top: -12%;
  right: -11%;
  background: radial-gradient(circle, #d9af3b, #d9af3b00 58%);
}

.hero-orb-2 {
  left: -16%;
  bottom: -18%;
  width: min(40vw, 460px);
  background: radial-gradient(circle, #24406f, #24406f00 58%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.28;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

.hero-copy {
  grid-column: 1 / span 7;
  min-width: 0;
}

.hero-copy h1 {
  max-width: 100%;
  font-size: clamp(3rem, 4.8vw, 4.5rem);
  text-wrap: pretty;
}

.hero-copy h1 span {
  display: block;
  white-space: normal;
}

.hero-copy p {
  max-width: 70ch;
}

.hero-visual {
  grid-column: 8 / -1;
  position: relative;
  min-width: 0;
  align-self: center;
  height: clamp(440px, 48vw, 620px);
  min-height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(217, 175, 59, 0.12);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: 66% 50%;
  filter: brightness(0.7);
}

.hero-gear {
  position: absolute;
  display: grid;
  place-items: center;
  color: rgba(217, 175, 59, 0.15);
  width: clamp(130px, 16vw, 190px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.09s ease-out;
  will-change: transform;
}

.hero-gear svg {
  width: 68%;
  height: 68%;
}

.hero-gear-1 {
  top: 10%;
  left: 55%;
  transform: translate3d(0, 0, 0);
}

.hero-gear-2 {
  width: clamp(76px, 10vw, 120px);
  right: 4%;
  bottom: 18%;
  color: rgba(217, 175, 59, 0.1);
}

.hero-gear-3 {
  width: clamp(90px, 12vw, 130px);
  left: -9%;
  bottom: -6%;
  color: rgba(217, 175, 59, 0.08);
}

.hero-copy .benefits-list {
  margin: 16px 0 22px;
  padding-left: 17px;
  display: grid;
  gap: 9px;
}

.hero-copy .benefits-list li {
  color: var(--color-ivory);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 20px 0 16px;
}

.hero-metrics article {
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(16, 25, 42, 0.84);
}

.hero-metrics .metric {
  margin: 0;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}

.hero-metrics span {
  color: var(--color-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.hero-copy .note {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.hero-watermark {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: min(110px, 25%);
  opacity: 0.16;
  pointer-events: none;
}

.hero-watermark img {
  filter: drop-shadow(0 0 0 #f1cf67);
}

.trust {
  text-align: center;
}

.trust h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.trust p {
  margin: 0;
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.brand-chips span {
  border: 1px solid rgba(217, 175, 59, 0.35);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--color-gold-light);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.86rem;
  background: rgba(217, 175, 59, 0.09);
}

.diferenciais-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card,
.service-card,
.process-card,
.testimonial-card,
.faq-item,
.lead-form,
.coverage-card,
.faq-answer,
.coverage-list,
.image-card,
.process-visual {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(15, 24, 39, 0.76);
}

.feature-card,
.service-card,
.process-card,
.coverage-card,
.testimonial-card {
  padding: 24px;
}

.feature-card {
  display: grid;
  gap: 10px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(217, 175, 59, 0.18);
  color: var(--color-gold);
  margin: 0;
  font-weight: 800;
  font-size: 1rem;
}

.feature-card-wide {
  grid-column: 1 / -1;
}

.section-split {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}

.image-card,
.coverage-card {
  overflow: hidden;
}

.image-card img,
.coverage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 50%;
}

.services-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.services-grid .service-card h3 {
  margin-bottom: 8px;
}

.services-grid .service-card p,
.process-card p {
  margin: 0;
}

.inline {
  margin-top: 24px;
}

.process-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-card {
  position: relative;
  display: grid;
  gap: 6px;
}

.process-card > span {
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 2rem;
  margin: 0;
}

.process-card::after {
  content: "";
  position: absolute;
  top: 22px;
  right: -8px;
  height: 2px;
  width: 16px;
  background: linear-gradient(to right, rgba(217, 175, 59, 0.7), transparent);
}

.process-card:last-child::after {
  display: none;
}

.process-visual {
  margin-top: 24px;
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow);
}

.process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 40%;
}

.testimonials {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.stars {
  color: var(--color-gold);
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.testimonial-name {
  margin-bottom: 0;
  color: var(--color-muted);
  margin-top: 14px;
}

.coverage-list {
  list-style: none;
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  padding: 0;
}

.coverage-list li {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: rgba(17, 26, 42, 0.75);
}

.coverage-card {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.coverage-card img {
  height: 58%;
  border-bottom: 1px solid var(--color-border);
}

.coverage-card > div {
  padding: 18px;
}

.faq-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.faq-item button {
  display: grid;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border: none;
  background: rgba(16, 26, 42, 0.9);
  color: var(--color-ivory);
  padding: 14px 16px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-family: var(--font-sans);
  border-radius: 12px;
}

.faq-item button:focus-visible {
  outline: 3px solid rgba(241, 207, 103, 0.45);
  outline-offset: 3px;
}

.faq-item button::after {
  content: "+";
  justify-self: end;
  color: var(--color-gold);
}

.faq-item.is-open button::after {
  content: "−";
}

.faq-answer {
  margin: 0;
  overflow: hidden;
  padding: 0 16px 16px;
  color: #d8dde7;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.faq-item:not(.is-open) .faq-answer {
  display: none;
}

.lead-form {
  margin-top: 18px;
  background: rgba(17, 26, 42, 0.75);
  padding: 18px;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  font-size: 0.9rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #354766;
  border-radius: 10px;
  background: #081121;
  color: var(--color-text);
  padding: 11px 12px;
  font-size: 1rem;
  font-family: var(--font-sans);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(217, 175, 59, 0.5);
  outline-offset: 2px;
}

.form-actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

#form-feedback {
  margin: 0;
  min-height: 1.4rem;
  color: var(--color-muted);
}

#form-feedback.is-success {
  color: var(--color-success);
}

#form-feedback.is-error {
  color: #ffb4ad;
}

.cta-band {
  margin-top: 24px;
  position: relative;
  background: linear-gradient(155deg, rgba(17, 26, 42, 0.8), rgba(9, 14, 26, 0.8));
  border-top: 1px solid rgba(217, 175, 59, 0.4);
  text-align: center;
}

.cta-inner {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.cta-band .button {
  margin-top: 10px;
}

.cta-band p {
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 40px 0 28px;
  background: #050912;
}

.footer-grid {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 22px;
}

.footer-grid div {
  min-width: 0;
}

.brand-tag {
  font-family: var(--font-display);
  margin: 0 0 8px;
  font-size: 1.3rem;
  color: var(--color-gold);
}

.footer-title {
  color: var(--color-gold);
  margin-bottom: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.77rem;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: var(--color-text);
}

.copyright {
  margin: 22px 0 0;
  color: var(--color-muted);
  text-align: center;
  font-size: 0.86rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  min-height: 52px;
  border-radius: 999px;
  padding: 11px 16px;
  background: var(--color-success);
  color: #06121e;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
  box-shadow: 0 10px 28px rgba(24, 199, 101, 0.26);
}

.whatsapp-float span {
  padding-top: 1px;
}

.whatsapp-float .icon {
  width: 1.2rem;
  height: 1.2rem;
}

.whatsapp-float:hover {
  background: #22be61;
}

#webhook-sink {
  width: 0;
  height: 0;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html:not(.has-js) .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1140px) {
  .container,
  .footer-grid {
    width: min(var(--container), calc(100% - 32px));
  }

  .hero-grid,
  .diferenciais-grid {
    gap: 18px;
  }

  .hero-copy {
    grid-column: 1 / span 7;
  }

  .hero-visual {
    align-self: start;
    height: clamp(390px, 44vw, 500px);
    min-height: 390px;
  }

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

  .feature-card-wide {
    grid-column: 1 / -1;
  }

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

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

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .process-card::after {
    right: auto;
    bottom: -8px;
    left: 26px;
    top: auto;
    height: 16px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(217, 175, 59, 0.7), transparent);
  }

  .process-card:nth-child(2)::after,
  .process-card:nth-child(4)::after {
    display: none;
  }

  .process-card:nth-child(3)::after {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 9vw, 4rem);
  }

  .section-split {
    grid-template-columns: 1fr;
  }

  .coverage-card img {
    height: 45%;
  }
}

@media (max-width: 920px) {
  .brand {
    width: auto;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    right: 16px;
    width: min(250px, calc(100vw - 32px));
    background: rgba(10, 16, 28, 0.94);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    gap: 4px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-toggle {
    margin-left: auto;
    display: inline-flex;
  }

  .header-button {
    display: none;
  }

  .nav-inner {
    flex-wrap: nowrap;
    min-height: 76px;
  }

  .hero {
    min-height: 1px;
    padding-top: 112px;
  }

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

  .hero-copy {
    grid-column: auto;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .hero-copy h1 span {
    display: block;
    white-space: normal;
  }

  .hero-copy .benefits-list {
    margin-bottom: 16px;
  }

  .hero-visual {
    grid-column: auto;
    height: clamp(300px, 74vw, 390px);
    min-height: 300px;
    margin-top: 16px;
    width: 100%;
  }

  .hero-visual img {
    object-position: 60% 50%;
  }

  .hero-actions {
    margin-bottom: 8px;
  }

  .diferenciais-grid,
  .services-grid,
  .testimonials,
  .process-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-grid label {
    min-height: 74px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 112px 0 64px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  .hero-gear,
  .hero-particles,
  .reveal {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .hero {
    position: relative;
  }
}

@media (max-width: 520px) {
  .hero-copy .note {
    margin-top: 16px;
  }

  .button {
    width: 100%;
  }

  .faq-item button {
    padding-right: 36px;
    position: relative;
  }

  .faq-item button::after {
    position: absolute;
    right: 16px;
  }

  .whatsapp-float span {
    display: none;
  }
}

/* Policy page helpers */
.privacy-page .site-header,
.privacy-page .whatsapp-float,
.privacy-page .site-footer {
  display: none;
}

.privacy-main {
  padding: 96px 0 76px;
}

.privacy-card {
  margin-top: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: rgba(17, 26, 42, 0.78);
  max-width: 840px;
}

.privacy-card h1 {
  margin-bottom: 10px;
}

.privacy-main ul {
  margin: 0.2rem 0 0;
  padding-left: 1.2rem;
}

.privacy-card .privacy-updated {
  color: var(--color-muted);
  font-size: 0.8rem;
  margin-top: 28px;
}
