/* ==========================================================================
   Tô Hospedando: main.css
   Design system: skill tohospedando-design (~/.claude/skills/tohospedando-design)
   ========================================================================== */

/* --- Reset mínimo --- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Tokens --- */
:root {
  /* Marca */
  --azul:        #002879;
  --azul-hover:  #001e5a;
  --azul-focus:  #b6ceff;
  --azul-light:  #dfeaff;
  --azul-soft:   #eef2fb;

  --laranja:       #fdac01;
  --laranja-hover: #d49001;
  --laranja-light: #ffebc1;
  --laranja-soft:  #fff6e3;

  /* Canvas */
  --bg:    #f7f8fb;
  --bg2:   #ffffff;
  --ink:   #10193a;
  --muted: #5b6478;
  --line:  rgba(0, 40, 121, .10);

  /* Tipografia */
  --font-display: 'Nunito', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Forma */
  --r-card:    16px;
  --r-control: 12px;
  --r-pill:    999px;
  --shadow-card:  0 16px 40px -20px rgba(0, 40, 121, .22);
  --shadow-hover: 0 22px 50px -20px rgba(0, 40, 121, .30);

  /* Movimento */
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* --- Tipografia --- */
h1, h2, h3 { font-family: var(--font-display); color: var(--ink); }

.h-hero {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.1;
  margin: 0;
}
.h-section-accent {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.14;
  margin: 0;
}
/* Sistema de título com acento laranja/azul, compartilhado entre hero e headings de seção */
.accent-heading .laranja { color: var(--laranja); font-weight: 900; }
.accent-heading .azul { color: var(--azul); font-weight: 800; }
.h-section {
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  line-height: 1.15;
}
.h-card {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.2;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--muted);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azul);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--azul);
  flex: none;
}
.prose {
  max-width: 65ch;
  font-size: 1.0625rem;
  line-height: 1.65;
}
.prose p + p { margin-top: 1.1em; }
.prose strong { color: var(--azul); font-weight: 600; }

/* --- Layout --- */
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.section {
  padding-block: clamp(64px, 10vh, 120px);
}
.section--alt { background: var(--bg2); }
.section__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.section__sub {
  color: var(--muted);
  max-width: 60ch;
}

/* --- Reveal on scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  transition-delay: calc(var(--i, 0) * 60ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Foco visível --- */
:focus-visible {
  outline: 2px solid var(--azul-focus);
  outline-offset: 2px;
  border-radius: inherit;
}

/* --- Skip link --- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--azul);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 var(--r-control) 0;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
}

/* --- Nav: abre em largura total e transparente no topo, retrai num pill ao rolar --- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  width: 100%;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    width .5s var(--ease),
    top .5s var(--ease),
    left .5s var(--ease),
    translate .5s var(--ease),
    border-radius .4s var(--ease),
    background-color .4s var(--ease),
    box-shadow .4s var(--ease),
    backdrop-filter .4s var(--ease);
}
.nav__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(24px, 5vw, 64px);
  transition: padding .4s var(--ease);
}
.nav.is-compact {
  top: 22px;
  left: 50%;
  right: auto;
  translate: -50% 0;
  width: min(1240px, calc(100% - 28px));
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 10px 30px -20px rgba(0, 40, 121, .22);
}
.nav.is-compact .nav__bar { padding: 10px clamp(18px, 3vw, 28px); }

.nav__logo { justify-self: start; }
.nav__logo img {
  height: 34px;
  width: auto;
  transition: height .4s var(--ease);
}
.nav.is-compact .nav__logo img { height: 24px; }

.nav__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  font-size: .95rem;
}
.nav__links a:hover { color: var(--azul); }

.nav__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--r-control);
  flex-direction: column;
  gap: 5px;
}
.nav-toggle:hover { background: var(--azul-soft); }

.nav__drawer,
.nav__drawer-backdrop { display: none; }

@media (max-width: 960px) {
  /* .nav__links some do fluxo do grid ao virar display:none — sem esse
     override, .nav__actions (com o toggle) desliza pra coluna do meio do
     grid de 3 colunas em vez da direita, ficando "no centro da tela" com o
     logo espremido na coluna que sobra. Flex com space-between resolve sem
     depender de contagem de coluna do grid. */
  .nav__bar { display: flex; align-items: center; justify-content: space-between; }
  .nav__links,
  .nav__actions .btn--shiny { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--azul);
    transition: transform .3s var(--ease), opacity .2s var(--ease);
  }
  .nav-toggle.is-active .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-active .nav-toggle__bar:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Backdrop: clicar fora do drawer fecha (antes só fechava clicando na
     fatia da logo real que sobrava visível à esquerda, fora do drawer). */
  .nav__drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 140;
    background: rgba(0, 40, 121, .45);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s var(--ease);
  }
  .nav__drawer-backdrop.is-open { opacity: 1; visibility: visible; }

  .nav__drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 150;
    width: min(300px, 80vw);
    height: 100vh;
    max-height: 100dvh;
    overflow-y: auto;
    background: var(--bg2);
    box-shadow: var(--shadow-hover);
    border-radius: var(--r-card) 0 0 var(--r-card);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .35s var(--ease), visibility .35s var(--ease);
    padding: 24px 26px 28px;
  }
  .nav__drawer.is-open { transform: translateX(0); visibility: visible; }

  /* Cabeçalho próprio do drawer (logo + fechar): antes o drawer não tinha
     nenhum botão de fechar visível, só o Esc ou clicar na logo real que
     sobrava fora dele. */
  .nav__drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--line);
  }
  .nav__drawer-logo { height: 24px; width: auto; }
  .nav__drawer-close {
    flex: none;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--azul-soft);
    color: var(--azul);
    transition: background-color .2s var(--ease), transform .2s var(--ease);
  }
  .nav__drawer-close:hover { background: var(--azul-light); }
  .nav__drawer-close svg { width: 16px; height: 16px; }

  .nav__drawer-links { display: flex; flex-direction: column; }
  .nav__drawer-links a {
    display: block;
    padding: 14px 2px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateX(14px);
    transition: color .2s var(--ease), opacity .35s var(--ease), transform .35s var(--ease);
  }
  .nav__drawer-links a:hover { color: var(--azul); }
  /* Entrada em cascata só quando o drawer abre — cada link some/desliza um
     pouco depois do anterior. */
  .nav__drawer.is-open .nav__drawer-links a { opacity: 1; transform: translateX(0); }
  .nav__drawer.is-open .nav__drawer-links a:nth-child(1) { transition-delay: .06s; }
  .nav__drawer.is-open .nav__drawer-links a:nth-child(2) { transition-delay: .11s; }
  .nav__drawer.is-open .nav__drawer-links a:nth-child(3) { transition-delay: .16s; }
  .nav__drawer.is-open .nav__drawer-links a:nth-child(4) { transition-delay: .21s; }
  .nav__drawer.is-open .nav__drawer-links a:nth-child(5) { transition-delay: .26s; }

  .nav__drawer .btn--shiny { margin-top: auto; justify-content: center; width: 100%; }

  @media (prefers-reduced-motion: reduce) {
    .nav__drawer-links a { transition-delay: 0s !important; }
  }
}

/* --- Botoes --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-control);
  font-weight: 600;
  font-size: .95rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.btn--primary {
  background: var(--azul);
  color: #fff;
}
.btn--primary:hover {
  background: var(--azul-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn--primary:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn--ghost {
  background: transparent;
  color: var(--azul);
  border: 1.5px solid var(--azul);
}
.btn--ghost:hover { background: var(--azul-soft); }
.btn--on-dark {
  background: var(--laranja);
  color: var(--azul);
}
.btn--on-dark:hover { background: var(--laranja-hover); transform: translateY(-2px); }

/* --- Botão shiny (nav): mesmo efeito azul do CTA do hero em docs/sketches/hero-video-preview.html --- */
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}
@property --gradient-shine {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}
.btn--shiny {
  --shiny-bg:        var(--azul);
  --shiny-bg-subtle: var(--azul-hover);
  --shiny-fg:        #ffffff;
  --shiny-highlight:        #4f7cff;
  --shiny-highlight-subtle: var(--azul-focus);
  --animation: gradient-angle linear infinite;
  --duration: 3s;
  --shadow-size: 2px;
  --transition: 800ms cubic-bezier(.25, 1, .5, 1);

  isolation: isolate;
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  color: var(--shiny-fg);
  background:
    linear-gradient(var(--shiny-bg), var(--shiny-bg)) padding-box,
    conic-gradient(
      from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
      transparent,
      var(--shiny-highlight) var(--gradient-percent),
      var(--gradient-shine) calc(var(--gradient-percent) * 2),
      var(--shiny-highlight) calc(var(--gradient-percent) * 3),
      transparent calc(var(--gradient-percent) * 4)
    ) border-box;
  box-shadow: inset 0 0 0 1px var(--shiny-bg-subtle);
  transition: var(--transition);
  transition-property: --gradient-angle-offset, --gradient-percent, --gradient-shine;
}
.btn--shiny::before,
.btn--shiny::after,
.btn--shiny span::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  z-index: -1;
}
.btn--shiny:active { translate: 0 1px; }

.btn--shiny::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
    circle at var(--position) var(--position),
    white calc(var(--position) / 4),
    transparent 0
  ) padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(
    from calc(var(--gradient-angle) + 45deg),
    black, transparent 10% 90%, black
  );
  border-radius: inherit;
  opacity: .4;
  z-index: -1;
}

.btn--shiny::after {
  --animation: shimmer linear infinite;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(-50deg, transparent, var(--shiny-highlight), transparent);
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: .6;
}

.btn--shiny span { z-index: 1; }
.btn--shiny span::before {
  --size: calc(100% + 1rem);
  width: var(--size);
  height: var(--size);
  box-shadow: inset 0 -1ex 2rem 4px var(--shiny-highlight);
  opacity: 0;
  transition: opacity var(--transition);
  animation: calc(var(--duration) * 1.5) breathe linear infinite;
}

.btn--shiny,
.btn--shiny::before,
.btn--shiny::after {
  animation: var(--animation) var(--duration),
    var(--animation) calc(var(--duration) / .4) reverse paused;
  animation-composition: add;
}

.btn--shiny:is(:hover, :focus-visible) {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-highlight-subtle);
}
.btn--shiny:is(:hover, :focus-visible),
.btn--shiny:is(:hover, :focus-visible)::before,
.btn--shiny:is(:hover, :focus-visible)::after {
  animation-play-state: running;
}
.btn--shiny:is(:hover, :focus-visible) span::before { opacity: 1; }

/* --- Botão shiny laranja (CTA band): mesmo mecanismo do .btn--shiny, recolorido --- */
.btn--shiny-laranja {
  --shiny-bg:        var(--laranja);
  --shiny-bg-subtle: var(--laranja-hover);
  --shiny-fg:        var(--azul);
  --shiny-highlight:        #ffd45c;
  --shiny-highlight-subtle: var(--laranja-light);
}

@keyframes gradient-angle { to { --gradient-angle: 360deg; } }
@keyframes shimmer { to { rotate: 360deg; } }
@keyframes breathe {
  from, to { scale: 1; }
  50% { scale: 1.2; }
}

/* --- Motivo arco/portal --- */
.portal {
  border-radius: 40% 40% 8px 8px / 60% 60% 8px 8px;
}
.portal--sm {
  border-radius: 50% 50% 6px 6px / 70% 70% 6px 6px;
}
.portal--inverse {
  border-radius: 8px 8px 40% 40% / 8px 8px 60% 60%;
}

/* --- Grid hairline --- */
.grid-hairline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
}
.grid-hairline__cell {
  background: var(--bg2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.grid-hairline__icon {
  width: 40px; height: 40px;
  color: var(--azul);
}
@media (max-width: 640px) {
  .grid-hairline { grid-template-columns: 1fr; }
}

/* --- Card com sombra tingida --- */
.card-highlight {
  background: var(--bg2);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 32px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card-highlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-highlight__seal {
  width: 56px; height: 56px;
  background: var(--azul-soft);
  color: var(--azul);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* --- Padrão de seção 100vh: cada seção da home ocupa a tela inteira e centraliza o conteúdo --- */
.section-100vh {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- Cartão de citação (o "fechamento" de cada seção de dor: o que a Tô Hospedando resolve) --- */
.solution-quote {
  position: absolute;
  left: -18px;
  bottom: -26px;
  z-index: 3;
  max-width: 290px;
  padding: 20px 22px 18px;
  border-radius: var(--r-card);
  background: rgba(255, 255, 255, .58);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(0, 40, 121, .16);
  box-shadow: var(--shadow-hover);
}
.solution-quote::before {
  content: "\201C";
  position: absolute;
  top: -14px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--laranja);
  line-height: 1;
}
.solution-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.42;
  color: var(--azul);
}
.solution-quote--stacked {
  position: static;
  max-width: 380px;
  width: 100%;
}
.solution-quote--stacked::before { top: -18px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to   { opacity: 1; transform: none; }
}
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-3px); opacity: 1; }
}

/* --- Hero --- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(140px, 18vh, 200px);
  padding-bottom: clamp(56px, 10vh, 110px);
}
.mesh-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .22;
  background-color: var(--bg);
  background-size: 120px 120px, auto, auto, auto;
  background-blend-mode: overlay, normal, normal, normal;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.hero__media { position: relative; }
.video-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 9 / 16;
  max-width: 380px;
  margin-inline: auto;
  border-radius: 28px;
  border: 5px solid var(--laranja);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--azul);
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 340px; margin-inline: auto; }
}

/* --- Relógio do Hero (substitui o vídeo, decidido em 12/08 depois de
   comparar as duas versões lado a lado no protótipo
   docs/sketches/hero-video-preview.html) — portado à mão a partir da ideia
   do componente designali-in/clock (21st.dev, React/Tailwind), sem
   dependência nova. Marcações e ponteiros usam a mesma técnica: elemento
   nasce encostado no topo do mostrador (12h), o transform-origin fica no
   raio exato até o centro do círculo, e um rotate(Ndeg) inline gira o
   elemento inteiro em torno do centro real do relógio. Os ponteiros não
   mostram a hora real: giram acelerados em loop contínuo, vendendo a ideia
   de "o dia passa correndo". --- */
.clock-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.clock-face {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--azul-soft), var(--azul-light) 70%);
  border: 1px solid var(--line);
  box-shadow:
    var(--shadow-card),
    inset 0 3px 8px rgba(255, 255, 255, .6),
    inset 0 -6px 14px rgba(0, 40, 121, .10);
}
.clock-tick {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 2px;
  height: 12px;
  margin-left: -1px;
  background: var(--azul);
  opacity: .32;
  transform-origin: 1px 144px;
}
.clock-num {
  position: absolute;
  top: 26px;
  left: 50%;
  width: 26px;
  height: 20px;
  margin-left: -13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: 13px 124px;
}
.clock-num span {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .82rem;
  color: var(--azul);
}
.clock-hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform-origin: 50% 100%;
  border-radius: 3px;
  animation-name: clock-spin;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.clock-hand--hour {
  width: 5px;
  height: 58px;
  margin-left: -2.5px;
  background: var(--azul);
  animation-duration: 8s;
}
.clock-hand--minute {
  width: 3px;
  height: 86px;
  margin-left: -1.5px;
  background: var(--azul);
  animation-duration: 4s;
}
.clock-hand--second {
  width: 2px;
  height: 102px;
  margin-left: -1px;
  background: var(--laranja);
  animation-duration: 1.4s;
}
.clock-cap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--azul);
  border: 2px solid var(--bg2);
  z-index: 2;
}
.clock-label {
  position: absolute;
  top: 190px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}
.clock-caption {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--azul);
  text-align: center;
}

@keyframes clock-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .clock-hand { animation: none; }
  .clock-hand--hour   { transform: rotate(300deg); }
  .clock-hand--minute { transform: rotate(60deg); }
  .clock-hand--second { transform: rotate(180deg); }
}

@media (max-width: 480px) {
  .clock-face { width: 240px; height: 240px; }
  .clock-tick { top: 5px; height: 10px; transform-origin: 1px 115px; }
  .clock-num {
    top: 20px;
    width: 22px;
    height: 18px;
    margin-left: -11px;
    transform-origin: 11px 100px;
  }
  .clock-num span { font-size: .74rem; }
  .clock-hand--hour   { height: 46px; }
  .clock-hand--minute { height: 69px; }
  .clock-hand--second { height: 82px; }
  .clock-label { top: 152px; font-size: .58rem; }
}

/* --- Dor 1 · WhatsApp --- */
.dor1 { background: var(--bg2); }
.dor1__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(56px, 9vw, 120px);
  align-items: center;
}
.dor1__copy { display: flex; flex-direction: column; gap: 18px; }
.dor1__media { position: relative; }

/* Mockup de WhatsApp Web (MacBook) */
.mac-wrap { width: 100%; max-width: 640px; }
.mac-lid {
  background: #1c1f23;
  border-radius: 18px 18px 7px 7px;
  padding: 12px 12px 0;
  box-shadow: var(--shadow-card);
}
.mac-screen { aspect-ratio: 8 / 5; border-radius: 7px 7px 0 0; overflow: hidden; background: #fff; display: flex; }
.mac-base { position: relative; height: 14px; background: linear-gradient(#dadde1, #c3c7cc); border-radius: 0 0 12px 12px; }
.mac-base::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 5px;
  background: #a6aab0;
  border-radius: 0 0 7px 7px;
}
.mac-sidebar { width: 38%; flex: none; background: #f0f2f5; display: flex; flex-direction: column; border-right: 1px solid rgba(0,0,0,.08); }
.mac-sidebar__top { display: flex; align-items: center; gap: 7px; padding: 10px 10px 8px; }
.mac-sidebar__avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--azul);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.mac-sidebar__avatar svg { width: 14px; height: 14px; }
.mac-sidebar__brand { flex: 1; font-size: 11px; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mac-sidebar__more { border: none; background: none; padding: 2px; color: #6b7280; flex: none; }
.mac-sidebar__more svg { width: 14px; height: 14px; }
.mac-search {
  margin: 0 10px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 8px;
  padding: 5px 8px;
  color: #9aa3a8;
  font-size: 9.5px;
}
.mac-search svg { flex: none; }
.mac-chatlist { flex: 1; overflow-y: auto; scrollbar-width: none; }
.mac-chatlist::-webkit-scrollbar { display: none; }
.mac-chat-item { position: relative; display: flex; align-items: center; gap: 8px; padding: 8px 10px; }
.mac-chat-item.active { background: rgba(0,40,121,.06); }
.mac-chat-item.active::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--azul); }
.mac-chat-item__avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--azul-soft);
  color: var(--azul);
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 700;
  flex: none;
}
.mac-chat-item__meta { min-width: 0; flex: 1; }
.mac-chat-item__row { display: flex; justify-content: space-between; gap: 6px; }
.mac-chat-item__name { font-size: 10.5px; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mac-chat-item__time { font-size: 8.5px; color: #9aa3a8; flex: none; }
.mac-chat-item__preview { margin: 2px 0 0; font-size: 9.5px; color: #6b7280; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mac-chat-item__badge {
  flex: none;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: var(--r-pill);
  background: #00a884;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: transform .18s var(--ease);
}
.mac-chat-item__badge.bump { transform: scale(1.22); }
.mac-main { flex: 1; min-width: 0; display: flex; flex-direction: column; background: #efeae2; }
.mac-main__header { display: flex; align-items: center; padding: 8px 12px; background: #f0f2f5; border-bottom: 1px solid rgba(0,0,0,.06); }
.mac-main__who { display: flex; align-items: center; gap: 8px; }
.mac-main__name { font-size: 11px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.mac-main__status { font-size: 9.5px; color: #00a884; line-height: 1.2; }
.mac-main__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  scrollbar-width: none;
}
.mac-main__body::-webkit-scrollbar { display: none; }
.chat-day-pill {
  align-self: center;
  background: rgba(255,255,255,.85);
  color: #6b7280;
  font-size: 9.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 2px;
}
.chat-input { display: flex; align-items: center; gap: 6px; padding: 8px 10px; background: #f0f2f5; }
.chat-input__field { flex: 1; background: #fff; border-radius: var(--r-pill); padding: 6px 12px; font-size: 10.5px; color: #9aa3a8; }
.chat-input__mic { width: 24px; height: 24px; border-radius: 50%; background: #00a884; flex: none; }
.msg-row { align-self: flex-start; max-width: 78%; animation: bubbleIn .35s var(--ease) both; }
.msg-bubble { background: #fff; border-radius: 10px; border-top-left-radius: 2px; padding: 6px 9px 5px; box-shadow: 0 1px 1px rgba(0,0,0,.07); }
.msg-bubble p { margin: 0; font-size: 12px; line-height: 1.35; color: #10141a; }
.msg-bubble .msg-time { display: block; text-align: right; font-size: 9px; color: #97a3a9; margin-top: 2px; }
.msg-row--out { align-self: flex-end; }
.msg-row--out .msg-bubble { background: #dcf8c6; border-top-left-radius: 10px; border-top-right-radius: 2px; }
.typing-row {
  align-self: flex-start;
  display: none;
  align-items: center;
  gap: 5px;
  background: #fff;
  border-radius: 10px;
  border-top-left-radius: 2px;
  padding: 8px 10px;
  animation: bubbleIn .3s var(--ease) both;
}
.typing-row.is-visible { display: flex; }
.typing-row span { width: 5px; height: 5px; border-radius: 50%; background: #00a884; animation: typingDot 1s ease-in-out infinite; }
.typing-row span:nth-child(2) { animation-delay: .15s; }
.typing-row span:nth-child(3) { animation-delay: .3s; }

@media (max-width: 900px) {
  .dor1__grid { grid-template-columns: 1fr; }
  .dor1__media { max-width: 480px; margin-inline: auto; }
  .mac-wrap { max-width: 480px; margin-inline: auto; }
  /* Tela mais alta que 8/5 aqui: no notebook em largura de celular a área de
     mensagens (.mac-main__body) sobrava baixa demais pra mostrar mais de
     1-2 balões por vez — a conversa "sumia" rápido demais mesmo com o
     ritmo mais lento do JS (ver initWhatsappDemo em main.js). */
  .mac-screen { aspect-ratio: 4 / 3.4; }
  .solution-quote { position: static; max-width: none; margin: -22px 12px 0; }
  .solution-quote--stacked { margin: 0; max-width: 420px; }
}
@media (max-width: 560px) {
  .mac-sidebar { width: 44%; }
  .mac-chat-item__preview { display: none; }
}

/* --- Dor 2 · Canais de venda --- */
.dor2__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(56px, 9vw, 120px);
  align-items: center;
}
.dor2__copy { display: flex; flex-direction: column; gap: 18px; }
.dor2__media { position: relative; display: flex; flex-direction: column; align-items: center; gap: 20px; padding-bottom: 56px; }

/* Calendário (adaptado de 21st.dev/shadcn/calendar-variable-size) */
.cal-card {
  width: 100%;
  max-width: 380px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 20px;
  animation: fadeInUp .5s var(--ease) both;
}
.cal-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-card__month { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--ink); }
.cal-nav { width: 28px; height: 28px; border-radius: 8px; border: none; background: none; color: var(--muted); font-size: 1rem; line-height: 1; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-grid--weekdays span {
  display: block;
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--laranja-hover);
  padding-bottom: 8px;
}
.cal-grid--days { row-gap: 4px; }
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: 10px;
  position: relative;
}
.cal-day--outside { color: var(--muted); opacity: .4; font-weight: 500; }
.cal-day--today::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--laranja);
}
.cal-day--range-start, .cal-day--range-end { background: var(--azul); color: #fff; }
.cal-day--range-start { border-radius: 10px 0 0 10px; }
.cal-day--range-end { border-radius: 0 10px 10px 0; }
.cal-day--range-mid { background: var(--azul-soft); color: var(--azul); border-radius: 0; }

.cal-toast, .cal-loss {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow-hover);
  animation: calPop .4s var(--ease) both;
}
.cal-toast { left: 0; bottom: 8px; border-left: 4px solid var(--azul); animation-delay: .7s; }
.cal-toast svg { width: 20px; height: 20px; color: var(--azul); flex: none; }
.cal-toast strong { display: block; font-family: var(--font-display); font-size: .85rem; color: var(--ink); }
.cal-toast span { font-size: .72rem; color: var(--muted); }
.cal-loss { right: 0; bottom: -32px; border-left: 4px solid #d64545; padding: 8px 14px; animation-delay: 1.05s; }
.cal-loss svg { width: 16px; height: 16px; color: #d64545; flex: none; }
.cal-loss strong { font-family: var(--font-display); font-size: 1rem; color: #d64545; }
.cal-loss span { font-size: .7rem; color: var(--muted); display: block; }

@keyframes calPop {
  from { opacity: 0; transform: translateY(6px) scale(.94); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .dor2__grid { grid-template-columns: 1fr; }
  .dor2__media { order: -1; padding-bottom: 64px; }
}
@media (max-width: 480px) {
  /* "Reserva confirmada" e "-16% em comissão" cabem lado a lado nessa
     largura — troca de empilhado (column) pra linha com wrap, calendário e
     citação seguem ocupando a linha inteira sozinhos. */
  .cal-toast, .cal-loss { position: static; margin: 0; width: fit-content; }
  .dor2__media {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 0;
  }
  .dor2__media > .solution-quote--stacked,
  .dor2__media > .cal-card { flex: 1 1 100%; }
}

/* --- Dor 3 · Overbooking --- */
.dor3 { background: var(--bg2); }
.dor3__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(56px, 9vw, 120px);
  align-items: center;
}
.dor3__copy { display: flex; flex-direction: column; gap: 18px; }
.dor3__media { display: flex; flex-direction: column; align-items: center; }

/* Mockup de iPhone/iMessage. Recortado a meia altura com fade — o celular não
   aparece inteiro, a conversa "escorre" pro cartão de citação, que começa
   exatamente onde a transparência começa. */
.iphone-wrap { position: relative; z-index: 1; width: 100%; max-width: 300px; height: 510px; overflow: hidden; margin-bottom: -70px; }
.iphone-wrap::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 72px;
  background: linear-gradient(to top, var(--bg2) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 3;
}
.iphone-frame { position: relative; background: #1c1f23; border-radius: 46px; padding: 14px; box-shadow: var(--shadow-card); }
.iphone-screen { position: relative; aspect-ratio: 9 / 19.3; border-radius: 32px; overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.iphone-notch { position: absolute; top: 26px; left: 50%; transform: translateX(-50%); width: 84px; height: 24px; background: #000; border-radius: var(--r-pill); z-index: 2; }
.iphone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 2px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  flex: none;
}
.iphone-status__icons { display: flex; align-items: center; gap: 4px; color: var(--ink); }
.iphone-status__icons svg { display: block; }
.iphone-header { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 2px 12px 12px; flex: none; }
.iphone-header__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--azul-soft);
  color: var(--azul);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.iphone-header__name { font-size: 11.5px; font-weight: 700; color: var(--ink); }
.iphone-body { flex: 1; min-height: 0; overflow-y: auto; scrollbar-width: none; padding: 6px 14px; display: flex; flex-direction: column; gap: 7px; }
.iphone-body::-webkit-scrollbar { display: none; }
.imsg-row { align-self: flex-start; max-width: 80%; animation: bubbleIn .35s var(--ease) both; }
.imsg-row--out { align-self: flex-end; }
.imsg-bubble { padding: 9px 13px 8px; border-radius: 18px; border-bottom-left-radius: 5px; background: #eceef0; }
.imsg-bubble p { margin: 0; font-size: 12.5px; line-height: 1.36; color: var(--ink); }
.imsg-row--out .imsg-bubble { background: var(--azul); border-bottom-left-radius: 18px; border-bottom-right-radius: 5px; }
.imsg-row--out .imsg-bubble p { color: #fff; }
.imsg-typing {
  align-self: flex-start;
  display: none;
  align-items: center;
  gap: 5px;
  background: #eceef0;
  border-radius: 18px;
  border-bottom-left-radius: 5px;
  padding: 10px 14px;
  animation: bubbleIn .3s var(--ease) both;
}
.imsg-typing.is-visible { display: flex; }
.imsg-typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--muted); animation: typingDot 1s ease-in-out infinite; }
.imsg-typing span:nth-child(2) { animation-delay: .15s; }
.imsg-typing span:nth-child(3) { animation-delay: .3s; }
.iphone-home { flex: none; width: 120px; height: 5px; border-radius: var(--r-pill); background: rgba(0, 0, 0, .25); margin: 8px auto 12px; }
.dor3__media .solution-quote--stacked { position: relative; z-index: 4; }

@media (max-width: 900px) {
  .dor3__grid { grid-template-columns: 1fr; }
  .dor3__media { order: -1; }
}

/* --- Dor 4 · Instagram --- */
.dor4__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.dor4__copy { display: flex; flex-direction: column; gap: 18px; }
/* Frase de dor mais longa que as outras: reduzida só aqui pra não pesar. */
.dor4__copy .h-section-accent { font-size: clamp(1.45rem, 2.6vw, 2.1rem); line-height: 1.24; }
.dor4__media { display: flex; flex-direction: column; align-items: center; gap: 28px; }

/* Trio de celulares: um reels em destaque na frente, dois com os comentários
   girados atrás — nenhum comentário pode ficar tapado pelo celular da frente. */
.im4-phones { position: relative; width: 100%; max-width: 600px; height: 560px; }
/* Wrapper só existe pra reorganizar o layout no mobile (ver @media 620px
   abaixo) — no desktop vira invisível pro layout: os filhos continuam
   posicionados direto contra .im4-phones (position:absolute), como se o
   wrapper não existisse. */
.im4-phones__pair { display: contents; }
.im4-phone { position: absolute; top: 0; }
.im4-phone .iphone-frame { padding: 11px; border-radius: 38px; }
.im4-phone .iphone-screen { aspect-ratio: auto; height: auto; border-radius: 27px; overflow: hidden; }
.im4-phone--left, .im4-phone--right { width: 196px; z-index: 1; }
/* Transform final (rotação + deslocamento) embutido na própria keyframe — uma
   animation com "both" prevalece sobre um transform declarado à parte. */
.im4-phone--left { left: 0; top: 136px; animation: im4-reveal-left .55s var(--ease) .05s both; }
.im4-phone--right { right: 0; top: 136px; animation: im4-reveal-right .55s var(--ease) .15s both; }
.im4-phone--left .iphone-notch, .im4-phone--right .iphone-notch { width: 56px; height: 17px; top: 17px; }
.im4-phone--left .iphone-status, .im4-phone--right .iphone-status { font-size: 10px; padding: 9px 15px 2px; }
.im4-phone--front { left: 50%; top: 108px; width: 196px; z-index: 3; animation: im4-reveal-front .55s var(--ease) .3s both; }
.im4-phone--front .iphone-notch { width: 62px; height: 18px; top: 18px; }

@keyframes im4-reveal-left {
  from { opacity: 0; transform: translateY(14px) translateX(-22px) rotate(-9deg); }
  to   { opacity: 1; transform: translateX(-22px) rotate(-9deg); }
}
@keyframes im4-reveal-right {
  from { opacity: 0; transform: translateY(14px) translateX(22px) rotate(9deg); }
  to   { opacity: 1; transform: translateX(22px) rotate(9deg); }
}
@keyframes im4-reveal-front {
  from { opacity: 0; transform: translateY(14px) translateX(-50%); }
  to   { opacity: 1; transform: translateX(-50%); }
}

/* Tela do reels (celular da frente): foto real como capa do vídeo, com
   degradê escuro por cima só pra manter os ícones/texto brancos legíveis. */
.reels-screen {
  position: relative;
  height: 400px;
  background: url('../../imagens/reels-instagram.jpg') center 18%/cover no-repeat;
  overflow: hidden;
}
.reels-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(0, 19, 56, .58) 0%,
    rgba(0, 19, 56, .08) 24%,
    rgba(0, 19, 56, .12) 55%,
    rgba(0, 19, 56, .82) 100%);
}
.reels-status, .reels-back, .reels-viewcount, .reels-actions, .reels-caption {
  text-shadow: 0 1px 5px rgba(0, 8, 24, .5);
}
.reels-status svg, .reels-back svg, .reels-viewcount__play svg, .reels-actions__item svg {
  filter: drop-shadow(0 1px 3px rgba(0, 8, 24, .5));
}
.reels-status {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.reels-status svg { display: block; }
.reels-back { position: absolute; top: 40px; left: 12px; z-index: 2; color: #fff; opacity: .9; }
.reels-back svg { width: 18px; height: 18px; }
.reels-viewcount {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.reels-viewcount__play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  display: flex; align-items: center; justify-content: center;
}
.reels-viewcount__play svg { width: 13px; height: 13px; color: #fff; }
.reels-viewcount strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.reels-viewcount span { font-size: .64rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255, 255, 255, .72); }
.reels-actions { position: absolute; right: 10px; bottom: 78px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.reels-actions__item { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.reels-actions__item svg { width: 18px; height: 18px; color: #fff; }
.reels-actions__item span { font-size: .6rem; font-weight: 600; color: rgba(255, 255, 255, .85); }
.reels-caption { position: absolute; left: 14px; right: 54px; bottom: 16px; z-index: 2; }
.reels-caption strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: .74rem; color: #fff; margin-bottom: 3px; }
.reels-caption p { margin: 0; font-size: .68rem; line-height: 1.35; color: rgba(255, 255, 255, .82); }

/* Tela de comentários (celulares de trás): sem aspect-ratio, cresce o quanto
   os comentários pedirem — conteúdo nunca pode ser cortado. */
.ig-comments-screen { background: #fff; padding-bottom: 6px; }
.ig-comments-header { padding: 8px 14px 9px; border-bottom: 1px solid var(--line); text-align: center; }
.ig-comments-header__bar { width: 30px; height: 4px; border-radius: var(--r-pill); background: #dde1e6; margin: 0 auto 8px; }
.ig-comments-header span { font-family: var(--font-display); font-weight: 700; font-size: 10.5px; color: var(--ink); }
.ig-comment-list { display: flex; flex-direction: column; gap: 13px; padding: 12px 13px 14px; }
.ig-comment { display: flex; align-items: flex-start; gap: 7px; animation: fadeInUp .4s var(--ease) both; }
.ig-comment__avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--azul-soft);
  color: var(--azul);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 9px;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.ig-comment__body { flex: 1; min-width: 0; }
.ig-comment__body p { margin: 0; font-size: 10.5px; line-height: 1.4; color: var(--ink); }
.ig-comment__body p strong { font-weight: 700; margin-right: 3px; }
.ig-comment__meta { display: flex; gap: 9px; margin-top: 3px; font-size: 8.8px; font-weight: 600; color: var(--muted); }
.ig-comment__heart { width: 9px; height: 9px; margin-top: 3px; color: #c7cbd1; flex: none; }

@media (max-width: 900px) {
  .dor4__grid { grid-template-columns: 1fr; }
  .dor4__media { order: -1; }
}
/* Tela estreita: o leque de 3 celulares fica apertado, troca pra reels em
   cima (linha própria) e os 2 prints de comentário lado a lado embaixo —
   empilhar os 3 fazia os celulares de trás ficarem largos e baixos demais
   pra altura do conteúdo (proporção de tablet, não de smartphone). Largura
   reduzida em vez de deixar a tela crescer só em altura resolve a
   proporção sem cortar comentário nenhum (regra documentada acima). */
@media (max-width: 620px) {
  /* .im4-phones vira uma coluna simples: reels em cima, o par de comentário
     embaixo. Empilhar via flex-wrap (like antes) dependia do tamanho do
     reels pra "empurrar" o par pra próxima linha — quebrava sempre que o
     reels encolhia o suficiente pra sobrar espaço do lado dele. O wrapper
     .im4-phones__pair isola o par num container próprio, sem depender de
     quebra de linha nenhuma. */
  .im4-phones {
    position: static;
    height: auto;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .im4-phone { position: static; animation: none; opacity: 1; }
  .im4-phone--front { order: -1; width: 210px; }
  .im4-phones__pair {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-start;
  }
  /* Mesma largura do celular do reels (210px, .im4-phone--front acima) pros
     3 ficarem realmente do mesmo tamanho — antes os dois de trás eram bem
     menores. Rotação + margem negativa fazem eles se sobreporem, no
     espírito do leque do desktop, em vez de ficarem lado a lado colados. */
  .im4-phone--left, .im4-phone--right { flex: none; width: 210px; }
  .im4-phone--left { transform: rotate(-7deg); z-index: 1; margin-right: -112px; }
  .im4-phone--right { transform: rotate(7deg); z-index: 2; margin-top: 16px; }
  /* Altura travada igual a do reels (400px de tela, .reels-screen acima) —
     mesmo motivo do width: os 3 celulares precisam ter o mesmo tamanho.
     Sobra de comentário funde num degradê em vez de cortar seco. */
  .im4-phone--left .iphone-screen, .im4-phone--right .iphone-screen { height: 400px; }
  .im4-phone--left .iphone-screen::after, .im4-phone--right .iphone-screen::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 44px;
    background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
  }
  /* Coluna mais estreita nesse par de celulares: "3 sem" quebrava entre o
     número e a palavra por falta de espaço. */
  .ig-comment__meta span { white-space: nowrap; }
}

/* --- Dor 5 · Checklist --- */
.dor5 { background: var(--bg2); }
.dor5__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(56px, 9vw, 120px);
  align-items: center;
}
.dor5__copy { display: flex; flex-direction: column; gap: 18px; }
.dor5__copy .h-section-accent { font-size: clamp(1.38rem, 2.6vw, 2.1rem); line-height: 1.24; }
.dor5__media { display: flex; flex-direction: column; align-items: center; gap: 28px; }

/* Os dois cards (checkin/checkout) ocupam a mesma caixa, empilhados via
   position:absolute, e alternam com opacity+translateY. */
.checklist-stage { position: relative; width: 100%; max-width: 420px; min-height: 300px; }
.checklist-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 26px 24px;
  border-radius: var(--r-card);
  background: var(--bg2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.checklist-card.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
/* Selo em arco/portal: primeira aparição do motivo de marca nesta página. */
.checklist-badge {
  align-self: flex-start;
  padding: 7px 18px 8px;
  border-radius: 14px 14px 4px 4px;
  background: var(--azul);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .82rem;
}
.checklist-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.checklist-item { display: flex; align-items: center; gap: 14px; }
.checklist-check {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  border: 2px solid var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.checklist-check__icon { width: 15px; height: 15px; color: #fff; opacity: 0; transform: scale(.5); transition: opacity .2s var(--ease), transform .2s var(--ease); }
.checklist-item.is-checked .checklist-check { background: var(--azul); border-color: var(--azul); }
.checklist-item.is-checked .checklist-check__icon { opacity: 1; transform: scale(1); }
.checklist-label { position: relative; font-family: var(--font-body); font-size: 1rem; color: var(--ink); line-height: 1.3; }
/* Traço ondulado (adaptado de 21st.dev/@arhamkhnz/playful-todolist): o path usa
   pathLength="1", então stroke-dasharray/stroke-dashoffset viram só 1 -> 0. */
.checklist-strike { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 100%; height: 22px; pointer-events: none; overflow: visible; }
.checklist-strike path { stroke: var(--azul); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset .5s var(--ease); }
.checklist-item.is-checked .checklist-strike path { stroke-dashoffset: 0; }

@media (max-width: 900px) {
  .dor5__grid { grid-template-columns: 1fr; }
  .dor5__media { order: -1; }
}
@media (max-width: 480px) {
  .checklist-stage { max-width: 320px; min-height: 280px; }
  .checklist-card { padding: 22px 20px 20px; }
  .checklist-label { font-size: .875rem; }
}

/* --- Prévia de integrações --- */
.integr__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(56px, 9vw, 120px);
  align-items: center;
}
.integr__copy { display: flex; flex-direction: column; gap: 18px; }
.integr__media { position: relative; display: flex; justify-content: center; }
/* Cluster em pirâmide (4-5-4, adaptado de 21st.dev/meschacirung/integrations-3)
   com vinheta radial por cima: fileiras curtas em cima/embaixo, larga no meio. */
.integr-cluster { position: relative; z-index: 1; width: fit-content; max-width: 100%; margin-inline: auto; }
.integr-cluster::after {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 2;
  background: radial-gradient(circle, transparent 42%, var(--bg) 88%);
  pointer-events: none;
}
.integr-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-block: 5px; }
/* Cada logo já vem como quadrado colorido tipo ícone de app: card claro e
   quase vazio ao redor, nada de sombra cinza genérica por trás de cada um. */
.integr-chip {
  flex: none;
  width: 76px;
  height: 76px;
  border-radius: 10px;
  background: var(--bg2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.integr-chip:hover { transform: translateY(-3px); border-color: var(--azul-focus); }
.integr-chip img { width: 34px; height: 34px; border-radius: 5px; object-fit: cover; display: block; }
/* Quebra de linha manual pro cluster mobile (ver @media 560px abaixo) — some
   por padrão, os 3 .integr-row do desktop (4-5-4) já quebram sozinhos por
   serem containers flex próprios nessa largura. */
.integr-break { display: none; }

@media (max-width: 900px) {
  .integr__grid { grid-template-columns: 1fr; }
  .integr__media { order: -1; }
}
@media (max-width: 560px) {
  .integr-chip { width: 56px; height: 56px; }
  .integr-chip img { width: 26px; height: 26px; }
  /* Nessa largura, a fileira de 5 ícones (row do meio) não cabia mais numa
     linha só e um ícone sobrava sozinho numa 4ª linha, quebrando a pirâmide.
     Achata os 3 .integr-row (viram display:contents) e redistribui os 13
     ícones em 4 linhas de 3-4-4-2 via os spans .integr-break, que forçam a
     quebra em posições fixas independente da largura da tela. */
  .integr-cluster { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .integr-row { display: contents; }
  .integr-break { display: block; flex-basis: 100%; width: 0; height: 0; }
}

/* --- Prévia de funcionalidades ("O que você ganha"): cards lado a lado,
   rotação alternada pra lembrar fotos soltas — inspirado em
   21st.dev/chamaac/how-it-works, adaptado de empilhado pra lado a lado, sem as
   linhas de conexão (aqui são 4 funcionalidades, não passos sequenciais).
   Fundo --bg2 (branco) pra alternar com a seção de integrações antes dela
   (ambas caíam no --bg padrão e se fundiam sem separação visual, ajuste
   12/08) — os cards continuam se destacando por `--shadow-card`, não mais
   pela diferença de tom com o fundo. --- */
.func-preview { background: var(--bg2); }
.func-preview .section__head {
  align-items: center;
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
}
.func-board {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 40px);
  margin-top: clamp(40px, 6vw, 64px);
}
.func-card {
  position: relative;
  width: 240px;
  background: var(--bg2);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 30px 22px 26px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.func-card:nth-child(odd) { transform: rotate(-2.5deg); }
.func-card:nth-child(even) { transform: rotate(2.5deg); }
.func-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: var(--shadow-hover);
  z-index: 2;
}
/* Selo do ícone: mesmo padrão do .card-highlight__seal (COMPONENTS.md), só
   menor — círculo tingido, ícone sempre azul (laranja em ícone inteiro sobre
   fundo claro falha contraste AA, ver DESIGN.md §5). A cor do selo alterna
   azul/laranja por card. */
.func-card__badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.func-card--azul .func-card__badge { background: var(--azul-soft); }
.func-card--laranja .func-card__badge { background: var(--laranja-soft); }
.func-card__icon {
  width: 26px;
  height: 26px;
  color: var(--azul);
}
.func-card h3 { margin-bottom: 6px; }
.func-card p { color: var(--muted); font-size: .95rem; line-height: 1.5; margin: 0; }
.func-board__more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: clamp(40px, 6vw, 56px);
  text-align: center;
}
.func-board__more p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--azul);
  margin: 0;
}
@media (max-width: 900px) {
  .func-card:nth-child(odd) { transform: rotate(-1.5deg); }
  .func-card:nth-child(even) { transform: rotate(1.5deg); }
}
@media (max-width: 560px) {
  .func-board { gap: 44px 0; }
  .func-card { width: 100%; max-width: 300px; }
  .func-card:nth-child(odd),
  .func-card:nth-child(even) { transform: none; }
  .func-card:hover { transform: translateY(-4px); }
}

/* --- CTA das seções de dor: mesmo botão primário abaixo do texto de cada dor --- */
.dor-cta { align-self: flex-start; margin-top: 4px; }

/* --- CTA band --- */
.cta-band {
  background: var(--azul);
  color: #fff;
  border-radius: var(--r-card);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-band h2 { color: var(--laranja); }
.cta-band p { color: var(--azul-light); max-width: 50ch; }

/* --- Footer (adaptado de 21st.dev/prebuiltui/footer-1: logo + descrição no
   topo, divisor, linha de links + redes, divisor, copyright) — fundo azul
   cheio, segundo momento full-color do site além da CTA band, pedido do
   Fabiano --- */
.footer {
  background: var(--azul);
  padding-block: clamp(48px, 8vw, 72px) 0;
}
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding-bottom: clamp(32px, 5vw, 40px);
}
.footer__logo img { height: 48px; width: auto; }
.footer__tagline {
  max-width: 46ch;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--azul-light);
  margin: 0;
}
.footer__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-block: 28px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-control);
  background: var(--laranja);
  color: var(--azul);
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.footer__social a:hover { background: var(--laranja-hover); transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; display: block; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-block: 20px;
}
.footer__bottom p {
  margin: 0;
  font-size: .82rem;
  color: var(--azul-light);
  text-align: center;
}
@media (max-width: 640px) {
  .footer__row { flex-direction: column; align-items: center; text-align: center; }
}

.channel-badge {
  width: 48px; height: 48px;
  background: var(--azul-soft);
}

/* --- Formulario --- */
.contato__form, .contato__confirmacao { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .9rem; font-weight: 500; color: var(--muted); }
.field input, .field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-control);
  background: var(--bg);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--azul);
  box-shadow: 0 0 0 3px var(--azul-focus);
}

/* --- Sobre · A origem: acordeão + foto com selo (prototipado em
   docs/sketches/sobre-origem-preview.html, aprovado 12/08) --- */
#sobre .container { position: relative; z-index: 1; }
.origin__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.origin__copy { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 40px); }
.origin__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.28;
  margin: 0;
  color: var(--ink);
  white-space: nowrap;
}

.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 2px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
}
.accordion__trigger:hover { color: var(--laranja-hover); }
.accordion__icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--laranja-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--laranja-hover);
  transition: transform .5s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.accordion__icon svg { width: 15px; height: 15px; transition: transform .5s var(--ease); }
.accordion__item.is-open .accordion__trigger { color: var(--laranja-hover); }
.accordion__item.is-open .accordion__icon { background: var(--laranja); color: var(--ink); }
.accordion__item.is-open .accordion__icon svg { transform: rotate(180deg); }
.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--ease);
}
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__panel-inner { overflow: hidden; min-height: 0; }
.accordion__panel p {
  margin: 0;
  padding: 0 2px 22px;
  max-width: 54ch;
  font-size: .98rem;
  line-height: 1.65;
  color: var(--muted);
}

.origin__media { position: relative; }
.origin__frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--azul-soft);
}
.origin__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.origin__badge {
  position: absolute;
  left: 20px; bottom: 20px;
  max-width: calc(100% - 40px);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(10px) saturate(1.3);
  -webkit-backdrop-filter: blur(10px) saturate(1.3);
  padding: 12px 20px 14px;
  border-radius: var(--r-control);
  box-shadow: var(--shadow-card);
}
.origin__badge-title { display: block; font-family: var(--font-display); font-weight: 700; font-size: .88rem; color: var(--ink); white-space: nowrap; }
.origin__badge-sub { display: block; font-size: .74rem; color: var(--muted); margin-top: 2px; white-space: nowrap; }
.origin__badge-sub strong { color: var(--laranja-hover); font-weight: 600; }

@media (max-width: 960px) {
  .origin__grid { grid-template-columns: 1fr; }
  .origin__media { order: -1; max-width: 420px; margin-inline: auto; width: 100%; }
  .origin__title { white-space: normal; font-size: clamp(1.6rem, 5vw, 2.1rem); }
}
@media (max-width: 640px) {
  .accordion__trigger { font-size: 1rem; }
  .origin__badge { left: 14px; bottom: 14px; padding: 10px 16px 12px; }
}

/* --- Sobre · Pra quem é: cabeçalho centralizado + cards separados,
   selo circular alternando azul/laranja (mesmo padrão do .func-card) --- */
.quem { background: var(--bg2); }
.quem__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 76px);
}
.quem__head .lead { max-width: 46ch; margin-inline: auto; }

.people-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px 24px; }
.people-card {
  position: relative;
  background: var(--bg2);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 26px 22px 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.people-card:nth-child(odd) { transform: rotate(-1.4deg); }
.people-card:nth-child(even) { transform: rotate(1.4deg); }
.people-card:hover { transform: rotate(0deg) translateY(-6px); box-shadow: var(--shadow-hover); z-index: 2; }
.people-card__badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.people-card--azul .people-card__badge { background: var(--azul-soft); }
.people-card--laranja .people-card__badge { background: var(--laranja-soft); }
.people-card__icon { width: 23px; height: 23px; color: var(--azul); }
.people-card h3 { margin: 0 0 6px; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); }
.people-card p { margin: 0; font-size: .87rem; line-height: 1.5; color: var(--muted); }

@media (max-width: 960px) { .people-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) {
  .people-grid { grid-template-columns: 1fr; }
  .people-card:nth-child(odd), .people-card:nth-child(even) { transform: none; }
  .people-card:hover { transform: translateY(-4px); }
}

/* --- Sobre · Como construímos: cabeçalho centralizado + 3 cards numerados
   (adaptado de 21st.dev/7ovr/how-it-works-1) --- */
.build__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 76px);
}
.build-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; max-width: 980px; margin-inline: auto; }
.build-card {
  position: relative;
  background: var(--bg2);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 40px 26px 32px;
  text-align: center;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.build-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.build-card__number {
  position: absolute;
  top: 2px; right: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--azul-soft);
  z-index: 0;
  user-select: none;
}
.build-card--laranja .build-card__number { color: var(--laranja-soft); }
.build-card__badge {
  position: relative; z-index: 1;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  background: var(--azul-soft);
}
.build-card--laranja .build-card__badge { background: var(--laranja-soft); }
.build-card__icon { width: 26px; height: 26px; color: var(--azul); }
.build-card h3 { position: relative; z-index: 1; margin: 0 0 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--ink); }
.build-card p { position: relative; z-index: 1; margin: 0 auto; max-width: 32ch; font-size: .94rem; line-height: 1.6; color: var(--muted); }

@media (max-width: 960px) { .build-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* --- Sobre · O que não fazemos: citação central com glow
   (adaptado de 21st.dev/designali-in/glow) --- */
.naofazemos { position: relative; overflow: hidden; background: var(--bg2); }
.naofazemos__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.naofazemos__glow::before, .naofazemos__glow::after {
  content: "";
  position: absolute;
  left: 50%; top: 40%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.naofazemos__glow::before {
  width: 720px; height: 420px;
  background: radial-gradient(ellipse at center, rgba(0, 40, 121, .14) 0%, rgba(0, 40, 121, 0) 65%);
}
.naofazemos__glow::after {
  width: 360px; height: 220px;
  background: radial-gradient(ellipse at center, rgba(253, 172, 1, .16) 0%, rgba(253, 172, 1, 0) 65%);
}
.naofazemos .container { position: relative; z-index: 1; }
.naofazemos__inner { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 760px; margin-inline: auto; }
.naofazemos__sub { margin: 10px 0 0; font-size: .95rem; color: var(--muted); }
.naofazemos__quote-wrap { position: relative; margin-top: clamp(36px, 5vw, 56px); }
.naofazemos__mark {
  position: absolute;
  top: -46px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  color: var(--azul-soft);
  z-index: 0;
  user-select: none;
}
.naofazemos__quote {
  position: relative; z-index: 1;
  margin: 0;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.55;
  letter-spacing: -.01em;
  color: var(--ink);
}
.naofazemos__quote strong { font-weight: 700; color: var(--azul); }

@media (max-width: 640px) { .naofazemos__mark { font-size: 5rem; top: -34px; } }

/* --- Sobre · Quem está por trás: foto + card sobreposto
   (adaptado de 21st.dev/arunachalam/profile-card-testimonial-carousel);
   a citação reaproveita o .solution-quote (já usado nas seções de dor da Home) --- */
.founder__eyebrow-wrap { max-width: 940px; margin-inline: auto; margin-bottom: 20px; }
.founder__layout { position: relative; display: flex; align-items: center; justify-content: center; max-width: 940px; margin-inline: auto; }
.founder__photo-wrap { position: relative; width: 420px; aspect-ratio: 3 / 4; flex-shrink: 0; z-index: 0; }
.founder__photo { width: 100%; height: 100%; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); }
.founder__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder__quote { max-width: 230px; padding: 16px 18px 14px; }
.founder__quote::before { font-size: 2.6rem; top: -12px; left: 14px; }
.founder__quote p { font-size: .8rem; }
.founder__card {
  position: relative; z-index: 1;
  background: var(--bg2);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-hover);
  padding: clamp(30px, 4vw, 44px);
  margin-left: -70px;
  max-width: 460px;
}
.founder__name { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 2.3vw, 1.8rem); color: var(--ink); margin: 0 0 10px; }
.founder__role {
  display: inline-block;
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--azul);
  background: var(--azul-soft);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.founder__bio { margin: 0; font-size: .98rem; line-height: 1.68; color: var(--ink); }
.founder__bio a { color: var(--azul); font-weight: 600; text-decoration: underline; text-decoration-color: var(--azul-focus); text-underline-offset: 2px; }
.founder__bio a:hover { color: var(--azul-hover); }

@media (max-width: 960px) {
  .founder__layout { flex-direction: column; }
  .founder__photo-wrap { width: 100%; max-width: 320px; margin-inline: auto; }
  .founder__card { margin-left: 0; margin-top: -36px; max-width: 92%; padding-top: 52px; }
}
/* Abaixo de 900px o .solution-quote já vira estático/empilhado (regra
   sitewide em @media (max-width:900px), seção Dor 1) — a citação deixa de
   flutuar sobre a foto, então o wrapper não pode mais forçar aspect-ratio
   nela (senão o quote estático estoura a caixa). A foto passa a se moldar
   sozinha. */
@media (max-width: 900px) {
  .founder__photo-wrap { aspect-ratio: auto; }
  .founder__photo { aspect-ratio: 3 / 4; }
  /* .founder__card sobe -36px (regra acima) pra sobrepor a base da foto de
     propósito — mas nessa largura a citação virou conteúdo estático logo
     abaixo da foto (mesma regra sitewide), então era o texto dela, não a
     foto, que ficava por baixo do card e cortado. Cria uma folga do
     tamanho do overlap pra sobra cair em espaço vazio, não em texto. */
  .founder__quote { margin-bottom: 44px; }
}
@media (max-width: 640px) {
  .founder__quote { max-width: none; }
}
.field textarea { resize: vertical; }

/* --- Funcionalidades (página): hero colagem + 7 seções, prototipado em
   docs/sketches/funcionalidades-preview.html, comparado com o Fabiano antes
   de portar. Grid genérico .f-grid/.f-copy/.f-media reaproveitado por várias
   seções da página em vez de duplicar um `__grid` por seção (dor1__grid,
   dor2__grid etc.) — simplificação deliberada, mesmo resultado visual. --- */
.f-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(56px, 9vw, 120px);
  align-items: center;
}
.f-grid--reverse { grid-template-columns: 1fr 1.1fr; }
.f-grid--reverse > .f-media { order: -1; }
.f-copy { display: flex; flex-direction: column; gap: 18px; }
.f-media { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; }
@media (max-width: 900px) {
  .f-grid, .f-grid--reverse { grid-template-columns: 1fr; }
  .f-grid--reverse > .f-media { order: -1; }
}
.h-nowrap { white-space: nowrap; }
@media (max-width: 960px) { .h-nowrap { white-space: normal; } }

/* Cabeçalho centralizado (título + texto + CTA) nas 4 seções da página que
   usam .section__head — a base de .section__head é alinhada à esquerda por
   padrão (mesma lógica do .func-preview .section__head já existente). */
.func-reservas .section__head,
.func-tarifas .section__head,
.func-equipe .section__head,
.func-site-completo .section__head {
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}
.func-reservas .section__head .dor-cta,
.func-tarifas .section__head .dor-cta,
.func-equipe .section__head .dor-cta {
  align-self: center;
}

/* Título mais longo que o normal nesta seção: reduz a fonte pra caber na
   coluna sem quebrar no meio da frase (mesmo ajuste feito na Dor 5 da Home) */
.func-hospedes .h-section-accent { font-size: clamp(1.38rem, 2.6vw, 2.1rem); line-height: 1.24; }
@media (max-width: 640px) {
  /* No mobile o piso de 1.38rem do clamp acima ficava pequeno demais
     perto do resto dos títulos de seção do site — aumenta só o piso,
     o teto de 2.1rem (que já governa o desktop) continua o mesmo. */
  .func-hospedes .h-section-accent { font-size: clamp(1.7rem, 6vw, 2.1rem); }
}

/* --- Hero da Funcionalidades: colagem notebook + celular, inspirada em
   21st.dev/vaib215/hero-with-product-mockup, remixada com nossos mockups.
   Reaproveita .mac-lid/.mac-screen/.mac-base e .iphone-frame/.iphone-screen/
   .iphone-notch já existentes (Dor 1/3), com bezel mais fino só aqui
   (.hero-laptop/.hero-phone escopam a variação, não mexem no padrão base). --- */
.hero-stack { position: relative; width: 100%; max-width: 480px; padding: 30px 26px 66px; }
.hero-stack__card { position: absolute; inset: 50px 30px 70px; border-radius: var(--r-card); z-index: 0; opacity: .8; }
.hero-stack__card--laranja { background: var(--laranja-light); transform: rotate(8deg); }
.hero-stack__card--azul { background: var(--azul-light); transform: rotate(4deg); }

.hero-laptop { position: relative; z-index: 1; width: 100%; transform: rotate(-2deg); }
.hero-laptop .mac-lid { padding: 7px 7px 0; border-radius: 14px 14px 5px 5px; }
.hero-laptop .mac-base { height: 9px; border-radius: 0 0 9px 9px; }
.hero-laptop .mac-base::before { width: 70px; height: 3px; border-radius: 0 0 5px 5px; }
.hero-panel-sidebar { width: 34%; flex: none; background: var(--bg); border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 3px; padding: 14px 10px; }
.hero-panel-sidebar__logo { width: 22px; height: 22px; border-radius: 7px; overflow: hidden; margin-bottom: 10px; }
.hero-panel-sidebar__logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-panel-sidebar__item { font-size: 10px; font-weight: 600; color: var(--muted); padding: 6px 8px; border-radius: 6px; }
.hero-panel-sidebar__item.is-active { background: #fff; color: var(--azul); border: 1px solid var(--line); }
.hero-panel-main { flex: 1; min-width: 0; padding: 16px 16px 0; display: flex; flex-direction: column; gap: 12px; }
.hero-panel-main__label { font-size: 9.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.hero-panel-cal { display: flex; gap: 4px; }
.hero-panel-cal__day { flex: 1; aspect-ratio: 1; border-radius: 6px; background: var(--bg); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 8.5px; font-weight: 700; color: var(--muted); }
.hero-panel-cal__day.is-booked { background: var(--azul-soft); border-color: var(--azul-focus); color: var(--azul); }
.hero-panel-stat { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.hero-panel-stat strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--azul); }
.hero-panel-stat span { font-size: 9px; color: var(--muted); }

.hero-phone { position: absolute; right: -14px; bottom: -26px; z-index: 2; width: 148px; transform: rotate(8deg); }
.hero-phone .iphone-frame { padding: 6px; border-radius: 28px; box-shadow: var(--shadow-hover); }
.hero-phone .iphone-screen { border-radius: 20px; background: linear-gradient(165deg, var(--azul) 0%, var(--azul-hover) 55%, #001238 100%); }
.hero-phone .iphone-notch { width: 40px; height: 10px; top: 10px; }
.hero-phone__time { position: absolute; top: 30px; left: 0; right: 0; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: #fff; z-index: 1; }
.hero-notification { position: absolute; left: 8px; right: 8px; top: 56px; z-index: 1; display: flex; gap: 8px; background: rgba(255, 255, 255, .94); backdrop-filter: blur(6px); border-radius: 12px; padding: 8px 9px; box-shadow: 0 6px 16px rgba(0, 8, 24, .25); }
.hero-notification__icon { flex: none; width: 20px; height: 20px; border-radius: 6px; overflow: hidden; }
.hero-notification__icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-notification__body { min-width: 0; }
.hero-notification__row { display: flex; justify-content: space-between; gap: 6px; margin-bottom: 2px; }
.hero-notification__row strong { font-size: 8.5px; color: var(--ink); }
.hero-notification__row span { font-size: 7.5px; color: var(--muted); }
.hero-notification__body p { margin: 0; font-size: 8.5px; line-height: 1.35; color: var(--ink); }
.hero-notification__body p strong { display: block; font-size: 9px; margin-bottom: 1px; }

@media (max-width: 900px) { .hero-stack { margin-inline: auto; } }
@media (max-width: 480px) {
  .hero-stack { max-width: 320px; padding: 26px 20px 56px; }
  .hero-phone { width: 116px; right: -8px; bottom: -18px; }
  /* O celular encolheu (148 -> 116px) mas o cartão de notificação manteve
     ícone/gap/padding/fonte no tamanho original — sobrava pouquíssima
     largura pro texto, que quebrava em uma ou duas palavras por linha.
     Reduz o cartão junto, na mesma proporção do celular. */
  .hero-notification { left: 6px; right: 6px; gap: 6px; padding: 6px 7px; }
  .hero-notification__icon { width: 16px; height: 16px; }
  .hero-notification__row strong { font-size: 7.5px; }
  .hero-notification__row span { font-size: 6.5px; }
  .hero-notification__body p { font-size: 7.5px; }
  .hero-notification__body p strong { font-size: 7px; }
}

/* --- Seção Calendário: chips de canal sincronizado, extensão do cal-card ---
   .cal-toast normalmente flutua (position: absolute) sobre o calendário da
   Home — aqui ele fica no fluxo normal, empilhado acima da linha de canais. */
.func-calendario .cal-toast { position: static; }
.cal-sync-row { display: flex; align-items: center; gap: 10px; }
.cal-sync-row span { font-size: .78rem; color: var(--muted); }
.cal-sync-chip { width: 40px; height: 40px; border-radius: 10px; background: var(--bg2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.cal-sync-chip img { width: 22px; height: 22px; border-radius: 4px; object-fit: cover; display: block; }

/* --- Seção Seu site, sua reserva direta: moldura de navegador com widget de
   reserva (adaptado de .origin__frame da Sobre) --- */
.site-frame {
  position: relative;
  width: 100%; max-width: 420px;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--azul-soft);
}
.site-frame__bar { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: var(--bg2); border-bottom: 1px solid var(--line); }
.site-frame__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.site-frame__url { flex: 1; margin-left: 6px; background: var(--bg); border-radius: var(--r-pill); padding: 5px 12px; font-size: .72rem; color: var(--muted); }
.site-frame__body { padding: 32px 24px 28px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.site-frame__body h4 { margin: 0; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.site-frame__body p { margin: 0; font-size: .84rem; color: var(--muted); max-width: 26ch; }
.site-frame__widget { display: flex; align-items: center; gap: 10px; background: var(--bg2); border: 1px solid var(--line); border-radius: var(--r-control); padding: 10px 14px; box-shadow: var(--shadow-card); }
.site-frame__price { font-size: .78rem; color: var(--ink); font-weight: 600; }
.site-frame__widget .btn--shiny { padding: 7px 16px; font-size: .78rem; }
.site-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: var(--r-control);
}
.site-badge__icon { width: 20px; height: 20px; color: var(--laranja-hover); flex: none; }
.site-badge-title { display: block; font-family: var(--font-display); font-weight: 700; font-size: .82rem; color: var(--ink); }
.site-badge-sub { display: block; font-size: .72rem; color: var(--muted); margin-top: 2px; }
.site-badge-sub strong { color: var(--laranja-hover); font-weight: 700; }
@media (max-width: 480px) { .site-frame { max-width: 320px; } }

/* --- Seção Seu site completo: cards no padrão do site (mesmo componente do
   people-card), 3 colunas x 2 linhas --- */
.feature-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.feature-card {
  background: var(--bg2);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 28px 24px 24px;
}
.feature-card__badge { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feature-card--azul .feature-card__badge { background: var(--azul-soft); }
.feature-card--laranja .feature-card__badge { background: var(--laranja-soft); }
.feature-card__icon { width: 22px; height: 22px; color: var(--azul); }
.feature-card h3 { margin: 0 0 6px; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); }
.feature-card p { margin: 0; font-size: .87rem; line-height: 1.5; color: var(--muted); }
@media (max-width: 900px) { .feature-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* --- Página Integrações: hero com ícones flutuantes em anel ao redor do
   título (adaptado de 21st.dev/ravikatiyar162/floating-icons-hero-section,
   reskinado pro motivo de marca: cartão com r-card + sombra azul em vez do
   glassmorphism/sombra cinza do original). Ícones = logos reais dos canais,
   flutuação contínua em CSS + repulsão ao mouse em JS (initOrbitRepulsion). --- */
.hero--centered .hero__copy { max-width: 640px; margin-inline: auto; align-items: center; text-align: center; }
.hero--centered .hero__copy .eyebrow { justify-content: center; }
.hero--centered .hero__cta { margin-top: 30px; }

.orbit { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
/* Alternativa estática pro mobile mais estreito, onde o anel flutuante some
   (ver @media 480px abaixo) — sem ela nenhum ícone de canal aparecia no
   hero. Reaproveita os mesmos .integr-chip/.integr-row da prévia de
   integrações da Home. */
.orbit-fallback { display: none; }
.orbit-icon {
  --radius: clamp(160px, 27vw, 340px);
  position: absolute; top: 50%; left: 50%; width: 0; height: 0;
  transform: rotate(var(--angle)) translate(var(--radius)) rotate(calc(-1 * var(--angle)));
}
.orbit-icon__float { animation: iconFloat var(--float-duration, 7s) ease-in-out infinite; animation-delay: var(--float-delay, 0s); }
.orbit-icon__push { transition: transform .5s var(--ease); pointer-events: auto; }
.orbit-icon__card {
  width: clamp(58px, 8vw, 84px); height: clamp(58px, 8vw, 84px);
  margin: calc(clamp(58px, 8vw, 84px) / -2) 0 0 calc(clamp(58px, 8vw, 84px) / -2);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg2); box-shadow: var(--shadow-card); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 14px;
}
.orbit-icon__card img { width: 100%; height: 100%; object-fit: contain; display: block; }
@keyframes iconFloat { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(0, -10px) rotate(2deg); } }
@media (prefers-reduced-motion: reduce) { .orbit-icon__float { animation: none; } }
@media (max-width: 720px) {
  .orbit-icon:nth-child(4), .orbit-icon:nth-child(6) { display: none; }
  .orbit-icon { --radius: clamp(120px, 34vw, 180px); }
}
@media (max-width: 480px) {
  .orbit { display: none; }
  .orbit-fallback { display: flex; justify-content: center; margin-top: 28px; }
}

/* Cabeçalho centralizado nas seções "Como funciona" e "Outros canais" (mesma
   lógica de override escopado já usada em Funcionalidades). */
.int-como-funciona .section__head,
.int-outros-canais .section__head {
  align-items: center; text-align: center; max-width: 640px; margin-inline: auto;
}

/* .cal-toast é position:absolute por padrão (flutua sobre o calendário do
   hero da Home). Aqui ele empilha no fluxo normal, acima da linha de
   sincronização — mesmo ajuste já feito em .func-calendario. */
.int-booking .cal-toast { position: static; }

/* --- Chip de logo reutilizável (Booking/Airbnb/Outros canais/Pagamento) --- */
.logo-chip { width: 40px; height: 40px; border-radius: 10px; background: var(--bg2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; padding: 6px; flex: none; }
.logo-chip img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo-chip--lg { width: 60px; height: 60px; border-radius: 14px; padding: 10px; box-shadow: var(--shadow-card); }

/* --- Airbnb: cartão de convergência (Airbnb + Booking + site próprio = 1 calendário) --- */
.converge-card { background: var(--bg2); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 32px; max-width: 400px; width: 100%; }
.converge-row { display: flex; align-items: center; justify-content: center; gap: 12px; }
.converge-plus { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--muted); }
.converge-result { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--line); }
.converge-result svg { width: 22px; height: 22px; color: var(--azul); flex: none; }
.converge-result strong { font-size: .95rem; }

/* --- Outros canais: mesmo padrão do .people-grid/.people-card (Funcionalidades), adaptado pra logo --- */
.channel-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.channel-card {
  position: relative; background: var(--bg2); border-radius: var(--r-card); box-shadow: var(--shadow-card);
  padding: 26px 22px 22px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.channel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.channel-card .logo-chip { margin-inline: auto; margin-bottom: 14px; }
.channel-card h3 { margin: 0 0 6px; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); }
.channel-card p { margin: 0; font-size: .87rem; line-height: 1.5; color: var(--muted); }
@media (max-width: 900px) { .channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .channel-grid { grid-template-columns: 1fr; } }

/* --- Pagamento: mockup de cartão de checkout + faixa de outros gateways --- */
.pay-card { width: 100%; max-width: 380px; background: var(--bg2); border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 24px; }
.pay-card__label { font-size: .78rem; color: var(--muted); }
.pay-card__amount { font-family: var(--font-display); font-weight: 800; font-size: 2rem; margin: 4px 0 18px; color: var(--ink); }
.pay-card__methods { display: flex; gap: 10px; margin-bottom: 18px; }
.pay-method { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: var(--r-control); border: 1.5px solid var(--line); font-size: .85rem; font-weight: 600; color: var(--muted); }
.pay-method svg { width: 18px; height: 18px; }
.pay-method--active { border-color: var(--azul); background: var(--azul-soft); color: var(--azul); }
.pay-card__footer { display: flex; align-items: center; gap: 8px; padding-top: 16px; border-top: 1px dashed var(--line); }
.pay-card__footer span { font-size: .75rem; color: var(--muted); }
.pay-toast { display: flex; align-items: center; gap: 10px; background: var(--bg2); border: 1px solid var(--line); border-radius: 12px; padding: 10px 16px; box-shadow: var(--shadow-hover); border-left: 4px solid var(--azul); margin-top: 14px; width: 100%; max-width: 380px; }
.pay-toast svg { width: 20px; height: 20px; color: var(--azul); flex: none; }
.pay-toast strong { display: block; font-family: var(--font-display); font-size: .85rem; color: var(--ink); }
.pay-toast span { font-size: .72rem; color: var(--muted); }

.gateway-strip { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.gateway-strip p { margin: 0; max-width: 46ch; color: var(--muted); font-size: .98rem; }
.gateway-strip__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
@media (max-width: 480px) {
  /* Os 5 chips de 60px + gap de 16px passavam da largura da tela e o
     último quebrava pra uma 2ª linha sozinho. Encolhe o suficiente pra
     caber os 5 numa linha só. */
  .gateway-strip__logos { gap: 10px; }
  .gateway-strip__logos .logo-chip--lg { width: 48px; height: 48px; padding: 8px; }
}

/* --- FAQ: cards elevados com selo numerado, não o .accordion flat da Sobre
   (mais peso visual, pede mais numa página com bastante conteúdo textual). --- */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 90px); align-items: start; }
.faq-intro .btn--ghost {
  display: inline-flex; align-items: center; margin-top: 20px; padding: 11px 22px;
  border: 1.5px solid var(--azul); border-radius: var(--r-pill); color: var(--azul);
  font-weight: 600; font-size: .92rem; text-decoration: none; background: none; transition: background-color .25s var(--ease);
}
.faq-intro .btn--ghost:hover { background: var(--azul-soft); }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--bg2); border-radius: var(--r-card); box-shadow: var(--shadow-card); overflow: hidden; transition: box-shadow .3s var(--ease); }
.faq-item.is-open { box-shadow: var(--shadow-hover); }
.faq-trigger { width: 100%; display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: none; border: none; cursor: pointer; text-align: left; }
.faq-trigger__num { flex: none; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: .82rem; background: var(--azul-soft); color: var(--azul); }
.faq-item:nth-child(even) .faq-trigger__num { background: var(--laranja-soft); color: var(--laranja-hover); }
.faq-trigger__text { flex: 1; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.faq-trigger__icon { flex: none; width: 26px; height: 26px; color: var(--muted); transition: transform .5s var(--ease); }
.faq-item.is-open .faq-trigger__icon { transform: rotate(180deg); color: var(--azul); }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.faq-item.is-open .faq-panel { grid-template-rows: 1fr; }
.faq-panel-inner { overflow: hidden; min-height: 0; }
.faq-panel p { margin: 0; padding: 0 22px 22px 72px; font-size: .95rem; line-height: 1.6; color: var(--muted); }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .feature-cards { grid-template-columns: 1fr; } }

/* --- Popup "Peça uma demonstração": mesmo cartão com sombra azul do resto
   do site, visibility+opacity igual ao .nav__drawer (não some do layout,
   só fica inacessível/invisível até abrir). --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 40, 121, .45);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg2);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-hover);
  padding: 40px;
  transform: translateY(16px) scale(.98);
  transition: transform .3s var(--ease);
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--azul-soft);
  color: var(--azul);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color .2s var(--ease);
}
.modal__close:hover { background: var(--azul-light); }
.modal__close svg { width: 18px; height: 18px; }
.modal__head { margin: 0 32px 24px 0; }
.modal__head .eyebrow { margin: 0 0 6px; }
.modal__head h2 { margin: 0 0 8px; }
.modal__head p { margin: 0; color: var(--muted); font-size: .95rem; }
.form-error {
  margin: 0;
  padding: 10px 14px;
  border-radius: var(--r-control);
  background: #fdecec;
  color: #b3261e;
  font-size: .88rem;
}
@media (max-width: 560px) {
  .modal { padding: 28px 22px; max-height: 100vh; border-radius: 0; }
  .modal-overlay { padding: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .modal-overlay, .modal { transition-duration: .01ms; }
}

/* --- Ações flutuantes: WhatsApp + voltar ao topo (canto inferior direito,
   presentes nas 6 páginas) --- */
.float-actions {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 4vw, 28px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.scroll-top {
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  background: var(--bg2);
  color: var(--azul);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease);
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--azul-soft); border-color: var(--azul); }
.scroll-top svg { width: 20px; height: 20px; }

/* Ícone parado por cima, anel laranja pulsando por baixo — vida sem depender
   de lib de animação nova (Lottie ficaria fora do escopo 100% estático do
   site, decidido com o Fabiano). Respeita a regra global de
   prefers-reduced-motion já declarada no topo do arquivo. */
.whatsapp-float {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: var(--r-pill);
  background: #25d366; /* verde oficial do WhatsApp, não a paleta da marca */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hover);
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.whatsapp-float:hover { background: #1da851; transform: translateY(-2px); }
.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: var(--r-pill);
  background: #25d366;
  opacity: .55;
  animation: whatsapp-pulse 2.6s var(--ease) infinite;
}
.whatsapp-float__icon {
  position: relative;
  z-index: 1;
  width: 27px;
  height: 27px;
}
@keyframes whatsapp-pulse {
  0%   { transform: scale(1);    opacity: .55; }
  100% { transform: scale(1.9);  opacity: 0; }
}

@media (max-width: 640px) {
  .whatsapp-float { width: 52px; height: 52px; }
  .whatsapp-float__icon { width: 24px; height: 24px; }
  .scroll-top { width: 40px; height: 40px; }
  .scroll-top svg { width: 18px; height: 18px; }
}

/* ===== Blog: filtros e grade de cards ===== */
.blog-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.blog-filter__chip {
  --chip: var(--azul);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--chip);
  background: transparent;
  color: var(--chip);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.blog-filter__chip.is-active,
.blog-filter__chip:hover {
  background: var(--chip);
  color: #fff;
}

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

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
  border-radius: var(--r-card);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.blog-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card__cover {
  --chip: var(--azul);
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--chip), color-mix(in srgb, var(--chip) 60%, #fff));
  overflow: hidden;
}

.blog-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__cover--empty { opacity: .85; }

.blog-card__body { padding: 20px; }

.blog-card__tag {
  --chip: var(--azul);
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--chip) 12%, #fff);
  color: var(--chip);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 12px;
}

.blog-card__meta {
  font-size: 13px;
  color: var(--muted);
}

/* ===== Blog: página de post ===== */
.crumbs {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--azul); }
.crumbs__current { color: var(--ink); font-weight: 600; }

.post-hero {
  padding: clamp(120px, 16vh, 180px) 0 40px;
  background: var(--bg2);
}

.post-hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--ink);
  margin: 8px 0;
}

.post-hero__meta { font-size: 14px; color: var(--muted); }

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 40px 0 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; }
}

.post-cover {
  margin: 0 0 32px;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.post-cover img { width: 100%; height: auto; display: block; }

.post-prose :is(h2, h3) { margin-top: 1.6em; }
.post-prose img { border-radius: var(--r-control); max-width: 100%; }

.like {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0;
  padding-top: 24px;
  border-top: 1px solid var(--bg2);
}

.like__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--azul);
  background: transparent;
  color: var(--azul);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.like__btn[aria-pressed="true"],
.like__btn:hover { background: var(--azul); color: #fff; }

.like__heart { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.75; }
.like__btn[aria-pressed="true"] .like__heart { fill: currentColor; }
.like__hint { font-size: 13px; color: var(--muted); }

.post-cta { margin: 24px 0; }

.article-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 32px 0;
  padding: 24px;
  border-radius: var(--r-card);
  background: var(--azul-soft);
}

.article-cta__eyebrow { font-size: 12px; font-weight: 700; color: var(--azul); text-transform: uppercase; }
.article-cta__title { font-family: var(--font-display); font-size: 18px; margin: 6px 0; color: var(--ink); }
.article-cta__text { font-size: 14px; color: var(--muted); margin: 0; }
.article-cta__btn { flex-shrink: 0; }

.post-side { display: flex; flex-direction: column; gap: 20px; }

.side-card {
  padding: 20px;
  border-radius: var(--r-card);
  background: var(--bg2);
}

.side-card__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 12px;
}

.side-cats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.side-cats a { display: flex; align-items: center; gap: 8px; color: var(--muted); text-decoration: none; font-size: 14px; }
.side-cats li.is-current a { color: var(--azul); font-weight: 700; }
.side-dot { --chip: var(--azul); width: 8px; height: 8px; border-radius: 50%; background: var(--chip); }

.side-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.side-tag { font-size: 12px; padding: 4px 10px; border-radius: var(--r-pill); background: #fff; color: var(--muted); }

.side-recent { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.side-recent a { display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; }
.side-recent__thumb { width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--r-control); overflow: hidden; background: var(--azul-soft); }
.side-recent__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.side-recent__t { font-size: 13px; color: var(--ink); line-height: 1.35; }

.blog__empty { grid-column: 1 / -1; }
