/* ============================================================
   CAMPANHA INSTITUCIONAL — Landing Page
   ============================================================ */

/* ── Variáveis CSS ──────────────────────────────────────────── */
:root {
  /* Cores */
  --lp-white: #ffffff;
  --lp-bg-light: #f8fafc;

  /* Layout */
  --lp-max-width: 1440px;
  --lp-container-width: 1220px;

  /* Partners Carousel - Gaps */
  --partners-gap-desktop: 50px;
  --partners-gap-tablet: 16px;
  --partners-gap-mobile: 4px;

  /* Partners Carousel - Logo Widths */
  --partners-logo-platinum-desktop: 210px;
  --partners-logo-platinum-tablet: 130px;
  --partners-logo-platinum-mobile: 64px;

  --partners-logo-gold-tablet: 78px;
  --partners-logo-gold-mobile: 40px;

  /* Partners Carousel - Heights */
  --partners-slide-height: 240px;
  --partners-multirow-height-mobile: 180px;
  --partners-multirow-height-small: 160px;
}

.lp-page,
.lp-page * {
  box-sizing: border-box;
}

.lp-page {
  font-family: "Barlow", sans-serif;
  color: #4f4633;
  overflow-x: hidden;
  background-color: #f8fafc;
}

.lp-page__frame {
  /* max-width: 1440px; */
  margin: 0 auto;
}

.lp-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Wrappers de Seção ──────────────────────────────────────── */

.lp-section-wrapper {
  background: var(--lp-white);
}

.lp-section-container {
  max-width: var(--lp-max-width);
  margin: 0 auto;
}

/* ── Botões ─────────────────────────────────────────────────── */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    filter 0.2s,
    transform 0.15s;
  line-height: 1;
  letter-spacing: 0.01em;
}

.lp-btn:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
  text-decoration: none;
}

.lp-btn .material-icons {
  font-size: 20px;
  line-height: 1;
}

.lp-btn--red {
  background: #e30613;
  color: #fff;
}

.lp-btn--navy {
  background: #31628d;
  color: #fff;
}

.lp-btn--full {
  width: 100%;
  border-radius: 8px;
}

.lp-btn--lg {
  padding: 18px 48px;
  font-size: 15px;
  letter-spacing: 0.06em;
}

/* ── HERO ───────────────────────────────────────────────────── */

.lp-hero {
  /* imagem antiga */
  /* background-image: url('../images/hero_banner_landing.png');
    background-image: image-set(url('../images/hero_banner_landing.webp') type('image/webp'),
            url('../images/hero_banner_landing.png') type('image/png')); */

  /* nova imagem */
  background-image: url("../images/hero-banner.jpg");
  background-image: image-set(
    url('../images/hero-banner.webp') type('image/webp'),
    url("../images/hero-banner.jpg") type("image/jpg")

  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 741px;
  padding: 52px 80px 80px;
}

.lp-hero__inner {
  display: block;
}

.lp-hero__copy {
  width: clamp(600px, 42vw, 720px);
  max-width: none;
  padding: 160px 0 0 0;
}

.lp-hero__date {
  display: none;
}

.lp-hero__title {
  font-family: "Barlow", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: #003c78;
  margin: 0 0 38px;
}

.lp-hero__title em {
  font-style: italic;
  font-weight: 900;
  color: #003c78;
}

.lp-hero__lead {
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: #be0f09;
  font-weight: 500;
  margin: 0 0 16px;
}

.lp-hero__sub {
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: #4f4633;
  margin: 0 0 64px;
}

.lp-hero__sub-highlight {
  display: block;
  margin-top: 16px;
  font-weight: 800;
}

.lp-hero .lp-btn {
  width: 90%;
  min-height: 52px;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.lp-hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero__card {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  aspect-ratio: 3 / 3.6;
  background: #fff;
}

.lp-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-hero__card-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  padding: 36px 20px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.lp-hero__card-logo {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.lp-hero__card-logo strong {
  display: block;
  font-size: 20px;
  color: #fff;
}

.lp-hero__card-date {
  text-align: right;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.lp-hero__card-date strong {
  display: block;
  font-size: 14px;
  color: #fff;
}

/* ── IMPACTO ────────────────────────────────────────────────── */

.lp-impact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #004f9f;
  min-height: 600px;
}

.lp-impact__media {
  background: #111827;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}

.lp-impact__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 600px;
  opacity: 0.8;
}

.lp-impact__video {
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: block;
  border: 0;
}

/* Botão de play sobre a imagem */
.lp-impact__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lp-impact__play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e30613;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  pointer-events: all;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s,
    background 0.2s;
}

.lp-impact__play-btn:hover {
  transform: scale(1.08);
  background: #be0f09;
}

.lp-impact__play-btn .material-icons {
  font-size: 42px;
  color: #fff;
  margin-left: 4px;
  line-height: 1;
}

.lp-impact__content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-impact__eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffc708;
  margin-bottom: 10px;
}

.lp-impact__title {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 34px;
  line-height: 1;
}

.lp-impact__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-bottom: 40px;
}

.lp-stat {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp-stat__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #ffc708;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-stat__icon .material-icons {
  font-size: 32px;
  color: #003c78;
  line-height: 1;
}

.lp-stat__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 2px;
}

.lp-stat__num {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.lp-stat__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.lp-impact__quote {
  max-width: 440px;
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
  color: #ffc708;
  border-left: 4px solid #e5e7eb;
  padding-left: 20px;
  margin: 0;
  line-height: 1.55;
}

/* ── COMO FUNCIONA ──────────────────────────────────────────── */

.lp-steps {
  background: #ffc72c;
  padding: 90px 72px 104px;
}

.lp-steps__title {
  text-align: center;
  font-size: 54px;
  font-weight: 900;
  color: #004f9f;
  margin: 0;
  line-height: 1;
}

.lp-steps__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  background: #be0f09;
  border-radius: 0;
  margin: 62px auto 54px;
}

.lp-steps__grid {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.lp-step__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.lp-step {
  background: #fff7df;
  border-radius: 18px;
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 33.33%;
}

.lp-step--active {
  background: #004f9f;
  color: #fff;
  box-shadow: 0 12px 40px rgba(0, 79, 159, 0.3);
}

.lp-step__num {
  font-size: 54px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.02em;
}

.lp-step--active .lp-step__num {
  color: #fff;
}

.lp-step__icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: #ffc708;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-step__icon .material-icons {
  font-size: 34px;
  color: #004f9f;
  line-height: 1;
}

.lp-step--active .lp-step__icon {
  background: #ffffff;
}

.lp-step--active .lp-step__icon .material-icons {
  color: #004f9f;
}

.lp-step--active .lp-step__title {
  color: #ffc708;
}

.lp-step__title {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  color: #004f9f;
  line-height: 1.25;
}

.lp-step__text {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

.lp-step--active .lp-step__text {
  color: rgba(255, 255, 255, 0.75);
}

.lp-step__text a {
  color: #004f9f;
  font-weight: 700;
  text-decoration: underline;
}

.lp-step--active .lp-step__text a {
  color: #ffc708;
}

.lp-step__text--bold {
  font-weight: 700;
  margin-top: 4px;
}

/* ── CORPORATIVO ────────────────────────────────────────────── */

.lp-corp {
  background: #004f9f;
  overflow: hidden;
}

.lp-corp__inner {
  display: flex;
  align-items: stretch;
  max-width: none;
  padding: 0;
}

.lp-corp__title {
  color: #ffc708;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.03;
  letter-spacing: 0;
  margin: 0;
}

.lp-corp__text {
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.62;
  letter-spacing: 0;
  margin: 0;
}

.lp-corp__content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 26px;
  width: 50%;
  padding: 80px;
}

.lp-corp__content .lp-btn {
  width: 100%;
  max-width: 500px;
  min-height: 42px;
}

.lp-corp__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 42px;
  margin-bottom: 22px;
}

.lp-corp-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-corp-stat__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-corp-stat__icon .material-icons {
  font-size: 35px;
  color: #ffc708;
  line-height: 1;
}

.lp-corp-stat strong {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.lp-corp-stat small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  margin-top: 3px;
}

.lp-corp__media {
  position: relative;
  overflow: hidden;
  width: 50%;
  flex-shrink: 0;
  min-height: 520px;
  background: rgba(0, 0, 0, 0.22);
}

.lp-corp__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.lp-corp__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lp-corp-progress {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  width: auto;
  transform: none;
  padding: 16px 33px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
  color: #fff;
}

.lp-corp-progress__track {
  width: 100%;
  height: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.lp-corp-progress__bar {
  display: block;
  width: var(--corp-progress, 75%);
  height: 100%;
  border-radius: inherit;
  background: #d71914;
}

.lp-corp-progress__label {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── EMPRESAS PARCEIRAS ─────────────────────────────────────── */

:root {
  --partners-logo-height: 80px;
  --partners-logo-height-multirow: 65px;
  --partners-gap: 50px;
  --partners-gap-multirow: 45px;
  --partners-gap-vertical: 12px;
}

.lp-partners {
  background: #fff;
  padding: 48px 72px 80px;
  min-height: 600px;
  border-top: 1px solid #edf0f4;
}

.lp-partners .lp-container {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-partners__header {
  display: grid;
  grid-template-columns: auto 1px auto;
  gap: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 78px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.lp-partners__title {
  font-size: 31px;
  font-weight: 900;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
}

.lp-partners__title--blue {
  color: #003c78;
}

.lp-partners__title--yellow {
  color: #ffd100;
  display: block;
}

.lp-partners__divider {
  width: 1px;
  height: 80px;
  background: #d1d5db;
  justify-self: center;
}

.lp-partners__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
  max-width: 300px;
  text-align: center;
}

.lp-partners__carousel {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  gap: 20px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-partners__nav {
  width: 48px;
  height: 48px;
  border: none;
  background: #fff;
  color: #003c78;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lp-partners__nav:hover {
  background: #004f9f;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 79, 159, 0.3);
  transform: scale(1.05);
}

.lp-partners__nav:active {
  transform: scale(0.95);
}

.lp-partners__nav:focus {
  outline: 2px solid #004f9f;
  outline-offset: 2px;
}

.lp-partners__nav--prev {
  justify-self: end;
}

.lp-partners__nav--next {
  justify-self: start;
}

.lp-partners__content {
  overflow: hidden;
  position: relative;
}

.lp-partners__content {
  /* ensure consistent height so dots don't shift when slides change */
  padding-bottom: 40px;
  /* space for dots */
}

.lp-partners__slides {
  display: grid;
}

.lp-partners__slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 20px 0;
  height: auto;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.lp-partners__slide--active {
  opacity: 1;
  pointer-events: auto;
}

.lp-partners__tier {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 24px;
}

.lp-partners__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--partners-gap, 50px);
  flex-wrap: nowrap;
  margin-bottom: 0;
  height: 120px;
  flex-shrink: 0;
}

.lp-partners__logos--platinum {
  gap: 92px;
  flex-wrap: nowrap;
}

.lp-partners__logos--platinum .lp-partner-logo {
  width: 210px;
}

/* Gold e Prata - estilos compartilhados */
.lp-partners__logos--gold,
.lp-partners__logos--prata {
  flex-wrap: nowrap;
  justify-content: center;
}

/* Prata com 1 logo: usa melhor a área disponível sem cortes */
.lp-partners__logos--prata .lp-partner-logo:only-child {
  width: min(100%, 210px);
  height: 74px;
}

.lp-partners__logos--prata .lp-partner-logo:only-child img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lp-partners__logos--multirow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 24px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-items: center;
  height: auto;
  flex-shrink: 0;
}

.lp-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  flex-shrink: 0;
}

.lp-partners__logos--multirow .lp-partner-logo {
  width: 100%;
  min-width: 0;
  height: 56px;
  overflow: hidden;
}

.lp-partner-logo picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.lp-partner-logo img {
  max-height: var(--partners-logo-height, 80px);
  width: auto;
  max-width: 180px;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.lp-partners__logos--multirow .lp-partner-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

.lp-partners__dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  bottom: 16px;
  z-index: 2;
}

.lp-partners__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.lp-partners__dot:hover {
  background: #9ca3af;
}

.lp-partners__dot:focus {
  outline: 2px solid #004f9f;
  outline-offset: 2px;
}

.lp-partners__dot--active {
  background: #004f9f;
  width: 28px;
  border-radius: 5px;
}

/* ── DÚVIDAS + CONTATO ──────────────────────────────────────── */

.lp-faq-contact {
  background: #f3f3f3;
  padding: 92px 72px;
}

.lp-faq-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 536px);
  gap: 48px;
  align-items: start;
}

.lp-faq-contact,
.lp-contact {
  font-family: "Barlow", sans-serif;
}

.lp-faq__title {
  font-size: 30px;
  font-weight: 900;
  color: #111827;
  margin: 0 0 26px;
}

.lp-accordion__item {
  border: 0;
  border-radius: 32px;
  background: #fff;
  margin-bottom: 18px;
  overflow: hidden;
  padding: 12px;
}

.lp-accordion__trigger {
  width: 100%;
  background: #fff;
  border: none;
  min-height: 46px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: #245b8f;
}

.lp-accordion__icon {
  flex-shrink: 0;
  color: #245b8f;
  font-size: 22px;
  transform: rotate(0deg) scale(1);
  transition: color 0.2s;
  line-height: 1;
  user-select: none;
}

.lp-accordion__item.is-open .lp-accordion__icon {
  color: #245b8f;
}

.lp-accordion__icon.is-changing {
  animation: lp-accordion-icon-change 0.28s ease both;
}

@keyframes lp-accordion-icon-change {
  from {
    opacity: 0.35;
    transform: rotate(-90deg) scale(0.72);
  }

  70% {
    opacity: 1;
    transform: rotate(8deg) scale(1.12);
  }

  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

.lp-accordion__body {
  display: none;
  padding: 20px 0;
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
}

.lp-accordion__body p {
  margin: 0;
}

.lp-accordion__body a {
  color: #245b8f;
  font-weight: 800;
  text-decoration: underline;
}

.lp-accordion__item.is-open .lp-accordion__body {
  display: block;
}

/* Formulário de contato */
.lp-contact {
  background: #ffc72c;
  border-radius: 32px;
  padding: 48px 48px 64px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 24px;
}

.lp-contact__title {
  font-size: 30px;
  font-weight: 700;
  color: #6f5400;
  margin: 0 0 8px;
}

.lp-contact__title::after {
  content: "Tem alguma dúvida ou quer propor uma parceria? Envie sua mensagem.";
  display: block;
  max-width: 320px;
  margin-top: 8px;
  color: rgba(111, 84, 0, 0.8);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.lp-contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.lp-contact .lp-btn {
  min-height: 56px;
  border-radius: 999px;
}

.lp-field {
  display: flex;
  flex-direction: column;
}

.lp-input {
  border: 0;
  border-radius: 999px;
  min-height: 58px;
  padding: 0 16px;
  font-size: 16px;
  font-family: inherit;
  color: #4f4633;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  background: #fff;
}

.lp-input::placeholder {
  color: #a8b0bc;
}

.lp-input:focus {
  border-color: #004f9f;
  box-shadow: 0 0 0 3px rgba(0, 79, 159, 0.1);
}

.lp-input--textarea {
  resize: vertical;
  min-height: 223px;
  border-radius: 32px;
  padding-top: 16px;
}

.lp-field--recaptcha {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.lp-field--recaptcha .lp-recaptcha-placeholder {
  width: 302px;
  min-height: 74px;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid #d8dee6;
  border-radius: 2px;
  background: #fff;
}

.lp-recaptcha-placeholder {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp-recaptcha-check {
  width: 24px;
  height: 24px;
  border: 2px solid #c5cdd8;
  border-radius: 3px;
  flex-shrink: 0;
  background: #fff;
  display: block;
}

.lp-recaptcha-label {
  font-size: 14px;
  color: #4f4633;
  flex: 1;
}

.lp-recaptcha-logo {
  flex-shrink: 0;
  background: #e8edf2;
  border-radius: 4px;
  padding: 6px 8px;
  text-align: center;
}

.lp-recaptcha-logo span {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: #4b5563;
  letter-spacing: 0.04em;
}

.lp-recaptcha-logo small {
  display: block;
  font-size: 8px;
  color: #9aa2ae;
  margin-top: 2px;
}

/* Message feedback */
.lp-field--message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 4px;
}

.lp-message--success {
  background: #e8f5e9;
  border: 1px solid #4caf50;
  color: #2e7d32;
}

.lp-message--error {
  background: #ffebee;
  border: 1px solid #ef5350;
  color: #c62828;
}

/* Disabled button state */
.lp-btn:disabled,
.lp-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.lp-btn--navy:disabled,
.lp-btn--navy[disabled] {
  background: #6b8bab;
}

/* ── CTA FINAL ──────────────────────────────────────────────── */

.lp-cta {
  background: #ffc708;
  padding: 94px 32px 98px;
}

.lp-cta__inner {
  text-align: center;
  max-width: 915px;
  margin: 0 auto;
}

.lp-cta__title {
  font-size: 60px;
  font-weight: 900;
  color: #004f9f;
  margin: 0 0 16px;
  line-height: 1;
}

.lp-cta__sub {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 40px;
  line-height: 1.35;
}

.lp-cta .lp-btn {
  font-family: "Barlow", sans-serif;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ── RESPONSIVO ─────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .lp-hero__inner {
    display: block;
  }

  .lp-corp {
    overflow: visible;
  }

  .lp-corp__inner {
    gap: 0;
    flex-direction: column;
  }

  .lp-corp__content {
    width: 100%;
  }

  .lp-corp__media {
    width: 100%;
  }

  .lp-partners__header {
    gap: 30px;
  }

  .lp-partners__title {
    font-size: 31px;
  }

  .lp-partners__divider {
    height: 70px;
  }

  .lp-partners__desc {
    font-size: 15px;
  }

  .lp-partners__carousel {
    grid-template-columns: 50px 1fr 50px;
    gap: 15px;
  }

  .lp-partners__nav {
    width: 42px;
    height: 42px;
  }

  .lp-partners__slide {
    min-height: 200px;
  }

  .lp-partners__content {
    min-height: 280px;
  }

  .lp-partners__logos {
    gap: 40px;
    flex-wrap: nowrap;
  }

  .lp-partners__logos--platinum {
    gap: 40px;
    flex-wrap: nowrap;
  }

  .lp-partners__logos--platinum .lp-partner-logo {
    width: var(--partners-logo-platinum-tablet, 130px);
  }

  /* Gold e Prata - Tablet */
  .lp-partners__logos--gold,
  .lp-partners__logos--prata {
    gap: 24px;
    height: 100px;
  }

  .lp-partners__logos--gold .lp-partner-logo,
  .lp-partners__logos--prata .lp-partner-logo {
    width: 120px;
    height: 85px;
  }

  .lp-partners__logos--gold .lp-partner-logo img,
  .lp-partners__logos--prata .lp-partner-logo img {
    max-width: 120px !important;
    max-height: 85px !important;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  /* Gold - Tablet: aumenta logos sem impactar Prata */
  .lp-partners__logos--gold {
    gap: 16px;
  }

  .lp-partners__logos--gold .lp-partner-logo {
    width: 136px;
    height: 92px;
  }

  .lp-partners__logos--gold .lp-partner-logo img {
    max-width: 136px !important;
    max-height: 92px !important;
  }

  .lp-partners__logos--prata .lp-partner-logo:only-child {
    width: min(100%, 145px);
    height: 58px;
  }

  .lp-partners__logos--multirow {
    grid-template-columns: repeat(3, minmax(0, 140px));
    gap: 12px 18px;
    height: auto;
    justify-content: center;
  }

  .lp-partners__logos--multirow .lp-partner-logo {
    height: 60px;
  }

  .lp-partners__logos--multirow .lp-partner-logo img {
    width: auto;
    height: auto;
    max-width: 120px;
    max-height: 100%;
    object-fit: contain;
  }
}

/* Desktop: altura mínima consistente */
@media (min-width: 769px) {
  .lp-partners__content {
    min-height: 260px;
  }

  .lp-partners__slide {
    min-height: 260px;
  }
}

@media (max-width: 1366px) {
  .lp-hero__title {
    font-size: 42px;
  }
}

@media (max-width: 1024px) {
  .lp-hero {
    padding: 52px 20px 60px;
    /* Fallback para navegadores antigos que não suportam image-set */
    background-image: url("../images/hero_banner_lading_mobile.png");
    /* Navegadores modernos usarão WebP, com fallback para PNG */
    background-image: image-set(
      url("../images/hero_banner_lading_mobile.webp") type("image/webp"),
      url("../images/hero_banner_lading_mobile.png") type("image/png")
    );
    background-size: cover !important;
    background-position: center top !important;
  }

  .lp-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lp-hero__title {
    font-size: 30px;
  }

  .lp-hero__card {
    max-width: 100%;
    max-height: 300px;
    aspect-ratio: 4 / 3;
  }

  .lp-corp__content .lp-btn {
    width: 60%;
    margin: auto;
  }

  .lp-btn.lp-btn--red,
  .lp-btn.lp-btn--red.lp-btn--lg {
    width: 60%;
    min-height: 52px;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    box-shadow:
      0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }

  .lp-impact {
    grid-template-columns: 1fr;
  }

  .lp-impact__media {
    min-height: 260px;
  }

  .lp-impact__img {
    min-height: 260px;
  }

  .lp-impact__video {
    min-height: 260px;
  }

  .lp-impact__content {
    padding: 48px 24px;
  }

  .lp-impact__title {
    font-size: 28px;
  }

  .lp-impact__stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .lp-stat__label {
    font-size: 11px;
  }

  .lp-impact__quote {
    font-size: 14px;
  }

  .lp-steps {
    padding: 60px 20px;
  }

  .lp-steps__title {
    font-size: 28px;
  }

  .lp-steps__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-step {
    width: 100%;
  }

  .lp-step__text {
    font-size: 16px;
  }

  .lp-corp {
    padding: 0;
  }

  .lp-corp__inner {
    flex-direction: column;
  }

  .lp-corp__content {
    width: 100%;
    padding: 40px 24px;
    gap: 20px;
  }

  .lp-corp__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .lp-corp__text {
    font-size: 17px;
  }

  .lp-corp__stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }

  .lp-corp-stat strong {
    font-size: 18px;
  }

  .lp-corp-stat small {
    font-size: 13px;
  }

  .lp-corp__content .lp-btn {
    justify-content: center;
    font-size: 15px;
    min-height: 48px;
  }

  .lp-corp__media {
    display: none;
  }

  .lp-partners {
    padding: 20px 8px 16px;
    min-height: auto;
  }

  .lp-partners__header {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
    margin-bottom: 14px;
  }

  .lp-partners__title {
    font-size: 26px;
    line-height: 1.1;
  }

  .lp-partners__divider {
    display: none;
  }

  .lp-partners__desc {
    font-size: 16px;
    max-width: 100%;
    line-height: 1.5;
  }

  .lp-partners__carousel {
    grid-template-columns: 28px 1fr 28px;
    gap: 6px;
    align-items: center;
  }

  .lp-partners__nav {
    width: 28px;
    height: 28px;
  }

  .lp-partners__nav svg {
    width: 18px;
    height: 18px;
  }

  .lp-partners__nav--prev {
    justify-self: end;
  }

  .lp-partners__nav--next {
    justify-self: start;
  }

  .lp-partners__slide {
    min-height: auto;
    padding: 0;
    justify-content: center;
    align-items: center;
  }

  .lp-partners__slide--active {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 240px;
    padding-top: 0;
  }

  .lp-partners__tier {
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .lp-partners__content {
    padding-bottom: 16px !important;
    min-height: auto;
  }

  .lp-partners__logos {
    height: auto;
    flex-shrink: 1;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    padding: 6px 0;
    overflow: visible;
  }

  .lp-partners__logos--platinum {
    gap: 18px;
    flex-wrap: nowrap;
    margin-bottom: 0;
    height: auto;
    max-width: 100%;
    justify-content: center;
    padding: 6px 0;
  }

  .lp-partners__logos--platinum .lp-partner-logo {
    width: var(--partners-logo-platinum-mobile, 64px);
  }

  /* Gold e Prata - Mobile */
  .lp-partners__logos--gold,
  .lp-partners__logos--prata {
    gap: 10px;
    max-width: 100%;
    justify-content: center;
    height: auto;
    margin-bottom: 0;
    flex-wrap: nowrap;
    overflow: hidden;
    padding: 0 8px;
  }

  .lp-partners__logos--gold .lp-partner-logo,
  .lp-partners__logos--prata .lp-partner-logo {
    width: 40px;
    min-width: 40px;
    flex-shrink: 0;
  }

  .lp-partners__logos--gold .lp-partner-logo {
    width: 50px;
    min-width: 50px;
  }

  .lp-partners__logos--gold .lp-partner-logo img,
  .lp-partners__logos--prata .lp-partner-logo img {
    max-width: 100% !important;
    width: auto;
  }

  .lp-partners__logos--gold .lp-partner-logo img {
    max-height: 36px;
  }

  /* Gold Mobile: 2 linhas com 2 logos */
  .lp-partners__logos--gold {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
    width: min(100%, 220px);
    height: auto;
    justify-items: center;
    align-items: center;
    overflow: visible;
    padding: 0;
  }

  .lp-partners__logos--gold .lp-partner-logo {
    width: 74px;
    min-width: 74px;
    height: 34px;
    max-height: 34px;
  }

  .lp-partners__logos--gold .lp-partner-logo img {
    max-width: 74px !important;
    max-height: 34px !important;
  }

  .lp-partners__logos--multirow {
    display: grid;
    grid-template-columns: repeat(2, 110px);
    gap: 8px 14px;
    height: 180px;
    margin-bottom: 0;
    justify-content: center;
    max-width: 100%;
    padding: 4px 0;
    overflow: hidden;
    align-content: start;
  }

  .lp-partners__logos--multirow .lp-partner-logo {
    width: 110px;
    min-width: 0;
    height: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lp-partners__logos--multirow .lp-partner-logo img {
    width: auto;
    height: auto;
    max-width: 75px;
    max-height: 100%;
    object-fit: contain;
  }

  .lp-partners__dots {
    position: absolute;
    bottom: 4px;
  }

  .lp-partner-logo {
    height: auto;
    max-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 1;
    min-width: 0;
  }

  .lp-partner-logo img {
    max-height: 42px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .lp-faq-contact {
    padding: 60px 20px;
  }

  .lp-faq__title {
    font-size: 28px;
  }

  .lp-accordion__trigger {
    font-size: 17px;
  }

  .lp-accordion__body {
    font-size: 16px;
  }

  .lp-contact__title {
    font-size: 28px;
  }

  .lp-contact__title::after {
    font-size: 16px;
  }

  .lp-input {
    font-size: 16px;
  }

  .lp-faq-contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lp-contact {
    position: static;
  }

  .lp-cta {
    padding: 64px 20px;
  }

  .lp-cta__title {
    font-size: 32px;
  }

  .lp-cta__sub {
    font-size: 16px;
  }

  .lp-btn--lg {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .lp-impact__stats {
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .lp-page__frame {
    max-width: 100%;
  }

  .lp-container {
    max-width: 100%;
    padding: 0 12px;
  }

  .lp-btn {
    min-height: 38px;
    padding: 0 18px;
    font-size: clamp(10px, 1.25vw, 14px);
    letter-spacing: 0;
  }

  .lp-hero {
    height: auto;
    min-height: 0;
    padding: 34px 24px 40px;
    /* background: radial-gradient(296.48% 106.22% at 100% 0%, #6EC9F1 0%, #FFFFFF 60%); */
    /* background-image: radial-gradient(296.48% 106.22% at 100% 0%, #6EC9F1 0%, #FFFFFF 60%); */
  }

  .lp-hero__inner {
    display: block;
    padding: 0;
  }

  .lp-hero__copy {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  .lp-hero__date {
    display: block;
    width: 200px;
    height: 90px;
    margin: 0 auto 30px;
    overflow: hidden;
    /* Fallback para navegadores antigos */
    background: url("../images/data-hero-banner.png") center / contain no-repeat;
    /* Navegadores modernos usarão WebP com fallback para PNG */
    background-image: image-set(
      url("../images/data-hero-banner.webp") type("image/webp"),
      url("../images/data-hero-banner.png") type("image/png")
    );
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    color: transparent;
    font-size: 0;
    line-height: 0;
  }

  .lp-hero__title {
    text-align: start;
    max-width: 100%;
    margin: 0 auto 30px;
    font-size: clamp(31px, 4.8vw, 46px);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .lp-hero__lead {
    text-align: start;
    max-width: 100%;
    margin: 0 auto 8px;
    font-size: clamp(16px, 2.1vw, 20px);
    line-height: 1.52;
    color: #be0f09;
    font-weight: 700;
  }

  .lp-hero__sub {
    text-align: start;
    max-width: 100%;
    margin: 0 auto 24px;
    font-size: clamp(16px, 2.1vw, 20px);
    line-height: 1.5;
    color: #4f4633;
    font-weight: 400;
  }

  .lp-hero__sub-highlight {
    text-align: start;
    display: block;
    margin-top: 24px;
    font-weight: 800;
  }

  .lp-hero .lp-btn {
    width: 100%;
    max-width: 60%;
    min-height: 56px;
    justify-content: center;
    border-radius: 999px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
    font-size: clamp(16px, 2vw, 18px);
  }

  .lp-impact {
    display: flex;
    flex-direction: column;
    background: #004f9f;
  }

  .lp-impact__media {
    min-height: 0;
    padding: 16px 14px 0;
    background: #004f9f;
  }

  .lp-impact__img,
  .lp-impact__video {
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
  }

  .lp-impact__img {
    object-fit: cover;
    object-position: center;
    opacity: 1;
  }

  .lp-impact__video {
    background: #000;
  }

  .lp-impact__play-btn {
    width: 54px;
    height: 54px;
  }

  .lp-impact__play-btn .material-icons {
    font-size: clamp(32px, 3.8vw, 40px);
  }

  .lp-impact__content {
    padding: 18px 14px 22px;
  }

  .lp-impact__eyebrow {
    margin-bottom: 6px;
    font-size: clamp(7px, 1vw, 10px);
    letter-spacing: 0.12em;
    color: #ffc708;
  }

  .lp-impact__title {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(26px, 4.2vw, 40px);
    line-height: 1.05;
  }

  .lp-impact__stats {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
  }

  .lp-stat {
    gap: 10px;
  }

  .lp-stat__icon {
    width: 32px;
    height: 32px;
    border-radius: 5px;
  }

  .lp-stat__icon .material-icons {
    font-size: 24px;
  }

  .lp-stat__num {
    font-size: clamp(18px, 2.8vw, 26px);
  }

  .lp-stat__label {
    font-size: clamp(11px, 1.45vw, 14px);
  }

  .lp-impact__quote {
    padding-left: 12px;
    font-size: clamp(14px, 1.8vw, 17px);
    line-height: 1.55;
  }

  .lp-steps {
    padding: 30px 12px 34px;
  }

  .lp-steps .lp-container {
    padding: 0;
  }

  .lp-steps__title {
    max-width: 100%;
    margin: 0 auto;
    font-size: clamp(18px, 3.6vw, 34px);
    line-height: 1.12;
  }

  .lp-steps__title::after {
    height: 2px;
    margin: 22px auto 18px;
    border-radius: 0;
  }

  .lp-steps__grid {
    gap: 10px;
  }

  .lp-step {
    padding: 17px 14px;
    border-radius: 6px;
    gap: 10px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  }

  .lp-step__head {
    align-items: flex-start;
  }

  .lp-step__num {
    font-size: clamp(22px, 3.3vw, 32px);
  }

  .lp-step__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .lp-step__icon .material-icons {
    font-size: clamp(20px, 2.7vw, 28px);
  }

  .lp-step__title {
    font-size: clamp(16px, 2.3vw, 22px);
  }

  .lp-step__text {
    font-size: clamp(15px, 1.9vw, 18px);
    line-height: 1.65;
  }

  .lp-corp {
    display: flex;
    flex-direction: column;
  }

  .lp-corp__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .lp-corp__content {
    padding: 24px 12px 20px;
    gap: 13px;
  }

  .lp-corp__title {
    max-width: 100%;
    font-size: clamp(20px, 3.8vw, 36px);
    line-height: 1.08;
    font-weight: 900;
  }

  .lp-corp__text {
    max-width: 100%;
    font-size: clamp(13px, 1.85vw, 18px);
    line-height: 1.5;
  }

  .lp-corp__stats {
    gap: 12px 18px;
    margin-bottom: 8px;
  }

  .lp-corp-stat {
    gap: 7px;
  }

  .lp-corp-stat__icon {
    width: 22px;
    height: 22px;
  }

  .lp-corp-stat__icon .material-icons {
    font-size: clamp(17px, 2.2vw, 22px);
  }

  .lp-corp-stat strong {
    font-size: clamp(14px, 2vw, 20px);
  }

  .lp-corp-stat small {
    font-size: clamp(10px, 1.35vw, 14px);
    line-height: 1.25;
  }

  .lp-corp__content .lp-btn {
    /* width: 100%; */
    max-width: 100%;
    min-height: 44px;
    padding: 12px 16px;
    font-size: clamp(14px, 1.85vw, 17px);
    justify-content: center;
  }

  .lp-corp__media {
    display: block;
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    order: 2;
    background: #f2f3f5;
  }

  .lp-corp__img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    object-position: center;
  }

  .lp-corp-progress {
    left: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 8px 14px 10px;
    border: 0;
    border-radius: 0;
    /* background: linear-gradient(90deg, rgba(124, 63, 28, .62), rgba(0, 0, 0, .36)); */
    background: none;
    backdrop-filter: none;
  }

  .lp-corp-progress__track {
    height: 5px;
    margin-bottom: 6px;
  }

  .lp-corp-progress__label {
    font-size: clamp(10px, 1.45vw, 14px);
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .lp-partners {
    padding: 14px 12px 18px;
    min-height: 280px;
  }

  .lp-partners .lp-container {
    padding: 0;
  }

  .lp-partners__header {
    gap: 8px;
    margin-bottom: 14px;
  }

  .lp-partners__title {
    font-size: clamp(12px, 2.5vw, 26px);
    line-height: 1.25;
  }

  .lp-partners__desc {
    max-width: 100%;
    margin: 0 auto;
    font-size: clamp(14px, 1.9vw, 18px);
    line-height: 1.45;
  }

  .lp-partners__carousel {
    grid-template-columns: 28px 1fr 28px;
    gap: 4px;
    align-items: end;
  }

  .lp-partners__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px;
    height: 230px;
    min-height: 230px;
    overflow: hidden;
  }

  .lp-partners__nav {
    width: 24px;
    height: 24px;
    box-shadow: none;
    border: 1px solid #eef1f5;
    align-self: end;
  }

  .lp-partners__nav svg {
    width: 14px;
    height: 14px;
  }

  .lp-partners__slide {
    height: 200px;
    /* min-height: 200px; */
    padding: 10px 4px 0;
    justify-content: center;
    overflow: hidden;
  }

  .lp-partners__tier {
    margin-bottom: 10px;
    font-size: clamp(12px, 1.55vw, 14px);
  }

  .lp-partners__logos {
    height: 92px;
    gap: 45px;
    margin-bottom: 12px;
    flex-shrink: 0;
  }

  /* Gold e Prata - Sobrescrever configurações genéricas */
  .lp-partners__logos--gold,
  .lp-partners__logos--prata {
    height: auto;
    gap: 12px;
    padding: 0 8px;
    overflow: hidden;
  }

  .lp-partner-logo {
    height: 30px;
  }

  .lp-partners__logos--gold .lp-partner-logo,
  .lp-partners__logos--prata .lp-partner-logo {
    width: 40px;
    min-width: 40px;
    height: auto;
    max-height: 30px;
  }

  .lp-partners__logos--gold .lp-partner-logo {
    width: 52px;
    min-width: 52px;
    max-height: 38px;
  }

  .lp-partner-logo img {
    max-width: 132px;
    max-height: 30px;
  }

  .lp-partners__logos--gold .lp-partner-logo img,
  .lp-partners__logos--prata .lp-partner-logo img {
    max-width: 40px;
    max-height: 30px;
    width: auto;
    height: auto;
  }

  .lp-partners__logos--gold .lp-partner-logo img {
    max-width: 52px;
    max-height: 38px;
  }

  /* Gold Mobile final: garante grid 2x2 no bloco que prevalece */
  .lp-partners__logos--gold {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
    width: min(100%, 220px);
    height: auto;
    justify-items: center;
    align-items: center;
    overflow: visible;
    padding: 0;
  }

  .lp-partners__logos--gold .lp-partner-logo {
    width: 74px;
    min-width: 74px;
    height: 34px;
    max-height: 34px;
  }

  .lp-partners__logos--gold .lp-partner-logo img {
    max-width: 74px;
    max-height: 34px;
  }

  .lp-partners__logos--prata {
    justify-content: center;
    overflow: visible;
  }

  .lp-partners__logos--prata .lp-partner-logo:only-child {
    width: min(100%, 88px);
    min-width: 0;
    height: 34px;
    max-height: 34px;
  }

  .lp-partners__logos--prata .lp-partner-logo:only-child img {
    max-width: 100% !important;
    max-height: 100% !important;
  }

  .lp-partners__logos--multirow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    height: 148px;
    overflow: hidden;
    align-content: start;
  }

  .lp-partners__logos--multirow .lp-partner-logo {
    height: 30px;
  }

  .lp-partners__logos--multirow .lp-partner-logo img {
    width: auto;
    height: auto;
    max-width: 80px;
    max-height: 100%;
    object-fit: contain;
  }

  .lp-partners__dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8px;
    gap: 7px;
    margin-top: 0;
  }

  .lp-partners__dot {
    width: 6px;
    height: 6px;
  }

  .lp-partners__dot--active {
    width: 18px;
  }

  .lp-faq-contact {
    padding: 30px 12px 28px;
    background: #f3f3f3;
  }

  .lp-faq-contact .lp-container {
    padding: 0;
  }

  .lp-faq-contact__inner {
    gap: 18px;
  }

  .lp-faq__title {
    margin-bottom: 12px;
    font-size: clamp(22px, 3.4vw, 32px);
    color: #111827;
  }

  .lp-accordion {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .lp-accordion__item {
    border: 0;
    border-radius: 3px;
    background: #fff;
  }

  .lp-accordion__trigger {
    min-height: 31px;
    padding: 0 10px;
    gap: 8px;
    font-size: clamp(15px, 1.9vw, 18px);
    line-height: 1.2;
  }

  .lp-accordion__icon {
    font-size: clamp(16px, 2vw, 20px);
  }

  .lp-accordion__body {
    padding: 0 10px 10px;
    font-size: clamp(14px, 1.75vw, 17px);
    line-height: 1.5;
  }

  .lp-contact {
    padding: 24px 18px 20px;
    border-radius: 18px;
    background: #ffc708;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  }

  .lp-contact__title {
    margin-bottom: 4px;
    font-size: clamp(22px, 3.4vw, 32px);
    color: #6f5400;
  }

  .lp-contact__title::after {
    content: "Tire suas dúvidas ou peça apoio corporativo. Vamos conversar?";
    display: block;
    max-width: 100%;
    margin-top: 4px;
    color: rgba(111, 84, 0, 0.8);
    font-size: clamp(14px, 1.75vw, 17px);
    font-weight: 600;
    line-height: 1.35;
  }

  .lp-contact__form {
    gap: 12px;
    margin-top: 18px;
  }

  .lp-input {
    min-height: 44px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    font-size: clamp(15px, 1.85vw, 17px);
  }

  .lp-input--textarea {
    min-height: 132px;
    padding-top: 14px;
    border-radius: 18px;
  }

  .lp-field--recaptcha {
    padding: 6px 8px;
    border: 0;
    border-radius: 4px;
    background: #fff;
  }

  .lp-recaptcha-placeholder {
    gap: 8px;
  }

  .lp-btn .lp-btn--red .lp-btn--lg {
    width: 60%;
  }

  .lp-recaptcha-check {
    width: 16px;
    height: 16px;
  }

  .lp-recaptcha-label {
    font-size: clamp(12px, 1.45vw, 14px);
  }

  .lp-recaptcha-logo {
    padding: 3px 5px;
  }

  .lp-recaptcha-logo span {
    font-size: 8px;
  }

  .lp-recaptcha-logo small {
    font-size: 7px;
  }

  .lp-contact .lp-btn {
    min-height: 44px;
    border-radius: 999px;
    font-size: clamp(12px, 1.6vw, 15px);
    text-transform: uppercase;
  }

  .lp-field--message {
    padding: 8px 10px;
    font-size: clamp(12px, 1.45vw, 14px);
  }

  .lp-cta {
    padding: 34px 12px 40px;
  }

  .lp-cta__inner {
    max-width: 100%;
  }

  .lp-cta__title {
    margin-bottom: 8px;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.1;
  }

  .lp-cta__sub {
    margin-bottom: 20px;
    font-size: clamp(14px, 1.9vw, 18px);
    line-height: 1.45;
  }

  .lp-btn--lg {
    width: 100%;
    min-height: 38px;
    padding: 0 16px;
    font-size: clamp(8px, 1.25vw, 13px);
  }
}

@media (max-width: 480px) {
  .lp-container {
    padding: 0;
  }

  .lp-hero {
    padding: 24px;
  }

  .lp-hero__copy {
    max-width: 100%;
  }

  .lp-hero__date {
    margin-bottom: 30px;
  }

  .lp-hero__title {
    text-align: start;
    font-size: 31px;
  }

  .lp-hero__lead,
  .lp-hero__sub,
  .lp-hero .lp-btn,
  .lp-btn .lp-btn--red .lp-btn--lg {
    text-align: start;
    max-width: 100%;
  }

  .lp-impact__stats {
    grid-template-columns: 1fr;
  }

  .lp-partners {
    padding-top: 14px;
  }

  .lp-partners__header {
    margin-bottom: 14px;
  }

  .lp-partners__slide {
    height: 200px;
    min-height: 140px;
    padding-top: 10px;
    justify-content: center;
    overflow: hidden;
  }

  .lp-partners__logos {
    height: 92px;
  }

  .lp-partners__logos--multirow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 160px;
    overflow: hidden;
    align-content: start;
  }

  .lp-partners__logos--multirow .lp-partner-logo {
    height: 30px;
  }

  .lp-cta__title {
    font-size: 22px;
  }

  .lp-corp__content .lp-btn,
  .lp-btn.lp-btn--red.lp-btn--lg {
    width: 100%;
  }
}

/* ── HERO MOBILE LOGOS ──────────────────────────────────── */

/* Desktop: esconde os logos mobile do hero (o header já os exibe) */
.lp-hero__mobile-logos {
  display: none;
}

/* Mobile: exibe os logos no topo do hero */
@media (max-width: 1024px) {
  .lp-hero__mobile-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
  }

  .lp-hero__mobile-logo--mcdia {
    height: 120px; /* era 52px */
  }

  .lp-hero__mobile-logo--ias {
    height: 120px; /* era 38px */
  }

  .lp-hero__mobile-logos-sep {
    height: 50px; /* era 36px */
  }
}

@media (max-width: 480px) {
  .lp-hero__mobile-logos {
    gap: 16px;
    margin-bottom: 20px;
  }

  .lp-hero__mobile-logo--mcdia {
    height: 100px;
  }

  .lp-hero__mobile-logo--ias {
    height: 100px;
  }

  .lp-hero__mobile-logos-sep {
    height: 44px;
  }
}

/* Tablet landscape / telas entre desktop e mobile */
@media (min-width: 1025px) and (max-width: 1280px) {
  .lp-hero {
    background-color: #75ecff;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;

    min-height: 0;
    height: 56vw;
    max-height: 690px;

    padding: 52px 48px 0;
    overflow: hidden;
  }

  .lp-hero__copy {
    width: clamp(500px, 44vw, 600px);
    padding-top: 130px;
  }

  .lp-hero__title {
    font-size: 38px;
    margin-bottom: 34px;
  }

  .lp-hero__lead,
  .lp-hero__sub {
    font-size: 18px;
  }

  .lp-hero__sub {
    margin-bottom: 38px;
  }

  .lp-hero .lp-btn {
    width: 100%;
    max-width: 520px;
  }
}

/* Correção específica para desktop estreito: 1025px até 1100px */
@media (min-width: 1025px) and (max-width: 1100px) {
  .lp-hero {
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;

    min-height: 610px;
    height: auto;
    max-height: none;

    padding: 42px 48px 0;
    overflow: visible;
  }

  .lp-hero__copy {
    width: 380px;
    padding-top: 145px;
  }

  .lp-hero__title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .lp-hero__lead,
  .lp-hero__sub {
    font-size: 15px;
    line-height: 1.4;
  }

  .lp-hero__lead {
    margin-bottom: 10px;
  }

  .lp-hero__sub {
    margin-bottom: 22px;
  }

  .lp-hero__sub-highlight {
    margin-top: 10px;
  }

  .lp-hero .lp-btn {
    max-width: 400px;
    min-height: 48px;
    font-size: 15px;
  }
}
