/* LP v2 overrides (Figma nova ref) */
body.lp2 {
  background: var(--lp-bg);
  color: var(--lp-text);
}

/* =========================
   HEADER (GLASS) - ÚNICO
   ========================= */
.lp2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 14px 0;

  /* background: rgba(34,34,34,.12);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.14); */
  background: rgba(34, 34, 34, 0);
  transition: background-color .35s ease;
}

.lp2-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* background: linear-gradient(
    to bottom,
    rgba(0,0,0,.22),
    rgba(0,0,0,.10)
  ); */
}

.lp2-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp2-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
}

.lp2-header__actions .lp2-btn {
  flex: 0 0 auto;
}

.lp2-brand__logo {
  height: 32px;
  width: auto;
  display: block;
}

.lp2-header.is-solid {
  background: rgba(47, 47, 47, 1);
  border-bottom-color: rgba(255, 255, 255, .18);
}

.lp2-header.is-solid::before {
  background: rgba(0, 0, 0, .22);
}

/* =========================
   OFFSET POR CSS VAR - ÚNICO
   (JS seta --lp2-header-h real)
   ========================= */
:root {
  --lp2-header-h: 64px;
}

/* fallback */

body.lp2 {
  padding-top: var(--lp2-header-h);
}

html {
  scroll-behavior: smooth;
}

/* =========================
   BOTÕES
   ========================= */
.lp2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-secondary);
}

.lp2-step__body > .lp2-btn {
  width: fit-content;
  margin: auto;
  margin-top: auto;
  margin-bottom: 0;
}

.lp2-btn--ghost {
  background: rgba(255, 255, 255, .92);
  border-color: rgba(255, 255, 255, .92);
  color: #111;
}

.lp2-btn--primary {
  /* background: #2b2b2b; */
  border-color: #ffffff;
  color: #fff;
  padding: 1em 2em;
}

.lp2-btn--outline {
  background: transparent;
  border-color: #222;
  color: #222;
}

.lp2-btn--login {
  border-radius: 6px;
}

/* =========================
   HERO
   ========================= */
.lp2-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;

  /* offset do header (hero começa no topo) */
  margin-top: calc(var(--lp2-header-h) * -1);
  padding-top: var(--lp2-header-h);
}

.lp2-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.lp2-hero__bgVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.lp2-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .55) 70%);
}

.lp2-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;  
  /* padding: calc(var(--lp2-header-h) + 28px) 0 54px; */
}

.lp2-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 999px;
  padding: 6px 24px;
  margin: 0 auto 18px;
  font-size: 12px;
  font-family: var(--font-secondary);
}

.lp2-hero__title {
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: #fff;
  font-family: var(--font-secondary);
  font-weight: 800;
}

.lp2-hero__subtitle {
  margin: 0 auto 18px;
  max-width: 720px;
  color: rgba(255, 255, 255, .90);
  font-size: 14px;
  font-family: var(--font-secondary);
}

.lp2-hero__icon-img {
  /* width: 20px;
  height: 20px; */
  display: block;
}

/* =========================
   INFOBAR
   ========================= */
.lp2-infobar {
  padding: 18px 0 0;
}

.lp2-infobar__bar {
  background: var(--lp-green);
  color: #fff;
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 12px;
  font-family: var(--font-secondary);
}

.lp2-infobar__link {
  color: #fff;
  text-decoration: underline;
  /* font-weight: 600; */
}

.lp2-infobar__sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .6);
}

/* =========================
   SECTIONS
   ========================= */
.lp2-section {
  padding: 44px 0;
}

.lp2-section--soft {
  /* background: #f6f7f8; */
  /* background: #fff; */
}

.lp2-section__header {
  margin-bottom: 2em;
}

.lp2-section__header--center {
  /* text-align: center; */
}

.lp2-section__title {
  margin: 0;
  font-size: 32px;
  letter-spacing: 0.01em;
  font-weight: normal;
  transform: scaleY(0.9);
}

.lp2-section__subtitle {
  margin: 0 0 0;
  color: var(--lp-muted);
  font-size: 16px;
  font-family: var(--font-secondary)
}

.lp2-section__mark {
  display: inline-block;
  width: 14px;
  height: 3px;
  background: var(--lp-green);
  border-radius: 999px;
  margin: 0 0 10px;
}

/* Cards (Para você / Para seu Cliente) */
.lp2-cards {
  display: grid;
  gap: 18px;
}

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

.lp2-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 2em;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .03);
}

.lp2-card__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(102, 198, 28, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.lp2-icon {
  display: block;
  width: 14px;
  height: 14px;
}

.lp2-icon--leaf {
  background: var(--lp-green);
  -webkit-mask: radial-gradient(circle at 30% 60%, transparent 6px, #000 7px) left/14px 14px no-repeat;
  mask: radial-gradient(circle at 30% 60%, transparent 6px, #000 7px) left/14px 14px no-repeat;
}

.lp2-icon--shield {
  background: var(--lp-green);
  border-radius: 3px;
}

.lp2-card__title {
  margin: 0 0 6px;
  font-size: 26px;
  font-family: var(--font-secondary);
}

.lp2-card__text {
  margin: 0 0 2em;
  color: var(--lp-muted);
  font-size: 13px;
  line-height: 1.5;
  font-family: var(--font-secondary);
}

.lp2-card__btn {
  padding: 9px 16px;
}

.lp2-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(102, 198, 28, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.lp2-card__icon-svg {
  width: 26px;
  /* ajuste conforme o Figma */
  height: 26px;
  display: block;
}


/* Steps */
.lp2-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.lp2-step {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Step media (imagem real) */
.lp2-step__media {
  background: var(--lp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lp2-step__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* mantém visual correto */
  display: block;
}

@media (max-width: 768px) {
  .lp2-step__media {
    height: 230px;
  }
}

.lp2-illus {
  position: absolute;
  inset: 0;
  opacity: .20;
  background:
    radial-gradient(circle at 20% 80%, #000 0 18px, transparent 19px),
    radial-gradient(circle at 55% 45%, #000 0 22px, transparent 23px),
    radial-gradient(circle at 82% 70%, #000 0 16px, transparent 17px);
}

.lp2-step__body {
  padding: 1.6em 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.lp2-step__title {
  margin: 0 0 6px;
  font-family: var(--font-secondary);
  font-size: 18px;
  /* Figma: Size 40 */
  font-weight: 500;
  /* Figma: Medium / 500 */
  line-height: 48px;
  /* Figma: 120% */
  letter-spacing: 0;
  text-align: center;
  color: var(--lp-green);
  transform: scaleY(0.9);
}

.lp2-step__title strong {
  font-weight: inherit;
}

@media (max-width: 768px) {
  .lp2-step__title {
    font-size: 22px;
    line-height: 34px;
  }
}

.lp2-step__text {
  margin: 0 1.6em 3em;
  font-family: var(--font-secondary);
  font-size: 16px;
  /* Figma: Size 18 */
  /* font-weight: 400; */
  /* Regular */
  line-height: 24px;
  /* 133% */
  letter-spacing: 0;
  color: var(--lp-muted);
  /* Secondary / 600 */
  text-align: center;
}

@media (max-width: 768px) {
  .lp2-step__text {
    font-size: 18px;
    line-height: 20px;
  }
}


.lp2-step__btn {
  padding: 9px 18px;
}

/* FAQ */
.lp2-faq {
  /* background: #fff; */
  /* border: 1px solid #ececec; */
  border-radius: 10px;
  overflow: hidden;
}

.lp2-faq__item {
  /* border-top: 1px solid #f0f0f0; */
  border: 1px solid #ececec;
  margin-top: 0.4em;
  border-radius: 6px;
  padding: 0.6em 0;
  background-color: #FFF;
}

.lp2-faq__item:first-child {
  /* border-top: 0; */
}

.lp2-faq__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;
}

.lp2-faq__summary::-webkit-details-marker {
  display: none;
}

.lp2-faq__q {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-secondary);
}

.lp2-faq__n,
.lp2-faq__t {
  color: #111;
}

/* .lp2-faq__icon,
.lp2-faq__ic{
  width: 22px; height: 22px;
  border: 1px solid #e7e7e7;
  border-radius: 999px;
  position:relative;
  flex: 0 0 auto;
}
.lp2-faq__icon::before,
.lp2-faq__icon::after,
.lp2-faq__ic::before,
.lp2-faq__ic::after{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  background:#111;
  opacity:.75;
}
.lp2-faq__icon::before,
.lp2-faq__ic::before{ width:10px; height:2px; }
.lp2-faq__icon::after,
.lp2-faq__ic::after{ width:2px; height:10px; }
.lp2-faq__item[open] .lp2-faq__icon::after,
.lp2-faq__item[open] .lp2-faq__ic::after{ display:none; }*/
.lp2-faq__content {
  padding: 0 16px 14px;
  color: var(--lp-dark);
  font-size: 14px;
  line-height: 1.55;
  border-top: 1px solid #f6f6f6;
  padding-top: 1em;
  margin: 0 1em;
  font-family: var(--font-secondary);
}

.lp2-faq__content p {
  margin: 0;
}

.lp2-faq__content a {
  font-weight: 800;
}

.lp2-faq__more {
  display: flex;
  justify-content: center;
  padding: 18px 0 8px;
  background: transparent;
}

.lp2-faq__hidden {
  display: none;
}

/* Footer */
.lp2-footer {
  background: var(--lp-dark);
  color: rgba(255, 255, 255, .82);
  padding: 26px 0;
}

.lp2-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  /* espaço entre texto de cima e barra de baixo */
}

/* TOP */
.lp2-footer__top {
  max-width: 1100px;
  /* opcional: dá o “respiro” do print */
}

.lp2-footer__text {
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, .80);
  font-family: var(--font-secondary);
}

.lp2-footer__legal {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-secondary);
}

/* BOTTOM BAR */
.lp2-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  /* o print dá essa “separação” */
}

.lp2-footer__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.lp2-footer__logo {
  height: 34px;
  /* no print o logo está maior */
  width: auto;
  display: block;
}

/* direita: links + social na mesma linha */
.lp2-footer__bottom-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  /* links mais “perto” dos ícones */
  flex: 1 1 auto;
}

/* links */
.lp2-footer__links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  white-space: nowrap;

}

.lp2-footer__link {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-family: var(--font-secondary);
}

.lp2-footer__link:hover {
  text-decoration: underline;
}

.lp2-footer__sep {
  color: rgba(255, 255, 255, .35);
}

/* social: no print são só ícones, sem borda */
.lp2-footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.lp2-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  /* arredondado, sem virar círculo */
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  opacity: .95;
  /* border: 1px solid rgba(255,255,255,.92); */
}

.lp2-footer__social-link:hover {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 720px) {
  .lp2-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .lp2-footer__bottom-right {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .lp2-footer__links {
    white-space: normal;
    flex-wrap: wrap;
  }
}

/* MOBILE — layout igual ao print */
@media (max-width: 720px) {

  /* menos padding lateral como no print */
  .lp2-footer {
    padding: 22px 0;
  }

  /* espaço vertical */
  .lp2-footer__inner {
    gap: 22px;
  }

  /* texto ocupa tudo */
  .lp2-footer__top {
    max-width: 100%;
  }

  /* BOTTOM vira coluna */
  .lp2-footer__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  /* container direita vira coluna */
  .lp2-footer__bottom-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* LINKS primeiro (SCR / termos / política) */
  .lp2-footer__links {
    order: 1;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  /* linha final: logo esquerda / social direita */
  .lp2-footer__brand {
    order: 2;
  }

  .lp2-footer__social {
    order: 3;
    margin-left: auto;
    /* joga ícones para direita */
  }

  /* cria linha logo + social */
  .lp2-footer__bottom {
    position: relative;
  }

  /* hack simples: logo + social mesma linha */
  .lp2-footer__brand,
  .lp2-footer__social {
    display: inline-flex;
    align-items: center;
  }

  .lp2-footer__brand {
    float: left;
  }

  .lp2-footer__social {
    float: right;
  }

  /* limpa float */
  .lp2-footer__bottom::after {
    content: "";
    display: block;
    clear: both;
  }

  /* logo menor no mobile */
  .lp2-footer__logo {
    height: 30px;
  }
}

/* MOBILE: links em cima + (logo esquerda | social direita) embaixo */
@media (max-width: 720px) {

  /* bottom vira grid com 2 colunas */
  .lp2-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    /* logo ocupa o resto, social só o necessário */
    grid-template-areas:
      "links  links"
      "brand  social";
    align-items: center;
    gap: 16px 14px;
  }

  /* o "right" não controla mais layout, vira só conteúdo */
  .lp2-footer__bottom-right {
    display: contents;
    /* permite posicionar links e social no grid do pai */
  }

  .lp2-footer__links {
    grid-area: links;
    justify-content: center;
    /* no print fica centralizado */
    white-space: normal;
    flex-wrap: wrap;
    gap: 10px;
  }

  .lp2-footer__brand {
    grid-area: brand;
    justify-content: flex-start;
  }

  .lp2-footer__social {
    grid-area: social;
    justify-content: flex-end;
    margin: 0;
  }

  /* tamanho do logo no mobile (ajuste fino) */
  .lp2-footer__logo {
    height: 30px;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .lp2-cards--2 {
    grid-template-columns: 1fr;
  }

  .lp2-steps {
    grid-template-columns: 1fr;
  }

  .lp2-hero {
    min-height: 540px;
  }

  .lp2-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .lp2-hero__subtitle br {
    display: none;
  }
}

body.lp2 {
  background: #f2f3f4;
  color: #111;
}

/* =========================
   FIX: LP não pode herdar padding-top do layout base (.page__content)
   ========================= */
body.lp2 .page__content {
  padding-top: 0 !important;
}

/* garante o offset do hero mesmo se algum CSS sobrescrever */
body.lp2 .lp2-hero {
  margin-top: calc(var(--lp2-header-h) * -1) !important;
  padding-top: var(--lp2-header-h) !important;
}

.lp2 details.lp2-faq__item>summary.lp2-faq__summary>.lp2-faq__icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: #f3f3f3;
}

/* linhas base */
.lp2 details.lp2-faq__item>summary.lp2-faq__summary>.lp2-faq__icon::before,
.lp2 details.lp2-faq__item>summary.lp2-faq__summary>.lp2-faq__icon::after {
  content: "";
  position: absolute;
  background: #111;
  border-radius: 999px;
  left: 50%;
  top: 50%;
  transform-origin: center;
}

/* linha horizontal */
.lp2 details.lp2-faq__item>summary.lp2-faq__summary>.lp2-faq__icon::before {
  width: 14px;
  /* tamanho */
  height: 1px;
  /* espessura */
  transform: translate(-50%, -50%);
}

/* linha vertical */
.lp2 details.lp2-faq__item>summary.lp2-faq__summary>.lp2-faq__icon::after {
  width: 1px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.lp2 details.lp2-faq__item[open]>summary.lp2-faq__summary>.lp2-faq__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lp2 details.lp2-faq__item[open]>summary.lp2-faq__summary>.lp2-faq__icon::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* =========================
   INFO BAR PRETA (ref)
   ========================= */
.db2-infoblack {
  margin: 14px 0 18px;
}

.db2-infoblack__note {
  margin: 0 0 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #6b7280;
  font-size: 11px;
  line-height: 1.45;
  font-family: var(--font-secondary);
}

.db2-infoblack__i {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
  opacity: .9;
}

.db2-infoblack__i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.db2-infoblack__bar {
  background: #111;
  color: rgba(255, 255, 255, .88);
  border-radius: 8px;
  padding: 12px 14px;
  text-align: center;
  font-size: 12px;
  line-height: 1.35;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
  font-family: var(--font-secondary);
}

.db2-infoblack__bar strong {
  color: #fff;
}

.db2-infoblack__bar u {
  color: rgba(255, 255, 255, .95);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* mobile: respira um pouco e quebra melhor */
@media (max-width: 780px) {
  .db2-infoblack__bar {
    padding: 12px 12px;
    font-size: 11px;
  }
}

/* =========================
   SPONSORS (Aumente suas chances)
   ========================= */
.db2-sponsors {
  margin: 14px 0 18px;
}

/* “container cinza” do print */
.db2-sponsors__grid {
  background: #f6f7f8;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1.65fr .75fr;
  gap: 14px;
}

/* card texto */
.db2-sponsors__copy {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
  font-family: var(--font-secondary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
}

.db2-sponsors__title {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #111827;
  font-weight: 700;
}

.db2-sponsors__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
}

/* coluna direita com 2 cards */
.db2-sponsors__logos {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-width: 0;
}

.db2-sponsors__logoCard {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
  display: grid;
  place-items: center;
  padding: 18px;
  text-decoration: none;
  min-height: 90px;
}

.db2-sponsors__logoCard img {
  width: min(210px, 100%);
  max-height: 44px;
  object-fit: contain;
  display: block;
}

/* responsivo */
@media (max-width: 900px) {
  .db2-sponsors__grid {
    grid-template-columns: 1fr;
  }

  /* no mobile, deixa as logos lado a lado (fica bom e compacto) */
  .db2-sponsors__logos {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .db2-sponsors__copy {
    min-height: unset;
  }

  .db2-sponsors__title {
    font-size: 20px;
  }
}

@media (max-width: 520px) {

  /* se ficar apertado demais, empilha as logos */
  .db2-sponsors__logos {
    grid-template-columns: 1fr;
  }
}

/* =========================
   SPONSORS / INFO BOX (single)
   ========================= */
.db2-sponsors--single .db2-sponsors__grid {
  grid-template-columns: 1fr;
}

.db2-sponsors--single .db2-sponsors__copy {
  width: 100%;
  min-height: 140px;
  align-items: center;
  text-align: center;
}

.db2-sponsors--single .db2-sponsors__text--center {
  max-width: 920px;
  margin: 0 auto;
}