.lp04-shell {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3fb;
  --surface-strong: #e7eefc;
  --text: #0f1b3d;
  --muted: #5a6786;
  --primary: #2f63ff;
  --primary-dark: #214be0;
  --line: rgba(15, 27, 61, 0.08);
  --shadow: 0 18px 40px rgba(16, 34, 86, 0.12);
  --shadow-soft: 0 10px 26px rgba(16, 34, 86, 0.08);
}

.lp04-shell * { box-sizing: border-box; }

.lp04-shell { scroll-behavior: smooth; }

.lp04-shell {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.lp04-shell a {
  color: inherit;
  text-decoration: none;
}

.lp04-shell button,
.lp04-shell input,
.lp04-shell select,
.lp04-shell textarea {
  font: inherit;
}

.lp04-shell .container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.lp04-shell .topbar {
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
}

.lp04-shell .topbar__inner,
.lp04-shell .header__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp04-shell .header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.lp04-shell .header__inner { min-height: 68px; }

.lp04-shell .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.lp04-shell .brand__mark {
  width: 38px;
  height: 24px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 45%, #fff 0 10%, transparent 11%),
    radial-gradient(circle at 55% 40%, #fff 0 8%, transparent 9%),
    linear-gradient(135deg, #111 0%, #333 100%);
  box-shadow: var(--shadow);
}

.lp04-shell .brand__text { letter-spacing: 0.02em; }

.lp04-shell .nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.lp04-shell .hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 15, 34, 0.78), rgba(8, 15, 34, 0.26)),
    radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(135deg, #6d7685 0%, #c2c8d2 100%);
  overflow: hidden;
}

.lp04-shell .hero::before,
.lp04-shell .hero::after {
  content: "";
  position: absolute;
  inset: auto;
}

.lp04-shell .hero::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)),
    radial-gradient(circle at 70% 40%, rgba(0,0,0,0.16), transparent 25%);
  opacity: 0.7;
}

.lp04-shell .hero::after {
  inset: auto -10% -15% auto;
  width: 60%;
  height: 110%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02)),
    radial-gradient(circle at 50% 40%, rgba(40, 125, 255, 0.28), transparent 45%);
  transform: rotate(-8deg);
  filter: blur(8px);
}

.lp04-shell .hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #fff;
  padding: 88px 0;
}

.lp04-shell .eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lp04-shell .eyebrow--center {
  display: block;
  text-align: center;
}

.lp04-shell .hero h1,
.lp04-shell .section h2 {
  margin: 0;
  line-height: 1.06;
}

.lp04-shell .hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  max-width: 11ch;
}

.lp04-shell .hero__text {
  max-width: 60ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
  line-height: 1.8;
}

.lp04-shell .hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.lp04-shell .hero__metrics {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.lp04-shell .metric {
  min-width: 148px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
}

.lp04-shell .metric strong {
  display: block;
  font-size: 1.25rem;
}

.lp04-shell .metric span {
  color: rgba(255,255,255,0.76);
  font-size: 0.9rem;
}

.lp04-shell .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.lp04-shell .btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(47, 99, 255, 0.3);
}

.lp04-shell .btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.lp04-shell .btn--ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}

.lp04-shell .section { padding: 74px 0; }
.lp04-shell .section--compact { padding-top: 58px; }
.lp04-shell .section--alt,
.lp04-shell .section--light { background: #fff; }

.lp04-shell .section__heading {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.lp04-shell .section__heading--small { max-width: 720px; }

.lp04-shell .section h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.6rem);
}

.lp04-shell .section p {
  color: var(--muted);
  line-height: 1.8;
}

@keyframes lp04-btn-pulse {
  0% {
    box-shadow:
      0 10px 24px rgba(15, 27, 61, 0.18),
      0 0 0 0 var(--lp-btn-pulse-color, rgba(47, 99, 255, 0.45));
    transform: translateY(0) scale(1);
  }

  55% {
    box-shadow:
      0 12px 28px rgba(15, 27, 61, 0.22),
      0 0 0 12px transparent;
    transform: translateY(0) scale(1.02);
  }

  100% {
    box-shadow:
      0 10px 24px rgba(15, 27, 61, 0.18),
      0 0 0 0 transparent;
    transform: translateY(0) scale(1);
  }
}

.btn-padrao {
  --lp-btn-pulse-color: color-mix(in srgb, var(--lp-cor-primaria, #2f63ff) 42%, transparent);

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--lp-cor-primaria, #2f63ff) 0%,
    color-mix(in srgb, var(--lp-cor-primaria, #2f63ff) 72%, #000) 100%
  );
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 27, 61, 0.18);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease,
    background 0.28s ease;
  animation: lp04-btn-pulse 2.1s ease-in-out infinite;
}

.btn-padrao:hover,
.btn-padrao:focus-visible {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.04);
  filter: brightness(1.08) saturate(1.05);
  box-shadow:
    0 16px 34px rgba(15, 27, 61, 0.24),
    0 0 0 4px color-mix(in srgb, var(--lp-cor-primaria, #2f63ff) 28%, transparent);
  color: #fff !important;
  outline: none;
}

.btn-padrao:active {
  transform: translateY(-1px) scale(1.01);
  filter: brightness(0.98);
}

.btn-padrao.h4,
.btn-padrao.h5,
.btn-padrao.h6 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.btn-padrao i,
.btn-padrao svg {
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
}

.btn-padrao:has(.fa-whatsapp) {
  --lp-btn-pulse-color: rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #25d366 0%, #1aad52 100%);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.btn-padrao:has(.fa-whatsapp):hover,
.btn-padrao:has(.fa-whatsapp):focus-visible {
  box-shadow:
    0 16px 34px rgba(37, 211, 102, 0.34),
    0 0 0 4px rgba(37, 211, 102, 0.22);
}

.btn-wrapper .btn-padrao:nth-child(2),
.split__content .btn-padrao:nth-child(2) {
  --lp-btn-pulse-color: color-mix(in srgb, var(--lp-cor-secundaria, #133859) 42%, transparent);
  background: linear-gradient(
    135deg,
    var(--lp-cor-secundaria, #133859) 0%,
    color-mix(in srgb, var(--lp-cor-secundaria, #133859) 72%, #000) 100%
  );
}

.btn-wrapper .btn-padrao:nth-child(2):hover,
.btn-wrapper .btn-padrao:nth-child(2):focus-visible,
.split__content .btn-padrao:nth-child(2):hover,
.split__content .btn-padrao:nth-child(2):focus-visible {
  box-shadow:
    0 16px 34px rgba(15, 27, 61, 0.24),
    0 0 0 4px color-mix(in srgb, var(--lp-cor-secundaria, #133859) 28%, transparent);
}

@media (max-width: 62rem) {
  .btn-padrao {
    width: 100%;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-padrao {
    animation: none;
  }

  .btn-padrao:hover,
  .btn-padrao:focus-visible {
    transform: none;
  }
}

.lp04-shell .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lp04-shell .card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.lp04-shell .card__icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 1.1rem;
}

.lp04-shell .card h3 {
  margin: 14px 0 10px;
  font-size: 1rem;
}

.lp04-shell .card p {
  margin: 0 0 18px;
  font-size: 0.95rem;
}

.lp04-shell .card a {
  display: inline-flex;
  min-width: 110px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.lp04-shell .split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.lp04-shell .split--reverse { grid-template-columns: 0.95fr 1.05fr; }
.lp04-shell .split__content h2 { margin-bottom: 16px; }
.lp04-shell .split__media {
  display: grid;
  gap: 14px;
}

.lp04-shell .split__media--stacked {
  grid-template-columns: 1fr 1fr;
}

.lp04-shell .image-card {
  min-height: 180px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.26), rgba(255,255,255,0.04)),
    radial-gradient(circle at 30% 30%, rgba(47, 99, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #69717d 0%, #b4bcc8 100%);
}

.lp04-shell .image-card--tall { min-height: 260px; }
.lp04-shell .image-card--wide { min-height: 320px; }

.lp04-shell .feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.lp04-shell .feature-strip > div {
  padding: 16px;
  border-radius: 14px;
  background: var(--surface-soft);
}

.lp04-shell .feature-strip strong,
.lp04-shell .feature-strip span {
  display: block;
}

.lp04-shell .feature-strip strong {
  margin-bottom: 4px;
  color: var(--text);
}

.lp04-shell .checklist {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.lp04-shell .checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.lp04-shell .checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

.lp04-shell .section--brands {
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.lp04-shell .logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  color: #6b7791;
  font-weight: 800;
}

.lp04-shell .section--cta {
  background: #eff4ff;
}

.lp04-shell .section--cta-soft {
  background: #eaf1ff;
}

.lp04-shell .cta {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.lp04-shell .cta h2 { max-width: 18ch; }

.lp04-shell .section--contact {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #101521;
}

.lp04-shell .contact-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.86), rgba(7, 10, 18, 0.62)),
    radial-gradient(circle at 20% 30%, rgba(47, 99, 255, 0.2), transparent 20%),
    linear-gradient(135deg, #1d2430 0%, #474f5f 100%);
}

.lp04-shell .contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.lp04-shell .contact-panel,
.lp04-shell .contact-side {
  padding: 30px;
  background: rgba(15, 19, 29, 0.56);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.lp04-shell .contact-panel h2,
.lp04-shell .contact-side h3,
.lp04-shell .contact-note strong {
  color: #fff;
}

.lp04-shell .contact-panel p,
.lp04-shell .contact-side p,
.lp04-shell .contact-note p {
  color: rgba(255,255,255,0.78);
}

.lp04-shell .form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.lp04-shell .form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

.lp04-shell .form span {
  color: rgba(255,255,255,0.74);
}

.lp04-shell .form input,
.lp04-shell .form select,
.lp04-shell .form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
}

.lp04-shell .form textarea { resize: vertical; }
.lp04-shell .form__full { grid-column: 1 / -1; }
.lp04-shell .btn--full { grid-column: 1 / -1; width: 100%; }

.lp04-shell .contact-side {
  display: grid;
  gap: 18px;
}

.lp04-shell .info-box { padding: 4px 0 10px; }

.lp04-shell .map-placeholder,
.lp04-shell .map-large {
  display: grid;
  place-items: center;
  border-radius: 18px;
  min-height: 230px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04)),
    radial-gradient(circle at 40% 35%, rgba(47, 99, 255, 0.22), transparent 38%),
    linear-gradient(135deg, #cad3e2 0%, #f0f4fb 100%);
  color: #3550a5;
  font-weight: 900;
}

.lp04-shell .contact-note {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.lp04-shell .section--geo {
  background: #fff;
}

.lp04-shell .chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}

.lp04-shell .chip-row span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(47, 99, 255, 0.25);
  background: #f8fbff;
  color: #3350c7;
  font-size: 0.9rem;
  font-weight: 700;
}

.lp04-shell .map-large {
  min-height: 370px;
  width: 100%;
  max-width: 100%;
}

.lp04-shell .section--footer-top {
  background: #e9edf4;
  padding: 34px 0;
}

.lp04-shell .footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.lp04-shell .footer-top__brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.lp04-shell .footer-top__brand p {
  margin: 0;
  color: #3c4762;
}

.lp04-shell .footer-top h3 {
  margin: 0 0 10px;
  color: var(--text);
}

.lp04-shell .footer-top p {
  margin: 0 0 8px;
  color: #3c4762;
}

.lp04-localidades-section {
  margin-top: 40px;
  padding: 12px 0 36px;
  background: #eef1f7;
}

.lp04-localidades-panel {
  margin-bottom: 12px;
}

.lp04-localidades-panel .localidades {
  background: #fff;
  border: 1px solid var(--line, rgba(15, 27, 61, 0.08));
  border-radius: 14px;
  padding: 16px 14px;
  box-shadow: var(--shadow-soft, 0 10px 26px rgba(16, 34, 86, 0.08));
}

.lp04-localidades-panel__title {
  margin: 0 0 8px;
  text-align: center;
  font-size: 0.78rem !important;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--lp-cor-primaria, #2f63ff) !important;
}

.lp04-localidades-panel__lead {
  margin: 0 auto 14px;
  max-width: 680px;
  text-align: center;
  color: #5a6786;
  font-size: 0.82rem;
  line-height: 1.45;
}

.lp04-localidades-panel__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp04-localidades-panel__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47, 99, 255, 0.28);
  background: #f8fbff;
  color: #3350c7;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lp04-localidades-panel__chip:hover,
.lp04-localidades-panel__chip:focus-visible {
  background: #eaf1ff;
  border-color: rgba(47, 99, 255, 0.5);
  color: #214be0;
  transform: translateY(-1px);
  outline: none;
}

.lp04-localidades-panel__chip--current {
  background: #4b5563;
  border-color: #4b5563;
  color: #f3f4f6;
  cursor: default;
}

.lp04-localidades-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px 12px;
  padding: 10px 14px;
  border: 1px solid var(--line, rgba(15, 27, 61, 0.08));
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft, 0 10px 26px rgba(16, 34, 86, 0.08));
}

.lp04-localidades-bar__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #1f2937;
  font-size: 1.15rem;
}

.lp04-localidades-bar__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 40px;
  border: 0;
  background: transparent;
  color: var(--lp-cor-primaria, #2f63ff);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.lp04-localidades-bar__toggle [data-lp04-localidades-chevron] {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.lp04-localidades-bar__toggle [data-lp04-localidades-chevron].is-open {
  transform: rotate(180deg);
}

.lp04-localidades-bar__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.lp04-localidades-bar__social li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: var(--lp04-social-bg, var(--lp-cor-primaria, #2f63ff));
  color: var(--lp04-social-color, #fff);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.lp04-localidades-bar__social li:hover {
  background: var(--lp04-social-hover, #0056b3);
  transform: scale(1.06);
}

.lp04-localidades-bar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit !important;
  text-decoration: none;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .lp04-localidades-bar {
    grid-template-columns: auto 1fr auto;
  }

  .lp04-localidades-bar__toggle {
    font-size: 0.82rem;
  }

  .lp04-localidades-bar__social li {
    width: 30px;
    height: 30px;
  }
}

.lp04-footer {
  background: var(--lp04-footer-bg, #166534);
  color: #fff;
  padding: 48px 0 0;
}

.lp04-footer__intro {
  max-width: 820px;
  margin: 0 auto 26px;
  text-align: center;
}

.lp04-footer__heading {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 800;
  line-height: 1.4;
}

.lp04-footer__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

.lp04-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 32px;
  padding-bottom: 36px;
}

.lp04-footer__current {
  display: inline-block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.lp04-footer__title {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
}

.lp04-footer__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.65;
}

.lp04-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp04-footer__list li + li {
  margin-top: 8px;
}

.lp04-footer__list a {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lp04-footer__list a:hover,
.lp04-footer__list a:focus-visible {
  color: #fff;
  outline: none;
}

.lp04-footer__list--contact a i,
.lp04-footer__address i {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.92;
}

.lp04-footer__address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.5;
}

.lp04-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px 0 20px;
  text-align: center;
}

.lp04-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .lp04-footer {
    padding-top: 36px;
  }

  .lp04-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
    padding-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .lp04-footer__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 980px) {
  .lp04-shell .cards-grid,
  .lp04-shell .split,
  .lp04-shell .contact-grid,
  .lp04-shell .footer-top {
    grid-template-columns: 1fr;
  }

  .lp04-shell .split--reverse {
    grid-template-columns: 1fr;
  }

  .lp04-shell .feature-strip {
    grid-template-columns: 1fr;
  }

  .lp04-shell .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp04-shell .hero {
    min-height: 560px;
  }
}

@media (max-width: 720px) {
  .lp04-shell .topbar__inner,
  .lp04-shell .header__inner {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
  }

  .lp04-shell .nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .lp04-shell .hero__content {
    padding: 64px 0;
  }

  .lp04-shell .hero h1 {
    max-width: none;
  }

  .lp04-shell .hero__metrics {
    gap: 10px;
  }

  .lp04-shell .metric {
    min-width: 100%;
  }

  .lp04-shell .form {
    grid-template-columns: 1fr;
  }

  .lp04-shell .split__media--stacked {
    grid-template-columns: 1fr;
  }
}

.lp04-shell {
  font-family: "Inter", "Manrope", system-ui, sans-serif;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  color: var(--text);
}

.lp04-shell .topbar p,
.lp04-shell .section p,
.lp04-shell .footer-top p,
.lp04-shell .footer__bottom p {
  margin-top: 0;
}

.lp04-shell .hero {
  background-size: cover;
  background-position: center;
}

.lp04-shell .hero__text p {
  color: rgba(255, 255, 255, 0.88);
}

.lp04-shell .hero__actions .btn {
  gap: 8px;
}

.lp04-shell .image-card {
  width: 100%;
  object-fit: cover;
}

.lp04-shell .split__content .btn {
  margin-top: 18px;
}

.lp04-shell .logos a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #405179;
  box-shadow: var(--shadow-soft);
}

.lp04-shell .cta__note {
  margin-top: 10px;
}

.lp04-shell .lp04-contact-actions {
  grid-template-columns: 1fr;
}

.lp04-shell .lp04-mapa-section.section {
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft, #eef3fb) 42%, #fff 100%);
  padding: 48px 0;
  overflow-x: clip;
}

.lp04-mapa-section__intro {
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(15, 27, 61, 0.08);
}

.lp04-mapa-section__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.lp04-mapa-section__cta {
  margin-top: 4px;
}

.lp04-mapa-section__cta .btn-padrao {
  width: auto;
  max-width: 100%;
}

.lp04-mapa-section__header {
  box-shadow: none;
  filter: none;
  text-shadow: none;
}

.lp04-mapa-section__header h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  color: var(--lp-cor-primaria, var(--primary, #2f63ff));
  line-height: 1.2;
  text-shadow: none;
}

.lp04-mapa-section__header p {
  margin: 0;
  color: var(--muted, #5a6786);
  font-size: 1rem;
  line-height: 1.65;
  text-shadow: none;
}

.lp04-mapa-section__media {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  min-height: 100%;
}

.lp04-mapa-section__media img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.lp04-mapa-location-picker {
  padding: 20px 22px 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
}

.lp04-mapa-location-picker__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.lp04-mapa-location-picker__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--lp-cor-primaria, var(--primary, #2f63ff));
  background: color-mix(in srgb, var(--lp-cor-primaria, #2f63ff) 10%, #fff);
  box-shadow: none;
}

.lp04-mapa-location-picker__head-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.lp04-mapa-location-picker__head-title {
  color: var(--text, #0f1b3d);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.lp04-mapa-location-picker__head-desc {
  color: var(--muted, #5a6786);
  font-size: 0.88rem;
  line-height: 1.5;
}

.lp04-mapa-location-picker .lp-select-location {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  width: 100%;
}

.lp04-mapa-location-picker .lp-select-location > select {
  display: none !important;
}

.lp04-mapa-location-picker .lp-select-location > .select2-container {
  width: 100% !important;
  min-width: 0;
}

.lp04-mapa-location-picker #location_state + .select2-container::before,
.lp04-mapa-location-picker #location_city + .select2-container::before {
  display: block;
  margin-bottom: 6px;
  color: var(--muted, #5a6786);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lp04-mapa-location-picker #location_state + .select2-container::before {
  content: "Estado";
}

.lp04-mapa-location-picker #location_city + .select2-container::before {
  content: "Cidade";
}

.lp04-mapa-location-picker .select2-container--default .select2-selection--single {
  position: relative;
  height: 46px !important;
  border: 1px solid rgba(15, 27, 61, 0.14) !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp04-mapa-location-picker .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0 52px 0 14px !important;
  color: var(--text, #0f1b3d);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 44px !important;
}

.lp04-mapa-location-picker .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--muted, #5a6786);
  font-weight: 500;
}

.lp04-mapa-location-picker .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0 !important;
  right: 10px !important;
  width: 22px !important;
  height: 44px !important;
  transform: none !important;
}

.lp04-mapa-location-picker .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.lp04-mapa-location-picker .select2-container--default .select2-selection--single .select2-selection__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  margin: -5px 0 0 -4px;
  border-right: 2px solid var(--muted, #5a6786);
  border-bottom: 2px solid var(--muted, #5a6786);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.lp04-mapa-location-picker .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow::after {
  margin-top: -2px;
  transform: rotate(-135deg);
}

.lp04-mapa-location-picker .select2-container--default .select2-selection--single .select2-selection__clear {
  position: absolute;
  top: 50%;
  right: 30px;
  margin: 0;
  padding: 0;
  color: var(--muted, #5a6786);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  z-index: 1;
}

.lp04-mapa-location-picker .select2-container--default.select2-container--focus .select2-selection--single,
.lp04-mapa-location-picker .select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--lp-cor-primaria, #2f63ff) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lp-cor-primaria, #2f63ff) 12%, transparent) !important;
}

.lp04-mapa-location-picker .select2-container--default .select2-dropdown {
  margin-top: 4px;
  overflow: hidden;
  border: 1px solid rgba(15, 27, 61, 0.1) !important;
  border-radius: 12px !important;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 27, 61, 0.1);
}

.lp04-mapa-location-picker .select2-container--default .select2-search--dropdown {
  padding: 10px 10px 6px;
}

.lp04-mapa-location-picker .select2-container--default .select2-search--dropdown .select2-search__field {
  padding: 9px 12px;
  border: 1px solid rgba(15, 27, 61, 0.12) !important;
  border-radius: 10px !important;
  outline: none;
  font-size: 0.9rem;
}

.lp04-mapa-location-picker .select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: var(--lp-cor-primaria, #2f63ff) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lp-cor-primaria, #2f63ff) 12%, transparent);
}

.lp04-mapa-location-picker .select2-container--default .select2-results__option {
  padding: 10px 14px;
  color: var(--text, #0f1b3d);
  font-size: 0.9rem;
}

.lp04-mapa-location-picker .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: color-mix(in srgb, var(--lp-cor-primaria, #2f63ff) 10%, #fff);
  color: var(--lp-cor-primaria, var(--primary-dark, #214be0));
}

.lp04-mapa-location-picker .select2-container--default .select2-results__option[aria-selected="true"] {
  background: color-mix(in srgb, var(--lp-cor-primaria, #2f63ff) 14%, #fff);
  color: var(--lp-cor-primaria, var(--primary-dark, #214be0));
  font-weight: 700;
}

.select2-container--default .select2-dropdown {
  margin-top: 4px;
  overflow: hidden;
  border: 1px solid rgba(15, 27, 61, 0.1) !important;
  border-radius: 12px !important;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 27, 61, 0.1);
  font-family: "Manrope", system-ui, sans-serif;
}

.select2-container--default .select2-search--dropdown {
  padding: 10px 10px 6px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  padding: 9px 12px;
  border: 1px solid rgba(15, 27, 61, 0.12) !important;
  border-radius: 10px !important;
  outline: none;
  font-size: 0.9rem;
}

.select2-container--default .select2-results__option {
  padding: 10px 14px;
  font-size: 0.9rem;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: color-mix(in srgb, var(--lp-cor-primaria, #2f63ff) 10%, #fff);
  color: var(--lp-cor-primaria, #214be0);
}

@media (max-width: 991px) {
  .lp04-mapa-section__content {
    gap: 18px;
  }

  .lp04-mapa-section__media-col {
    order: -1;
  }

  .lp04-mapa-section__media {
    align-items: center;
  }

  .lp04-mapa-section__media img {
    max-width: 280px;
    margin: 0 auto;
  }

  .lp04-mapa-location-picker {
    padding: 18px 16px 16px;
  }

  .lp04-mapa-location-picker .lp-select-location {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lp04-mapa-section__cta .btn-padrao {
    width: 100%;
  }
}

.lp04-terms-marquee {
  --lp04-marquee-duration: 120s;
  --lp04-marquee-segments: 4;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 8px 0 28px;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.lp04-terms-marquee:hover .lp04-terms-marquee__track,
.lp04-terms-marquee:focus-within .lp04-terms-marquee__track {
  animation-play-state: paused;
}

.lp04-terms-marquee__track {
  display: flex;
  width: max-content;
  animation: lp04-terms-marquee-scroll var(--lp04-marquee-duration) linear infinite;
  will-change: transform;
}

.lp04-terms-marquee__group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
  flex-shrink: 0;
}

.lp04-terms-marquee__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(47, 99, 255, 0.35);
  background: #f8fbff;
  color: #3350c7;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lp04-terms-marquee__chip:hover,
.lp04-terms-marquee__chip:focus-visible {
  background: #eaf1ff;
  border-color: rgba(47, 99, 255, 0.55);
  color: #214be0;
  transform: translateY(-1px);
  outline: none;
}

.lp04-terms-marquee__chip--active {
  background: #4b5563;
  border-color: #4b5563;
  color: #f3f4f6;
  cursor: default;
}

@keyframes lp04-terms-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% / var(--lp04-marquee-segments, 4)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp04-terms-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    gap: 10px;
  }

  .lp04-terms-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .lp04-terms-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.lp04-mapa-section .map-large {
  display: block;
  overflow: hidden;
  padding: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 18px;
  background: #eef1f7;
}

.lp04-mapa-section .map-large .mapouter,
.lp04-mapa-section .map-large .gmap_canvas,
.lp04-mapa-section .map-large iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 420px !important;
}

.lp04-mapa-section .map-large .mapouter {
  position: relative;
  text-align: left;
  margin: 0;
}

.lp04-mapa-section .map-large .gmap_canvas {
  overflow: hidden;
  background: none !important;
}

.lp04-shell .lp04-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.lp04-shell .lp04-faq-item:first-child {
  padding-top: 0;
}

.lp04-shell .lp04-faq-item summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
}

.lp04-shell .lp04-faq-item div {
  padding-top: 12px;
}

.lp04-cards-section {
  padding: 56px 0 48px;
  background: #fff;
}

.lp04-shell .lp04-cards__split {
  gap: 42px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.lp04-shell .lp04-cards__content {
  padding-bottom: 48px;
}

.lp04-shell .lp04-cards__content h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.2;
}

.lp04-shell .lp04-cards__lead {
  margin-bottom: 22px;
  color: var(--muted, #5a6786);
  font-size: 1rem;
  line-height: 1.65;
}

.lp04-shell .lp04-cards__lead p {
  margin: 0;
}

.lp04-shell .lp04-cards__block {
  margin-bottom: 20px;
}

.lp04-shell .lp04-cards__block:last-child {
  margin-bottom: 0;
}

.lp04-shell .lp04-cards__block h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.lp04-shell .lp04-cards__block p {
  margin: 0;
  color: var(--muted, #5a6786);
  font-size: 0.96rem;
  line-height: 1.65;
}

.lp04-shell .lp04-cards__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  background: transparent;
  position: sticky;
  top: 88px;
}

.lp04-shell .lp04-cards__media img {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 10px 20px rgba(15, 27, 61, 0.1));
  object-fit: contain;
  object-position: bottom center;
}

.lp04-shell .lp04-cards__cta {
  margin-top: 28px;
}

.lp04-shell .lp04-cards__content .lp04-cards__cta .btn-padrao {
  width: auto;
  max-width: 100%;
}

@media (max-width: 980px) {
  .lp04-cards-section {
    padding: 44px 0 36px;
  }

  .lp04-shell .lp04-cards__content {
    padding-bottom: 36px;
  }

  .lp04-shell .lp04-cards__split {
    grid-template-columns: 1fr;
  }

  .lp04-shell .lp04-cards__media {
    position: static;
    order: -1;
  }

  .lp04-shell .lp04-cards__media img {
    max-width: 320px;
    margin: 0 auto;
  }

  .lp04-shell .lp04-cards__content .lp04-cards__cta .btn-padrao {
    width: 100%;
  }
}

.lp04-jornada-cta {
  position: relative;
  overflow: hidden;
  padding: 36px 0 0;
  background: var(--lp04-jornada-bg, #166534);
  color: #fff;
}

.lp04-jornada-cta__content {
  position: relative;
  z-index: 2;
  padding: 4px 0 36px;
}

.lp04-jornada-cta__title {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.95rem, 3.1vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-shadow: none;
}

.lp04-jornada-cta__text {
  margin: 0 0 22px;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.14rem;
  font-weight: 400;
  line-height: 1.6;
}

.lp04-jornada-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lp04-jornada-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 10px;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lp04-jornada-cta__btn i {
  font-size: 1rem;
  line-height: 1;
}

.lp04-jornada-cta__btn--plantao {
  border: 1px solid #fff;
  background: #fff;
  color: #14532d;
}

.lp04-jornada-cta__btn--plantao i {
  color: #25d366;
  font-size: 1.2rem;
}

.lp04-jornada-cta__btn--plantao:hover,
.lp04-jornada-cta__btn--plantao:focus-visible {
  background: #f8fafc;
  color: #14532d;
  outline: none;
}

.lp04-jornada-cta__btn--phone {
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: transparent;
  color: #fff;
}

.lp04-jornada-cta__btn--phone:hover,
.lp04-jornada-cta__btn--phone:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
}

.lp04-jornada-cta__media-col {
  position: relative;
  z-index: 1;
}

.lp04-jornada-cta__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 220px;
  padding-bottom: 0;
}

.lp04-jornada-cta__arcs {
  position: absolute;
  right: -4%;
  bottom: -12%;
  width: min(340px, 100%);
  height: min(340px, 100%);
  pointer-events: none;
}

.lp04-jornada-cta__arc {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: translate(18%, 18%);
}

.lp04-jornada-cta__arc:nth-child(1) {
  width: 38%;
  height: 38%;
}

.lp04-jornada-cta__arc:nth-child(2) {
  width: 52%;
  height: 52%;
}

.lp04-jornada-cta__arc:nth-child(3) {
  width: 66%;
  height: 66%;
}

.lp04-jornada-cta__arc:nth-child(4) {
  width: 80%;
  height: 80%;
}

.lp04-jornada-cta__arc:nth-child(5) {
  width: 94%;
  height: 94%;
  border-color: rgba(255, 255, 255, 0.14);
}

.lp04-jornada-cta__media {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0;
  padding: 0;
}

.lp04-jornada-cta__media img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
}

@media (max-width: 991px) {
  .lp04-jornada-cta {
    padding: 28px 0 0;
  }

  .lp04-jornada-cta__content {
    padding: 0 0 24px;
    text-align: center;
  }

  .lp04-jornada-cta__text {
    margin-left: auto;
    margin-right: auto;
  }

  .lp04-jornada-cta__actions {
    justify-content: center;
    flex-direction: column;
  }

  .lp04-jornada-cta__btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .lp04-jornada-cta__visual {
    min-height: 180px;
    margin-top: 4px;
  }

  .lp04-jornada-cta__arcs {
    right: 50%;
    bottom: -6%;
    transform: translateX(50%);
    width: 240px;
    height: 240px;
  }

  .lp04-jornada-cta__media img {
    max-width: 200px;
  }
}

.lp04-gallery-section {
  padding: 56px 0 48px;
  background: #fff;
}

.lp04-gallery-section__intro {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.lp04-gallery-section__intro h2,
.lp04-gallery-section__intro h3 {
  margin: 0 0 10px;
  line-height: 1.2;
}

.lp04-gallery-section__intro p {
  margin: 0;
  color: var(--muted, #5a6786);
  line-height: 1.6;
}

.lp04-gallery {
  --lp04-gallery-gap: 10px;
  --lp04-gallery-cols: 4;
  display: grid;
  grid-template-columns: repeat(var(--lp04-gallery-cols), minmax(0, 1fr));
  gap: var(--lp04-gallery-gap);
  width: 100%;
  padding: 0 var(--lp04-gallery-gap);
}

.lp04-gallery__item {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #eef2f7;
  box-shadow:
    0 1px 2px rgba(15, 27, 61, 0.03),
    0 3px 10px rgba(15, 27, 61, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lp04-gallery__item:hover,
.lp04-gallery__item:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 4px 14px rgba(15, 27, 61, 0.08),
    0 0 0 2px color-mix(in srgb, var(--lp-cor-primaria, #2f63ff) 18%, transparent);
  outline: none;
}

.lp04-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}

.lp04-gallery__item:hover img,
.lp04-gallery__item:focus-visible img {
  transform: scale(1.04);
}

@media (max-width: 980px) {
  .lp04-gallery-section {
    padding: 44px 0 36px;
  }

  .lp04-gallery-section__intro {
    margin-bottom: 22px;
    padding: 0 8px;
  }

  .lp04-gallery[data-count="1"] {
    --lp04-gallery-cols: 1;
  }

  .lp04-gallery[data-count="2"] {
    --lp04-gallery-cols: 2;
  }

  .lp04-gallery[data-count="3"],
  .lp04-gallery[data-count="4"],
  .lp04-gallery[data-count="5"],
  .lp04-gallery[data-count="6"],
  .lp04-gallery[data-count="7"],
  .lp04-gallery[data-count="8"] {
    --lp04-gallery-cols: 2;
  }
}


.lp04-planos-marquee-section {
  padding: 56px 0 0;
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft, #eef3fb) 100%);
  overflow-x: clip;
}

.lp04-planos-marquee-section .section__heading {
  margin-bottom: 24px;
}

.lp04-planos-marquee__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  max-width: 920px;
  margin: 24px auto 0;
  padding: 14px 18px;
  border: 1px solid #cfe8d8;
  border-radius: 12px;
  background: linear-gradient(135deg, #edf9f1 0%, #e3f5ea 100%);
  box-shadow: 0 4px 16px rgba(22, 101, 52, 0.08);
  text-align: left;
}

.lp04-planos-marquee__note-link,
.lp04-planos-marquee__note-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #166534;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.lp04-planos-marquee__note-link i {
  font-size: 1.1rem;
  color: #25d366;
}

.lp04-planos-marquee__note-link:hover,
.lp04-planos-marquee__note-link:focus-visible {
  color: #14532d;
  text-decoration: underline;
  outline: none;
}

.lp04-planos-marquee__note-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #1f6b3f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.lp04-planos-marquee__figure {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px auto 0;
  padding: 0;
}

.lp04-planos-marquee__figure img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 24px rgba(15, 27, 61, 0.12));
}

.lp04-planos-marquee {
  --lp04-marquee-duration: 80s;
  --lp04-marquee-segments: 4;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 8px 0 0;
  padding: 10px 0 6px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 4%,
    #000 96%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 4%,
    #000 96%,
    transparent 100%
  );
}

.lp04-planos-marquee:hover .lp04-planos-marquee__track,
.lp04-planos-marquee:focus-within .lp04-planos-marquee__track {
  animation-play-state: paused;
}

.lp04-planos-marquee__track {
  display: flex;
  width: max-content;
  animation: lp04-planos-marquee-scroll var(--lp04-marquee-duration) linear infinite;
  will-change: transform;
}

.lp04-planos-marquee__group {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
  flex: 0 0 auto;
  flex-shrink: 0;
}

.lp04-planos-marquee__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 72px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid #eef2f7;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(15, 27, 61, 0.03),
    0 3px 10px rgba(15, 27, 61, 0.05);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.lp04-planos-marquee__logo:hover,
.lp04-planos-marquee__logo:focus-visible {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(37, 211, 102, 0.35);
  box-shadow:
    0 4px 14px rgba(15, 27, 61, 0.07),
    0 0 0 2px rgba(37, 211, 102, 0.1);
  outline: none;
}

.lp04-planos-marquee__logo img {
  display: block;
  max-width: 120px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lp04-planos-marquee__logo span {
  color: #405179;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

@keyframes lp04-planos-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% / var(--lp04-marquee-segments, 4)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp04-planos-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    gap: 12px;
  }

  .lp04-planos-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .lp04-planos-marquee {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: visible;
  }
}

@media (max-width: 980px) {
  .lp04-planos-marquee-section {
    padding: 44px 0 0;
  }

  .lp04-planos-marquee__note {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 14px;
    text-align: center;
  }

  .lp04-planos-marquee__note-link,
  .lp04-planos-marquee__note-text {
    justify-content: center;
    font-size: 0.84rem;
  }

  .lp04-planos-marquee__note-badge {
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .lp04-planos-marquee__logo {
    min-width: 132px;
    min-height: 64px;
    padding: 10px 16px;
  }

  .lp04-planos-marquee__logo img {
    max-width: 104px;
    max-height: 36px;
  }

  .lp04-planos-marquee__figure {
    margin-top: 24px;
  }

  .lp04-planos-marquee__figure img {
    max-width: 280px;
  }
}

.lp04-img-texto-section {
  padding: 64px 0 0;
}

.lp04-shell .lp04-img-texto__row {
  gap: 42px;
}

.lp04-shell .lp04-img-texto__row.split {
  grid-template-columns: 0.85fr 1.15fr;
}

.lp04-shell .lp04-img-texto__row.split--reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.lp04-shell .lp04-img-texto__row + .lp04-img-texto__row {
  margin-top: 56px;
}

.lp04-shell .lp04-img-texto__media {
  margin: 0;
}

.lp04-shell .lp04-img-texto__media img {
  display: block;
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.lp04-shell .lp04-img-texto__row .split__content h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  line-height: 1.2;
}

.lp04-shell .lp04-img-texto__row .split__content .eyebrow {
  color: var(--muted);
  font-weight: 700;
}

.lp04-shell .lp04-img-texto__row .split__content p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.lp04-shell .lp04-img-texto__row .split__content p:last-child {
  margin-bottom: 0;
}

.lp04-shell .lp04-img-texto__row .split__content .btn-padrao {
  margin-top: 28px;
}

.lp04-shell .lp04-img-texto__cta {
  margin-top: 64px;
  padding-bottom: 56px;
}

@media (max-width: 980px) {
  .lp04-img-texto-section {
    padding: 48px 0 0;
  }

  .lp04-shell .lp04-img-texto__cta {
    margin-top: 48px;
    padding-bottom: 40px;
  }

  .lp04-shell .lp04-img-texto__row.split,
  .lp04-shell .lp04-img-texto__row.split--reverse {
    grid-template-columns: 1fr;
  }

  .lp04-shell .lp04-img-texto__row + .lp04-img-texto__row {
    margin-top: 40px;
  }

  .lp04-shell .lp04-img-texto__media img {
    min-height: 220px;
  }
}

.lp04-convenio-section {
  padding: 40px 0;
  background: #eef6f0;
}

.lp04-convenio-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 28px 44px;
  border: 1px solid #e2ebe4;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.lp04-convenio-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #1f9d55;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lp04-convenio-card__badge i {
  font-size: 0.75rem;
}

.lp04-convenio-card__title {
  margin: 0 0 14px !important;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem) !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
}

.lp04-convenio-card__title strong {
  color: #1f9d55;
}

.lp04-convenio-card__lead {
  margin: 0 auto 22px;
  max-width: 700px;
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.6;
}

.lp04-convenio-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.lp04-convenio-benefits li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 12px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: #374151;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.lp04-convenio-benefits i {
  flex-shrink: 0;
  color: #1f9d55;
  font-size: 0.9rem;
}

.lp04-convenio-plans {
  margin: 0 0 24px;
  padding: 22px 18px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fafcfb;
}

.lp04-convenio-plans__title {
  margin: 0 0 6px !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
}

.lp04-convenio-plans__subtitle {
  margin: 0 0 20px;
  color: #6b7280;
  font-size: 0.84rem;
  line-height: 1.45;
}

.lp04-convenio-plans__grid {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.lp04-convenio-plans__grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lp04-convenio-plans__grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 82%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
}

.lp04-convenio-plans__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 12px 14px;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(15, 27, 61, 0.03),
    0 3px 10px rgba(15, 27, 61, 0.05);
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.lp04-convenio-plans__logo:hover,
.lp04-convenio-plans__logo:focus-visible {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(37, 211, 102, 0.35);
  box-shadow:
    0 4px 14px rgba(15, 27, 61, 0.07),
    0 0 0 2px rgba(37, 211, 102, 0.1);
  outline: none;
}

.lp04-convenio-plans__logo img {
  display: block;
  max-width: 100%;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lp04-convenio-plans__label {
  display: block;
  color: #355a46;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.lp04-convenio-plans__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  margin-bottom: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  background: #e8f7ed;
  color: #1f6b3f;
  font-size: 0.78rem;
  text-align: left;
}

.lp04-convenio-plans__bar strong {
  font-weight: 800;
  color: #166534;
}

.lp04-convenio-plans__notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: left;
}

.lp04-convenio-plans__notice i {
  flex-shrink: 0;
  margin-top: 2px;
  color: #1f9d55;
}

.lp04-convenio-card__cta-text {
  margin: 0 0 14px;
  color: #1f9d55;
  font-size: 0.95rem;
  font-weight: 700;
}

.lp04-convenio-card__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 520px);
  min-height: 54px;
  margin: 0 auto 20px;
  padding: 14px 22px;
  border-radius: 10px;
  background: #25d366;
  color: #fff !important;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lp04-convenio-card__cta-btn:hover,
.lp04-convenio-card__cta-btn:focus-visible {
  transform: translateY(-1px);
  background: #20bd5a;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.42);
  color: #fff !important;
  outline: none;
}

.lp04-convenio-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin: 0;
  padding: 0 0 6px;
  list-style: none;
}

.lp04-convenio-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #5a6786;
  font-size: 0.78rem;
  font-weight: 600;
}

.lp04-convenio-trust i {
  color: #166534;
}

@media (max-width: 900px) {
  .lp04-convenio-benefits {
    grid-template-columns: 1fr;
  }

  .lp04-convenio-plans__grid--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp04-convenio-plans__grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .lp04-convenio-card {
    padding: 22px 14px 36px;
  }

  .lp04-convenio-plans__grid--5,
  .lp04-convenio-plans__grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .lp04-convenio-plans__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Formulário CF7 — bloco destaque e banner */
.img-text-btn > .container > .row {
  align-items: flex-start !important;
}

.img-text-btn > .container > .row > .text {
  padding-top: 28px;
  padding-bottom: 28px;
}

.img-text-btn .lp04-destaque-form,
.lp04-banner-default-v2 .lp04-destaque-form {
  padding: 0 !important;
  overflow: hidden;
  border-radius: 18px;
}

.img-text-btn .lp04-destaque-form__inner,
.lp04-banner-default-v2 .lp04-destaque-form__inner {
  --lp04-destaque-form-bg: none;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #eef2f7 0%, #e4eaf2 100%);
}

.img-text-btn .lp04-destaque-form__inner::before,
.lp04-banner-default-v2 .lp04-destaque-form__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--lp04-destaque-form-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.58;
  pointer-events: none;
}

.img-text-btn .lp04-destaque-form__inner::after,
.lp04-banner-default-v2 .lp04-destaque-form__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(255, 255, 255, 0.58) 100%
  );
  pointer-events: none;
}

.img-text-btn .lp04-destaque-form__form,
.lp04-banner-default-v2 .lp04-destaque-form__form {
  position: relative;
  z-index: 1;
  padding: 24px 22px 22px;
}

.img-text-btn .lp04-destaque-form__form .wpcf7,
.lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7 {
  width: 100%;
  margin: 0;
}

.img-text-btn .lp04-destaque-form__form .wpcf7-form,
.lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-form {
  margin: 0;
}

.img-text-btn .lp04-destaque-form__form .wpcf7-form > p,
.img-text-btn .lp04-destaque-form__form .wpcf7-form > div,
.lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-form > p,
.lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-form > div {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 992px) {
  .img-text-btn .lp04-destaque-form__form .wpcf7-form > p,
  .img-text-btn .lp04-destaque-form__form .wpcf7-form > div,
  .lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-form > p,
  .lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-form > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .img-text-btn .lp04-destaque-form__form .wpcf7-form-control-wrap[data-name="nome"],
  .img-text-btn .lp04-destaque-form__form .wpcf7-form-control-wrap[data-name="mensagem"],
  .img-text-btn .lp04-destaque-form__form .wpcf7-captchac,
  .img-text-btn .lp04-destaque-form__form .wpcf7-form-control-wrap[data-name="captcha-1"],
  .img-text-btn .lp04-destaque-form__form .wpcf7-form > p > .wpcf7-submit,
  .img-text-btn .lp04-destaque-form__form .wpcf7-form > p > input[type="submit"],
  .img-text-btn .lp04-destaque-form__form .wpcf7-form > div > .wpcf7-submit,
  .img-text-btn .lp04-destaque-form__form .wpcf7-form > div > input[type="submit"],
  .lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-form-control-wrap[data-name="nome"],
  .lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-form-control-wrap[data-name="mensagem"],
  .lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-captchac,
  .lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-form-control-wrap[data-name="captcha-1"],
  .lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-form > p > .wpcf7-submit,
  .lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-form > p > input[type="submit"],
  .lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-form > div > .wpcf7-submit,
  .lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-form > div > input[type="submit"] {
    grid-column: 1 / -1;
  }
}

.img-text-btn .lp04-destaque-form__form label,
.lp04-banner-default-v2 .lp04-destaque-form__form label {
  display: grid;
  gap: 5px;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #3a4358;
  line-height: 1.3;
}

.img-text-btn .lp04-destaque-form__form .wpcf7-form-control-wrap,
.lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-form-control-wrap {
  display: block;
}

.img-text-btn .lp04-destaque-form__form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.img-text-btn .lp04-destaque-form__form select,
.img-text-btn .lp04-destaque-form__form textarea,
.lp04-banner-default-v2 .lp04-destaque-form__form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.lp04-banner-default-v2 .lp04-destaque-form__form select,
.lp04-banner-default-v2 .lp04-destaque-form__form textarea {
  width: 100% !important;
  border: 1px solid rgba(15, 27, 61, 0.14) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #1a2233 !important;
  border-radius: 999px !important;
  padding: 11px 18px !important;
  font-size: 0.92rem !important;
  line-height: 1.3 !important;
  outline: none !important;
  box-shadow: 0 2px 8px rgba(15, 27, 61, 0.06) !important;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.img-text-btn .lp04-destaque-form__form textarea,
.lp04-banner-default-v2 .lp04-destaque-form__form textarea {
  min-height: 72px !important;
  max-height: 72px !important;
  height: 72px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  resize: none !important;
  overflow: hidden !important;
}

.img-text-btn .lp04-destaque-form__form select,
.lp04-banner-default-v2 .lp04-destaque-form__form select {
  appearance: none;
  padding-right: 40px !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #5a6786 50%),
    linear-gradient(135deg, #5a6786 50%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) !important;
  background-position:
    calc(100% - 22px) calc(50% + 2px),
    calc(100% - 16px) calc(50% + 2px),
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

.img-text-btn .lp04-destaque-form__form input:not([type="submit"]):focus,
.img-text-btn .lp04-destaque-form__form select:focus,
.img-text-btn .lp04-destaque-form__form textarea:focus,
.lp04-banner-default-v2 .lp04-destaque-form__form input:not([type="submit"]):focus,
.lp04-banner-default-v2 .lp04-destaque-form__form select:focus,
.lp04-banner-default-v2 .lp04-destaque-form__form textarea:focus {
  border-color: color-mix(in srgb, #166534 55%, #fff) !important;
  background: #fff !important;
  box-shadow:
    0 0 0 3px rgba(22, 101, 52, 0.16),
    0 4px 12px rgba(15, 27, 61, 0.08) !important;
}

.img-text-btn .lp04-destaque-form__form .wpcf7-submit,
.img-text-btn .lp04-destaque-form__form input[type="submit"],
.lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-submit,
.lp04-banner-default-v2 .lp04-destaque-form__form input[type="submit"] {
  --lp-btn-pulse-color: rgba(22, 101, 52, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 6px;
  padding: 0.75rem 1.6rem !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #166534 0%, #0f4a28 100%) !important;
  color: #fff !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(22, 101, 52, 0.28);
  animation: lp04-btn-pulse 2.1s ease-in-out infinite;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease;
}

.img-text-btn .lp04-destaque-form__form .wpcf7-submit:hover,
.img-text-btn .lp04-destaque-form__form .wpcf7-submit:focus-visible,
.img-text-btn .lp04-destaque-form__form input[type="submit"]:hover,
.img-text-btn .lp04-destaque-form__form input[type="submit"]:focus-visible,
.lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-submit:hover,
.lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-submit:focus-visible,
.lp04-banner-default-v2 .lp04-destaque-form__form input[type="submit"]:hover,
.lp04-banner-default-v2 .lp04-destaque-form__form input[type="submit"]:focus-visible {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.06);
  box-shadow:
    0 16px 34px rgba(22, 101, 52, 0.34),
    0 0 0 4px rgba(22, 101, 52, 0.2);
  outline: none;
}

.img-text-btn .lp04-destaque-form__form .wpcf7-not-valid-tip,
.lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-not-valid-tip {
  margin-top: 4px;
  font-size: 0.75rem;
  color: #b42318;
}

.img-text-btn .lp04-destaque-form__form .wpcf7-response-output,
.lp04-banner-default-v2 .lp04-destaque-form__form .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

@media (min-width: 992px) {
  .img-text-btn > .container > .row > .text {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 640px) {
  .img-text-btn > .container > .row > .text {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .img-text-btn .lp04-destaque-form__form,
  .lp04-banner-default-v2 .lp04-destaque-form__form {
    padding: 20px 16px 18px;
  }
}

/* Banner — imagem + texto (banner-default-v2) */
.banner-default-v2.lp04-banner-default-v2 {
  position: relative;
  padding: 56px 0 0;
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft, #eef3fb) 100%);
  background-blend-mode: normal;
}

.banner-default-v2.lp04-banner-default-v2 .lp04-banner-default-v2__eyebrow {
  margin: 0 0 14px;
  color: var(--lp-cor-secundaria, #133859);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
}

.banner-default-v2.lp04-banner-default-v2 .lp04-banner-default-v2__text,
.banner-default-v2.lp04-banner-default-v2 .lp04-banner-default-v2__text p {
  margin: 0;
  color: var(--lp-cor-texto, #222);
  font-size: 1.02rem;
  line-height: 1.7;
}

.banner-default-v2.lp04-banner-default-v2 .lp04-banner-default-v2__text p + p {
  margin-top: 12px;
}

.banner-default-v2.lp04-banner-default-v2 .col-12.col-lg-7 {
  padding-bottom: 40px;
}

.banner-default-v2.lp04-banner-default-v2 .box-proposta {
  position: static;
  right: auto;
  top: auto;
  width: 100%;
  max-width: 260px;
  margin-top: 24px;
  margin-bottom: 20px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.banner-default-v2.lp04-banner-default-v2 .box-proposta .btn-padrao {
  --lp-btn-pulse-color: transparent;
  margin: 0;
  min-height: 46px;
  padding: 0.72rem 1.4rem;
  border: 1.5px solid color-mix(in srgb, var(--lp-cor-primaria, #2f63ff) 32%, #fff);
  border-radius: 12px;
  background: color-mix(in srgb, var(--lp-cor-primaria, #2f63ff) 7%, #fff);
  color: var(--lp-cor-primaria, #2f63ff) !important;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--lp-cor-primaria, #2f63ff) 10%, transparent);
  animation: none;
}

.banner-default-v2.lp04-banner-default-v2 .box-proposta .btn-padrao:hover,
.banner-default-v2.lp04-banner-default-v2 .box-proposta .btn-padrao:focus-visible {
  transform: translateY(-1px);
  filter: none;
  background: var(--lp-cor-primaria, #2f63ff);
  border-color: var(--lp-cor-primaria, #2f63ff);
  color: #fff !important;
  box-shadow:
    0 8px 22px color-mix(in srgb, var(--lp-cor-primaria, #2f63ff) 22%, transparent),
    0 0 0 3px color-mix(in srgb, var(--lp-cor-primaria, #2f63ff) 14%, transparent);
}

.banner-default-v2.lp04-banner-default-v2 .box-proposta .btn-padrao:active {
  transform: translateY(0);
  filter: brightness(0.96);
}

.lp04-banner-default-v2__form {
  margin-top: 0;
}

.lp04-banner-default-v2__form--plain .lp04-destaque-form__inner {
  background: #fff;
}

.lp04-banner-default-v2__form--plain .lp04-destaque-form__inner::before,
.lp04-banner-default-v2__form--plain .lp04-destaque-form__inner::after {
  display: none;
}

.lp04-banner-default-v2__media {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.lp04-banner-default-v2__media img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 14px 28px rgba(15, 27, 61, 0.14));
}

@media (max-width: 991px) {
  .banner-default-v2.lp04-banner-default-v2 {
    padding: 44px 0 0;
  }

  .lp04-banner-default-v2__media {
    order: -1;
  }

  .lp04-banner-default-v2__media img {
    max-width: 300px;
    margin: 0 auto;
  }

  .banner-default-v2.lp04-banner-default-v2 .col-12.col-lg-7 {
    padding-bottom: 28px;
  }

  .banner-default-v2.lp04-banner-default-v2 .box-proposta {
    max-width: 100%;
  }
}
