.lp-page {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #111827;
  line-height: 1.6;
}

.lp-section {
  padding: clamp(2.75rem, 4vw, 5rem) 0;
}

.lp-hero {
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.lp-video-box {
  border: 2px dashed rgba(235, 192, 113, 0.9);
  border-radius: 14px;
  padding: clamp(2rem, 5vw, 3rem) 1rem;
  color: #ebc071;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.125rem);
  background: rgba(0, 0, 0, 0.2);
}

.lp-card {
  background: #ffffff;
  border: 1px solid rgba(1, 19, 150, 0.15);
  border-radius: 14px;
  padding: 1.1rem 1rem;
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.35);
}

.lp-card-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 1rem 0.9rem;
}

.lp-placeholder {
  border: 2px dashed rgba(1, 19, 150, 0.35);
  border-radius: 14px;
  padding: 1.25rem;
  color: #011396;
  font-weight: 600;
  background: rgba(1, 19, 150, 0.05);
}

.lp-page h1,
.lp-page h2 {
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.lp-page p {
  margin: 0;
}

.lp-check-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  text-align: left;
}

.lp-check-icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  margin-top: 0.2em;
}

.lp-check-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lp-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 7.5rem;
}

.lp-trust-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 14px;
  background: #f3f4f6;
  color: #0f172a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.lp-trust-badge__svg {
  width: 1.75rem;
  height: 1.75rem;
  display: block;
}

.lp-trust-badge__label {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: #00063c;
  line-height: 1.35;
}

.lp-trust-badge--dark .lp-trust-badge__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.lp-trust-badge--dark .lp-trust-badge__label {
  color: rgba(255, 255, 255, 0.95);
}

/* Cores semânticas por tipo de ícone */
.lp-trust-badge--payment .lp-trust-badge__icon {
  color: #0f766e;
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.14) 0%, rgba(16, 185, 129, 0.2) 100%);
}

.lp-trust-badge--instant .lp-trust-badge__icon {
  color: #2563eb;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.14) 0%, rgba(56, 189, 248, 0.2) 100%);
}

.lp-trust-badge--guarantee .lp-trust-badge__icon {
  color: #b45309;
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.16) 0%, rgba(251, 191, 36, 0.24) 100%);
}

.lp-trust-badge--dark.lp-trust-badge--payment .lp-trust-badge__icon {
  color: #34d399;
}

.lp-trust-badge--dark.lp-trust-badge--instant .lp-trust-badge__icon {
  color: #60a5fa;
}

.lp-trust-badge--dark.lp-trust-badge--guarantee .lp-trust-badge__icon {
  color: #fbbf24;
}

.lp-page .max-w-5xl,
.lp-page .max-w-6xl {
  width: min(100% - 2rem, var(--lp-max, 1120px));
}

.lp-page .max-w-5xl {
  --lp-max: 1040px;
}

.lp-page .max-w-6xl {
  --lp-max: 1160px;
}

.lp-cta {
  width: min(100%, 560px);
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}

.lp-page .grid {
  align-items: stretch;
}

.lp-page .space-y-4 > p,
.lp-page .space-y-3 > p,
.lp-page .space-y-6 > div {
  margin-top: 0.15rem;
}

@media (min-width: 1024px) {
  .lp-page {
    font-size: 17px;
  }

  .lp-card {
    padding: 1.35rem 1.2rem;
  }
}

@media (max-width: 1023px) {
  .lp-page {
    font-size: 15.5px;
  }

  .lp-section {
    padding: 2.5rem 0;
  }

  .lp-page h1 {
    font-size: clamp(1.8rem, 7.2vw, 2.4rem) !important;
  }

  .lp-page h2 {
    font-size: clamp(1.5rem, 6.2vw, 2rem) !important;
  }

  .lp-page p.text-xl {
    font-size: 1.05rem !important;
  }
}

/* FAQ — acordeão */
.lp-faq-list {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lp-faq-item {
  border: 1px solid rgba(1, 19, 150, 0.12);
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.38s cubic-bezier(0.33, 1, 0.68, 1),
    border-color 0.38s cubic-bezier(0.33, 1, 0.68, 1);
}

.lp-faq-item[open] {
  box-shadow: 0 12px 36px -22px rgba(0, 6, 60, 0.28);
  border-color: rgba(1, 19, 150, 0.22);
}

/* Painel expansível + parallax em camadas (fundo mais rápido, resposta “desce” depois) */
.lp-faq-body {
  position: relative;
  display: grid;
  grid-template-rows: 0fr;
  isolation: isolate;
  transition: grid-template-rows 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.lp-faq-item[open] > .lp-faq-body {
  grid-template-rows: 1fr;
}

.lp-faq-body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 150%;
  z-index: 0;
  pointer-events: none;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(
    165deg,
    rgba(1, 19, 150, 0.08) 0%,
    rgba(235, 192, 113, 0.1) 42%,
    transparent 76%
  );
  transform: translate3d(0, -28%, 0);
  transition: transform 0.42s cubic-bezier(0.3, 1, 0.45, 1);
}

.lp-faq-item[open] > .lp-faq-body::before {
  transform: translate3d(0, 0, 0);
}

/* Segunda camada (mais lenta) = sensação de profundidade */
.lp-faq-body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  z-index: 0;
  pointer-events: none;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(
    0deg,
    rgba(1, 19, 150, 0.05) 0%,
    transparent 100%
  );
  opacity: 0;
  transform: translate3d(0, 40%, 0);
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.4, 1) 0.06s,
    opacity 0.5s ease 0.04s;
}

.lp-faq-item[open] > .lp-faq-body::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.lp-faq-body__inner {
  position: relative;
  z-index: 1;
  min-height: 0;
  overflow: hidden;
}

.lp-faq-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: #00063c;
  user-select: none;
  transition: background 0.2s ease;
}

.lp-faq-summary::-webkit-details-marker,
.lp-faq-summary::marker {
  display: none;
}

.lp-faq-summary__text {
  flex: 1;
  text-align: left;
  line-height: 1.4;
}

.lp-faq-summary__chevron {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #011396;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.42s cubic-bezier(0.33, 1, 0.68, 1);
}

.lp-faq-summary__chevron svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lp-faq-item[open] .lp-faq-summary__chevron {
  transform: rotate(180deg);
}

.lp-faq-summary:hover {
  background: rgba(1, 19, 150, 0.035);
}

.lp-faq-item[open] .lp-faq-summary {
  background: rgba(1, 19, 150, 0.045);
}

.lp-faq-summary:focus-visible {
  outline: 2px solid #ebc071;
  outline-offset: 2px;
}

.lp-faq-answer {
  padding: 0 1.15rem 1.15rem;
  color: #374151;
  font-size: 0.98em;
  line-height: 1.65;
  border-top: 1px solid rgba(1, 19, 150, 0.08);
  transform: translate3d(0, 22px, 0);
  transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.lp-faq-item[open] .lp-faq-answer {
  transform: translate3d(0, 0, 0);
}

.lp-faq-item:not([open]) .lp-faq-answer {
  transform: translate3d(0, 22px, 0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 1, 1);
}

.lp-faq-answer p {
  margin: 0;
  padding-top: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
  .lp-faq-body {
    transition: none;
  }

  .lp-faq-body::before,
  .lp-faq-body::after {
    transition: none;
    transform: none !important;
    opacity: 1;
  }

  .lp-faq-answer {
    transform: none !important;
    transition: none;
  }

  .lp-faq-summary__chevron {
    transition: transform 0.15s ease;
  }

  .lp-faq-item {
    transition: none;
  }
}

@media (max-width: 640px) {
  .lp-faq-summary {
    padding: 0.9rem 1rem;
  }

  .lp-faq-answer {
    padding: 0 1rem 1rem;
  }
}
