:root {
  --em-orange: #F05A28;
  --em-orange-light: #FDEEE7;
  --em-orange-dark: #C44418;
  --cf-teal: #00A58E;
  --cf-teal-light: #E0F5F2;
  --cf-teal-dark: #007A6A;
  --hot-pink: #FF277E;
  --hot-pink-light: #FFE5F0;
  --hot-pink-dark: #D91B61;
  --green: #00D084;
  --green-light: #E0F9F1;
  --green-dark: #009966;
  --dark: #1A1A1A;
  --mid: #4A4A4A;
  --muted: #888;
  --border: #E5E5E5;
  --bg: #F8F7F5;
  --white: #FFFFFF;
  --font-head: 'Lato', sans-serif;
  --font-body: 'Lato', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-brand {
  display: flex;
  align-items: center;
  height: 32px;
  line-height: 0;
}
.nav-brand-logo {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  flex-shrink: 0;
}
.nav-brand-logo.emergente {
  transform: none;
  height: 32px;
}
.nav-brand-logo.comfama {
  transform: none;
}
.logo-sep {
  width: 2px;
  height: 28px;
  background: var(--hot-pink);
  border-radius: 2px;
  align-self: center;
}
.nav-cta {
  background: var(--em-orange);
  color: white !important;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.15s ease;
}
.nav-cta:visited,
.nav-cta:active,
.nav-cta:focus {
  color: white !important;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  color: var(--dark) !important;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}


/* ── SECTIONS ── */
section { padding: 72px 40px; }
section.alt { background: var(--white); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--em-orange);
  margin-bottom: 12px;
}

h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
}
h1 em { color: var(--em-orange); font-style: normal; }

h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
}
h2 em { color: var(--em-orange); font-style: normal; }

h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

p.lead {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 16px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #FFF9F7 0%, #F8F7F5 100%);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 520px;
}
.hero-left { }
.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.badge {
  background: var(--em-orange-light);
  color: var(--em-orange-dark);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}
.badge.teal {
  background: var(--cf-teal-light);
  color: var(--cf-teal-dark);
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--em-orange);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.btn-secondary {
  background: white;
  color: var(--cf-teal);
  border: 2px solid var(--cf-teal);
  border-radius: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  transition: transform 0.15s ease;
  text-decoration: none;
}
.hero-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

.hero-right {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 4px;
}
.hero-stat-val {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--cf-teal);
  line-height: 1;
}
.hero-stat-val span { font-size: 20px; }
.hero-stat-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: 24px;
}
.hero-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-stat h4 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--em-orange);
}
.mini-stat p { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── TAGLINE STRIP ── */
.tagline-strip {
  background: var(--dark);
  color: white;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.tagline-strip h2 {
  color: white;
  font-size: 26px;
  white-space: nowrap;
}
.tagline-strip p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  max-width: 480px;
}
.tagline-accent {
  color: var(--em-orange);
  font-style: normal;
}

/* ── BENEFITS ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s;
}
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}
.benefit-icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-icon.orange { color: var(--em-orange); }
.benefit-icon.teal { color: var(--cf-teal); }
.benefit-icon.orange { background: var(--em-orange-light); }
.benefit-icon.teal { background: var(--cf-teal-light); }
.benefit-card p { font-size: 14px; color: var(--mid); margin-top: 4px; line-height: 1.5; }

/* ── AFFILIATION HIGHLIGHT ── */
.affil-highlight {
  background: var(--cf-teal-light);
  border: 1px solid var(--cf-teal);
  border-radius: 12px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
}
.affil-rates { display: flex; gap: 32px; }
.affil-rate h4 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--cf-teal-dark);
}
.affil-rate p { font-size: 12px; color: var(--cf-teal-dark); opacity: 0.8; margin-top: 2px; }
.affil-badge {
  background: var(--cf-teal);
  color: white;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

/* ── CALCULATOR ── */
.calc-section {
  background: var(--dark);
  color: white;
}
.calc-section .section-label { color: var(--em-orange); }
.calc-section h2 { color: white; }
.calc-section .lead { color: rgba(255,255,255,0.6); }

.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.calc-inputs {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
}
.calc-field { margin-bottom: 28px; }
.calc-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.calc-field input[type=range] {
  width: 100%;
  accent-color: var(--em-orange);
}
.calc-value-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.calc-value {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: white;
}
.calc-value-sub { font-size: 13px; color: rgba(255,255,255,0.4); }

.affil-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.affil-opt {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: all 0.15s;
  user-select: none;
}
.affil-opt.active {
  background: var(--em-orange);
  border-color: var(--em-orange);
  color: white;
}

.calc-result {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.result-main {
  background: var(--em-orange);
  border-radius: 16px;
  padding: 32px;
  flex: 1;
}
.result-main .result-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.result-cuota {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.result-cuota-sub { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 8px; }
.result-vs {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vs-item { text-align: center; }
.vs-item .vs-val {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.vs-item .vs-lbl { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.vs-sep { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 600; }

.result-secondary {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 24px;
}
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 13px;
}
.result-row:last-child { border-bottom: none; }
.result-row .rr-label { color: rgba(255,255,255,0.5); }
.result-row .rr-value { font-weight: 600; color: white; }
.result-row .rr-value.teal { color: #4DD9C0; }

.calc-disclaimer {
  margin-top: 24px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

.calc-cta {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}
.calc-cta .btn-primary { flex: 1; justify-content: center; }
.btn-wa {
  background: #25D366;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease;
  text-decoration: none;
  justify-content: center;
  text-align: center;
}

/* ── FLOW STEPS ── */
.steps-section h2 { text-align: center; }
.steps-intro { text-align: center; color: var(--mid); max-width: 480px; margin: 12px auto 0; font-size: 16px; }
.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--em-orange);
  color: white;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}
.step-line {
  position: absolute;
  top: 20px;
  left: 50%;
  right: -50%;
  height: 1px;
  background: var(--border);
  z-index: 1;
}
.step:last-child .step-line { display: none; }
.step h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.step p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.step-tag {
  display: inline-block;
  background: var(--em-orange-light);
  color: var(--em-orange-dark);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  margin-top: 8px;
}

/* ── TRUST ── */
.trust-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.trust-card {
  border-radius: 12px;
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}
.trust-card.em { background: var(--em-orange-light); border-color: #F0C4B0; }
.trust-card.cf { background: var(--hot-pink-light); border-color: #FFB3D9; }
.trust-card .tc-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
}
.tc-name .tc-logo {
  display: block;
  height: 26px;
  width: auto;
}
.trust-card.em .tc-name,
.trust-card.cf .tc-name {
  display: inline-flex;
  align-items: center;
}
.trust-card.em .tc-logo,
.trust-card.cf .tc-logo {
  height: 26px;
  filter: none;
}
.trust-card.em .tc-name { color: var(--em-orange-dark); }
.trust-card.cf .tc-name { color: var(--hot-pink-dark); }
.trust-card p { font-size: 14px; color: rgba(0,0,0,0.68); line-height: 1.65; }
.tc-stats {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.tc-stat h5 { font-family: var(--font-head); font-size: 22px; font-weight: 800; }
.trust-card.em .tc-stat h5 { color: var(--em-orange); }
.trust-card.cf .tc-stat h5 { color: var(--hot-pink); }
.tc-stat p { font-size: 11px; color: rgba(0,0,0,0.55); margin-top: 4px; letter-spacing: 0.02em; }

/* ── FINAL CTA ── */
.final-cta {
  background: var(--em-orange);
  color: white;
  text-align: center;
  padding: 80px 40px;
}
.final-cta h2 { color: white; font-size: clamp(24px, 3vw, 38px); max-width: 640px; margin: 0 auto; }
.final-cta p { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 480px; margin: 16px auto 0; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.btn-white {
  background: white;
  color: var(--em-orange);
      border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.15s ease;
  text-decoration: none;
}
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.nav-cta:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-wa:hover,
.btn-white:hover,
.btn-outline-white:hover {
  transform: scale(1.03);
}
.nav-cta:hover,
.btn-primary:hover {
  transform: scale(1.04);
}
.final-note { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 24px; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
footer strong { color: white; }
  justify-content: center;
  text-align: center;
footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
footer a:hover {
  color: white;
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (max 900px)
══════════════════════════════════════════ */
@media (max-width: 900px) {
  section { padding: 56px 24px; }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding: 48px 24px;
  }
  .hero-right { order: -1; }

  .tagline-strip {
    flex-direction: column;
    gap: 16px;
    padding: 36px 24px;
    text-align: center;
  }
  .tagline-strip h2 { white-space: normal; font-size: 22px; }

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

  .affil-highlight {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .affil-rates { justify-content: flex-start; }

  .calc-wrapper { grid-template-columns: 1fr; gap: 24px; }

  .steps-row {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }
  .step-line { display: none; }

  .trust-cards { grid-template-columns: 1fr; }

  footer { flex-direction: column; gap: 12px; text-align: center; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (max 600px)
══════════════════════════════════════════ */
@media (max-width: 600px) {
  /* NAV */
  nav {
    padding: 12px 16px;
    height: auto;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }
  .nav-links {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
  }
  .nav-links a {
    font-size: 12px;
  }
  .nav-logo { gap: 10px; }
  .nav-brand-logo.emergente { height: 25px; }
  .nav-brand-logo.comfama { height: 22px; }
  .logo-sep { font-size: 18px; }
  .nav-cta {
    font-size: 12px;
    padding: 8px 14px;
    width: 100%;
    justify-content: center;
  }

  /* SECTIONS */
  section { padding: 48px 16px; }

  /* HERO */
  .hero {
    padding: 36px 16px 40px;
    gap: 28px;
  }
  .hero-left { order: 1; }
  .hero-right { order: 2; }
  h1 { font-size: 28px; line-height: 1.15; }
  p.lead { font-size: 16px; max-width: 100%; }
  .hero-badges { gap: 6px; }
  .badge { font-size: 12px; padding: 5px 10px; }
  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 20px;
  }
  .hero-right { padding: 20px; }
  .hero-stat-val { font-size: 34px; }
  .mini-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .mini-stat h4 { font-size: 18px; }

  /* TAGLINE */
  .tagline-strip {
    padding: 32px 16px;
    gap: 12px;
  }
  .tagline-strip h2 { font-size: 20px; }
  .tagline-strip p { font-size: 14px; }

  /* BENEFITS */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .benefit-card { padding: 18px; }

  /* AFFIL HIGHLIGHT */
  .affil-highlight {
    padding: 20px 16px;
    grid-template-columns: 1fr;
  }
  .affil-rates { gap: 20px; }
  .affil-rate h4 { font-size: 22px; }

  /* CALCULATOR */
  .calc-section { padding: 40px 16px; }
  .calc-wrapper { grid-template-columns: 1fr; gap: 20px; margin-top: 28px; }
  .calc-inputs { padding: 20px 16px; border-radius: 12px; }
  .calc-field { margin-bottom: 22px; }
  .calc-value { font-size: 20px; }
  .affil-selector { grid-template-columns: 1fr 1fr; gap: 8px; }
  .affil-opt { padding: 12px 8px; font-size: 12px; }

  .result-main { padding: 20px; border-radius: 12px; }
  .result-cuota { font-size: 36px; }
  .result-vs {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .vs-item { min-width: 70px; }
  .vs-item .vs-val { font-size: 15px; }
  .result-secondary { padding: 16px; }
  .result-row { flex-direction: column; align-items: flex-start; gap: 2px; padding: 10px 0; }
  .rr-value { font-size: 14px; }

  .calc-cta { margin-top: 16px; }
  .btn-wa {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 16px 20px;
  }
  .calc-disclaimer { font-size: 10px; }

  /* STEPS */
  .steps-section { padding: 48px 16px; }
  .steps-intro { font-size: 14px; }
  .steps-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 32px;
  }
  .step { text-align: left; display: flex; flex-direction: row; align-items: flex-start; gap: 16px; padding: 0; }
  .step-num { margin: 0; flex-shrink: 0; width: 36px; height: 36px; font-size: 14px; }
  .step-content { flex: 1; }
  .step h4 { font-size: 15px; margin-bottom: 4px; }
  .step p { font-size: 13px; }
  .step-tag { margin-top: 6px; }
  .step-line { display: none; }

  /* TRUST */
  .trust-cards { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
  .trust-card { padding: 20px; }
  .trust-card .tc-name { font-size: 18px; }
  .tc-stats { gap: 16px; flex-wrap: wrap; }
  .tc-stat h5 { font-size: 18px; }

  /* FINAL CTA */
  .final-cta { padding: 56px 16px; }
  .final-cta h2 { font-size: 22px; }
  .final-cta p { font-size: 15px; }
  .final-cta-btns { flex-direction: column; align-items: center; gap: 12px; }
  .btn-white {
    width: 100%;
    max-width: 320px;
    font-size: 15px;
    padding: 16px 24px;
  }
  .final-note { font-size: 11px; }

  /* FOOTER */
  footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 24px 16px;
    font-size: 11px;
  }

  /* SECTION HEADERS */
  h2 { font-size: 22px; }
  h3 { font-size: 15px; }
  .section-header-block { flex-direction: column; gap: 4px; }
}