/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #085fa6;
  --blue-dark: #06457a;
  --blue-deep: #0a2540;
  --blue-light: #e8f1fa;
  --blue-tint: #619cce;
  --green: #2e9935;
  --green-dark: #237a29;
  --amber: #f59e0b;
  --gray-light: #f5f7fa;
  --white: #ffffff;
  --text: #1f2937;
  --text-muted: #5b6472;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(10, 37, 64, 0.1);
  --radius: 10px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-blue {
  color: var(--blue);
}
.text-green {
  color: var(--green);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(8, 95, 166, 0.35);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}
.btn--outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline-blue:hover {
  background: var(--blue-light);
}
.btn--sm {
  padding: 9px 16px;
  font-size: 13px;
}
.btn--lg {
  padding: 15px 28px;
  font-size: 15px;
}
.btn--full {
  width: 100%;
}

/* ============================================================
   SECTION TITLES
============================================================ */
.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-deep);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.25;
}
.section-title--left {
  text-align: left;
}
.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.section-eyebrow--left {
  text-align: left;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 44px;
  font-size: 15.5px;
}

/* ============================================================
   HEADER / NAV
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.header--scrolled {
  box-shadow: 0 2px 14px rgba(10, 37, 64, 0.08);
  border-bottom-color: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.header__logo-img {
  height: 48px;
  width: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue-deep);
}
.header__nav a:hover {
  color: var(--blue);
}
.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.header__menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 55%, var(--blue) 100%);
  overflow: hidden;
  padding: 72px 0 88px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(255, 255, 255, 0.06), transparent 40%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero__title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 18px;
}
.hero__title--blue {
  color: #7ec4ff;
}
.hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16.5px;
  max-width: 520px;
  margin-bottom: 26px;
}
.hero__checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.hero__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  font-size: 14.5px;
  font-weight: 500;
}
.check-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(46, 153, 53, 0.25);
  color: #6fe07a;
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero visual — pipeline mockup built from CSS, no external screenshots needed */
.hero__media {
  position: relative;
}
.pipeline-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 20px 50px rgba(3, 15, 30, 0.35);
}
.pipeline-card__title {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pipeline-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pipeline-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
}
.pipeline-step__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  color: var(--blue);
}
.pipeline-step__body strong {
  display: block;
  font-size: 14px;
  color: var(--blue-deep);
}
.pipeline-step__body span {
  font-size: 12.5px;
  color: var(--text-muted);
}
.pipeline-step--done .pipeline-step__icon {
  background: rgba(46, 153, 53, 0.14);
  color: var(--green);
}
.pipeline-arrow {
  padding-left: 21px;
  color: var(--border);
  font-size: 15px;
  line-height: 1;
}
.pipeline-card__footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pipeline-card__stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-deep);
}
.pipeline-card__stat span {
  font-size: 12px;
  color: var(--text-muted);
}
.pipeline-badge {
  background: rgba(46, 153, 53, 0.12);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.hero__media-float {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue-deep);
}
.hero__media-float span.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(46, 153, 53, 0.2);
}

/* ============================================================
   VALUE STRIP
============================================================ */
.value-strip {
  background: var(--gray-light);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.value-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blue-tint);
}
.value-card:hover .value-card__icon {
  background: var(--blue);
  color: #fff;
}
.value-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  transition: background 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.value-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 6px;
}
.value-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ============================================================
   O QUE O AUDITA RESOLVE
============================================================ */
.resolve {
  padding: 88px 0;
}
.resolve__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.resolve-card {
  position: relative;
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.resolve-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--blue-tint);
  background: #fff;
}
.resolve-card:hover .resolve-card__icon {
  background: var(--blue);
  color: #fff;
}
.resolve-card__number {
  position: absolute;
  top: -14px;
  left: 26px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(8, 95, 166, 0.35);
}
.resolve-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  transition: background 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 18px;
}
.resolve-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 10px;
}
.resolve-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ============================================================
   PARA QUEM
============================================================ */
.para-quem {
  padding: 88px 0;
}
.para-quem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.persona-card {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.persona-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--blue-tint);
  background: #fff;
}
.persona-card:hover .persona-card__icon {
  background: var(--blue);
  color: #fff;
}
.persona-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  transition: background 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.persona-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 14px;
}
.persona-card__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.persona-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--text);
}
.check-icon--sm {
  width: 17px;
  height: 17px;
  font-size: 10px;
  background: rgba(8, 95, 166, 0.12);
  color: var(--blue);
}

/* ============================================================
   DIFERENCIAIS
============================================================ */
.diferenciais-section {
  padding: 88px 0;
}
.diferenciais {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.diferencial {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.diferencial:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.diferencial__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.diferencial__title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 8px;
}
.diferencial__desc {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ============================================================
   DEPOIMENTOS
============================================================ */
.depoimentos {
  background: var(--gray-light);
  padding: 88px 0;
}
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial__quote-icon {
  color: var(--blue-tint);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.testimonial__text {
  font-size: 13.5px;
  color: var(--text);
  flex-grow: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.testimonial__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-size: 13.5px;
  color: var(--blue-deep);
}
.testimonial__author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  padding: 88px 0;
}
.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__question {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 18px 20px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq__icon {
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: var(--gray-light);
}
.faq__answer p {
  padding: 0 20px 18px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.faq__item--open .faq__answer {
  max-height: 300px;
}

/* ============================================================
   CTA FINAL
============================================================ */
.cta-final {
  background: linear-gradient(120deg, var(--blue-deep), var(--blue-dark));
  padding: 70px 0;
}
.cta-final__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-final__title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.cta-final__desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  max-width: 460px;
}

/* ============================================================
   FORMULÁRIO
============================================================ */
.form-section {
  padding: 88px 0;
  background: var(--gray-light);
}
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px;
  border: 1px solid var(--border);
}
.form-wrap__header {
  text-align: center;
  margin-bottom: 30px;
}
.form-wrap__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 8px;
}
.form-wrap__sub {
  color: var(--text-muted);
  font-size: 14px;
}
.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lead-form__field--full {
  grid-column: 1 / -1;
}
.lead-form__field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-deep);
}
.lead-form__field input,
.lead-form__field select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lead-form__field input:focus,
.lead-form__field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 95, 166, 0.14);
}
.lead-form__submit {
  grid-column: 1 / -1;
  margin-top: 6px;
}
.lead-form__note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -6px;
}
.lead-form__honeypot {
  position: absolute;
  left: -9999px;
}
.lp-field-pair {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lp-field-pair label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-deep);
}
.form-alert {
  display: none;
  grid-column: 1 / -1;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
}
.form-alert--show {
  display: block;
}
.form-alert--error {
  background: rgba(217, 60, 60, 0.1);
  color: #b12a2a;
  border: 1px solid rgba(217, 60, 60, 0.28);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--blue-deep);
  padding: 50px 0 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__brand {
  flex: 1 1 260px;
}
.footer__logo-img {
  height: 62px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}
.footer__tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  max-width: 320px;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.footer__nav a:hover {
  color: #fff;
}
.footer__cta {
  flex-shrink: 0;
}
.footer__bottom {
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

/* ============================================================
   EXIT INTENT POPUP
============================================================ */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup--visible {
  display: flex;
}
.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 35, 0.65);
}
.exit-popup__box {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 34px 30px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
}
.exit-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gray-light);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
}
.exit-popup__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.exit-popup__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 8px;
  line-height: 1.3;
}
.exit-popup__subtitle {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.exit-popup__dismiss {
  display: block;
  width: 100%;
  background: none;
  border: none;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 12.5px;
  cursor: pointer;
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__media {
    order: -1;
  }
  .value-strip__grid,
  .resolve__grid,
  .para-quem__grid,
  .diferenciais,
  .depoimentos__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .header__nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 24px 20px;
    box-shadow: var(--shadow);
    display: none;
  }
  .header__nav--open {
    display: flex;
  }
  .header__nav a {
    padding: 8px 0;
    width: 100%;
  }
  .header__cta {
    display: none;
  }
  .header__menu-toggle {
    display: flex;
  }
  .hero__title {
    font-size: 30px;
  }
  .value-strip__grid,
  .resolve__grid,
  .para-quem__grid,
  .diferenciais,
  .depoimentos__grid {
    grid-template-columns: 1fr;
  }
  .lead-form__grid {
    grid-template-columns: 1fr;
  }
  .lead-form__field--full {
    grid-column: 1;
  }
  .lp-field-pair {
    grid-template-columns: 1fr;
  }
  .cta-final__inner {
    flex-direction: column;
    text-align: center;
  }
  .form-wrap {
    padding: 28px 20px;
  }
}
