/* ================================================================
   Landing page — Agente CDP da Climoo
   Composição sobre os tokens de colors_and_type.css
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.rail {
  max-width: 1114px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 104px 0; }

.section-head { max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.4vw, 40px); }
.section-head .lead {
  margin-top: 18px;
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--fg-2);
}

.eyebrow { display: block; margin-bottom: 14px; }
.on-dark .eyebrow { color: var(--climoo-cyan-400); }
.on-dark h2, .on-dark h3 { color: var(--fg-on-dark); }
.on-dark .lead, .on-dark p { color: var(--fg-on-dark-muted); }

.material-symbols-rounded {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  user-select: none;
}

.btn .material-symbols-rounded { font-size: 20px; }
.btn-whatsapp-icon { width: 18px; height: 18px; flex: none; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--climoo-cyan-400);
  outline-offset: 3px;
  border-radius: var(--radius-pill);
}

/* ----------------------------------------------------------------
   Nav — pílula flutuante no padrão do site institucional.
   Transparente no topo; vidro roxo (liquid glass) ao rolar.
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  padding: 16px 0;
  background: transparent;
}
.nav .rail { max-width: 1312px; }
.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  padding: 0 14px 0 28px;
  border-radius: 100px;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease,
              backdrop-filter .3s ease, -webkit-backdrop-filter .3s ease;
}
/* Ao rolar, a pílula ganha o vidro roxo do site institucional. */
.nav:not(.at-top) .nav-shell {
  background: rgba(33, 8, 86, .6);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 32px rgba(0, 0, 0, .3);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav:not(.at-top) .nav-shell { background: rgba(33, 8, 86, .94); }
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 30px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-md);
  color: #fff;
  opacity: .9;
  transition: opacity .18s ease;
}
.nav-links a:hover { opacity: 1; color: #fff; }
.btn-nav {
  flex-shrink: 0;
  height: 50px;
  padding: 0 30px;
  font-size: var(--text-md);
  background: var(--climoo-deep-800);
  color: #fff;
  border-color: transparent;
}
.btn-nav:hover { background: var(--climoo-violet-500); border-color: transparent; }

/* ----------------------------------------------------------------
   Empresas que confiam na Climoo — carrossel (padrão institucional)
   ---------------------------------------------------------------- */
.trusted {
  background: var(--climoo-ink-75);
  padding: 60px 0 40px;
}
.trusted-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.trusted-label {
  flex-shrink: 0;
  max-width: 170px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-md);
  line-height: 1.4;
  color: var(--climoo-ink-800);
}
.trusted-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.trusted-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: trusted-scroll 34s linear infinite;
}
.trusted-track:hover { animation-play-state: paused; }
.trusted-track img {
  height: 38px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  margin-right: 62px;
  filter: brightness(.5);
}
@keyframes trusted-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trusted-track { animation: none; }
}
@media (max-width: 640px) {
  .trusted { padding: 40px 0 32px; }
  .trusted-inner { flex-direction: column; align-items: flex-start; gap: 22px; }
  .trusted-label { max-width: 100%; }
  .trusted-marquee { width: 100%; }
  .trusted-track img { height: 32px; margin-right: 46px; }
}

/* ----------------------------------------------------------------
   Hero
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 168px 0 132px;
}
.hero-circle {
  position: absolute;
  left: calc(50% - 1166px);
  top: -680px;
  width: 1520px;
  height: 1520px;
  border-radius: 50%;
  background: var(--climoo-deep-800);
}
.hero .rail {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { color: #fff; }
.hero-copy .eyebrow { color: var(--climoo-cyan-400); }
.hero-copy h1 {
  color: #fff;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.06;
  max-width: 560px;
}
.hero-copy h1 .hl { color: var(--climoo-cyan-400); }
.hero-copy .sub {
  margin-top: 26px;
  max-width: 500px;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .88);
}
.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: var(--text-md);
  color: rgba(255, 255, 255, .9);
}
.hero-link:hover { color: var(--climoo-cyan-400); }
.hero-link .material-symbols-rounded { font-size: 19px; }
.hero-urgency {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
}
.hero-urgency .material-symbols-rounded {
  font-size: 18px;
  color: var(--climoo-cyan-400);
}

/* Mockup — navegador com questionário CDP + painel do agente */
.hero-visual { position: relative; }
.hero-visual .orb-violet {
  position: absolute;
  right: -64px;
  bottom: -72px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--climoo-violet-500);
}
.hero-visual .orb-cyan {
  position: absolute;
  left: -34px;
  top: -38px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--climoo-cyan-400);
}
.browser {
  position: relative;
  z-index: 1;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--elevation-5);
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--climoo-ink-100);
  border-bottom: 1px solid var(--border-soft);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff928a; }
.browser-dots span:nth-child(2) { background: #f7cf6d; }
.browser-dots span:nth-child(3) { background: #7fd99a; }
.browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 12px;
  color: var(--fg-2);
}
.browser-url .material-symbols-rounded { font-size: 14px; color: var(--climoo-success-700); }
.browser-url .url-favicon { width: 15px; height: 15px; flex: none; object-fit: contain; filter: brightness(.2); }
.browser-ext {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--climoo-deep-800);
  display: grid;
  place-items: center;
}
.browser-ext img { width: 14px; height: 14px; }
.browser-body { display: flex; align-items: stretch; }

.pane-cdp { flex: 1.15; padding: 22px 22px 20px; min-width: 0; }
.pane-brand {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border-soft);
}
.pane-brand .cdp-mark { height: 17px; width: auto; }
.pane-crumb { font-size: 11px; font-weight: 500; color: var(--fg-3); letter-spacing: .02em; }
.pane-q {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.q-code {
  flex: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--climoo-deep-800);
  background: var(--climoo-violet-50);
  border: 1px solid var(--border-violet);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
}
.pane-q p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--fg-1);
  font-weight: 500;
}
.answer-box {
  margin-top: 14px;
  border: 1px solid var(--border-soft);
  background: var(--climoo-ink-50);
  border-radius: var(--radius-sm);
  padding: 14px;
  min-height: 108px;
}
.skeleton { height: 8px; border-radius: 6px; background: var(--climoo-ink-150); margin-bottom: 9px; }
.skeleton.w80 { width: 80%; }
.skeleton.w60 { width: 60%; }
.skeleton.w90 { width: 90%; }
.pane-progress { margin-top: 18px; }
.pane-progress .label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--fg-2);
  margin-bottom: 6px;
}
.progress-track { height: 6px; border-radius: 6px; background: var(--climoo-ink-150); overflow: hidden; }
.progress-fill { height: 100%; width: 34%; border-radius: 6px; background: var(--gradient-brand); }

.pane-agent {
  flex: 1;
  min-width: 0;
  background: var(--climoo-violet-50);
  border-left: 1px solid var(--border-violet);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.agent-head { display: flex; align-items: center; gap: 9px; }
.agent-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--climoo-deep-800);
  display: grid;
  place-items: center;
  flex: none;
}
.agent-avatar img { width: 15px; height: 15px; }
.agent-head .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--climoo-deep-800);
  flex: 1;
}
.agent-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  color: var(--climoo-success-700);
  background: var(--climoo-success-50);
  border-radius: var(--radius-pill);
  padding: 3px 9px;
}
.agent-status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--climoo-success-700);
}
.agent-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--climoo-violet-700);
}
.agent-suggestion {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  box-shadow: var(--elevation-1);
  font-size: 12px;
  line-height: 1.55;
  color: var(--climoo-ink-700);
}
.agent-sources { display: flex; flex-wrap: wrap; gap: 6px; }
.agent-sources span {
  font-size: 10px;
  font-weight: 500;
  color: var(--climoo-violet-700);
  background: #fff;
  border: 1px solid var(--border-violet);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}
.agent-actions { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.btn-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  background: var(--action-primary);
  border: 0;
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  cursor: pointer;
}
.btn-mini .material-symbols-rounded { font-size: 14px; }
.agent-actions .ghost {
  font-size: 12px;
  font-weight: 500;
  color: var(--climoo-deep-800);
}

.hero-chip {
  position: absolute;
  z-index: 2;
  left: -26px;
  bottom: -26px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--elevation-4);
  min-width: 150px;
}
.hero-chip .chip-label { font-size: 10px; font-weight: 500; color: var(--fg-1); }
.hero-chip .chip-value {
  margin-top: 3px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 26px;
  color: var(--climoo-violet-500);
  line-height: 1;
}
.hero-chip .chip-value small { font-size: 11px; color: var(--fg-2); font-weight: 400; }

/* ----------------------------------------------------------------
   Problema
   ---------------------------------------------------------------- */
.pains {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--elevation-2);
  transition: transform .22s ease, box-shadow .22s ease;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--elevation-3); }
.pain-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--climoo-violet-50);
  display: grid;
  place-items: center;
  color: var(--climoo-violet-700);
  margin-bottom: 18px;
}
.pain-card h3 { font-size: var(--text-lg); line-height: 1.2; }
.pain-card p { margin-top: 10px; font-size: var(--text-sm); line-height: 1.55; }

.compare {
  margin-top: 22px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 32px 34px;
  box-shadow: var(--elevation-2);
}
.compare h3 { font-size: var(--text-lg); }
.compare-row { margin-top: 22px; }
.compare-row .row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.compare-row .row-label { font-size: var(--text-sm); font-weight: 500; color: var(--fg-1); }
.compare-row .row-time { font-size: var(--text-sm); font-weight: 500; color: var(--fg-2); }
.compare-row .row-time.brand { color: var(--climoo-violet-700); }
.compare-track {
  height: 34px;
  border-radius: var(--radius-pill);
  background: var(--climoo-ink-50);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  display: flex;
}
.compare-seg {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
}
.seg-waste { width: 78%; background: var(--climoo-ink-200); color: var(--climoo-ink-600); }
.seg-answer { width: 22%; background: var(--climoo-deep-800); color: #fff; }
.seg-agent { width: 16%; background: var(--climoo-violet-500); color: #fff; }
.compare-note { margin-top: 18px; font-size: var(--text-xs); color: var(--fg-3); }

/* ----------------------------------------------------------------
   Solução
   ---------------------------------------------------------------- */
.solution-band { background: var(--bg-surface); }
.solution-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.solution-copy .body {
  margin-top: 18px;
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--fg-2);
}
.callout {
  margin-top: 28px;
  border-left: 3px solid var(--climoo-violet-500);
  background: var(--climoo-violet-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
}
.callout p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.45;
  color: var(--climoo-deep-800);
}

.flow {
  background: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.flow-docs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.doc-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  box-shadow: var(--elevation-1);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--fg-1);
}
.doc-chip .material-symbols-rounded { font-size: 20px; color: var(--climoo-violet-600); }
.flow-arrow { color: var(--climoo-ink-400); display: grid; place-items: center; }
.flow-agent {
  width: 100%;
  background: var(--gradient-card-violet);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.flow-agent .agent-avatar { width: 40px; height: 40px; background: rgba(255,255,255,.14); }
.flow-agent .agent-avatar img { width: 20px; height: 20px; }
.flow-agent .t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.flow-agent .s { font-size: 12.5px; color: rgba(255,255,255,.78); margin-top: 3px; }
.flow-answer {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border-violet);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--climoo-deep-800);
}
.flow-answer .material-symbols-rounded { font-size: 20px; color: var(--climoo-violet-500); }

/* ----------------------------------------------------------------
   Como funciona
   ---------------------------------------------------------------- */
.steps {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--elevation-2);
  transition: transform .22s ease, box-shadow .22s ease;
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--elevation-3); }
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: var(--climoo-violet-200);
}
.step-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--climoo-deep-800);
  color: var(--climoo-cyan-400);
  display: grid;
  place-items: center;
}
.step-card h3 { font-size: 21px; line-height: 1.2; }
.step-card p { margin-top: 12px; font-size: var(--text-sm); line-height: 1.6; }

/* ----------------------------------------------------------------
   Para quem é
   ---------------------------------------------------------------- */
.audience {
  position: relative;
  background: var(--climoo-deep-800);
  overflow: hidden;
}
.audience-circle {
  position: absolute;
  right: -320px;
  top: -420px;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: var(--climoo-deep-700);
}
.audience .rail { position: relative; }
.audience-cards {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.audience-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 34px;
}
.audience-card .card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.audience-card .card-head .material-symbols-rounded {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--climoo-violet-50);
  color: var(--climoo-violet-700);
  display: grid;
  place-items: center;
  font-size: 24px;
}
.audience-card h3 { font-size: var(--text-lg); color: var(--fg-1); }
.audience-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.audience-card li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--climoo-ink-600);
}
.audience-card li .material-symbols-rounded {
  font-size: 20px;
  color: var(--climoo-violet-500);
  margin-top: 1px;
  flex: none;
}

/* ----------------------------------------------------------------
   Investimento
   ---------------------------------------------------------------- */
.invest-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--elevation-3);
}
.invest-pitch {
  background: var(--climoo-deep-800);
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
}
.invest-pitch::after {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -260px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--climoo-deep-700);
}
.invest-pitch > * { position: relative; z-index: 1; }
.invest-pitch .eyebrow { color: var(--climoo-cyan-400); }
.invest-pitch h2 {
  color: #fff;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15;
}
.invest-pitch p {
  margin-top: 18px;
  color: var(--fg-on-dark-muted);
  font-size: var(--text-md);
  line-height: 1.6;
  max-width: 420px;
}
.invest-pitch .btn { margin-top: 34px; }
.invest-includes {
  background: var(--bg-surface);
  padding: 56px 52px;
}
.invest-includes h3 { font-size: var(--text-lg); margin-bottom: 24px; }
.invest-includes ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.invest-includes li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--climoo-ink-600);
}
.invest-includes li .material-symbols-rounded {
  font-size: 21px;
  color: var(--climoo-violet-500);
  flex: none;
  margin-top: 1px;
}

/* ----------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------- */
.faq-list {
  margin-top: 48px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .22s ease;
}
.faq-item[open] { box-shadow: var(--elevation-2); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--fg-1);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .material-symbols-rounded {
  color: var(--climoo-violet-600);
  transition: transform .22s ease;
  flex: none;
}
.faq-item[open] summary .material-symbols-rounded { transform: rotate(180deg); }
.faq-item .faq-body {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-2);
}

/* ----------------------------------------------------------------
   CTA final
   ---------------------------------------------------------------- */
.cta-final {
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-page) 50%,
    var(--climoo-deep-800) 50%
  );
}
.ribbon {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(120deg, #7c3aed 0%, #3b0764 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 360px;
  color: #fff;
}
.ribbon-circle {
  position: absolute;
  right: 10%;
  bottom: -240px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(139, 92, 246, .45);
  pointer-events: none;
}
.ribbon-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 56px 48px 56px 56px;
}
.ribbon h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  max-width: 520px;
}
.ribbon p {
  margin-top: 16px;
  color: rgba(255, 255, 255, .88);
  font-size: var(--text-md);
  line-height: 1.55;
  max-width: 440px;
}
.ribbon .btn { margin-top: 30px; }
.ribbon .phone {
  margin-top: 14px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .75);
}
.ribbon-photo {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
}
.ribbon-photo img {
  display: block;
  width: auto;
  height: 400px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */
.footer {
  background: var(--climoo-deep-800);
  color: #fff;
  margin-top: 0;
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}
.footer-brand img { height: 28px; width: auto; }
.footer-brand p {
  margin-top: 16px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .65);
  max-width: 300px;
  line-height: 1.55;
}
.footer h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--climoo-violet-300);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 16px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .78);
}
.footer ul a:hover { color: var(--climoo-cyan-400); }
.footer-legal {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(147, 84, 224, .25);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, .55);
}

/* ----------------------------------------------------------------
   Barra fixa mobile
   ---------------------------------------------------------------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  backdrop-filter: none;
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -8px 24px rgba(12, 12, 13, .10);
}
.mobile-cta .btn { width: 100%; padding: 17px 24px; }

/* ----------------------------------------------------------------
   Botão flutuante do WhatsApp (padrão institucional),
   no canto inferior esquerdo.
   ---------------------------------------------------------------- */
.wa-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .5);
  color: #fff;
}
.wa-fab svg { width: 30px; height: 30px; }
/* No mobile já existe a barra fixa de WhatsApp; evita duplicar. */
@media (max-width: 860px) {
  .wa-fab { display: none; }
}

/* ----------------------------------------------------------------
   Entrada suave
   ---------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ----------------------------------------------------------------
   Responsivo
   ---------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero .rail { grid-template-columns: 1fr; gap: 64px; }
  .hero { padding-top: 140px; }
  .hero-copy h1, .hero-copy .sub { max-width: 640px; }
  .hero-visual { max-width: 640px; }
  .hero-circle {
    left: -40vw;
    top: -58vw;
    width: 180vw;
    height: 180vw;
  }
  .solution-grid { grid-template-columns: 1fr; gap: 56px; }
  .steps, .pains { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .section { padding: 76px 0; }
  .nav-links { display: none; }
  .hero { background: var(--climoo-deep-800); padding: 120px 0 84px; }
  .hero-circle {
    background: var(--climoo-deep-700);
    left: auto;
    right: -55vw;
    top: -55vw;
    width: 130vw;
    height: 130vw;
  }
  .steps, .pains, .audience-cards, .footer-grid { grid-template-columns: 1fr; }
  .invest-card { grid-template-columns: 1fr; }
  .invest-pitch, .invest-includes { padding: 44px 30px; }
  .ribbon { grid-template-columns: 1fr; min-height: 0; }
  .ribbon-copy { align-items: center; padding: 48px 32px; text-align: center; }
  .ribbon h2, .ribbon p { max-width: 100%; }
  .ribbon-photo { display: none; }
  .nav { padding: 12px 0; }
  .nav-shell { height: 62px; padding: 0 10px 0 20px; }
  .nav-logo img { height: 26px; }
  .btn-nav { height: 44px; padding: 0 22px; font-size: var(--text-sm); }
  body { padding-bottom: 86px; }
  .mobile-cta { display: block; }
}

@media (max-width: 620px) {
  .browser-body { flex-direction: column; }
  .pane-agent { border-left: 0; border-top: 1px solid var(--border-violet); }
  .hero-chip {
    position: static;
    display: inline-block;
    margin-top: 14px;
    box-shadow: var(--elevation-2);
  }
  .hero-visual .orb-cyan { display: none; }
  .hero-actions { gap: 18px; }
  .compare { padding: 26px 20px; }
  .seg-waste, .seg-agent, .seg-answer { padding: 0 10px; }
  .compare-seg { font-size: 10px; }
  .ribbon .btn { width: 100%; }
  .invest-pitch .btn { width: 100%; }
}
