/* ============================================================
   SEMAGÊNCIA — Layout & Components
   Depends on: colors_and_type.css (tokens)
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--grafite);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; transition: color 0.15s ease; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cinza-apoio); }
::-webkit-scrollbar-thumb { background: #c5cdd5; border-radius: 3px; }

/* ── ANIMAÇÕES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── TIPOGRAFIA UTIL ── */
.lp-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--laranja);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
}

.lp-accent { color: var(--laranja); }

.lp-section__title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--grafite);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.lp-section__lead {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--grafite-medio);
  line-height: 1.55;
}

.lp-section__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.lp-dash {
  color: var(--laranja);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}

/* ── BUTTONS ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1;
  border-radius: 4px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}
.lp-btn--sm  { font-size: 14px; font-weight: 600; padding: 10px 22px; }
.lp-btn--lg  { font-size: 16px; padding: 16px 32px; }
.lp-btn--xl  { font-size: 18px; padding: 18px 44px; }
.lp-btn--block { display: flex; width: 100%; padding: 13px 24px; font-size: 15px; }

.lp-btn--primary {
  background: var(--laranja);
  color: #fff;
  border-color: var(--laranja);
}
.lp-btn--primary:hover {
  background: var(--laranja-hover);
  border-color: var(--laranja-hover);
}

.lp-btn--secondary {
  background: transparent;
  color: var(--grafite);
  border-color: var(--grafite);
}
.lp-btn--secondary:hover {
  background: var(--grafite);
  color: #fff;
}

.lp-btn-ghost-link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--grafite);
  text-decoration: none;
  border-bottom: 1.5px solid var(--color-border);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.lp-btn-ghost-link:hover {
  color: var(--laranja);
  border-bottom-color: var(--laranja);
}

.lp-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--laranja);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.lp-link-arrow:hover { color: var(--laranja-hover); }
.lp-link-arrow--inline { font-size: 14px; }

/* ── HEADER ── */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lp-header--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 1px 12px rgba(26, 52, 70, 0.07);
}
.lp-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.lp-header__logo { display: flex; align-items: center; }
.lp-header__logo img { height: 52px; }
.lp-nav { display: flex; gap: 28px; align-items: center; }
.lp-nav__link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--grafite);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  text-decoration-color: var(--color-border);
  transition: color 0.15s ease, text-decoration-color 0.15s ease, text-underline-offset 0.15s ease;
}
.lp-nav__link:hover {
  color: var(--laranja);
  text-decoration-color: var(--laranja);
  text-underline-offset: 4px;
}

/* ── HERO ── */
.lp-hero {
  background: #fff;
  padding: 24px clamp(16px, 4vw, 64px) 48px;
}
.lp-hero__inner { max-width: 1100px; margin: 0 auto; }

.lp-hero__line { animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
.lp-hero__line--1 { animation-delay: 0.05s; }
.lp-hero__line--2 { animation-delay: 0.20s; }
.lp-hero__line--3 { animation-delay: 0.38s; }

.lp-hero__title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 800;
  color: var(--grafite);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 20px;
  max-width: 900px;
  text-wrap: pretty;
}
.lp-hero__lead {
  margin-top: 32px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--grafite-medio);
  line-height: 1.55;
  max-width: 680px;
  text-wrap: pretty;
}
.lp-hero__ctas {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.54s both;
}

/* ── BLOCO 2: TRÍADE ── */
.lp-triade {
  background: var(--cinza-apoio);
  padding: clamp(72px, 8vw, 112px) clamp(16px, 4vw, 64px);
}
.lp-triade__head { margin-bottom: 40px; }
.lp-triade__head .lp-eyebrow { display: block; margin-bottom: 12px; }
.lp-triade__title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--grafite);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.lp-triade__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-triade__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--laranja);
  border-radius: 8px;
  padding: 36px 32px;
}
.lp-triade__q {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  color: var(--grafite);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.lp-triade__a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--grafite-medio);
  line-height: 1.65;
}

/* ── BLOCO 3: MANIFESTO RESUMIDO ── */
.lp-manifesto {
  background: #fff;
  padding: clamp(80px, 9vw, 128px) clamp(16px, 4vw, 64px);
}
.lp-manifesto__inner { max-width: 860px; margin: 0 auto; }
.lp-manifesto__title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--grafite);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  text-wrap: pretty;
}
.lp-manifesto__body { display: flex; flex-direction: column; gap: 24px; }
.lp-manifesto__p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--grafite-medio);
  line-height: 1.7;
}
.lp-manifesto__p--strong {
  font-weight: 600;
  color: var(--grafite);
}
.lp-manifesto__p strong { color: var(--grafite); font-weight: 700; }
.lp-manifesto__inner > .lp-link-arrow { margin-top: 40px; }

/* ── BLOCO 4: MÉTODO SEM ── */
.lp-metodo {
  background: var(--cinza-apoio);
  padding: clamp(80px, 9vw, 128px) clamp(16px, 4vw, 64px);
}
.lp-metodo__head { max-width: 720px; margin-bottom: 56px; }
.lp-metodo__head .lp-eyebrow { display: block; margin-bottom: 16px; }
.lp-metodo__head .lp-section__lead { font-size: 18px; }

.lp-metodo__tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--color-border);
}
.lp-metodo__tab {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: #c5cdd5;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 32px 16px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: -2px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.lp-metodo__tab span {
  font-size: 40%;
  font-weight: 600;
  letter-spacing: 0;
  margin-top: 2px;
  color: #c5cdd5;
}
.lp-metodo__tab:hover { color: var(--grafite); }
.lp-metodo__tab:hover span { color: var(--grafite); }
.lp-metodo__tab--active,
.lp-metodo__tab--active:hover {
  color: var(--laranja);
  border-bottom-color: var(--laranja);
}
.lp-metodo__tab--active span { color: var(--grafite); }

.lp-metodo__panels { background: #fff; border: 1px solid var(--color-border); border-top: none; border-radius: 0 0 8px 8px; padding: clamp(32px, 4vw, 56px); }
.lp-metodo__panel { display: none; animation: fadeIn 0.25s ease; }
.lp-metodo__panel--active { display: block; }

.lp-metodo__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--grafite);
  margin-bottom: 32px;
  line-height: 1.4;
}
.lp-metodo__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.lp-metodo__grid--two { grid-template-columns: 1fr 1fr; }
.lp-metodo__items { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.lp-metodo__items li { display: flex; gap: 12px; align-items: flex-start; }
.lp-metodo__items li span:last-child {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--grafite);
  line-height: 1.6;
}
.lp-metodo__items li .lp-dash { font-size: 16px; margin-top: 1px; }

.lp-metodo__why {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}
.lp-metodo__why p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--grafite-medio);
  line-height: 1.65;
  font-style: italic;
}
.lp-metodo__why strong {
  font-style: normal;
  color: var(--grafite);
  font-weight: 700;
}

.lp-metodo__speeds-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--laranja);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lp-speeds {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
}
.lp-speeds__head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--grafite);
  padding: 10px 16px;
}
.lp-speeds__head span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lp-speeds__head--accent { color: var(--laranja) !important; }
.lp-speeds__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 16px;
  border-top: 1px solid var(--color-border);
  background: #fff;
}
.lp-speeds__row--alt { background: var(--cinza-apoio); }
.lp-speeds__item {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--grafite);
  font-weight: 500;
}
.lp-speeds__sem {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--laranja);
  font-weight: 700;
}
.lp-speeds__trad {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #8096a7;
  font-weight: 400;
}

/* ── BLOCO 5: PLANOS ── */
.lp-planos {
  background: #fff;
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 64px) 24px;
}
.lp-planos__head { max-width: 720px; margin-bottom: 48px; }
.lp-planos__head .lp-eyebrow { display: block; margin-bottom: 16px; }

.lp-planos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.lp-plano {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 1px 4px rgba(26, 52, 70, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.lp-plano:hover {
  box-shadow: 0 12px 40px rgba(26, 52, 70, 0.14);
  transform: translateY(-3px);
}
.lp-plano--destaque {
  background: var(--grafite);
  border: 2px solid var(--laranja);
  box-shadow: 0 8px 32px rgba(26, 52, 70, 0.16);
}
.lp-plano__badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--laranja);
  background: var(--laranja-suave);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  align-self: flex-start;
}
.lp-plano__name {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--grafite);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.lp-plano--destaque .lp-plano__name { color: #fff; }
.lp-plano__pra {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--grafite-medio);
  line-height: 1.6;
  margin-bottom: 28px;
}
.lp-plano--destaque .lp-plano__pra { color: rgba(255, 255, 255, 0.65); }
.lp-plano__fases {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.lp-plano__fases li { display: flex; gap: 10px; align-items: flex-start; }
.lp-plano__fases li span:last-child {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--grafite);
  line-height: 1.5;
}
.lp-plano__fases .lp-dash { margin-top: 1px; }
.lp-plano--destaque .lp-plano__fases li span:last-child { color: rgba(255, 255, 255, 0.8); }
.lp-plano__foot {
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}
.lp-plano--destaque .lp-plano__foot { border-top-color: var(--grafite-medio); }
.lp-plano__preco {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--grafite-medio);
  margin-bottom: 16px;
  line-height: 1.4;
}
.lp-plano--destaque .lp-plano__preco { color: rgba(255, 255, 255, 0.55); }

.lp-planos__foot {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: #8096a7;
  text-align: center;
  margin-top: 28px;
}

/* ── BLOCO 6: O QUE ENTREGAMOS ── */
.lp-entregamos {
  background: var(--cinza-apoio);
  padding: 24px clamp(16px, 4vw, 64px) clamp(48px, 6vw, 80px);
}
.lp-entregamos__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 2px solid var(--color-border);
}
.lp-entregamos__head .lp-section__title { margin: 0; }
.lp-entregamos__lead {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--grafite-medio);
  line-height: 1.65;
  margin: 0;
}
.lp-entregamos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
}
.lp-entregamos__item {
  background: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.lp-entregamos__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.lp-entregamos__tempo {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--laranja);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--laranja-suave);
  padding: 4px 10px;
  border-radius: 3px;
}
.lp-entregamos__num {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--cinza-apoio);
  line-height: 1;
  letter-spacing: -0.03em;
}
.lp-entregamos__title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--grafite);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.lp-entregamos__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--grafite-medio);
  line-height: 1.7;
}

/* ── BLOCO 7: BIO ── */
.lp-bio {
  background: var(--cinza-apoio);
  padding: 0 clamp(16px, 4vw, 64px) clamp(80px, 9vw, 128px);
}
.lp-bio__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.lp-bio__photo {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  max-width: 320px;
}
.lp-bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.lp-bio__content .lp-eyebrow { display: block; margin-bottom: 20px; }
.lp-bio__title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 800;
  color: var(--grafite);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  text-wrap: pretty;
}
.lp-bio__paras {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-bio__paras p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--grafite-medio);
  line-height: 1.7;
}
.lp-bio__highlight {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--grafite) !important;
}
.lp-bio__content .lp-link-arrow { margin-top: 36px; }

/* ── BLOCO 8: FAQ ── */
.lp-faq {
  background: #fff;
  padding: clamp(80px, 9vw, 128px) clamp(16px, 4vw, 64px);
}
.lp-faq__inner { max-width: 860px; margin: 0 auto; }
.lp-faq__title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--grafite);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.lp-faq__list { display: flex; flex-direction: column; }
.lp-faq__item { border-top: 1px solid var(--color-border); }
.lp-faq__item:last-child { border-bottom: 1px solid var(--color-border); }
.lp-faq__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.lp-faq__q {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 600;
  color: var(--grafite);
  line-height: 1.4;
  flex: 1;
  transition: color 0.18s ease;
}
.lp-faq__icon {
  color: #8096a7;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.18s ease;
}
.lp-faq__item--open .lp-faq__q { color: var(--laranja); }
.lp-faq__item--open .lp-faq__icon {
  color: var(--laranja);
  transform: rotate(45deg);
}
.lp-faq__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
}
.lp-faq__item--open .lp-faq__body {
  max-height: 500px;
  opacity: 1;
}
.lp-faq__body p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--grafite-medio);
  line-height: 1.7;
  padding-bottom: 24px;
}

/* ── BLOCO 9: CTA FINAL ── */
.lp-cta-final {
  background: var(--laranja-suave);
  padding: clamp(80px, 9vw, 128px) clamp(16px, 4vw, 64px);
  border-top: 3px solid var(--laranja);
}
.lp-cta-final__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.lp-cta-final__title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--grafite);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.lp-cta-final__lead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--grafite-medio);
  line-height: 1.65;
  margin: 0 auto 40px;
  max-width: 560px;
}
.lp-cta-final__foot {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: #8096a7;
  margin-top: 20px;
}

/* ── FOOTER ── */
.lp-footer {
  background: var(--grafite);
  padding: clamp(56px, 6vw, 80px) clamp(16px, 4vw, 64px) 32px;
}
.lp-footer__inner { max-width: 1320px; margin: 0 auto; }
.lp-footer__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.lp-footer__logo {
  height: 52px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.lp-footer__head {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--laranja);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.lp-footer__link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  margin-bottom: 10px;
}
.lp-footer__link:hover { color: #fff; }
.lp-footer__bottom {
  border-top: 1px solid var(--grafite-medio);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-footer__copy {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}
.lp-footer__domain {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
}

/* ── MODAL MANIFESTO ── */
.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--grafite);
  overflow-y: auto;
  display: none;
}
.lp-modal--open {
  display: block;
  animation: fadeIn 0.3s ease;
}
.lp-modal__bar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--grafite);
  border-bottom: 1px solid var(--grafite-medio);
  padding: 0 clamp(16px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.lp-modal__logo {
  height: 36px;
  filter: brightness(0) invert(1);
}
.lp-modal__close {
  background: transparent;
  border: 1px solid var(--grafite-medio);
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s ease;
}
.lp-modal__close:hover {
  border-color: var(--laranja);
  color: #fff;
}
.lp-modal__close-x { font-size: 18px; line-height: 1; }

.lp-modal__content {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 64px) 120px;
}
.lp-modal__kicker {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.lp-modal__title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  text-wrap: pretty;
}
.lp-modal__paras {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.lp-modal__lead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
}
.lp-modal__p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}
.lp-modal__destaque {
  font-family: 'Inter', sans-serif;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
.lp-modal__perguntas {
  border-left: 3px solid var(--laranja);
  padding-left: 24px;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-modal__perguntas p {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.lp-modal__fechamento {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--laranja);
  line-height: 1.2;
  margin-top: 16px;
}

.lp-modal__sign {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--grafite-medio);
}
.lp-modal__sign-name {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.lp-modal__sign-role {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}
.lp-modal__sign-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: #fff;
  margin-top: 20px;
}
.lp-modal__cta { margin-top: 48px; }

/* ── RESPONSIVO ── */
@media (max-width: 960px) {
  .lp-triade__grid,
  .lp-planos__grid,
  .lp-entregamos__grid {
    grid-template-columns: 1fr;
  }
  .lp-entregamos__head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .lp-bio__inner { grid-template-columns: 1fr; gap: 32px; }
  .lp-bio__photo { max-width: 280px; }
  .lp-metodo__grid--two { grid-template-columns: 1fr; }
  .lp-footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lp-nav { display: none; }
  .lp-header__inner { height: 72px; }
  .lp-metodo__tab { padding: 12px 18px 14px; }
  .lp-metodo__panels { padding: 28px 20px; }
}

@media (max-width: 600px) {
  .lp-footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .lp-footer__bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .lp-header__logo img { height: 40px; }
  .lp-footer__logo { height: 40px; }
  .lp-hero__ctas { gap: 12px; }
  .lp-btn--lg { padding: 14px 24px; font-size: 15px; }
}
