/* =========================================================
   KIT DIA DOS PAIS NA ESCOLA — STYLESHEET
   Paleta: azul royal / azul escuro / azul claro / dourado
   Tipografia: Fraunces (display) + Plus Jakarta Sans (texto) + Caveat (assinatura)
   ========================================================= */

:root {
  --royal: #2257D9;
  --royal-rgb: 34, 87, 217;
  --deep: #123A8C;
  --sky: #EAF3FF;
  --gold: #F7C948;
  --gold-rgb: 247, 201, 72;
  --white: #FFFFFF;
  --offwhite: #F7F9FC;
  --ink: #1F2937;
  --ink-soft: #52607A;
  --green: #19A957;

  --shadow-sm: 0 6px 16px rgba(18, 58, 140, 0.08);
  --shadow-md: 0 16px 40px rgba(18, 58, 140, 0.14);
  --shadow-lg: 0 24px 60px rgba(18, 58, 140, 0.22);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", Arial, sans-serif;
  --font-hand: "Caveat", cursive;

  --container-w: 1140px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--font-display); color: var(--deep); line-height: 1.18; margin: 0 0 16px; }
p { margin: 0 0 14px; color: var(--ink-soft); }
a { text-decoration: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- Eyebrow / badges ---------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--royal);
  background: var(--sky);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.eyebrow--light { background: rgba(255,255,255,0.16); color: var(--gold); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--deep);
  background: var(--white);
  border: 1.5px solid var(--gold);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.badge-divider { color: var(--gold); }

/* ---------- Highlighter signature (mark) ---------- */
mark {
  background: none;
  color: var(--deep);
  position: relative;
  padding: 0 4px;
  font-weight: 700;
}
mark::before {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: 2px;
  height: 0.5em;
  background: var(--gold);
  opacity: 0.55;
  border-radius: 3px 6px 4px 7px;
  transform: rotate(-1deg);
  z-index: -1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  border-radius: 999px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: none;
}
.btn-buy {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(25, 169, 87, 0.35);
}
.btn-buy:hover { background: #158c48; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(25, 169, 87, 0.42); }
.btn-large { padding: 18px 38px; font-size: 18px; }
.btn-medium { padding: 15px 30px; font-size: 16px; }
.btn-small { padding: 11px 20px; font-size: 14px; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--deep);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  padding: 9px 16px;
}
.topbar p { margin: 0; color: var(--white); font-weight: 500; }

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #EEF2F9;
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo { font-family: var(--font-display); font-size: 19px; color: var(--deep); }
.logo strong { color: var(--royal); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--sky) 0%, var(--white) 100%);
  padding: 56px 0 40px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: 40px; font-weight: 600; margin-bottom: 18px; }
.hero-subtitle { font-size: 17px; max-width: 52ch; }
.hero-price-note { font-size: 14px; color: var(--ink-soft); margin-top: 10px; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(18,58,140,0.1);
}
.trust-strip li { font-size: 13.5px; font-weight: 600; color: var(--deep); display: flex; align-items: center; gap: 6px; }

.hero-visual { position: relative; }
.hero-visual img { max-width: 400px; margin: 0 auto; filter: drop-shadow(0 24px 40px rgba(18, 58, 140, 0.22)); }

/* ---------- Problem ---------- */
.problem { background: var(--offwhite); padding: 80px 0; text-align: center; }
.section-intro { max-width: 62ch; margin: 0 auto 40px; font-size: 16.5px; }
.problem h2 { font-size: 30px; max-width: 46ch; margin-left: auto; margin-right: auto; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  text-align: left;
  margin-bottom: 36px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.problem-card p { margin: 0; color: var(--ink); font-weight: 500; font-size: 15px; }
.problem-icon { font-size: 24px; line-height: 1; }
.problem-closing { font-family: var(--font-hand); font-size: 26px; color: var(--royal); font-weight: 700; }

/* ---------- Solution ---------- */
.solution { padding: 90px 0; }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.solution h2 { font-size: 32px; }
.solution-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.stack-card {
  position: absolute;
  width: 230px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease;
}
/* Pilha: da mais atrás (módulo 1) para a mais na frente (módulo 5) */
.stack-card--1 { transform: translate(-38px, -54px) rotate(-9deg); z-index: 1; opacity: 0.82; }
.stack-card--2 { transform: translate(-20px, -28px) rotate(-5deg); z-index: 2; opacity: 0.88; }
.stack-card--3 { transform: translate(0px, 0px) rotate(-1deg); z-index: 3; opacity: 0.94; }
.stack-card--4 { transform: translate(20px, 28px) rotate(4deg); z-index: 4; opacity: 0.97; }
.stack-card--5 {
  position: relative;
  width: 250px;
  transform: translate(30px, 44px) rotate(8deg);
  z-index: 5;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
}
.stack-card:hover { filter: brightness(1.03); }

/* ---------- Features ---------- */
.features { background: var(--sky); padding: 90px 0; text-align: center; }
.features h2 { font-size: 30px; max-width: 46ch; margin-left: auto; margin-right: auto; }
.features-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  text-align: left;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--royal);
}
.feature-card--2 { border-top-color: var(--deep); }
.feature-card--3 { border-top-color: var(--gold); }
.feature-card--4 { border-top-color: var(--green); }
.feature-card--5 { border-top-color: var(--royal); }
.feature-icon { font-size: 30px; display: block; margin-bottom: 12px; }
.feature-card h3 { font-size: 19px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; margin: 0; }

/* ---------- Carousel (gallery + testimonials) ---------- */
.gallery, .testimonials { padding: 90px 0 70px; text-align: center; }
.testimonials { background: var(--offwhite); }
.gallery h2, .testimonials h2 { font-size: 30px; max-width: 46ch; margin-left: auto; margin-right: auto; }

.carousel-wrap {
  position: relative;
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 24px 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--royal) var(--sky);
}
.carousel-track::-webkit-scrollbar { height: 8px; }
.carousel-track::-webkit-scrollbar-track { background: var(--sky); border-radius: 8px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--royal); border-radius: 8px; }

.carousel-item {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin: 0;
  text-align: left;
}
.carousel-item img { width: 100%; aspect-ratio: 3/4.24; object-fit: cover; object-position: top; background: var(--offwhite); }
.carousel-item figcaption { padding: 14px 16px; font-weight: 700; color: var(--deep); font-size: 15px; }

.carousel-arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--sky);
  background: var(--white);
  color: var(--royal);
  font-size: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.carousel-arrow:hover { background: var(--royal); color: var(--white); }

.testimonial-card {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  text-align: left;
  border: 1.5px dashed var(--sky);
}
.quote-mark { font-family: var(--font-display); font-size: 46px; color: var(--gold); line-height: 1; display: block; margin-bottom: 4px; }
.testimonial-placeholder { font-style: italic; color: var(--ink-soft); }
.testimonial-avatar {
  margin-top: 14px;
  font-size: 12px;
  color: #93A2BE;
  background: var(--offwhite);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--sky);
}
.testimonial-initials {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--royal);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-photo {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--deep); }
.testimonial-author span { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Benefits ---------- */
.benefits { background: var(--deep); color: var(--white); padding: 90px 0; text-align: center; }
.benefits h2 { color: var(--white); font-size: 30px; max-width: 46ch; margin: 0 auto; }
.benefits-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  text-align: left;
}
.benefits-grid li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 16px 18px 16px 44px;
  position: relative;
  font-weight: 500;
  font-size: 15px;
}
.benefits-grid li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--gold);
  font-weight: 800;
}

/* ---------- How it works ---------- */
.how-it-works { padding: 90px 0; text-align: center; }
.how-it-works h2 { font-size: 30px; max-width: 46ch; margin: 0 auto; }
.steps {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--royal);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 16px; max-width: 20ch; margin: 0 auto; }

/* ---------- For whom ---------- */
.for-whom { background: var(--sky); padding: 90px 0; text-align: center; }
.for-whom h2 { font-size: 30px; max-width: 46ch; margin: 0 auto; }
.pill-list {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.pill {
  background: var(--white);
  border: 1.5px solid var(--royal);
  color: var(--deep);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
}
.for-whom-note { margin-top: 26px; font-size: 14px; max-width: 56ch; margin-left: auto; margin-right: auto; }

/* ---------- Comparison ---------- */
.comparison { padding: 90px 0; text-align: center; }
.comparison h2 { font-size: 30px; max-width: 46ch; margin: 0 auto; }
.comparison-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.comparison-col {
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.comparison-col--before { background: var(--offwhite); }
.comparison-col--before h3 { color: var(--ink-soft); }
.comparison-col--before li { color: var(--ink-soft); }
.comparison-col--after {
  background: var(--royal);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.comparison-col--after h3 { color: var(--white); }
.comparison-col--after li { color: var(--white); }
.comparison-col li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.comparison-col--after li { border-bottom-color: rgba(255,255,255,0.14); }
.comparison-col--before li::before { content: "✕"; position: absolute; left: 0; color: #B5C0D6; font-weight: 700; }
.comparison-col--after li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ---------- Emotional ---------- */
.emotional { background: var(--deep); color: var(--white); padding: 100px 0; text-align: center; }
.emotional h2 { color: var(--white); font-size: 32px; max-width: 30ch; margin: 0 auto 22px; }
.emotional p { color: rgba(255,255,255,0.82); max-width: 60ch; margin: 0 auto 14px; font-size: 16.5px; }

/* ---------- Offer ---------- */
.offer { padding: 90px 0; background: linear-gradient(180deg, var(--white), var(--sky)); }
.offer-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
}
.offer-card h2 { color: var(--white); font-size: 28px; }
.offer-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  text-align: left;
  margin: 24px 0 30px;
}
.offer-includes li {
  font-size: 14px;
  font-weight: 500;
  padding-left: 24px;
  position: relative;
  color: rgba(255,255,255,0.9);
}
.offer-includes li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.offer-payment-type { text-transform: uppercase; letter-spacing: 1.5px; font-size: 13px; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.offer-price { font-family: var(--font-display); font-size: 56px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.offer-note { font-size: 13.5px; color: rgba(255,255,255,0.7); margin-bottom: 26px; }
.offer-disclaimer { font-size: 12.5px; color: rgba(255,255,255,0.6); margin-top: 12px; }
.offer-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.16);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* ---------- Urgency ---------- */
.urgency { background: var(--gold); padding: 56px 0; }
.urgency-inner { display: flex; gap: 26px; align-items: center; }
.urgency-icon { font-size: 44px; flex: 0 0 auto; }
.urgency h2 { font-size: 24px; color: var(--deep); margin-bottom: 8px; }
.urgency p { color: var(--deep); opacity: 0.85; }
.urgency-strip { font-weight: 700; opacity: 1 !important; }
.urgency .btn-buy { margin-top: 6px; }

/* ---------- Security ---------- */
.security { padding: 80px 0; text-align: center; }
.security h2 { font-size: 28px; max-width: 46ch; margin: 0 auto 40px; }
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.security-item {
  background: var(--offwhite);
  border-radius: var(--radius-md);
  padding: 28px 20px;
}
.security-item span { font-size: 30px; display: block; margin-bottom: 10px; }
.security-item p { margin: 0; font-weight: 500; font-size: 14.5px; color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { background: var(--offwhite); padding: 90px 0; }
.faq h2 { font-size: 30px; text-align: center; margin: 0 auto 40px; }
.faq .eyebrow { display: block; text-align: center; margin-left: auto; margin-right: auto; width: fit-content; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-toggle { flex: 0 0 auto; font-size: 20px; color: var(--royal); transition: transform 0.2s ease; }
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 24px;
}
.faq-item.is-open .faq-answer { padding: 0 24px 20px; }
.faq-answer p { margin: 0; font-size: 14.5px; }

/* ---------- Final CTA ---------- */
.final-cta { background: linear-gradient(160deg, var(--royal), var(--deep)); color: var(--white); text-align: center; padding: 100px 0; }
.final-cta h2 { color: var(--white); font-size: 32px; max-width: 34ch; margin: 0 auto 16px; }
.final-cta p { color: rgba(255,255,255,0.85); max-width: 56ch; margin: 0 auto 10px; }
.final-cta-price { font-size: 20px; font-weight: 700; color: var(--gold); margin-bottom: 24px; }
.final-cta-note { margin-top: 16px; font-size: 13.5px; color: rgba(255,255,255,0.7); }

/* ---------- Footer ---------- */
.site-footer { background: #0C2A66; color: rgba(255,255,255,0.75); padding: 44px 0 100px; text-align: center; font-size: 13px; }
.footer-product { font-family: var(--font-display); font-size: 17px; color: var(--white); margin-bottom: 6px; }
.footer-disclaimer { max-width: 56ch; margin: 0 auto 18px; }
.footer-links { display: flex; gap: 20px; justify-content: center; margin-bottom: 18px; flex-wrap: wrap; }
.footer-links a { text-decoration: underline; text-underline-offset: 3px; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ---------- Mobile floating buy bar ---------- */
.mobile-buy-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid #E3E9F5;
  box-shadow: 0 -10px 24px rgba(18,58,140,0.14);
  padding: 12px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 50;
}
.mobile-buy-price { font-weight: 800; color: var(--deep); font-size: 16px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-visual { min-height: 300px; margin-top: 20px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .steps::before { display: none; }
  .security-grid { grid-template-columns: 1fr; }
  .offer-includes { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: 29px; }
  .hero-subtitle { font-size: 15.5px; }
  .problem h2, .solution h2, .features h2, .gallery h2, .testimonials h2,
  .benefits h2, .how-it-works h2, .for-whom h2, .comparison h2,
  .security h2, .faq h2 { font-size: 24px; }
  .emotional h2 { font-size: 25px; }
  .offer-price { font-size: 44px; }
  .final-cta h2 { font-size: 25px; }
  .urgency-inner { flex-direction: column; text-align: center; }
  .solution-visual { min-height: 320px; transform: scale(0.78); }
  .mobile-buy-bar { display: flex; }
  body { padding-bottom: 78px; }
  .btn-large { padding: 16px 28px; font-size: 16px; }
  .header-inner .btn-small { padding: 9px 16px; font-size: 13px; }
  .logo { font-size: 16px; }
}


/* Âncora da oferta abaixo do cabeçalho fixo */
#oferta { scroll-margin-top: 88px; }
