﻿/* PortalAI — landing multi-editoria (estrutura inspirada em SaaS white-label) */
:root {
  --ink: #152238;
  --ink-soft: #2a3a52;
  --muted: #5a6578;
  --line: #e4e8ef;
  --paper: #f3f6fa;
  --paper-2: #ffffff;
  --white: #ffffff;
  --accent: #1e3a5f;
  --accent-soft: #e8eef5;
  --warm: #c59d2f;
  --shadow: 0 20px 50px rgba(21, 34, 56, 0.12);
  --radius: 16px;
  --font-display: "Fraunces", "Source Serif 4", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Acessibilidade / SEO */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  z-index: 100;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.skip-link:focus {
  left: 0.75rem;
}

/* Top bar */
.topbar {
  background: var(--accent);
  color: #fff;
  border-bottom: 1px solid transparent;
  font-size: 0.875rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  text-align: center;
}

.topbar a {
  color: #f0d78c;
  font-weight: 700;
}

.topbar a:hover {
  color: #fff;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(243, 246, 250, 0.9);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.logo__mark svg {
  width: 20px;
  height: 20px;
  display: block;
}

.logo__mark.is-light {
  background: var(--paper-2);
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.footer .logo__mark {
  cursor: default;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav a:hover,
.nav summary:hover {
  color: var(--ink);
}

.nav details {
  position: relative;
}

.nav summary {
  list-style: none;
  cursor: pointer;
}

.nav summary::-webkit-details-marker {
  display: none;
}

.nav__menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 260px;
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.nav__menu a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-weight: 600;
}

.nav__menu a small {
  display: block;
  margin-top: 0.15rem;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.8rem;
}

.nav__menu a:hover {
  background: var(--paper);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  gap: 5px;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

/* Mobile: header enxuto — CTA principal fica no drawer / hero */
@media (max-width: 959px) {
  .topbar__inner {
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .header__inner {
    gap: 0.5rem;
    min-height: 58px;
    padding-block: 0.35rem;
  }

  .logo {
    font-size: 1.15rem;
    gap: 0.45rem;
    min-width: 0;
  }

  .logo__mark {
    width: 30px;
    height: 30px;
  }

  .header__actions {
    gap: 0.35rem;
    flex-shrink: 0;
  }

  .header__actions .btn--primary {
    display: none;
  }

  .header__actions .btn--ghost {
    min-height: 36px;
    padding: 0.35rem 0.55rem;
    font-size: 0.88rem;
    border: 0;
    background: transparent;
  }

  .menu-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    gap: 4px;
    flex-shrink: 0;
  }

  .menu-btn span {
    width: 14px;
    height: 1.5px;
  }
}

@media (min-width: 960px) {
  .nav {
    display: flex;
  }

  .menu-btn {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}

.btn--primary:hover {
  background: #152238;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
}

.btn--outline {
  border: 1px solid var(--line);
  background: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--ink);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--ink);
}

.link-arrow:hover {
  color: var(--accent);
}

/* Hero — compacto + mock com slide de nichos */
.hero {
  position: relative;
  padding: 1.75rem 0 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(197, 157, 47, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 50% at 5% 70%, rgba(30, 58, 95, 0.12), transparent 50%),
    radial-gradient(rgba(26, 39, 68, 0.08) 1px, transparent 1px);
  background-size: auto, auto, 16px 16px;
  mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1.5rem;
}

.hero__copy {
  max-width: 32rem;
}

@media (min-width: 960px) {
  .hero {
    padding: 2rem 0 0;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.22fr);
    gap: 1.75rem;
    align-items: center;
    padding-bottom: 1.5rem;
  }

  .mock {
    margin-top: 0.45rem;
  }
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.7rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.7rem 0.3rem 0.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.92);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.pill__tag {
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--ink);
}

.hero__lead {
  margin: 0 0 1.35rem;
  max-width: 30rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--muted);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
}

.hero__cta .btn {
  min-height: 44px;
  padding: 0.65rem 1.1rem;
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .hero-novelty {
    padding: 0.85rem 1rem;
  }
}

.hero-novelty {
  margin-top: 1.35rem;
  padding: 0.95rem 1.05rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  box-shadow: 0 8px 24px rgba(21, 34, 56, 0.06);
}
.hero-novelty__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm);
}
.hero-novelty__text {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.hero-novelty__text strong {
  color: var(--ink);
  font-weight: 750;
}
.hero-novelty__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
}
.hero-novelty__brand {
  display: inline-flex;
  align-items: baseline;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-novelty__brand em {
  font-style: normal;
  font-weight: 700;
  color: var(--muted);
}
.hero-novelty__brand strong {
  color: var(--accent);
}
.hero-novelty__brand::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.28rem;
  border-radius: 2px;
  background: var(--warm);
  transform: rotate(45deg);
}

.hero__points {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
}

.hero__points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm);
  flex-shrink: 0;
}

.hero__trust {
  position: relative;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.85);
  backdrop-filter: blur(8px);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  padding: 0.75rem 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 110, 86, 0.15);
}

/* Mock portal + slider */
.mock {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(26, 39, 68, 0.14);
  overflow: hidden;
  animation: rise 0.7s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.mock__chrome {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  background: #e8eef5;
  border-bottom: 1px solid var(--line);
}

.mock__dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.mock__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d9d3c7;
}

.mock__dots span:nth-child(1) { background: #ff5f57; }
.mock__dots span:nth-child(2) { background: #febc2e; }
.mock__dots span:nth-child(3) { background: #28c840; }

.mock__urlbar {
  flex: 1;
  min-width: 0;
  padding: 0.32rem 0.65rem;
  border-radius: 7px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock__live {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--warm);
}

.mock__site {
  background: #f7f8fa;
}

.mock__site--shot {
  background: #fff;
  line-height: 0;
}

.mock__shot {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

/* Miniatura do layout real do portal (clássico + destaque) */
.lp-portal {
  --lp-primary: #1e3a5f;
  --lp-accent: #c59d2f;
  --lp-text: #152238;
  --lp-muted: #5a6578;
  font-size: 0.72rem;
  color: var(--lp-text);
}

.lp-portal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border-bottom: 1px solid #e4e8ef;
}

.lp-portal__header--dark {
  background: var(--lp-primary);
  border-bottom-color: transparent;
  color: #fff;
}

.lp-portal__header--dark .lp-portal__brand strong {
  color: #fff;
}

.lp-portal__header--dark .lp-portal__brand i {
  background: rgba(255, 255, 255, 0.16);
}

.lp-portal__header--dark .lp-portal__nav {
  color: rgba(255, 255, 255, 0.72);
}

.lp-portal__header--dark .lp-portal__nav .is-active {
  color: #fff;
}

.lp-portal__brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.lp-portal__brand i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--lp-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 800;
  flex-shrink: 0;
}

.lp-portal__brand strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
}

.lp-portal__brand small {
  display: block;
  color: var(--lp-muted);
  font-size: 0.58rem;
  font-weight: 600;
}

.lp-portal__nav {
  display: none;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--lp-muted);
}

.lp-portal__nav .is-active {
  color: var(--lp-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

@media (min-width: 520px) {
  .lp-portal__nav {
    display: flex;
  }
}

.lp-portal__sub {
  display: flex;
  gap: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: #eef2f7;
  border-bottom: 1px solid #e4e8ef;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--lp-muted);
  overflow: hidden;
}

.lp-portal__body {
  display: grid;
  gap: 0.55rem;
  padding: 0.65rem;
}

@media (min-width: 720px) {
  .lp-portal__body {
    grid-template-columns: minmax(0, 1fr) 148px;
    align-items: stretch;
  }
}

.lp-portal__main {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}

.lp-portal__hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 112px;
  background: #0f1c2e;
  color: #fff;
}

.lp-portal__hero .lp-portal__media--hero {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(15, 28, 46, 0.92) 35%, rgba(15, 28, 46, 0.35)),
    linear-gradient(135deg, #2a4a73, #1e3a5f 45%, #c59d2f);
  opacity: 1;
}

.lp-portal__hero .lp-portal__copy {
  position: relative;
  z-index: 1;
  padding: 0.85rem 0.9rem 0.95rem;
  display: grid;
  gap: 0.3rem;
  max-width: 92%;
}

.lp-portal__badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  background: var(--lp-accent);
  color: #152238;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.lp-portal__hero h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lp-portal__hero p {
  display: none;
}

.lp-portal__pair .lp-portal__media {
  aspect-ratio: 2.2 / 1;
}

.lp-portal__meta {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.2rem;
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}

.lp-portal__meta span:last-child {
  color: var(--lp-accent);
}

.lp-portal__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.lp-portal__pair article {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e4e8ef;
  display: grid;
}

.lp-portal__media {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #c5d4e8, #8fa8c8);
}

.lp-portal__media--alt {
  background: linear-gradient(135deg, #e8d9a8, #c59d2f);
}

.lp-portal__pair .lp-portal__copy {
  padding: 0.45rem 0.5rem 0.55rem;
  display: grid;
  gap: 0.15rem;
}

.lp-portal__pair em {
  font-style: normal;
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--lp-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-portal__pair span {
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.25;
  color: var(--lp-text);
}

.lp-portal__aside {
  display: none;
}

@media (min-width: 720px) {
  .lp-portal__aside {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.lp-portal__widget {
  background: #fff;
  border: 1px solid #e4e8ef;
  border-radius: 10px;
  overflow: hidden;
}

.lp-portal__widget:first-child {
  flex: 1;
}

.lp-portal__widget-head {
  padding: 0.4rem 0.55rem;
  border-bottom: 1px solid #e4e8ef;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--lp-primary);
}

.lp-portal__widget ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: ml;
}

.lp-portal__widget li {
  counter-increment: ml;
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.4rem;
  align-items: baseline;
  padding: 0.42rem 0.55rem;
  border-bottom: 1px solid #eef2f7;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--lp-text);
}

.lp-portal__widget li:last-child {
  border-bottom: 0;
}

.lp-portal__widget li::before {
  content: counter(ml);
  color: var(--lp-accent);
  font-weight: 800;
  font-size: 0.58rem;
}

.lp-portal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding: 0.5rem 0.55rem 0.55rem;
}

.lp-portal__tags em {
  font-style: normal;
  padding: 0.2rem 0.4rem;
  border-radius: 999px;
  background: #eef2f7;
  color: var(--lp-primary);
  font-size: 0.55rem;
  font-weight: 800;
}

.slider {
  position: relative;
  background: #faf8f3;
}

.slider__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0.85rem;
  box-sizing: border-box;
}

.slide__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e6e0d4;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--ink);
}

.slide__feature {
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid #e6e0d4;
  background: #fff;
  margin-bottom: 0.55rem;
}

.slide__feature .ia {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.12rem 0.4rem;
  border-radius: 5px;
  background: var(--ink);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
}

.slide__feature h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.slide__feature p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.slide__list {
  display: grid;
  gap: 0.4rem;
}

.slide__item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.55rem;
  align-items: center;
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  border: 1px solid #e6e0d4;
  background: #fff;
}

.slide__thumb {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d9e8e2, #f0e6d8);
}

.slide__item strong {
  display: block;
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 750;
}

.slide__item span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.68rem;
  color: #8a8494;
  font-weight: 600;
}

.slider__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem 0.65rem;
  border-top: 1px solid #ece7dc;
  background: #fff;
}

.slider__btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #e2ddd3;
  background: #faf8f3;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}

.slider__btn:hover {
  background: #efece5;
}

.slider__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  max-width: calc(100% - 80px);
}

.slider__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d5cfc3;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider__dot.is-active {
  background: var(--ink);
  transform: scale(1.2);
}

/* Sections */
/* Só na landing — não mexe no painel (.dash) */
main section:not(.hero) {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.problem {
  background: var(--ink);
  color: #f4f1ea;
}

.problem .section-head p {
  color: rgba(244, 241, 234, 0.72);
}

.problem-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.problem-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.problem-card p {
  margin: 0;
  color: rgba(244, 241, 234, 0.72);
  font-size: 0.95rem;
}

.resolve {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(15, 110, 86, 0.2);
  border: 1px solid rgba(15, 110, 86, 0.35);
}

.resolve strong {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: #9fe0c8;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resolve p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.25;
}

/* Deliver */
.deliver-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .deliver-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.deliver-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
}

.deliver-card__num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.deliver-card__label {
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
}

.deliver-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.deliver-card > p {
  margin: 0;
  color: var(--muted);
}

.deliver-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.deliver-card li {
  position: relative;
  padding-left: 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.deliver-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.deliver-card .link-arrow {
  margin-top: auto;
}

/* Categories strip */
.categories {
  padding-top: 0;
}

.cat-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.cat-cloud span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  animation: fadeup 0.6s ease both;
}

.cat-cloud span:nth-child(odd) {
  animation-delay: 0.05s;
}

.cat-cloud span:nth-child(even) {
  animation-delay: 0.12s;
}

@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Modes */
.modes {
  background: #efece5;
}

.mode-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .mode-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mode-card {
  padding: 1.4rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}

.mode-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.mode-card p {
  margin: 0;
  color: var(--muted);
}

.mode-card .tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* Quote */
.quote {
  background: var(--paper-2);
}

.quote__box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.quote__box blockquote {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.35;
}

.quote__box cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 1rem;
}

.quote__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

/* Promo */
.promo {
  padding: 0 0 4.5rem;
}

.promo__box {
  display: grid;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(15, 110, 86, 0.25), transparent 40%),
    linear-gradient(135deg, #15233f, #1f3558);
  color: #f7f4ee;
}

@media (min-width: 800px) {
  .promo__box {
    grid-template-columns: 1.4fr auto;
    align-items: center;
    padding: 2rem 2.25rem;
  }
}

.promo__box h3 {
  margin: 0.4rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.promo__box p {
  margin: 0;
  color: rgba(247, 244, 238, 0.75);
}

.promo__meta {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fe0c8;
}

/* Pricing */
.pricing {
  background: #efece5;
}

.pricing .section-head {
  max-width: none;
}

.pricing__title {
  white-space: normal;
}

@media (min-width: 720px) {
  .pricing__title {
    white-space: nowrap;
    font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  }
}

.price-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}

.price-card.is-featured {
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.price-card__badge {
  position: absolute;
  top: -11px;
  right: 1rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--warm);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

.price-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.price-card > p {
  margin: 0;
  color: var(--muted);
  min-height: 2.8em;
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  flex: 1 1 auto;
}

.price-card > .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.price-card li {
  padding-left: 1.15rem;
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.enterprise {
  margin-top: 1rem;
  padding: 1.4rem 1.5rem;
  border-radius: 16px;
  border: 1px dashed #c9c2b4;
  background: rgba(255, 255, 255, 0.55);
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .enterprise {
    grid-template-columns: 1.4fr auto;
    align-items: center;
  }
}

.enterprise h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
}

.enterprise p {
  margin: 0;
  color: var(--muted);
}

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--muted);
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  max-width: 70ch;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(160deg, #1e3a5f 0%, #152238 100%);
  color: #fff;
}

.final-cta h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  color: #fff;
}

.final-cta > p {
  margin: 0 auto 1.5rem;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .btn--primary {
  background: var(--warm);
  color: #152238;
  border-color: var(--warm);
}

.final-cta .btn--primary:hover {
  background: #d4af37;
}

.final-cta .link-arrow {
  color: rgba(255, 255, 255, 0.9);
}

.checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
  background: #e8eef5;
}

.footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer h3 {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

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

.footer__brand p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  max-width: 30ch;
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 68, 0.45);
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: var(--paper-2);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(12px);
  transition: transform 0.2s ease;
  border-left: 1px solid var(--line);
}

.drawer.is-open .drawer__panel {
  transform: none;
}

.drawer__panel a {
  font-weight: 700;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.drawer__close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1.25rem;
}

/* ——— Fluxo com ilustrações IA ——— */
.lp-define .section-head {
  margin-inline: auto;
  text-align: center;
}

.lp-define .section-head p {
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.lp-flow {
  background: linear-gradient(180deg, #eef3f8 0%, var(--paper) 100%);
}

.lp-flow .section-head {
  margin-inline: auto;
  text-align: center;
}

.lp-flow__grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 900px) {
  .lp-flow__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.lp-flow__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(21, 34, 56, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: rise 0.7s ease both;
}

.lp-flow__card:nth-child(2) {
  animation-delay: 0.08s;
}

.lp-flow__card:nth-child(3) {
  animation-delay: 0.16s;
}

.lp-flow__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(21, 34, 56, 0.14);
}

.lp-flow__art {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8eef5;
}

.lp-flow__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.lp-flow__card:hover .lp-flow__art img {
  transform: scale(1.04);
}

.lp-flow__num {
  display: block;
  padding: 1rem 1.15rem 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--warm);
}

.lp-flow__card h3 {
  margin: 0.35rem 1.15rem 0.45rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.lp-flow__card p {
  margin: 0 1.15rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

