/* Base que a landing page herdava por ser um parcial do bundle do website.
   Sem ela a página perdia o scroll suave, o fundo e o layout em coluna do
   body, a cor dos links e os overrides de botão — o editor usa .btn-default.
   Veio junto no desmembramento.

   O que NÃO veio foi a fonte: o website impõe Roboto num seletor universal, e
   a landing page sempre sobrescreveu isso com a tipografia própria dela, Inter
   e Space Grotesk, importadas logo abaixo. Trazer o Roboto aqui aplicaria a
   fonte errada em todo elemento sem regra própria. */
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fbf5f4;
}

@media (max-width: 767px) {
  body {
    background-color: var(--station-color);
  }
}

a, a:hover, a:active, a:visited {
  color: var(--station-color);
  text-decoration: none;
}

.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
  border: 1px solid var(--station-color) !important;
  background-color: var(--station-color) !important;
  color: white !important;
}

.btn-default, .btn-default:hover, .btn-default:active, .btn-default:visited {
  color: var(--station-color) !important;
}

.btn-danger, .btn-danger:hover, .btn-danger:active, .btn-danger:visited {
  color: white !important;
}

/* Módulo landing page: contexto próprio, sem nada do website.
   Era @import "./landing_page" dentro do bundle do website. */
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap");
#landing-page {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem;
  background-color: #f4f6f9;
  color: #1a1d23;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  box-sizing: border-box;
}

#landing-page *, #landing-page *::before, #landing-page *::after {
  box-sizing: border-box;
  font-family: inherit;
}

#landing-page h1, #landing-page h2, #landing-page h3, #landing-page h4, #landing-page h5, #landing-page h6 {
  font-family: 'Space Grotesk', sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
  color: inherit;
  font-weight: 700;
}

#landing-page p {
  margin-top: 0;
  margin-bottom: 0;
}

#landing-page ul, #landing-page ol {
  margin-top: 0;
  margin-bottom: 0;
}

#landing-page a, #landing-page a:hover, #landing-page a:active, #landing-page a:visited, #landing-page a:focus {
  color: inherit;
  text-decoration: none;
}

#landing-page label {
  font-weight: inherit;
  margin-bottom: 0;
  display: inline;
}

#landing-page input, #landing-page select, #landing-page textarea, #landing-page button {
  font-family: 'Inter', sans-serif;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

#landing-page input[type="text"],
#landing-page input[type="email"],
#landing-page input[type="tel"],
#landing-page input[type="number"],
#landing-page input[type="url"],
#landing-page input[type="search"],
#landing-page select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  padding: 0;
}

#landing-page img {
  max-width: 100%;
  height: auto;
}

#landing-page .row {
  margin-left: 0;
  margin-right: 0;
}

#landing-page .container, #landing-page .container-fluid {
  padding-left: 0;
  padding-right: 0;
  width: auto;
}

.lp-section__title {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 8px !important;
  color: #111827 !important;
  line-height: 1.2 !important;
}

@media (min-width: 640px) {
  .lp-section__title {
    font-size: 1.875rem !important;
  }
}

.lp-section__subtitle {
  text-align: center;
  color: #6b7280 !important;
  font-size: 0.875rem !important;
  max-width: 560px;
  margin: 0 auto 32px !important;
  line-height: 1.65;
  font-weight: 400;
}

@keyframes lp-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lp-pop-in {
  from {
    opacity: 0;
    transform: scale(0.72);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lp-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--station-color);
  color: #fff;
  padding-bottom: 0;
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.lp-hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero .lp-hero__inner {
  position: relative;
  max-width: 896px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  text-align: center;
}

@media (max-width: 640px) {
  .lp-hero .lp-hero__inner {
    padding: 40px 16px 64px;
  }
}

.lp-hero .lp-hero__logo {
  display: block;
  width: 128px;
  height: 128px;
  border-radius: 20px;
  object-fit: cover;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  animation: lp-pop-in 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.lp-hero h1.lp-hero__headline {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: #fff !important;
  margin: 0 0 20px !important;
  letter-spacing: -0.02em;
  padding: 0;
  text-wrap: balance;
  animation: lp-fade-up 0.7s 0.12s ease both;
}

@media (min-width: 640px) {
  .lp-hero h1.lp-hero__headline {
    font-size: 3rem !important;
  }
}

@media (min-width: 1024px) {
  .lp-hero h1.lp-hero__headline {
    font-size: 3.75rem !important;
  }
}

.lp-hero h1.lp-hero__headline span {
  color: rgba(255, 255, 255, 0.8);
}

.lp-hero h1.lp-hero__headline.lp-hero__headline--public {
  max-width: 860px;
  margin: 0 auto 20px !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lp-hero .lp-hero__sub {
  font-size: 1.125rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  max-width: 640px;
  margin: 0 auto 32px !important;
  line-height: 1.625;
  font-weight: 400;
  animation: lp-fade-up 0.7s 0.24s ease both;
}

@media (min-width: 640px) {
  .lp-hero .lp-hero__sub {
    font-size: 1.25rem !important;
  }
}

.lp-hero .lp-hero__pills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: center;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 48px !important;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  animation: lp-fade-up 0.7s 0.36s ease both;
}

@media (max-width: 639px) {
  .lp-hero .lp-hero__pills {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }
}

.lp-hero .lp-hero__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  padding: 7px 16px;
  text-align: left;
  line-height: 1.45;
}

@media (max-width: 639px) {
  .lp-hero .lp-hero__pill {
    width: 100%;
    padding: 10px 18px;
    justify-content: flex-start;
  }
}

.lp-hero .lp-hero__pill .lp-hero__pill-text {
  display: block;
  max-width: 100%;
  text-align: left;
}

@media (max-width: 639px) {
  .lp-hero .lp-hero__pill .lp-hero__pill-text {
    flex: 1 1 auto;
    max-width: none;
  }
}

.lp-hero .lp-hero__pill::before {
  content: "✓";
  flex: 0 0 auto;
  font-weight: 700;
  opacity: 0.60;
}

.lp-hero .lp-hero__wave {
  display: block;
  width: 100%;
  height: 52px;
  margin-bottom: -2px;
}

.lp-social-proof {
  max-width: 896px;
  margin: 0 auto;
  padding: 64px 16px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

@media (min-width: 640px) {
  .lp-social-proof {
    padding: 64px 24px;
  }
}

.lp-stats {
  padding: 0;
}

.lp-stats .lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 700px) {
  .lp-stats .lp-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lp-stats .lp-stats__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.lp-stats .lp-stats__card .lp-stats__icon {
  font-size: 1.5rem;
  color: var(--station-color);
  margin-bottom: 12px;
  display: block;
}

.lp-stats .lp-stats__card .lp-stats__value {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  line-height: 1.1;
  margin: 0 !important;
}

@media (min-width: 640px) {
  .lp-stats .lp-stats__card .lp-stats__value {
    font-size: 1.875rem !important;
  }
}

.lp-stats .lp-stats__card .lp-stats__label {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.35;
  margin-top: 4px;
}

.lp-audience {
  background-color: var(--station-color);
  color: #fff;
  border-radius: 24px;
  padding: 0;
}

.lp-audience .lp-section__inner {
  max-width: 896px;
  margin: 0 auto;
  padding: 32px 32px 40px;
}

@media (max-width: 640px) {
  .lp-audience .lp-section__inner {
    padding: 24px 20px 32px;
  }
}

.lp-audience .lp-section__title {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  text-align: left !important;
  color: #fff !important;
  margin: 0 0 8px !important;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .lp-audience .lp-section__title {
    font-size: 1.875rem !important;
  }
}

.lp-audience .lp-section__subtitle {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.875rem !important;
  text-align: left !important;
  margin: 0 0 32px !important;
  line-height: 1.65;
}

.lp-audience .lp-audience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .lp-audience .lp-audience__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-audience .lp-audience__card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
}

.lp-audience .lp-audience__card .lp-audience__value {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.875rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  line-height: 1.1;
  margin: 0 !important;
}

.lp-audience .lp-audience__card .lp-audience__label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
  margin-top: 4px;
}

.lp-why {
  padding: 0;
}

.lp-why .lp-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (max-width: 620px) {
  .lp-why .lp-why__grid {
    grid-template-columns: 1fr;
  }
}

.lp-why .lp-why__card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.lp-why .lp-why__card .lp-why__icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: var(--lp-alpha-10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-why .lp-why__card .lp-why__icon-wrap i {
  font-size: 1.25rem;
  color: var(--station-color);
}

.lp-why .lp-why__card .lp-why__content-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  color: #111827;
  margin: 0 0 4px !important;
}

.lp-why .lp-why__card .lp-why__content-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.55;
}

.lp-coverage {
  padding: 0;
}

.lp-coverage .lp-coverage__box {
  max-width: 896px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.lp-coverage .lp-coverage__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.lp-coverage .lp-coverage__meta {
  min-width: 0;
}

.lp-coverage .lp-coverage__icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: var(--lp-alpha-10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-coverage .lp-coverage__icon-wrap i {
  font-size: 1.25rem;
  color: var(--station-color);
}

.lp-coverage .lp-coverage__region-title {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #111827;
  margin: 0 0 2px !important;
}

.lp-coverage .lp-coverage__region-sub {
  font-size: 0.75rem;
  color: #6b7280;
}

.lp-coverage .lp-coverage__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.lp-coverage .lp-coverage__chip {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--station-color);
  background-color: var(--lp-alpha-10);
  border-radius: 40px;
  padding: 6px 12px;
}

.lp-form {
  padding: 0 16px 64px;
  margin-top: -8px;
}

@media (min-width: 640px) {
  .lp-form {
    padding: 0 24px 64px;
  }
}

.lp-form .lp-form__card {
  max-width: 672px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

@media (min-width: 640px) {
  .lp-form .lp-form__card {
    padding: 40px 40px;
  }
}

.lp-form .lp-form__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--station-color);
  background-color: var(--lp-alpha-10);
  border-radius: 40px;
  padding: 6px 12px;
  margin-bottom: 12px;
}

.lp-form .lp-form__title {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin: 0 0 8px !important;
  letter-spacing: -0.02em;
  color: #111827 !important;
}

@media (min-width: 640px) {
  .lp-form .lp-form__title {
    font-size: 1.75rem !important;
  }
}

.lp-form .lp-form__subtitle {
  font-size: 0.9375rem;
  color: #6b7280;
  margin: 0 0 28px !important;
  line-height: 1.55;
}

.lp-form .lp-form__section {
  margin-bottom: 32px;
}

.lp-form .lp-form__section:last-child {
  margin-bottom: 0;
}

.lp-form .lp-form__section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.lp-form .lp-form__section-header .lp-form__section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background-color: var(--lp-alpha-10);
}

.lp-form .lp-form__section-header .lp-form__section-icon i {
  font-size: 1.25rem;
  line-height: 1;
  color: var(--station-color);
}

.lp-form .lp-form__section-header .lp-form__section-title {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
  margin: 0 !important;
  white-space: nowrap;
}

.lp-form .lp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.lp-form .lp-form__row.lp-form__row--full {
  grid-template-columns: 1fr;
}

@media (max-width: 520px) {
  .lp-form .lp-form__row {
    grid-template-columns: 1fr;
  }
}

.lp-form .lp-form__field {
  position: relative;
  margin-bottom: 14px;
}

.lp-form .lp-form__field:last-child {
  margin-bottom: 0;
}

.lp-form .lp-form__label {
  display: block !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: #374151;
  margin-bottom: 6px !important;
}

.lp-form .lp-form__label .lp-form__required {
  color: #ef4444;
  margin-left: 2px;
}

.lp-form .lp-form__input {
  display: block !important;
  width: 100% !important;
  height: 44px !important;
  padding: 0 14px !important;
  font-size: 0.9375rem !important;
  color: #1a1d23 !important;
  background-color: #f9fafb !important;
  border: 1px solid #d1d5db !important;
  border-radius: 10px !important;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: 'Inter', sans-serif !important;
  box-shadow: none !important;
  line-height: 44px !important;
}

.lp-form .lp-form__input:focus {
  outline: none !important;
  border-color: var(--station-color) !important;
  box-shadow: 0 0 0 3px var(--lp-alpha-10) !important;
  background-color: #fff !important;
}

.lp-form .lp-form__input[readonly], .lp-form .lp-form__input[disabled] {
  background-color: #f3f4f6 !important;
  color: #9ca3af !important;
  cursor: not-allowed;
}

.lp-form .lp-form__input.lp-form__input--error {
  border-color: #ef4444 !important;
}

.lp-form .lp-form__select {
  display: block !important;
  width: 100% !important;
  height: 44px !important;
  padding: 0 32px 0 14px !important;
  font-size: 0.9375rem !important;
  color: #1a1d23 !important;
  background-color: #f9fafb !important;
  border: 1px solid #d1d5db !important;
  border-radius: 10px !important;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: 'Inter', sans-serif !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  box-shadow: none !important;
  cursor: pointer;
}

.lp-form .lp-form__select:focus {
  outline: none !important;
  border-color: var(--station-color) !important;
  box-shadow: 0 0 0 3px var(--lp-alpha-10) !important;
  background-color: #fff !important;
}

.lp-form .lp-form__select.lp-form__select--error {
  border-color: #ef4444 !important;
}

.lp-form .lp-form__error {
  display: block;
  font-size: 0.75rem;
  color: #ef4444;
}

@media (min-width: 520px) {
}

.lp-form .lp-form__submit {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 52px !important;
  border: none !important;
  border-radius: 14px !important;
  background-color: var(--station-color) !important;
  color: #fff !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 4px 14px var(--lp-alpha-30) !important;
  transition: opacity 0.15s, transform 0.1s;
  padding: 0 !important;
  line-height: 52px !important;
  text-shadow: none !important;
}

.lp-form .lp-form__submit:hover {
  opacity: 0.90;
  background-color: var(--station-color) !important;
  color: #fff !important;
}

.lp-form .lp-form__submit:active {
  transform: scale(0.99);
}

.lp-form .lp-form__notice {
  padding: 12px 16px;
  background-color: var(--lp-alpha-10);
  border: 1px solid var(--lp-alpha-30);
  border-radius: 10px;
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 20px;
}

body.lp-modal-open {
  overflow: hidden;
}

.lp-success-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.lp-success-modal .lp-success-modal__overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 24, 39, 0.58);
  backdrop-filter: blur(4px);
  z-index: 1200;
}

.lp-success-modal .lp-success-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.24);
  padding: 44px 28px 28px;
  text-align: center;
}

.lp-success-modal .lp-success-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.lp-success-modal .lp-success-modal__close:hover {
  background: var(--lp-alpha-10);
  color: var(--station-color);
}

.lp-success-modal .lp-success__title {
  margin-bottom: 0;
}

.lp-success-modal .lp-success__sub {
  margin: 0;
}

.lp-success-modal .lp-success-modal__button {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background-color: var(--station-color);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 10px 28px var(--lp-alpha-30);
  cursor: pointer;
  transition: transform 0.12s ease, opacity 0.15s ease;
}

.lp-success-modal .lp-success-modal__button:hover {
  opacity: 0.92;
}

.lp-success-modal .lp-success-modal__button:active {
  transform: scale(0.98);
}

.lp-section-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.lp-section-fade.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero,
.lp-hero *,
.lp-section-fade {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
