:root {
  --ink: #15152b;
  --ink-soft: #626378;
  --paper: #f6f7fb;
  --white: #ffffff;
  --line: #e2e4ed;
  --primary: #5b5cf0;
  --primary-dark: #4546d4;
  --accent: #58e5a9;
  --accent-dark: #087852;
  --wa: #25d366;
  --wa-dark: #128c4a;
  --navy: #101120;
  --danger: #c9375a;
  --shadow: 0 24px 70px rgba(36, 36, 89, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.result-open { background: #eef0f8; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
img { max-width: 100%; }
[hidden] { display: none !important; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 228, 237, .82);
  background: rgba(246, 247, 251, .92);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.04em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  box-shadow: 0 9px 24px rgba(91, 92, 240, .24);
}
.brand-mark img { display: block; width: 100%; height: 100%; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-name { font-size: 1.28rem; }
.brand-name > span { color: var(--primary); }
.brand-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
}
.back-link:hover, .back-link:focus-visible { color: var(--primary); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 12% 12%, rgba(88, 229, 169, .13), transparent 27%),
    radial-gradient(circle at 90% 14%, rgba(91, 92, 240, .17), transparent 32%),
    var(--paper);
}
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -210px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(91, 92, 240, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(91,92,240,.025), 0 0 0 140px rgba(91,92,240,.018);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: clamp(44px, 7vw, 86px);
  align-items: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .14em;
}
.eyebrow span {
  width: 28px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
}
.eyebrow.dark { color: var(--ink-soft); }

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -.045em;
}
h1 { max-width: 680px; font-size: clamp(3rem, 6vw, 5rem); }
.hero-lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.72;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
  font-size: .86rem;
  font-weight: 680;
}
.trust-list li { display: inline-flex; align-items: center; gap: 7px; }
.trust-list span { color: var(--accent-dark); }

.generator-card {
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid rgba(226,228,237,.95);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 29px;
}
.step-number {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  color: var(--primary);
  background: #ececff;
  border-radius: 13px;
  font-size: .86rem;
  font-weight: 900;
}
.card-heading h2 { font-size: 1.45rem; }
.card-heading p { margin: 4px 0 0; color: var(--ink-soft); font-size: .88rem; }

.form-group + .form-group { margin-top: 22px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: .91rem;
  font-weight: 780;
}
.label-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.label-row label { margin-bottom: 8px; }
.label-row label span, .label-row small {
  color: var(--ink-soft);
  font-size: .75rem;
  font-weight: 650;
}
.phone-field {
  display: grid;
  grid-template-columns: auto 1fr;
  overflow: hidden;
  min-height: 56px;
  border: 1px solid #d8dae5;
  border-radius: 14px;
  background: #fafaff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.phone-field:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(91,92,240,.1);
}
.country-code {
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-right: 1px solid #d8dae5;
  background: #f2f3f9;
  color: #3d3e51;
  font-weight: 780;
  white-space: nowrap;
}
input, textarea {
  width: 100%;
  border: 1px solid #d8dae5;
  color: var(--ink);
  background: #fafaff;
  border-radius: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.phone-field input {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 14px 15px;
  font-size: 1.04rem;
}
textarea {
  min-height: 126px;
  padding: 13px 14px;
  resize: vertical;
  line-height: 1.55;
}
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(91,92,240,.1);
}
::placeholder { color: #9a9bac; opacity: 1; }
.field-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}
.field-row small { color: var(--ink-soft); font-size: .74rem; }
.field-row .field-error { color: var(--danger); font-weight: 700; text-align: right; }
.is-invalid { border-color: var(--danger) !important; box-shadow: 0 0 0 4px rgba(201,55,90,.08) !important; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(91,92,240,.32);
  outline-offset: 3px;
}
.button-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 13px 28px rgba(91,92,240,.23);
}
.button-primary:hover { background: var(--primary-dark); }
.button-secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
}
.button-secondary:hover { border-color: #cacce0; background: #fafaff; }
.button-full { width: 100%; }
.generator-card .button-full { margin-top: 27px; }
.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: .76rem;
  text-align: center;
}

.result-section {
  padding: 82px 0 94px;
  background: #eef0f8;
  border-top: 1px solid var(--line);
}
.result-shell { max-width: 1040px; margin-inline: auto; }
.result-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}
.result-heading .eyebrow { margin-bottom: 7px; }
.result-heading h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
.success-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 18px;
  color: #075e3f;
  background: #d9faea;
  font-size: 1.45rem;
  font-weight: 900;
}
.result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 22px;
}
.result-card {
  padding: clamp(25px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(36,36,89,.07);
}
.result-card h3 { font-size: 1.55rem; }
.result-card p { margin: 10px 0 0; color: var(--ink-soft); font-size: .93rem; }
.copy-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 25px;
}
.copy-field input {
  min-width: 0;
  height: 52px;
  padding: 0 14px;
  font-size: .88rem;
  color: #404157;
  background: #f6f7fb;
}
.icon-button {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
}
.icon-button:hover { border-color: var(--primary); color: var(--primary); }
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.action-row .button { flex: 1 1 190px; }
.qr-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.qr-code {
  width: 220px;
  max-width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 25px auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
.qr-code canvas, .qr-code img, .qr-code svg { width: 100% !important; height: auto !important; display: block; }
.qr-card .button { margin-top: auto; }
.embed-card {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: center;
  margin-top: 22px;
}
.embed-copy .eyebrow { margin-bottom: 11px; }
.embed-copy h3 { font-size: clamp(1.8rem, 3vw, 2.45rem); }
.button-preview {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 0 18px;
  color: #fff;
  background: var(--wa);
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(37,211,102,.2);
}
.wa-dot {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.wa-dot::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 6px;
  height: 6px;
  border-left: 2px solid currentColor;
  transform: rotate(-24deg);
}
.code-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #292b45;
  border-radius: 18px;
  background: #111224;
}
.code-panel pre {
  max-height: 190px;
  overflow: auto;
  margin: 0;
  padding: 20px;
  color: #e5e6ef;
  font: 500 .8rem/1.65 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.button-code-copy {
  width: 100%;
  min-height: 48px;
  color: #fff;
  background: #23253e;
  border-radius: 0;
  border-top: 1px solid #32344e;
}
.button-code-copy:hover { background: #2d3050; transform: none; }
.new-link-row { display: flex; justify-content: center; margin-top: 24px; }
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  color: var(--primary-dark);
  background: transparent;
  font-weight: 780;
}

.how-section { padding: 100px 0; background: var(--white); }
.section-heading { max-width: 720px; margin: 0 auto 43px; text-align: center; }
.section-heading .eyebrow { justify-content: center; }
.section-heading h2 { font-size: clamp(2.25rem, 4.7vw, 3.8rem); }
.section-heading > p:last-child { margin: 17px 0 0; color: var(--ink-soft); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card {
  min-height: 260px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fbfbfe;
}
.step-card > span {
  display: inline-block;
  color: var(--primary);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .1em;
}
.step-card h3 { margin-top: 43px; font-size: 1.35rem; }
.step-card p { margin: 12px 0 0; color: var(--ink-soft); font-size: .91rem; }

.info-section { padding: 92px 0; background: #eef0f8; }
.info-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
}
.info-grid h2 { max-width: 430px; font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
.info-copy p { margin: 0 0 18px; color: var(--ink-soft); font-size: 1.02rem; }

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 28px;
  max-width: min(calc(100% - 32px), 420px);
  transform: translate(-50%, 24px);
  padding: 12px 17px;
  border-radius: 12px;
  color: #fff;
  background: #191a2f;
  box-shadow: 0 14px 36px rgba(0,0,0,.24);
  font-size: .87rem;
  font-weight: 720;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.site-footer { padding: 52px 0 23px; color: #d7d8e4; background: var(--navy); }
.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 38px;
  align-items: center;
  padding-bottom: 35px;
}
.brand-footer .brand-name { color: #fff; }
.footer-main > p { margin: 0; color: #9294aa; font-size: .88rem; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.site-footer nav a { color: #bfc1d0; text-decoration: none; font-size: .87rem; font-weight: 680; }
.site-footer nav a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #85879c;
  font-size: .73rem;
}
.footer-bottom span:last-child { text-align: right; }

@media (max-width: 920px) {
  .hero { padding: 54px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-copy .trust-list { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  h1 { margin-inline: auto; max-width: 760px; }
  .result-grid { grid-template-columns: 1fr; }
  .qr-card { display: grid; grid-template-columns: 1fr auto; gap: 20px 30px; align-items: center; }
  .qr-card .qr-code { grid-row: 1 / span 2; grid-column: 2; width: 190px; margin: 0; }
  .qr-card .button { grid-column: 1; }
  .embed-card { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 0; }
  .step-card h3 { margin-top: 26px; }
  .info-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-main { grid-template-columns: 1fr; gap: 20px; }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 68px; }
  .brand-mark { width: 36px; height: 36px; flex-basis: 36px; }
  .brand-name { font-size: 1.12rem; }
  .brand-copy small { font-size: .61rem; }
  .back-link span:last-child { display: none; }
  .back-link {
    width: 42px;
    height: 42px;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 1.15rem;
  }
  .hero { padding-top: 43px; }
  h1 { font-size: clamp(2.55rem, 13vw, 3.5rem); }
  .hero-lead { font-size: 1rem; }
  .trust-list { display: grid; justify-content: start !important; width: fit-content; margin: 25px auto 0; text-align: left; }
  .generator-card { padding: 23px 18px; border-radius: 22px; }
  .card-heading { align-items: flex-start; margin-bottom: 24px; }
  .phone-field { grid-template-columns: auto minmax(0, 1fr); }
  .country-code { padding-inline: 11px; font-size: .9rem; }
  .phone-field input { padding-inline: 11px; font-size: .98rem; }
  .field-row { display: block; }
  .field-error { display: block; margin-top: 4px; text-align: left !important; }
  .result-section { padding: 60px 0 70px; }
  .result-heading { align-items: flex-start; }
  .success-icon { width: 48px; height: 48px; flex-basis: 48px; border-radius: 14px; }
  .result-card { padding: 23px 18px; border-radius: 22px; }
  .action-row { display: grid; }
  .action-row .button { width: 100%; }
  .qr-card { display: flex; }
  .qr-card .qr-code { width: min(220px, 80vw); margin: 22px auto; }
  .copy-field { grid-template-columns: minmax(0, 1fr) 50px; }
  .copy-field input { font-size: .78rem; }
  .how-section, .info-section { padding: 72px 0; }
  .section-heading { text-align: left; }
  .section-heading .eyebrow { justify-content: flex-start; }
  .footer-bottom { display: grid; }
  .footer-bottom span:last-child { text-align: left; }
}

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

.not-found-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 15%, rgba(91,92,240,.16), transparent 30%),
    var(--paper);
}
.not-found-main {
  width: min(calc(100% - 40px), 760px);
  margin-inline: auto;
  padding: 48px 0 90px;
}
.not-found-card {
  margin-top: 70px;
  padding: clamp(32px, 7vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.not-found-card h1 { font-size: clamp(2.7rem, 7vw, 4.8rem); }
.not-found-card > p:not(.eyebrow) {
  max-width: 540px;
  margin: 20px 0 28px;
  color: var(--ink-soft);
}

.whatsapp-nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
}
.whatsapp-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 720;
}
.whatsapp-nav a:hover,
.whatsapp-nav a:focus-visible { color: var(--primary); }

.breadcrumb-wrap {
  border-bottom: 1px solid var(--line);
  background: #f1f2f7;
}
.breadcrumbs {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: .78rem;
  white-space: nowrap;
}
.breadcrumbs a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 720;
}
.breadcrumbs span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.seo-hero { padding-top: 62px; }

.examples-wrap {
  margin-top: 12px;
  padding: 13px;
  border: 1px solid #e4e5ee;
  border-radius: 13px;
  background: #f8f9fc;
}
.examples-wrap > span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 760;
}
.example-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.example-chip {
  border: 1px solid #d9dbe7;
  border-radius: 999px;
  padding: 7px 10px;
  color: #42435a;
  background: #fff;
  font-size: .72rem;
  font-weight: 680;
  line-height: 1.25;
  text-align: left;
}
.example-chip:hover {
  color: var(--primary-dark);
  border-color: #bfc0ef;
  background: #f3f3ff;
}

.seo-content-section {
  padding: 100px 0;
  background: var(--white);
}
.seo-content-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(45px, 7vw, 86px);
  align-items: start;
}
.seo-copy h2 {
  max-width: 560px;
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
}
.seo-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.content-cards {
  display: grid;
  gap: 14px;
}
.content-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fafbfe;
}
.content-card h3 {
  font-size: 1.18rem;
  letter-spacing: -.025em;
}
.content-card p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: .91rem;
}

.faq-section {
  padding: 96px 0;
  background: #eef0f8;
}
.faq-shell { max-width: 880px; }
.faq-list {
  border-top: 1px solid #d6d8e3;
}
.faq-item {
  border-bottom: 1px solid #d6d8e3;
}
.faq-item summary {
  position: relative;
  padding: 20px 38px 20px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 780;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 16px;
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 600;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: -5px 0 22px;
  padding-right: 40px;
  color: var(--ink-soft);
}

.related-section {
  padding: 96px 0;
  background: var(--white);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}
.related-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: #fbfbfe;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.related-card:hover {
  transform: translateY(-3px);
  border-color: #c7c8f0;
  box-shadow: 0 14px 34px rgba(36,36,89,.08);
}
.related-card strong { font-size: 1.05rem; }
.related-card span {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: .83rem;
}

@media (max-width: 1020px) {
  .whatsapp-nav { display: none; }
}

@media (max-width: 920px) {
  .seo-content-grid { grid-template-columns: 1fr; gap: 34px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .breadcrumb-wrap { display: none; }
  .seo-hero { padding-top: 43px; }
  .seo-content-section, .faq-section, .related-section { padding: 72px 0; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { min-height: 124px; }
  .example-chips { display: grid; }
  .example-chip { width: 100%; border-radius: 10px; padding: 9px 10px; }
}

.context-note {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid #d9dbee;
  border-left: 4px solid var(--primary);
  border-radius: 14px;
  background: #f7f7ff;
}
.context-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: .9rem;
}
.context-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .86rem;
}

.lembrai-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid #d9dbee;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 88% 18%, rgba(88,229,169,.18), transparent 30%),
    linear-gradient(135deg, #f8f8ff, #f3fff9);
  box-shadow: 0 14px 36px rgba(36,36,89,.06);
}
.lembrai-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--primary-dark);
  background: #e9e9ff;
  font-size: 1.35rem;
}
.lembrai-copy { min-width: 0; }
.lembrai-kicker {
  margin: 0 0 5px;
  color: var(--accent-dark);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lembrai-copy h3 {
  font-size: 1.18rem;
  letter-spacing: -.025em;
}
.lembrai-copy > p:not(.lembrai-kicker) {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: .88rem;
}
.lembrai-note {
  display: block;
  margin-top: 8px;
  color: #78798c;
  font-size: .7rem;
}
.lembrai-button {
  min-width: 174px;
  color: #fff;
  background: var(--ink);
  box-shadow: none;
  white-space: nowrap;
}
.lembrai-button:hover { background: var(--primary); }

.ad-slot {
  width: 100%;
  margin: 28px auto;
  text-align: center;
}
.ad-slot-disabled { display: none; }
.ad-slot:not(.ad-slot-disabled) {
  min-height: 110px;
  padding: 8px 0;
}
.ad-slot:not(.ad-slot-disabled)::before {
  content: "Publicidade";
  display: block;
  margin-bottom: 7px;
  color: #9798a9;
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .lembrai-cta {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
  .lembrai-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .lembrai-cta {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .lembrai-icon {
    width: 46px;
    height: 46px;
  }
}

.qr-error {
  margin: 0;
  padding: 16px;
  color: var(--ink-soft);
  font-size: .82rem;
  line-height: 1.5;
  text-align: center;
}
.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .52;
  transform: none;
  box-shadow: none;
}
