@charset "UTF-8";
:root {
  --container: 1320px;
  --pad-x: clamp(20px, 4vw, 56px);
  --bg: #F3EEE7;
  --bg-card: #ffffff;
  --sand: #F3EEE7;
  --sand-soft: #F8F4ED;
  --white: #ffffff;
  --ink: #1A1D24;
  --ink-2: #4A4F58;
  --ink-3: #8A8F98;
  --line: #E5DED2;
  --line-2: #ECE5D7;
  --accent: #F26522;
  --accent-h: #E4561A;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, .h-display {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  font-weight: 700;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.eyebrow {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

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

.accent-underline {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% 8px;
  padding: 0 0.04em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
  border: 0;
}
.btn .btn-arrow {
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.2s ease;
}
.btn:hover .btn-arrow {
  transform: translateX(4px) rotate(-12deg);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-h);
}
.btn-primary .btn-arrow {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}
.btn-ghost .btn-ico {
  filter: brightness(0);
}
.btn-ghost:hover .btn-ico {
  filter: brightness(0) invert(1);
}
.btn-ghost .btn-arrow {
  background: var(--ink);
  color: #fff;
}
.btn-ghost:hover .btn-arrow {
  background: #fff;
  color: var(--ink);
}

.btn-on-dark {
  background: #fff;
  color: var(--ink);
}

.btn-arrow {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.btn-ico {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: inline-block;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 238, 231, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 28px;
  width: auto;
  display: block;
}

.logo--footer img {
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-cta .btn {
  padding: 10px 18px;
}
.nav-cta .btn-arrow {
  display: none;
}

.nav-dd {
  position: relative;
}
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dd:hover .nav-dd-trigger, .nav-dd:focus-within .nav-dd-trigger {
  color: var(--accent);
}
.nav-dd:hover .nav-dd-trigger .nav-dd-caret, .nav-dd:focus-within .nav-dd-trigger .nav-dd-caret {
  transform: rotate(180deg);
}

.nav-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: inherit;
  text-transform: inherit;
  transition: color 0.2s ease;
}

.nav-dd-caret {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.25s ease;
  display: inline-block;
}

.nav-dd-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 8px 8px;
  margin-top: 0;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  box-shadow: 0 18px 40px -12px rgba(26, 29, 36, 0.18), 0 4px 10px -2px rgba(26, 29, 36, 0.06);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.25s ease;
  z-index: 60;
}
.nav-dd-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-dd-menu a:hover {
  background: var(--sand);
  color: var(--accent);
}

.nav-dd-menu--mega {
  width: min(1080px, 100vw - 64px);
  min-width: 0;
  max-width: calc(100vw - 64px);
  padding: 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
}
.nav-dd-menu--mega a {
  padding: 0;
  border-radius: 0;
  white-space: normal;
  background: transparent;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.nav-dd-menu--mega a:hover {
  background: transparent;
}

.megamenu-feat {
  position: relative;
  padding: 28px 24px;
  background-color: #1a1d24;
  background-image: linear-gradient(180deg, rgba(26, 29, 36, 0.55) 0%, rgba(26, 29, 36, 0.92) 100%), url("../images/home/megamenu-feat-bg.webp"), linear-gradient(135deg, #2a1a3d 0%, #1a1d24 60%, #f26522 200%);
  background-size: cover, cover, auto;
  background-position: center, center, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  pointer-events: none;
}

.megamenu-feat-meta {
  position: relative;
  z-index: 1;
}

.megamenu-feat-eyebrow {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.megamenu-feat-title {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 800;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 10px;
}

.megamenu-feat p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.megamenu-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.megamenu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  flex: 1;
}

.megamenu-cat {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 12px !important;
  border-radius: 10px !important;
  text-decoration: none;
  color: var(--ink) !important;
  transition: background 0.15s ease;
}
.megamenu-cat:hover {
  background: var(--sand-soft) !important;
}
.megamenu-cat:hover .megamenu-cat-title {
  color: var(--accent);
}

.megamenu-cat-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  background: var(--sand-soft);
  display: block;
}
.megamenu-cat-icon--ph {
  background: linear-gradient(135deg, var(--sand-soft), var(--sand));
}

.megamenu-cat-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.megamenu-cat-title {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.15s ease;
}

.megamenu-cat-desc {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.megamenu-foot {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.megamenu-allbtn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--accent) !important;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: background 0.15s ease, color 0.15s ease;
}
.megamenu-allbtn:hover {
  background: rgba(242, 101, 34, 0.1) !important;
}
.megamenu-allbtn .btn-arrow {
  font-size: 16px;
  transition: transform 0.15s ease;
}
.megamenu-allbtn:hover .btn-arrow {
  transform: translateX(3px);
}
.megamenu-allbtn--ghost {
  color: var(--ink-2) !important;
  font-weight: 600 !important;
}
.megamenu-allbtn--ghost:hover {
  background: var(--sand-soft) !important;
  color: var(--ink) !important;
}

@media (max-width: 980px) {
  .nav-dd-menu--mega {
    width: min(820px, 100vw - 32px);
    grid-template-columns: 220px 1fr;
  }
  .megamenu-feat {
    padding: 22px 18px;
    min-height: 260px;
  }
  .megamenu-feat-title {
    font-size: 22px;
  }
  .megamenu-body {
    padding: 18px;
  }
}
@media (max-width: 720px) {
  .nav-dd-menu--mega {
    grid-template-columns: 1fr;
  }
  .megamenu-feat {
    display: none;
  }
  .megamenu-grid {
    grid-template-columns: 1fr;
  }
}
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--sand) url("../images/fundo-painel.webp") center bottom/cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
  position: relative;
  z-index: 2;
}

.hero-text {
  position: relative;
}

.hero-text-track {
  position: relative;
  min-height: 480px;
}

.hero-text-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}
.hero-text-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  position: relative;
}

.hero h1 {
  font-size: clamp(48px, 6.4vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 28px;
  text-wrap: balance;
}

.hero p.lead {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-text-nav {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: var(--ink-3);
  opacity: 0.35;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.25s ease, background 0.25s ease, width 0.35s ease;
}
.hero-dot.is-active {
  opacity: 1;
  background: var(--accent);
  width: 24px;
}

.hero-media {
  aspect-ratio: 4/5;
  background: #E8DFCE;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 29, 36, 0.18));
  pointer-events: none;
  z-index: 2;
}

.hero-media-track {
  position: absolute;
  inset: 0;
}

.hero-media-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), visibility 0.8s ease;
  will-change: transform, opacity;
}
.hero-media-slide.is-active {
  opacity: 1;
  visibility: visible;
  animation: hero-photo-zoom 18s ease-in-out infinite alternate;
}

.hero-media-slide--1 {
  background-image: url("../images/pessoa-destaque.webp");
}

.hero-media-slide--2 {
  background-image: linear-gradient(135deg, rgba(26, 29, 36, 0.18), transparent 60%), url("../images/mercearia.webp");
  background-color: #C9BBA1;
}

.hero-media-slide--3 {
  background: radial-gradient(120% 90% at 80% 0%, rgba(242, 101, 34, 0.35), transparent 60%), linear-gradient(160deg, #1A1D24 0%, #2A3038 100%);
}
.hero-media-slide--3::after {
  content: "";
  position: absolute;
  bottom: -8%;
  right: -6%;
  width: 95%;
  aspect-ratio: 1/1;
  background: url("../images/foguete.webp") center/contain no-repeat;
}

@keyframes hero-photo-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
.hero-seal {
  position: absolute;
  top: 32px;
  left: 32px;
  width: clamp(110px, 14vw, 160px);
  height: clamp(110px, 14vw, 160px);
  z-index: 3;
  pointer-events: none;
  animation: seal-spin 18s linear infinite;
  filter: drop-shadow(0 8px 24px rgba(26, 29, 36, 0.18));
}
.hero-seal img {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes seal-spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.ph-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 20px;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 29, 36, 0.5);
  font-weight: 500;
}

.hero-counters {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 48px;
  position: relative;
}
.hero-counters::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 96px;
  height: 2px;
  background: var(--accent);
}

.counter {
  position: relative;
  padding: 8px 32px 8px 0;
}
.counter + .counter {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}
.counter .num {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(48px, 5.4vw, 72px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
}
.counter .num.accent {
  color: var(--accent);
}
.counter .tag {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--accent);
}
.counter .label {
  font-size: 14.5px;
  color: var(--ink-2);
  max-width: 260px;
  line-height: 1.5;
}
.counter .ghost {
  position: absolute;
  top: -28px;
  right: 12px;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 8vw, 120px);
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(26, 29, 36, 0.06);
  pointer-events: none;
  z-index: 0;
}

.marquee {
  background: var(--accent);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  padding-right: 48px;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.marquee-item {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  flex: 0 0 auto;
}

.marquee-sep {
  width: clamp(20px, 2vw, 28px);
  height: clamp(20px, 2vw, 28px);
  flex: 0 0 auto;
  animation: spin 12s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.how {
  background: var(--ink);
  color: #EFE9DD;
  padding: 120px 0 140px;
  position: relative;
}

.how-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}
.how-head .eyebrow {
  color: rgba(239, 233, 221, 0.6);
}
.how-head .eyebrow::before {
  background: var(--accent);
}
.how-head p {
  color: rgba(239, 233, 221, 0.7);
  font-size: 17px;
  max-width: 460px;
}

.how h2 {
  color: #EFE9DD;
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.025em;
}

.steps {
  list-style: none;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 80px;
  gap: 32px;
  align-items: baseline;
  padding: 36px 0;
  border-top: 1px solid rgba(239, 233, 221, 0.12);
  transition: padding 0.25s ease;
}
.step:last-child {
  border-bottom: 1px solid rgba(239, 233, 221, 0.12);
}
.step .n {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(239, 233, 221, 0.45);
}
.step .t {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #EFE9DD;
}
.step .d {
  font-size: 16px;
  color: rgba(239, 233, 221, 0.7);
  max-width: 440px;
}
.step .arr {
  justify-self: end;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(239, 233, 221, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(239, 233, 221, 0.6);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.step:hover {
  background: rgba(255, 255, 255, 0.02);
  padding-left: 16px;
  padding-right: 16px;
}
.step:hover .t {
  color: var(--accent);
}
.step:hover .arr {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.word-strip {
  background: var(--white);
  padding: 96px var(--pad-x) 24px;
  overflow: hidden;
  white-space: nowrap;
}

.word-strip-track {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  will-change: transform;
  animation: word-slide-loop 14s ease-in-out infinite alternate;
}

.word-strip span {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 14vw, 200px);
  letter-spacing: -0.045em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
  opacity: 0.18;
  flex: 0 0 auto;
}

.word-strip span:nth-child(1) {
  animation: word-shimmer-1 8s ease-in-out infinite;
}

.word-strip span:nth-child(3) {
  animation: word-shimmer-3 8s ease-in-out infinite;
}

.word-strip span:nth-child(2) {
  color: var(--ink);
  -webkit-text-stroke: 0;
  opacity: 1;
  animation: word-pulse 6s ease-in-out infinite;
}

@keyframes word-shimmer-1 {
  0%, 100% {
    opacity: 0.18;
    -webkit-text-stroke-color: var(--ink);
  }
  50% {
    opacity: 0.35;
    -webkit-text-stroke-color: var(--accent);
  }
}
@keyframes word-shimmer-3 {
  0%, 100% {
    opacity: 0.18;
    -webkit-text-stroke-color: var(--ink);
  }
  50% {
    opacity: 0.4;
    -webkit-text-stroke-color: var(--accent);
  }
}
@keyframes word-slide-loop {
  from {
    transform: translateX(14%);
  }
  to {
    transform: translateX(-14%);
  }
}
@keyframes word-pulse {
  0%, 100% {
    color: var(--ink);
    letter-spacing: -0.045em;
  }
  50% {
    color: var(--accent);
    letter-spacing: -0.038em;
  }
}
.features {
  background: var(--white);
  padding: 40px 0 140px;
}

.features-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: end;
}
.features-head p {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 460px;
}

.features h2 {
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.025em;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.feat {
  grid-column: span 6;
  background: var(--sand);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.feat:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.feat-media {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #E8DFCE, #C9BBA1);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.feat-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.35s ease;
}
.feat-media {
  background-repeat: no-repeat;
  transition: background-size 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.feat:hover .feat-media {
  background-size: 110%;
}

.feat:hover .feat-media img {
  transform: scale(1.04);
}

.feat-body {
  padding: 28px 28px 32px;
}

.feat h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.feat p {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}

.kw {
  background: var(--ink);
  color: #EFE9DD;
  padding: 120px 0;
}

.kw-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.kw-left .eyebrow {
  color: rgba(239, 233, 221, 0.6);
  margin-bottom: 24px;
}
.kw-left .eyebrow::before {
  background: var(--accent);
}
.kw-left h2 {
  color: #EFE9DD;
  font-size: clamp(36px, 3.6vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin-bottom: 36px;
  text-wrap: balance;
}

.kw-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.kw-actions .btn {
  background: transparent;
  color: #EFE9DD;
  border: 1px solid rgba(239, 233, 221, 0.25);
}
.kw-actions .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.kw-actions .btn-arrow {
  background: rgba(239, 233, 221, 0.12);
  color: #EFE9DD;
}
.kw-actions .btn:hover .btn-arrow {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.kw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kw-tag {
  display: inline-flex;
  align-items: center;
  padding: 12px 8px;
  border-radius: 999px;
  border: 1px solid rgba(239, 233, 221, 0.22);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(239, 233, 221, 0.85);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  cursor: default;
}
.kw-tag:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.panel {
  background: var(--ink);
  color: #EFE9DD;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.panel .eyebrow {
  color: rgba(239, 233, 221, 0.6);
  margin-bottom: 24px;
}
.panel .eyebrow::before {
  background: var(--accent);
}
.panel h2 {
  color: #EFE9DD;
  font-size: clamp(40px, 4.4vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-bottom: 24px;
}
.panel h2 .accent-underline {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 100% 6px;
  background-position: 0 92%;
  background-repeat: no-repeat;
  padding: 0 0.04em;
}
.panel p.lead {
  color: rgba(239, 233, 221, 0.72);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 480px;
}

.panel-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.panel-bullets {
  list-style: none;
  margin-bottom: 40px;
}
.panel-bullets li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(239, 233, 221, 0.12);
}
.panel-bullets li:last-child {
  border-bottom: 1px solid rgba(239, 233, 221, 0.12);
}
.panel-bullets .num {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 4px;
}
.panel-bullets .t {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #EFE9DD;
  letter-spacing: -0.01em;
}
.panel-bullets .d {
  display: block;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(239, 233, 221, 0.6);
  margin-top: 4px;
  letter-spacing: 0;
}

.panel-shot {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #0F1218;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.15s ease-out;
  will-change: transform;
}
.panel-shot img,
.panel-shot video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.panel-shot::after {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(closest-side, rgba(242, 101, 34, 0.25), transparent 70%);
  pointer-events: none;
}
.panel-shot.is-tilt {
  transform: perspective(1400px) rotateX(var(--rx, 0)) rotateY(var(--ry, 0));
}

.segments {
  background: var(--sand);
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

.segments-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.segments-head p {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 460px;
}

.segments h2 {
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.03em;
  max-width: 560px;
}

.seg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 48px;
}

.seg {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 14px 14px 18px;
  border-radius: 12px;
  background: transparent;
  box-shadow: 0 0 0 0 rgba(26, 29, 36, 0);
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1), background 400ms ease, box-shadow 600ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.segments .seg:hover {
  transform: translateY(-6px) scale(1.03);
  background: var(--white);
  box-shadow: 0 24px 48px -16px rgba(26, 29, 36, 0.18), 0 4px 12px -4px rgba(26, 29, 36, 0.08);
}

.seg-cover {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #DDD2BE, #B8A88B);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.seg-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.segments .seg:hover .seg-cover img {
  transform: scale(1.04);
}

.seg-flag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(26, 29, 36, 0.78);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 999px;
}

.seg--em-breve .seg-cover {
  opacity: 0.85;
}
.seg--em-breve:hover .seg-cover {
  opacity: 1;
}

.seg--fallback .seg-cover--fallback {
  background: var(--ink, #1a1d24);
  color: var(--white, #fff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  transition: background 400ms ease, border-color 400ms ease;
}
.seg--fallback .seg-fallback-glyph {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 96px;
  line-height: 1;
  font-weight: 200;
  color: var(--orange, #ff6b35);
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.seg--fallback .seg-fallback-eyebrow {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.seg--fallback:hover .seg-cover--fallback {
  background: #2a2e38;
  border-color: rgba(255, 107, 53, 0.4);
}
.seg--fallback:hover .seg-fallback-glyph {
  transform: scale(1.08) rotate(45deg);
}

.seg-meta {
  padding: 0 4px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.seg h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.seg .tag {
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.segments-cta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.diff {
  background: var(--white);
  padding: 120px 0 140px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.diff-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}
.diff-head p {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 460px;
}

.diff h2 {
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.025em;
  max-width: 560px;
}

.diff-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.diff-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.diff-card {
  background: var(--sand-soft);
  border-radius: 14px;
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line-2);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.diff-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.diff-card .num {
  position: absolute;
  top: -16px;
  right: 12px;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(90px, 11vw, 160px);
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(26, 29, 36, 0.08);
  z-index: 0;
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.35s ease;
}
.diff-card:hover .num {
  -webkit-text-stroke-color: rgba(242, 101, 34, 0.55);
}
.diff-card .ribbon {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 1px solid rgba(242, 101, 34, 0.55);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.diff-card h3 {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.diff-card p {
  position: relative;
  z-index: 1;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}

.diff-card--visual {
  padding: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line-2);
  aspect-ratio: 4/5;
}

.diff-card--rocket {
  background: radial-gradient(120% 90% at 80% 0%, rgba(242, 101, 34, 0.35), transparent 60%), linear-gradient(160deg, #1A1D24 0%, #2A3038 100%);
}
.diff-card--rocket img {
  position: absolute;
  bottom: -8%;
  right: -6%;
  width: 95%;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.diff-card--rocket:hover img {
  transform: translate(-4%, -8%) rotate(-6deg);
}
.diff-card--rocket .cap {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  color: #EFE9DD;
  z-index: 2;
}
.diff-card--rocket .cap-eyebrow {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.diff-card--rocket .cap h3 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #EFE9DD;
  line-height: 1.15;
}

.diff-card--type {
  background: linear-gradient(135deg, var(--sand) 0%, #E8DFCE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.diff-card--type span {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(54px, 5.6vw, 86px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--ink);
  text-align: center;
  opacity: 0.7;
  transition: -webkit-text-stroke-color 0.35s ease, color 0.35s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.diff-card--type:hover span {
  -webkit-text-stroke-color: var(--accent);
  color: rgba(242, 101, 34, 0.06);
  transform: scale(1.04);
}

.diff-card--ai {
  background-color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.diff-card--ai .diff-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}
.diff-card--ai::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 0% 100%, rgba(242, 101, 34, 0.45), transparent 65%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
  z-index: 1;
}
.diff-card--ai .ai-mini, .diff-card--ai .ai-headline {
  position: relative;
  z-index: 2;
}
.diff-card--ai .ai-mini {
  align-self: flex-start;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid rgba(242, 101, 34, 0.45);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.diff-card--ai .ai-mini::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.diff-card--ai .ai-headline {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.diff-card--ai .ai-headline strong {
  color: #FFCAA8;
  font-weight: 600;
}
.diff-card--ai .ai-mini {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.pricing {
  background: var(--sand);
  padding: 130px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pricing .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}
.pricing h2 {
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-bottom: 20px;
}

.pricing-head {
  max-width: 880px;
  margin: 0 auto 64px;
  text-align: center;
}
.pricing-head p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 40px 36px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 600ms cubic-bezier(0.4, 0, 0.2, 1), border-color 400ms ease;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 24px 48px -16px rgba(26, 29, 36, 0.15), 0 4px 12px -4px rgba(26, 29, 36, 0.06);
}
.price-card .ribbon {
  display: inline-block;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(242, 101, 34, 0.55);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.price-card h3 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.price-card .sub {
  color: var(--ink-2);
  font-size: 16px;
  margin-bottom: 32px;
}
.price-card .amount {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 28px;
}
.price-card .amount .value {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(60px, 5.6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
}
.price-card .amount .value.accent {
  color: var(--accent);
}
.price-card .amount .unit {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 16px;
  color: var(--ink-2);
  font-weight: 500;
  line-height: 1.4;
  padding-bottom: 6px;
}
.price-card ul {
  list-style: none;
  margin-bottom: 0;
}
.price-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.45;
}
.price-card li:last-child {
  border-bottom: 1px solid var(--line);
}
.price-card li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border-radius: 999px;
  background: rgba(242, 101, 34, 0.14);
  box-shadow: inset 0 0 0 4px var(--accent);
}

.price-foot {
  max-width: 980px;
  margin: 40px auto 0;
  text-align: center;
}
.price-foot .note {
  display: block;
  color: var(--ink-2);
  font-size: 16px;
  margin-bottom: 24px;
}

.quote {
  background: var(--white);
  padding: 140px 0;
  position: relative;
}

.quote-track {
  position: relative;
}

.quote-slide {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
  position: absolute;
  inset: 0;
}
.quote-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  position: relative;
}

.quote-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #D4C7B0, #B0A085);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.quote-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.quote blockquote {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
}

.quote .marks {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 80px;
  line-height: 0.5;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.quote-author {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.quote-author .name {
  font-weight: 600;
  font-size: 16px;
}
.quote-author .role {
  color: var(--ink-2);
  font-size: 16px;
}

.quote-nav {
  display: flex;
  gap: 10px;
  margin-top: 56px;
  justify-content: center;
}

.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: var(--ink-3);
  opacity: 0.35;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.25s ease, background 0.25s ease, width 0.35s ease;
}
.quote-dot.is-active {
  opacity: 1;
  background: var(--accent);
  width: 24px;
}
.quote-dot:hover {
  opacity: 0.8;
}

.blog {
  background: var(--sand);
  padding: 140px 0;
  border-top: 1px solid var(--line);
}

.blog-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.blog-head p {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 460px;
}

.blog h2 {
  font-size: clamp(40px, 4.4vw, 60px);
  letter-spacing: -0.025em;
  max-width: 520px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 32px;
}

.post-feat {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.post-feat .cover {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #DDD2BE, #B0A085);
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, background-size 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.post-feat:hover .cover {
  transform: translateY(-4px);
  background-size: 110%;
}
.post-feat .meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.post-feat .meta .cat {
  color: var(--accent);
  font-weight: 600;
}
.post-feat h3 {
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 580px;
  transition: color 0.25s ease;
}
.post-feat:hover h3 {
  color: var(--accent);
}
.post-feat p.lead {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
  max-width: 560px;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.post-mini {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: padding 0.25s ease;
}
.post-mini:last-child {
  border-bottom: 1px solid var(--line);
}
.post-mini:hover {
  padding-left: 8px;
}
.post-mini .cover {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #DDD2BE, #B0A085);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
  transition: background-size 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.post-mini:hover .cover {
  background-size: 110%;
}
.post-mini:nth-child(2) .cover {
  background: linear-gradient(135deg, #C9BBA1, #9D8C70);
}
.post-mini:nth-child(3) .cover {
  background: linear-gradient(135deg, #E2D6BF, #C0AE92);
}
.post-mini .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.post-mini .meta .cat {
  color: var(--accent);
  font-weight: 600;
}
.post-mini h4 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.25s ease;
}
.post-mini:hover h4 {
  color: var(--accent);
}

.blog-cta {
  margin-top: 56px;
  display: flex;
  justify-content: flex-end;
}

.site-footer {
  background: var(--ink);
  color: #EFE9DD;
  position: relative;
  overflow: hidden;
}

.footer-top {
  position: relative;
  z-index: 1;
  padding: 110px var(--pad-x) 100px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-cta {
  max-width: 880px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
}

.soc {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(239, 233, 221, 0.06);
  border: 1px solid rgba(239, 233, 221, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #EFE9DD;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.soc svg {
  display: block;
}
.soc--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.soc:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-headline {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.06;
  color: #EFE9DD;
  text-wrap: balance;
}
.footer-headline .accent {
  color: var(--accent);
}

.footer-cta-btn {
  margin-top: 36px;
}

.footer-mega {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px var(--pad-x) 0;
  overflow: hidden;
  opacity: 0.5;
}
.footer-mega img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-divider {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.footer-divider::before {
  content: "";
  display: block;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(239, 233, 221, 0.22) 50%, transparent 50%);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 64px;
  padding: 64px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.footer-cols h4 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #EFE9DD;
  margin-bottom: 24px;
}
.footer-cols ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-cols a {
  color: rgba(239, 233, 221, 0.7);
  font-size: 16px;
  transition: color 0.2s ease;
}
.footer-cols a:hover {
  color: var(--accent);
}
.footer-cols .col-about p,
.footer-cols .col-contact p {
  color: rgba(239, 233, 221, 0.7);
  font-size: 16px;
  line-height: 1.6;
}
.footer-cols .col-about p {
  max-width: 320px;
}
.footer-cols .col-contact p {
  margin-bottom: 14px;
}

.footer-bottom {
  padding: 28px var(--pad-x) 36px;
  text-align: center;
  font-size: 16px;
  color: rgba(239, 233, 221, 0.45);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom .footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom .footer-legal a {
  color: rgba(239, 233, 221, 0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-bottom .footer-legal a:hover {
  color: rgb(239, 233, 221);
}
.footer-bottom .footer-legal span {
  color: rgba(239, 233, 221, 0.3);
}

@media (max-width: 720px) {
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].in-view {
  opacity: 1;
  transform: none;
}

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal-stagger].in-view > * {
  opacity: 1;
  transform: none;
}

[data-reveal-stagger].in-view > *:nth-child(1) {
  transition-delay: 0s;
}

[data-reveal-stagger].in-view > *:nth-child(2) {
  transition-delay: 0.07s;
}

[data-reveal-stagger].in-view > *:nth-child(3) {
  transition-delay: 0.14s;
}

[data-reveal-stagger].in-view > *:nth-child(4) {
  transition-delay: 0.21s;
}

[data-reveal-stagger].in-view > *:nth-child(5) {
  transition-delay: 0.28s;
}

[data-reveal-stagger].in-view > *:nth-child(6) {
  transition-delay: 0.35s;
}

[data-reveal-stagger].in-view > *:nth-child(7) {
  transition-delay: 0.42s;
}

[data-reveal-stagger].in-view > *:nth-child(8) {
  transition-delay: 0.49s;
}

[data-reveal-stagger].in-view > *:nth-child(9) {
  transition-delay: 0.56s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .word-strip-track, .marquee-track, .marquee-sep, .pulse-dot {
    animation: none !important;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-counters {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 32px;
    margin-top: 56px;
  }
  .how-head, .features-head, .segments-head, .quote-grid, .diff-head, .panel-grid, .blog-head, .blog-grid, .kw-grid, .quote-slide, .footer-cols, .pricing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-top {
    padding-top: 80px;
    padding-bottom: 64px;
  }
  .panel-bullets {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .diff-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .diff-card--visual {
    aspect-ratio: 16/10;
  }
  .post-mini {
    grid-template-columns: 100px 1fr;
    gap: 14px;
  }
  .step {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }
  .step .d {
    grid-column: 2;
  }
  .step .arr {
    display: none;
  }
  .feat-grid, .seg-grid {
    grid-template-columns: 1fr;
  }
  .feat {
    grid-column: span 1;
  }
}
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.fab-whatsapp img {
  width: 32px;
  height: 32px;
  display: block;
  filter: brightness(0) invert(1);
}
.fab-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 4px 10px rgba(0, 0, 0, 0.18);
}
.fab-whatsapp:active {
  transform: scale(0.96);
}

@media (max-width: 720px) {
  .fab-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .fab-whatsapp img {
    width: 28px;
    height: 28px;
  }
}
.page-hero {
  position: relative;
  padding: 140px 0 56px;
  background: linear-gradient(180deg, #FAF7F2 0%, #F3EEE7 100%);
  border-bottom: 1px solid #E3DCCF;
  overflow: hidden;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #4B5E6B;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.page-hero__breadcrumb a {
  color: #4B5E6B;
  text-decoration: none;
  transition: color 140ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.page-hero__breadcrumb a:hover {
  color: #F26522;
}
.page-hero__breadcrumb svg {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}
.page-hero__breadcrumb .current {
  color: #2C3E4F;
  font-weight: 500;
}

.page-hero__title {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #2C3E4F;
  max-width: 880px;
  margin-bottom: 18px;
}
.page-hero__title .hl {
  color: #F26522;
}

.page-hero__lead {
  font-size: 18px;
  line-height: 1.6;
  color: #4B5E6B;
  max-width: 680px;
}

.page-hero__num {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(180px, 22vw, 320px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 101, 34, 0.25);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 0;
}

.page-hero__word {
  position: absolute;
  top: 50%;
  right: -1%;
  transform: translateY(-50%);
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(80px, 11vw, 168px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 101, 34, 0.25);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.page-hero--dark {
  background: #1A1D24;
  border-bottom: 0;
  padding: 160px 0 80px;
}
.page-hero--dark .page-hero__breadcrumb {
  color: rgba(255, 255, 255, 0.55);
}
.page-hero--dark .page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}
.page-hero--dark .page-hero__breadcrumb a:hover {
  color: #FF9B66;
}
.page-hero--dark .page-hero__breadcrumb svg {
  opacity: 0.4;
}
.page-hero--dark .page-hero__breadcrumb .current {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.page-hero--dark .eyebrow {
  color: #FF9B66;
}
.page-hero--dark .page-hero__title {
  color: #fff;
}
.page-hero--dark .page-hero__title .hl {
  color: #FF9B66;
}
.page-hero--dark .page-hero__lead {
  color: rgba(255, 255, 255, 0.78);
}
.page-hero--dark .page-hero__num,
.page-hero--dark .page-hero__word {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .page-hero__num {
    font-size: clamp(140px, 38vw, 220px);
    right: -6%;
    opacity: 0.7;
  }
  .page-hero__word {
    font-size: clamp(56px, 16vw, 96px);
    right: -3%;
    opacity: 0.5;
  }
}
.page-hero--dark.categoria-hero--with-image {
  background: #172430 center/cover no-repeat;
}
.page-hero--dark.categoria-hero--with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 36, 48, 0.55) 0%, rgba(23, 36, 48, 0.85) 100%);
  pointer-events: none;
  z-index: 0;
}
.page-hero--dark.categoria-hero--with-image .page-hero__word {
  z-index: 0;
}
.page-hero--dark.categoria-hero--with-image .page-hero__num {
  z-index: 0;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 0 96px;
  font-size: 17px;
  line-height: 1.8;
  color: #2C3E4F;
}
.prose h2 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #2C3E4F;
  margin: 48px 0 16px;
}
.prose h3 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.3;
  color: #2C3E4F;
  margin: 32px 0 12px;
}
.prose p {
  margin: 0 0 18px;
}
.prose ul, .prose ol {
  margin: 0 0 18px;
  padding-left: 24px;
}
.prose ul {
  list-style: disc;
}
.prose ol {
  list-style: decimal;
}
.prose li {
  margin-bottom: 8px;
}
.prose a {
  color: #F26522;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 140ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.prose a:hover {
  color: #C34611;
}
.prose strong {
  color: #223241;
  font-weight: 600;
}
.prose hr {
  border: 0;
  border-top: 1px solid #EBE3D6;
  margin: 40px 0;
}

.prose__empty {
  text-align: center;
  color: #6E7F8B;
  padding: 60px 0;
}

.feature-page__intro .prose {
  margin-left: 0;
  max-width: 880px;
}

.feature-page__intro {
  background: #FAF7F2;
  padding: 32px 0 16px;
}

.how-step {
  background: #FAF7F2;
  padding: 96px 0;
  position: relative;
}
.how-step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #F26522 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M12 5v14M19 12l-7 7-7-7'/></svg>") center/24px 24px no-repeat;
  box-shadow: 0 12px 28px rgba(242, 101, 34, 0.35), 0 0 0 6px #FAF7F2;
  transform: translateX(-50%);
  z-index: 3;
  animation: how-step-arrow-bounce 2.2s ease-in-out infinite;
}
.how-step--dark:not(:last-child)::after {
  box-shadow: 0 12px 28px rgba(242, 101, 34, 0.45), 0 0 0 6px #1A1D24;
}
.how-step__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}
.how-step__text {
  position: relative;
}
.how-step__num {
  display: block;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(96px, 12vw, 168px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 101, 34, 0.32);
  margin-bottom: 24px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.how-step .ribbon {
  display: inline-block;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F26522;
  border: 1px solid rgba(242, 101, 34, 0.32);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.how-step h2 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #2C3E4F;
  margin: 0 0 18px;
  max-width: 520px;
}
.how-step p {
  font-size: 17px;
  line-height: 1.65;
  color: #4B5E6B;
  margin: 0 0 24px;
  max-width: 540px;
}
.how-step__check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.how-step__check li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.5;
  color: #2C3E4F;
}
.how-step__check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #F26522;
  box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.16);
}
.how-step__media {
  aspect-ratio: 4/3;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(251.4166666667, 249.2666666667, 245.6833333333) 0%, #E8DFCE 100%);
  box-shadow: 0 24px 48px -24px rgba(23, 36, 48, 0.18);
}
.how-step--dark .how-step__media {
  background: linear-gradient(135deg, #20242E 0%, #2A3038 100%);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.5);
}
.how-step--dark {
  background: #1A1D24;
}
.how-step--dark .ribbon {
  color: #FF9B66;
  border-color: rgba(255, 155, 102, 0.55);
}
.how-step--dark h2 {
  color: #FFFFFF;
}
.how-step--dark p {
  color: rgba(255, 255, 255, 0.86);
}
.how-step--dark .how-step__check li {
  color: rgba(255, 255, 255, 0.9);
}
.how-step--dark .how-step__check li::before {
  background: #FF9B66;
  box-shadow: 0 0 0 4px rgba(255, 155, 102, 0.2);
}
.how-step--dark .how-step__num {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
}

@media (max-width: 900px) {
  .how-step {
    padding: 64px 0;
  }
  .how-step__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.ph-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(44, 62, 79, 0.45);
  background: rgba(255, 255, 255, 0.65);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.how-step--dark .ph-tag {
  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.3);
}

.ph-chat {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 14% 12%;
}

.ph-chat__bubble {
  max-width: 78%;
  padding: 14px 18px;
  border-radius: 18px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: #2C3E4F;
  box-shadow: 0 4px 12px rgba(23, 36, 48, 0.08);
  opacity: 0;
  animation: ph-chat-in 0.6s ease forwards;
}
.ph-chat__bubble--in {
  background: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 6px;
  animation-delay: 0.2s;
}
.ph-chat__bubble--out {
  background: #DCF8C6;
  align-self: flex-end;
  border-bottom-right-radius: 6px;
  animation-delay: 0.7s;
}
.ph-chat__bubble:nth-child(3) {
  animation-delay: 1.2s;
}

.ph-chat__dots {
  display: inline-flex;
  gap: 4px;
}
.ph-chat__dots i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #4B5E6B;
  animation: ph-chat-dot 1.2s ease-in-out infinite;
}
.ph-chat__dots i:nth-child(2) {
  animation-delay: 0.2s;
}
.ph-chat__dots i:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes ph-chat-in {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ph-chat-dot {
  0%, 100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}
.ph-canvas {
  position: absolute;
  inset: 8% 10%;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.how-step--dark .ph-canvas {
  background: rgba(255, 255, 255, 0.08);
}

.ph-canvas__bar {
  display: flex;
  gap: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(75, 94, 107, 0.15);
}
.ph-canvas__bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(75, 94, 107, 0.25);
}
.ph-canvas__bar span:first-child {
  background: #F26522;
}

.ph-canvas__hero {
  flex: 0 0 28%;
  background: linear-gradient(120deg, rgba(242, 101, 34, 0.2), rgba(242, 101, 34, 0.05));
  border-radius: 6px;
  animation: ph-fade 2s ease-in-out infinite alternate;
}

.ph-canvas__row {
  display: flex;
  gap: 8px;
}
.ph-canvas__row + .ph-canvas__row {
  margin-top: 4px;
}

.ph-canvas__card {
  flex: 1;
  height: 36px;
  background: rgba(75, 94, 107, 0.12);
  border-radius: 4px;
}

.how-step--dark .ph-canvas__card {
  background: rgba(255, 255, 255, 0.1);
}

.ph-canvas__line {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(75, 94, 107, 0.18);
}
.ph-canvas__line--short {
  flex: 0 0 30%;
}

.how-step--dark .ph-canvas__line {
  background: rgba(255, 255, 255, 0.14);
}

@keyframes ph-fade {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}
.ph-globe {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-globe__core {
  width: 36%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(242, 101, 34, 0.85), rgba(195, 70, 17, 0.95));
  box-shadow: 0 0 60px rgba(242, 101, 34, 0.45);
}

.ph-globe__ring {
  position: absolute;
  border: 1px solid rgba(242, 101, 34, 0.3);
  border-radius: 999px;
}
.ph-globe__ring--1 {
  width: 56%;
  aspect-ratio: 1;
  animation: ph-pulse 3s ease-out infinite;
}
.ph-globe__ring--2 {
  width: 78%;
  aspect-ratio: 1;
  animation: ph-pulse 3s ease-out infinite;
  animation-delay: 1s;
}

.ph-globe__dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #F26522;
  box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.18);
  animation: ph-dot-blink 2.4s ease-in-out infinite;
}
.ph-globe__dot--a {
  top: 22%;
  left: 22%;
}
.ph-globe__dot--b {
  top: 30%;
  right: 18%;
  animation-delay: 0.6s;
}
.ph-globe__dot--c {
  bottom: 26%;
  left: 24%;
  animation-delay: 1.2s;
}
.ph-globe__dot--d {
  bottom: 22%;
  right: 22%;
  animation-delay: 1.8s;
}

@keyframes ph-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes ph-dot-blink {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
.ph-dash {
  position: absolute;
  inset: 8%;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.how-step--dark .ph-dash {
  background: rgba(255, 255, 255, 0.08);
}

.ph-dash__side {
  background: rgba(44, 62, 79, 0.04);
  display: flex;
  flex-direction: column;
  padding: 14px 10px;
  gap: 10px;
}
.ph-dash__side span {
  height: 8px;
  border-radius: 4px;
  background: rgba(75, 94, 107, 0.2);
}
.ph-dash__side span:first-child {
  background: #F26522;
}

.how-step--dark .ph-dash__side {
  background: rgba(0, 0, 0, 0.2);
}
.how-step--dark .ph-dash__side span {
  background: rgba(255, 255, 255, 0.18);
}
.how-step--dark .ph-dash__side span:first-child {
  background: #FF9B66;
}

.ph-dash__main {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ph-dash__stats {
  display: flex;
  gap: 8px;
}

.ph-dash__stat {
  flex: 1;
  background: rgba(242, 101, 34, 0.08);
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ph-dash__stat b {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #F26522;
  letter-spacing: -0.01em;
}
.ph-dash__stat i {
  font-style: normal;
  font-size: 11px;
  color: rgba(75, 94, 107, 0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.how-step--dark .ph-dash__stat {
  background: rgba(255, 255, 255, 0.08);
}
.how-step--dark .ph-dash__stat i {
  color: rgba(255, 255, 255, 0.55);
}
.how-step--dark .ph-dash__stat b {
  color: #FF9B66;
}

.ph-dash__chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  padding: 6px;
  background: rgba(75, 94, 107, 0.06);
  border-radius: 6px;
}
.ph-dash__chart span {
  flex: 1;
  height: var(--h, 50%);
  background: linear-gradient(180deg, #F26522 0%, rgba(242, 101, 34, 0.55) 100%);
  border-radius: 3px 3px 0 0;
  animation: ph-bar 1.6s ease-out backwards;
}
.ph-dash__chart span:nth-child(1) {
  animation-delay: 0.1s;
}
.ph-dash__chart span:nth-child(2) {
  animation-delay: 0.2s;
}
.ph-dash__chart span:nth-child(3) {
  animation-delay: 0.3s;
}
.ph-dash__chart span:nth-child(4) {
  animation-delay: 0.4s;
}
.ph-dash__chart span:nth-child(5) {
  animation-delay: 0.5s;
}
.ph-dash__chart span:nth-child(6) {
  animation-delay: 0.6s;
}
.ph-dash__chart span:nth-child(7) {
  animation-delay: 0.7s;
}

.how-step--dark .ph-dash__chart {
  background: rgba(0, 0, 0, 0.25);
}

@keyframes ph-bar {
  from {
    height: 0;
  }
  to {
    height: var(--h);
  }
}
.ph-shield {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-shield__core {
  position: relative;
  width: 38%;
  aspect-ratio: 1/1.15;
  background: linear-gradient(160deg, #F26522 0%, #C34611 100%);
  clip-path: polygon(50% 0, 100% 18%, 100% 62%, 50% 100%, 0 62%, 0 18%);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 16px 32px rgba(242, 101, 34, 0.35));
}
.ph-shield__core::before {
  content: "";
  width: 38%;
  height: 38%;
  border: 4px solid #fff;
  border-top: 0;
  border-right: 0;
  transform: translateY(-12%) rotate(-45deg);
  border-radius: 2px;
}

.ph-shield__ring {
  position: absolute;
  border: 1px solid rgba(242, 101, 34, 0.32);
  border-radius: 999px;
  animation: ph-pulse 3s ease-out infinite;
}
.ph-shield__ring--1 {
  width: 56%;
  aspect-ratio: 1;
}
.ph-shield__ring--2 {
  width: 80%;
  aspect-ratio: 1;
  animation-delay: 1.2s;
}

.ph-shield__lock {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(75, 94, 107, 0.18);
  border-radius: 999px;
  padding: 6px 14px 6px 32px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2C3E4F;
  bottom: 16%;
}
.ph-shield__lock::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #2BA84A;
}

.how-step--dark .ph-shield__lock {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.ph-search {
  position: absolute;
  inset: 8% 10%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.how-step--dark .ph-search {
  background: rgba(255, 255, 255, 0.08);
}

.ph-search__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(75, 94, 107, 0.08);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 13px;
  color: rgba(44, 62, 79, 0.7);
}
.ph-search__bar::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: 0 0 0 0 currentColor;
  flex-shrink: 0;
}

.how-step--dark .ph-search__bar {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
}

.ph-search__result {
  padding: 8px 4px;
  border-bottom: 1px solid rgba(75, 94, 107, 0.1);
}
.ph-search__result:last-child {
  border-bottom: 0;
}
.ph-search__result b {
  display: block;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 14px;
  color: #F26522;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-bottom: 3px;
  animation: ph-highlight 4s ease-in-out infinite;
}
.ph-search__result i {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: rgba(75, 94, 107, 0.7);
  margin-bottom: 4px;
}
.ph-search__result em {
  font-style: normal;
  font-size: 12px;
  color: rgba(75, 94, 107, 0.85);
}
.ph-search__result--top b {
  color: #C34611;
}
.ph-search__result--top::before {
  content: "1";
  display: inline-block;
  background: #F26522;
  color: #fff;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 999px;
  margin-right: 6px;
  vertical-align: top;
}

.how-step--dark .ph-search__result {
  border-color: rgba(255, 255, 255, 0.12);
}
.how-step--dark .ph-search__result i {
  color: rgba(255, 255, 255, 0.55);
}
.how-step--dark .ph-search__result em {
  color: rgba(255, 255, 255, 0.75);
}

.how-step--dark .ph-search__result b {
  color: #FF9B66;
}

@keyframes ph-highlight {
  0%, 100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
  }
}
@keyframes how-step-arrow-bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ph-chat__bubble,
  .ph-chat__dots i,
  .ph-canvas__hero,
  .ph-globe__ring,
  .ph-globe__dot,
  .ph-dash__chart span,
  .ph-shield__ring,
  .ph-search__result b,
  .how-step::after {
    animation: none !important;
  }
  .ph-chat__bubble {
    opacity: 1;
  }
}
.cat-index {
  background: #FAF7F2;
  padding: 80px 0 120px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #E3DCCF;
  border-radius: 18px;
  text-decoration: none;
  color: #2C3E4F;
  overflow: hidden;
  transition: transform 140ms cubic-bezier(0.22, 0.61, 0.36, 1), border-color 140ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 140ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cat-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(251.4166666667, 249.2666666667, 245.6833333333), #E8DFCE);
}
.cat-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.cat-card__media .ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-card__num {
  position: absolute;
  bottom: 8px;
  right: 14px;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.85);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1;
}
.cat-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 24px 22px;
  flex: 1;
}
.cat-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.cat-card__count {
  flex-shrink: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(75, 94, 107, 0.85);
  padding: 5px 12px;
  border: 1px solid #E3DCCF;
  border-radius: 999px;
  align-self: flex-start;
}
.cat-card h2 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #2C3E4F;
  margin: 0;
}
.cat-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #4B5E6B;
  margin: 0;
  flex: 1;
}
.cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F26522;
  transition: color 140ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cat-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 140ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 101, 34, 0.35);
  box-shadow: 0 24px 48px -24px rgba(23, 36, 48, 0.18);
}
.cat-card:hover .cat-card__media img {
  transform: scale(1.06);
}
.cat-card:hover .cat-card__cta {
  color: #C34611;
}
.cat-card:hover .cat-card__cta svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
}
.cta-strip {
  background: #1A1D24;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(242, 101, 34, 0.18) 0%, transparent 55%), radial-gradient(circle at 15% 90%, rgba(242, 101, 34, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-strip__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 6px;
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}
.cta-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: #F26522;
  color: #fff;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: background 140ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 140ms cubic-bezier(0.22, 0.61, 0.36, 1);
  white-space: nowrap;
}
.cta-strip__btn::after {
  content: "→";
  font-size: 18px;
  transition: transform 140ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cta-strip__btn:hover {
  background: #E4561A;
  transform: translateY(-1px);
}
.cta-strip__btn:hover::after {
  transform: translateX(3px);
}

.help-list {
  padding: 64px 0 96px;
}

.help-list__empty {
  text-align: center;
  color: #6E7F8B;
  padding: 80px 0;
  font-size: 17px;
}

.help-category {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid #EBE3D6;
}
.help-category:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.help-category__head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.help-category__icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #FFF3EB;
  color: #F26522;
}
.help-category__icon .material-symbols-outlined {
  font-size: 28px;
}

.help-category__title {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #2C3E4F;
  margin-bottom: 4px;
}

.help-category__resumo {
  font-size: 16px;
  line-height: 1.5;
  color: #4B5E6B;
}

.help-topics {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.help-topics__empty {
  font-style: italic;
  color: #6E7F8B;
  padding: 16px 18px;
}

.help-topic {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid #E3DCCF;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #2C3E4F;
  transition: transform 140ms cubic-bezier(0.22, 0.61, 0.36, 1), border-color 140ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 140ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.help-topic:hover {
  border-color: #FFC199;
  box-shadow: 0 1px 2px rgba(23, 36, 48, 0.05);
  transform: translateX(2px);
}

.help-topic__title {
  font-weight: 600;
  font-size: 16px;
  color: #2C3E4F;
  grid-column: 1/2;
  grid-row: 1/2;
}

.help-topic__resumo {
  font-size: 16px;
  color: #4B5E6B;
  line-height: 1.5;
  grid-column: 1/2;
  grid-row: 2/3;
}

.help-topic__arrow {
  grid-column: 2/3;
  grid-row: 1/3;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F26522;
}

@media (max-width: 768px) {
  .help-category__head {
    gap: 12px;
  }
  .help-category__icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .help-category__title {
    font-size: 22px;
  }
}
/* ============ REVEAL ANIMATIONS ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].in-view {
  opacity: 1;
  transform: none;
}

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal-stagger].in-view > * {
  opacity: 1;
  transform: none;
}

[data-reveal-stagger].in-view > *:nth-child(1) {
  transition-delay: 0s;
}

[data-reveal-stagger].in-view > *:nth-child(2) {
  transition-delay: 0.07s;
}

[data-reveal-stagger].in-view > *:nth-child(3) {
  transition-delay: 0.14s;
}

[data-reveal-stagger].in-view > *:nth-child(4) {
  transition-delay: 0.21s;
}

[data-reveal-stagger].in-view > *:nth-child(5) {
  transition-delay: 0.28s;
}

[data-reveal-stagger].in-view > *:nth-child(6) {
  transition-delay: 0.35s;
}

[data-reveal-stagger].in-view > *:nth-child(7) {
  transition-delay: 0.42s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .word-strip-track, .marquee-track, .marquee-sep {
    animation: none !important;
  }
}
/* ============================================================
   LP SECOES (1 a 10 do lp-modelo.md)
   ============================================================ */
/* ============ 1. HERO ============ */
.lp-hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--sand) url("assets/fundo-painel.webp") center bottom/cover no-repeat;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
  position: relative;
  z-index: 2;
}

.lp-hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 28px;
  text-wrap: balance;
}

.lp-hero p.lead {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 480px;
  margin-bottom: 40px;
}

.lp-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-hero-media {
  aspect-ratio: 4/5;
  background: #E8DFCE;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.lp-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: hero-zoom 18s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
.lp-hero-seal {
  position: absolute;
  top: 32px;
  left: 32px;
  width: clamp(110px, 14vw, 160px);
  height: clamp(110px, 14vw, 160px);
  z-index: 3;
  pointer-events: none;
  animation: seal-spin 18s linear infinite;
  filter: drop-shadow(0 8px 24px rgba(26, 29, 36, 0.18));
}

.lp-hero-seal img {
  width: 100%;
  height: 100%;
}

@keyframes seal-spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ============ 2. DORES (editorial list) ============ */
.lp-pains {
  background: var(--white);
  padding: 130px 0;
  border-top: 1px solid var(--line);
}

.lp-pains-head {
  max-width: 880px;
  margin: 0 auto 56px;
  text-align: center;
}

.lp-pains .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}

.lp-pains h2 {
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-bottom: 20px;
}

.lp-pains-head p {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

.lp-pains-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.lp-pain {
  position: relative;
  isolation: isolate;
  padding: 56px 48px 56px 56px;
  border-bottom: 1px solid var(--line);
  transition: background 0.4s ease;
  overflow: hidden;
}

.lp-pain:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.lp-pain:hover {
  background: var(--sand-soft);
}

.lp-pain .num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 8.4vw, 132px);
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(26, 29, 36, 0.14);
  pointer-events: none;
  z-index: 0;
  transition: -webkit-text-stroke-color 0.4s ease;
}

.lp-pain:nth-child(even) .num {
  top: auto;
  bottom: 24px;
}

.lp-pain:hover .num {
  -webkit-text-stroke-color: rgba(242, 101, 34, 0.55);
}

.lp-pain-side {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.lp-pain h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 360px;
}

.lp-pain-text {
  position: relative;
  z-index: 1;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
  max-width: 460px;
}

/* ============ 3. COMO FUNCIONA (DARK, FIXO) ============ */
.lp-how {
  background: var(--ink);
  color: #EFE9DD;
  padding: 130px 0 140px;
}

.lp-how-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}

.lp-how h2 {
  color: #EFE9DD;
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.025em;
}

.lp-how-head .eyebrow {
  color: rgba(239, 233, 221, 0.6);
  margin-bottom: 24px;
}

.lp-how-head .eyebrow::before {
  background: var(--accent);
}

.lp-how-head p {
  color: rgba(239, 233, 221, 0.7);
  font-size: 17px;
  max-width: 460px;
}

.lp-steps {
  list-style: none;
}

.lp-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 80px;
  gap: 32px;
  align-items: baseline;
  padding: 36px 0;
  border-top: 1px solid rgba(239, 233, 221, 0.12);
  transition: padding 0.25s ease;
}

.lp-step:last-child {
  border-bottom: 1px solid rgba(239, 233, 221, 0.12);
}

.lp-step .n {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(239, 233, 221, 0.45);
}

.lp-step .t {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #EFE9DD;
}

.lp-step .d {
  font-size: 16px;
  color: rgba(239, 233, 221, 0.7);
  max-width: 440px;
}

.lp-step .arr {
  justify-self: end;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(239, 233, 221, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(239, 233, 221, 0.6);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lp-step:hover {
  background: rgba(255, 255, 255, 0.02);
  padding-left: 16px;
  padding-right: 16px;
}

.lp-step:hover .t {
  color: var(--accent);
}

.lp-step:hover .arr {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ============ 4 e 5. MODULOS (lista alternada feature showcase) ============ */
.lp-modules {
  background: var(--white);
  padding: 130px 0;
}

.lp-modules--specifics {
  background: var(--sand);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lp-modules-head {
  max-width: 880px;
  margin: 0 auto 80px;
  text-align: center;
}

.lp-modules .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}

.lp-modules h2 {
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-bottom: 20px;
}

.lp-modules-head p {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

.lp-mods-list {
  display: flex;
  flex-direction: column;
  gap: 96px;
  max-width: 1180px;
  margin: 0 auto;
}

.lp-mod {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 72px;
  align-items: center;
}

.lp-mod:nth-child(even) .lp-mod-text {
  order: 2;
}

.lp-mod:nth-child(even) .lp-mod-media {
  order: 1;
}

.lp-mod-text {
  padding: 8px 0;
}

.lp-mod-text .ribbon {
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(242, 101, 34, 0.55);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.lp-mod-text h3 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 16px;
  text-wrap: balance;
}

.lp-mod-text p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}

.lp-mod-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  max-width: 480px;
}

.lp-modules--specifics .lp-mod-text ul {
  border-top-color: var(--line-2);
}

.lp-mod-text li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  padding: 6px 0;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}

.lp-mod-text li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 999px;
  background: rgba(242, 101, 34, 0.16);
  box-shadow: inset 0 0 0 3.5px var(--accent);
}

.lp-mod-media {
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sand) 0%, #E8DFCE 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(26, 29, 36, 0.12), 0 4px 12px -4px rgba(26, 29, 36, 0.05);
}

.lp-modules--specifics .lp-mod-media {
  background: linear-gradient(135deg, #1A1D24 0%, #2A3038 100%);
}

.lp-modules--specifics .lp-mod-media .ph-label {
  color: rgba(239, 233, 221, 0.5);
}

.lp-mod-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

/* ============ 6. CASES / GALERIA ============ */
.lp-cases {
  background: var(--white);
  padding: 130px 0;
  border-top: 1px solid var(--line);
}

.lp-cases-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}

.lp-cases h2 {
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.03em;
  max-width: 560px;
}

.lp-cases-head p {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 460px;
}

.lp-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 48px;
}

.lp-case {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 14px 14px 18px;
  border-radius: 12px;
  background: transparent;
  box-shadow: 0 0 0 0 rgba(26, 29, 36, 0);
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1), background 400ms ease, box-shadow 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-cases .lp-case:hover {
  transform: translateY(-6px) scale(1.03);
  background: var(--sand);
  box-shadow: 0 24px 48px -16px rgba(26, 29, 36, 0.18), 0 4px 12px -4px rgba(26, 29, 36, 0.08);
}

.lp-case-cover {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #DDD2BE, #B8A88B);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.lp-case-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-cases .lp-case:hover .lp-case-cover img {
  transform: scale(1.04);
}

.lp-case-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px;
}

.lp-case h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.lp-case .tag {
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ============ 7. DIFERENCIAIS (bento, igual home) ============ */
.lp-diff {
  background: var(--sand);
  padding: 130px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lp-diff-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}

.lp-diff h2 {
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.025em;
  max-width: 560px;
}

.lp-diff-head p {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 460px;
}

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

.lp-diff-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-diff-card {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.lp-diff-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.lp-diff-card .num {
  position: absolute;
  top: -16px;
  right: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: clamp(90px, 11vw, 160px);
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(26, 29, 36, 0.08);
  pointer-events: none;
  z-index: 0;
  transition: -webkit-text-stroke-color 0.35s ease;
}

.lp-diff-card:hover .num {
  -webkit-text-stroke-color: rgba(242, 101, 34, 0.55);
}

.lp-diff-card .ribbon {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(242, 101, 34, 0.55);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.lp-diff-card h3 {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.lp-diff-card p {
  position: relative;
  z-index: 1;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}

/* Diff cards visuais (foguete, IA, flex/sites) */
.lp-diff-card--visual {
  padding: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line-2);
  aspect-ratio: 4/5;
}

.lp-diff-card--rocket {
  background: radial-gradient(120% 90% at 80% 0%, rgba(242, 101, 34, 0.35), transparent 60%), linear-gradient(160deg, #1A1D24 0%, #2A3038 100%);
}

.lp-diff-card--rocket img {
  position: absolute;
  bottom: -8%;
  right: -6%;
  width: 95%;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.lp-diff-card--rocket:hover img {
  transform: translate(-4%, -8%) rotate(-6deg);
}

.lp-diff-card--rocket .cap {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  color: #EFE9DD;
  z-index: 2;
}

.lp-diff-card--rocket .cap-eyebrow {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.lp-diff-card--rocket .cap h3 {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #EFE9DD;
  line-height: 1.15;
}

.lp-diff-card--type {
  background: linear-gradient(135deg, var(--sand) 0%, #E8DFCE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lp-diff-card--type span {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: clamp(54px, 5.6vw, 86px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--ink);
  text-align: center;
  opacity: 0.7;
  transition: -webkit-text-stroke-color 0.35s ease, color 0.35s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.lp-diff-card--type:hover span {
  -webkit-text-stroke-color: var(--accent);
  color: rgba(242, 101, 34, 0.06);
  transform: scale(1.04);
}

.lp-diff-card--ai {
  background: radial-gradient(120% 80% at 0% 100%, rgba(242, 101, 34, 0.18), transparent 60%), var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
}

.lp-diff-card--ai .ai-mini {
  align-self: flex-start;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid rgba(242, 101, 34, 0.45);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lp-diff-card--ai .ai-mini::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.lp-diff-card--ai .ai-headline {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
}

.lp-diff-card--ai .ai-headline strong {
  color: var(--accent);
  font-weight: 600;
}

/* ============ KEYWORDS (E TEM MUITO MAIS) ============ */
.lp-kw {
  background: var(--ink);
  color: #EFE9DD;
  padding: 120px 0;
}

.lp-kw-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.lp-kw-left .eyebrow {
  color: rgba(239, 233, 221, 0.6);
  margin-bottom: 24px;
}

.lp-kw-left .eyebrow::before {
  background: var(--accent);
}

.lp-kw-left h2 {
  color: #EFE9DD;
  font-size: clamp(36px, 3.6vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin-bottom: 0;
  text-wrap: balance;
}

.lp-kw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-kw-tag {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(239, 233, 221, 0.22);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(239, 233, 221, 0.85);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  cursor: default;
}

.lp-kw-tag:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ============ 8. PRECO ============ */
.lp-pricing {
  background: var(--white);
  padding: 130px 0;
}

.lp-pricing-head {
  max-width: 880px;
  margin: 0 auto 64px;
  text-align: center;
}

.lp-pricing .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}

.lp-pricing h2 {
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-bottom: 20px;
}

.lp-pricing-head p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
}

.lp-price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.lp-price-card {
  background: var(--sand-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 36px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 600ms cubic-bezier(0.4, 0, 0.2, 1), border-color 400ms ease;
}

.lp-price-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 24px 48px -16px rgba(26, 29, 36, 0.15), 0 4px 12px -4px rgba(26, 29, 36, 0.06);
}

.lp-price-card .ribbon {
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(242, 101, 34, 0.55);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.lp-price-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.lp-price-card .sub {
  color: var(--ink-2);
  font-size: 16px;
  margin-bottom: 32px;
}

.lp-price-card .amount {
  display: block;
  margin-bottom: 28px;
}

.lp-price-card .amount .value {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(48px, 4.6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
  white-space: nowrap;
  margin-bottom: 12px;
}

.lp-price-card .amount .value.accent {
  color: var(--accent);
}

.lp-price-card .amount .unit {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: var(--ink-2);
  font-weight: 500;
  line-height: 1.45;
}

.lp-price-card ul {
  list-style: none;
}

.lp-price-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.45;
}

.lp-price-card li:last-child {
  border-bottom: 1px solid var(--line);
}

.lp-price-card li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border-radius: 999px;
  background: rgba(242, 101, 34, 0.14);
  box-shadow: inset 0 0 0 4px var(--accent);
}

.lp-price-foot {
  max-width: 980px;
  margin: 40px auto 0;
  text-align: center;
}

.lp-price-foot .note {
  display: block;
  color: var(--ink-2);
  font-size: 16px;
  margin-bottom: 24px;
}

/* ============ 9. FAQ ============ */
.lp-faq {
  background: var(--sand);
  padding: 130px 0;
  border-top: 1px solid var(--line);
}

.lp-faq-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.lp-faq .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}

.lp-faq h2 {
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.lp-faq-head p {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto;
}

.lp-faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.lp-faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 0.35s ease;
}

.lp-faq-item[open] {
  background: var(--sand-soft);
}

.lp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 28px;
  display: grid;
  grid-template-columns: 56px 1fr 36px;
  gap: 24px;
  align-items: center;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.25s ease;
}

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

.lp-faq-item summary:hover {
  color: var(--accent);
}

.lp-faq-item .faq-num {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  transition: color 0.25s ease;
}

.lp-faq-item[open] .faq-num,
.lp-faq-item summary:hover .faq-num {
  color: var(--accent);
}

.lp-faq-item .faq-q {
  line-height: 1.25;
}

.lp-faq-item .toggle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  transition: transform 0.35s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lp-faq-item[open] .toggle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

.lp-faq-item .answer {
  padding: 0 28px 36px 108px;
  max-width: 760px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
}

/* ============ 10. CTA + FOOTER (igual home) ============ */
.site-footer {
  background: var(--ink);
  color: #EFE9DD;
  position: relative;
  overflow: hidden;
}

.footer-top {
  position: relative;
  z-index: 1;
  padding: 110px var(--pad-x) 100px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-cta {
  max-width: 880px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
}

.soc {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(239, 233, 221, 0.06);
  border: 1px solid rgba(239, 233, 221, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #EFE9DD;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.soc--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.soc:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-headline {
  font-family: "Sora", sans-serif;
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.06;
  color: #EFE9DD;
  text-wrap: balance;
}

.footer-headline .accent {
  color: var(--accent);
}

.footer-cta-btn {
  margin-top: 36px;
}

.footer-divider {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.footer-divider::before {
  content: "";
  display: block;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(239, 233, 221, 0.22) 50%, transparent 50%);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 64px;
  padding: 64px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}

.footer-cols h4 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #EFE9DD;
  margin-bottom: 24px;
}

.footer-cols ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-cols a {
  color: rgba(239, 233, 221, 0.7);
  font-size: 16px;
  transition: color 0.2s ease;
}

.footer-cols a:hover {
  color: var(--accent);
}

.footer-cols .col-about p {
  color: rgba(239, 233, 221, 0.7);
  font-size: 16px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-cols .col-contact p {
  color: rgba(239, 233, 221, 0.7);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-mega {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px var(--pad-x) 0;
  overflow: hidden;
  opacity: 0.5;
}

.footer-mega img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  padding: 28px var(--pad-x) 36px;
  text-align: center;
  font-size: 16px;
  color: rgba(239, 233, 221, 0.45);
  max-width: var(--container);
  margin: 0 auto;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .lp-hero-grid,
  .lp-how-head,
  .lp-cases-head,
  .lp-cases-grid,
  .lp-diff-head,
  .lp-diff-cols,
  .lp-price-grid,
  .lp-kw-grid,
  .lp-pain,
  .lp-mod,
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lp-mod:nth-child(even) .lp-mod-text {
    order: initial;
  }
  .lp-mod:nth-child(even) .lp-mod-media {
    order: initial;
  }
  .lp-step {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }
  .lp-step .d {
    grid-column: 2;
  }
  .lp-step .arr {
    display: none;
  }
}
/*# sourceMappingURL=index.css.map */
