:root {
  --ink: #061316;
  --ink-2: #0b2025;
  --ink-3: #102e34;
  --teal: #075f6c;
  --teal-2: #12a0b3;
  --gold: #f2c14e;
  --bone: #f4f7f8;
  --bone-2: #e7eef0;
  --white: #ffffff;
  --muted: #617176;
  --muted-dark: rgba(255, 255, 255, 0.68);
  --rule-light: rgba(6, 19, 22, 0.13);
  --rule-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --container-max: 1160px;
  --container-px: 22px;
  --radius: 8px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --space-section: clamp(72px, 9vw, 128px);
  --space-section-sm: clamp(48px, 6vw, 86px);
  --space-hero: clamp(104px, 12vw, 156px);
  --font-body: "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Arial Black", "Segoe UI", Roboto, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--teal-2) var(--ink);
}

html::-webkit-scrollbar {
  width: 7px;
}

html::-webkit-scrollbar-track {
  background: var(--ink);
}

html::-webkit-scrollbar-thumb {
  background: var(--teal-2);
  border-radius: 4px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bone);
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 6px;
  transition: transform 0.2s var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.18s var(--ease-out), background 0.18s var(--ease-out), color 0.18s var(--ease-out), border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}

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

.btn-primary {
  color: var(--ink);
  background: var(--teal-2);
  box-shadow: 0 16px 34px rgba(18, 160, 179, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #22bdd1;
}

.btn-secondary,
.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.58);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

#site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transform: translateY(-110%);
  color: var(--white);
  background: rgba(6, 19, 22, 0.94);
  border-bottom: 1px solid rgba(18, 160, 179, 0.22);
  box-shadow: 0 8px 32px rgba(6, 19, 22, 0.45);
  backdrop-filter: blur(14px);
  transition: transform 0.42s var(--ease-out), box-shadow 0.26s var(--ease-out);
}

#site-header.header-visible {
  transform: translateY(0);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

.logo-link img {
  width: 205px;
  max-height: 58px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.header-nav a {
  transition: color 0.18s var(--ease-out);
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--white);
}

#site-header .btn {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
}

#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: var(--space-hero);
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(1.08) contrast(1.05);
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 19, 22, 0.98) 0%, rgba(6, 19, 22, 0.88) 38%, rgba(6, 19, 22, 0.54) 72%, rgba(6, 19, 22, 0.86) 100%),
    linear-gradient(180deg, rgba(6, 19, 22, 0.24) 0%, rgba(6, 19, 22, 0.94) 100%);
}

#hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 160, 179, 0.55), transparent);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
}

.hero-content h1,
.section-head h2,
#cta-final h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.03;
}

.hero-content h1 {
  font-size: clamp(28px, 3vw, 40px);
  max-width: 620px;
}

.lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.6vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  max-width: 760px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--rule-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-bar .sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-2);
}

.guarantee-strip {
  position: relative;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid var(--rule-dark);
  overflow: hidden;
}

.guarantee-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 120% at 82% 50%, rgba(18, 160, 179, 0.16), transparent 68%);
  pointer-events: none;
}

.guarantee-inner {
  position: relative;
  z-index: 1;
  min-height: 136px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.guarantee-inner p,
.guarantee-inner strong {
  margin: 0;
}

.guarantee-inner p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(20px, 2.2vw, 30px);
}

.guarantee-inner strong {
  max-width: 430px;
  color: var(--teal-2);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.18;
}

.section {
  position: relative;
  padding-block: var(--space-section);
  overflow: hidden;
}

.section-light {
  background: var(--bone);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 58%, #062c33 100%);
}

.section-watermark {
  position: absolute;
  right: 3vw;
  top: 48px;
  color: rgba(6, 19, 22, 0.04);
  font-family: var(--font-display);
  font-size: min(27vw, 360px);
  line-height: 1;
  pointer-events: none;
}

.section-head {
  max-width: 790px;
  margin-bottom: clamp(34px, 4vw, 56px);
}

.section-head h2 {
  font-size: clamp(22px, 2.2vw, 32px);
}

.section-head p:not(.eyebrow) {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-head p:not(.eyebrow),
.section-dark .included-copy > p {
  color: var(--muted-dark);
}

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

.segment-card {
  min-height: 250px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--rule-light);
  border-radius: var(--radius);
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}

.segment-card:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 160, 179, 0.34);
  box-shadow: 0 18px 42px rgba(6, 19, 22, 0.09);
}

.segment-card span {
  display: block;
  color: var(--teal);
  font-weight: 900;
  margin-bottom: 18px;
}

.segment-card h3,
.included-item h3,
.technical-note h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.18;
}

.segment-card p,
.included-item p,
.step p,
.technical-note p,
.stat p {
  margin: 12px 0 0;
  color: var(--muted);
}

.attention-box {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(242, 193, 78, 0.45);
  border-radius: var(--radius);
  background: rgba(242, 193, 78, 0.1);
  color: var(--ink-2);
}

.attention-box strong {
  color: var(--teal);
}

.included-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: clamp(42px, 6vw, 78px);
  align-items: center;
}

.included-copy h2 {
  max-width: 760px;
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.04;
}

.included-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule-dark);
}

.included-item {
  display: grid;
  grid-template-columns: 0.74fr 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule-dark);
}

.included-item p {
  margin: 0;
  color: var(--muted-dark);
}

.included-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.included-visual figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--rule-dark);
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
  transform-origin: center bottom;
}

.included-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

figcaption {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.stats-section {
  color: var(--white);
  background: var(--ink);
}

.stats-layout .section-head p:not(.eyebrow) {
  color: var(--muted-dark);
}

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

.stat {
  min-height: 230px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--rule-dark);
  background: rgba(255, 255, 255, 0.05);
}

.stat strong {
  display: block;
  color: var(--teal-2);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 14px;
  color: var(--white);
  font-weight: 900;
}

.stat p {
  color: var(--muted-dark);
}

.technical-note {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 30px;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid var(--rule-dark);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(18, 160, 179, 0.12), rgba(255, 255, 255, 0.04));
}

.technical-note p {
  margin: 0;
  color: var(--muted-dark);
}

.section-faq {
  background:
    linear-gradient(180deg, rgba(231, 238, 240, 0.52), var(--bone) 34%),
    var(--bone);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(42px, 6vw, 78px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--rule-light);
}

.faq-item {
  border-bottom: 1px solid var(--rule-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 900;
  font-size: 18px;
}

.faq-question span {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid var(--rule-light);
  border-radius: 50%;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 2px;
  background: var(--teal);
  transform: translateY(-50%);
}

.faq-question span::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.2s var(--ease-out);
}

.faq-question.active span::after,
.faq-question[aria-expanded="true"] span::after {
  transform: translateY(-50%) rotate(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s var(--ease-out);
}

.faq-answer.open {
  max-height: 260px;
}

.faq-answer p {
  margin: 0;
  padding: 0 48px 22px 0;
  color: var(--muted);
}

#cta-final {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-section);
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(6, 19, 22, 0.96), rgba(6, 19, 22, 0.88)),
    url("assets/painel-comando.png") center / cover;
}

#cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 95% at 50% 50%, rgba(18, 160, 179, 0.16), transparent 70%);
  pointer-events: none;
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

#cta-final h2 {
  font-size: clamp(22px, 2.4vw, 34px);
}

.cta-subtitle {
  max-width: 610px;
  margin: 18px auto 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.cta-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

footer {
  padding-block: 44px;
  background: #03090b;
  color: rgba(255, 255, 255, 0.68);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.75fr;
  gap: 36px;
  align-items: start;
}

.footer-brand img {
  width: 210px;
  max-height: 68px;
}

.footer-brand p {
  max-width: 430px;
  margin: 16px 0 0;
}

.footer-col {
  display: grid;
  gap: 8px;
}

.footer-col strong {
  color: var(--white);
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--white);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

.js .reveal.visible.reveal-delay-1 { transition-delay: 0.08s; }
.js .reveal.visible.reveal-delay-2 { transition-delay: 0.16s; }
.js .reveal.visible.reveal-delay-3 { transition-delay: 0.24s; }
.js .reveal.visible.reveal-delay-4 { transition-delay: 0.32s; }
.js .reveal.visible.reveal-delay-5 { transition-delay: 0.40s; }
.js .reveal.visible.reveal-delay-6 { transition-delay: 0.48s; }

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .included-grid,
  .faq-grid,
  .technical-note {
    grid-template-columns: 1fr;
  }

  .included-visual {
    order: -1;
    max-width: 520px;
  }

  .segments-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --container-px: 16px;
  }

  .header-inner {
    min-height: 66px;
  }

  .logo-link img {
    width: 162px;
  }

  #site-header .btn {
    display: none;
  }

  #hero {
    min-height: 92svh;
    padding-block: 108px 72px;
  }

  .hero-bg img {
    object-position: 58% center;
  }

  #hero::before {
    background:
      linear-gradient(180deg, rgba(6, 19, 22, 0.88) 0%, rgba(6, 19, 22, 0.9) 52%, rgba(6, 19, 22, 0.97) 100%),
      linear-gradient(90deg, rgba(6, 19, 22, 0.72), rgba(6, 19, 22, 0.72));
  }

  .hero-actions,
  .included-cta {
    display: grid;
  }

  .guarantee-inner {
    min-height: 0;
    display: grid;
    padding-block: 34px;
  }

  .segments-grid,
  .stats-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .included-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .included-visual figure {
    transform: none;
  }
}

@media (max-width: 480px) {
  .lead,
  .section-head p:not(.eyebrow),
  .cta-subtitle {
    font-size: 16px;
  }

  .trust-bar {
    gap: 8px 10px;
  }

  .trust-bar .sep {
    display: none;
  }
}
