/* =================================================================
   Loya · protótipo de homepage
   Layout, componentes e seções
   ================================================================= */

/* ---------- Tipografia ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange-dark);
}
h1 { font-size: 48px; font-weight: 500; letter-spacing: -0.5px; line-height: 1.15; }
h2 { font-size: 32px; font-weight: 500; letter-spacing: -0.3px; line-height: 1.25; }
h3 { font-size: 20px; font-weight: 500; }
.body-lg  { font-size: 16px; line-height: 1.65; color: var(--text-secondary); }
.body-sm  { font-size: 14px; line-height: 1.6;  color: var(--text-secondary); }
.caption  { font-size: 12px; color: var(--text-muted); }
.mono     { font-size: 11px; font-weight: 500; letter-spacing: 0.06em; }

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-y) 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head h2 { margin: .75rem 0 1rem; }
.section-head .body-lg { margin: 0 auto; }

/* ---------- Botões ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--text-dark);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s;
}
.btn-secondary:hover { border-color: var(--orange); }

.btn-outline-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-outline-orange:hover { background: var(--orange); color: white; }

.btn-block { width: 100%; }

/* ---------- Cards ---------- */
.card {
  background: white;
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(255,125,50,.35); transform: translateY(-2px); }

/* =================================================================
   Navbar
   ================================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: white;
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 2rem;
}
.logo {
  font-size: 20px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: -.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.logo-img {
  height: 30px;
  width: auto;
  display: block;
}
.footer .logo-img { height: 34px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover { color: var(--text-dark); }
.nav-cta { text-decoration: none; }

/* =================================================================
   Seção 01 · Hero
   ================================================================= */
.hero {
  background: var(--orange-bg);
  border-bottom: 1px solid var(--orange-border);
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 5rem 0;
}
.hero-copy { flex: 1; }
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
.hero h1 { margin: 1.1rem 0 1.25rem; }
.hero h1 .accent { color: var(--orange); }
.hero-sub { max-width: 380px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--orange-border);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
}
.stat-num {
  display: block;
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-secondary);
  margin-top: .25rem;
}

/* ---------- Phone mockup ---------- */
.phone-side {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-right: 120px; /* espaço pros toasts à direita do phone */
}
.phone-wrapper { position: relative; }

.phone {
  width: 200px;
  height: 380px;
  background: #1C1C2E;
  border-radius: 26px;
  border: 5px solid #2A2A3E;
  padding: 14px 12px 12px;
  animation: float 4s ease-in-out infinite;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(15,26,46,.35);
}
.phone-notch {
  width: 40px;
  height: 4px;
  background: #2A2A3E;
  border-radius: 100px;
  margin: 0 auto 6px;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,.22);
  margin-bottom: 8px;
}

#in-notif {
  background: rgba(60, 180, 60, .12);
  border-radius: 6px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height .25s ease, opacity .2s ease, padding .25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  margin-bottom: 8px;
}
#in-notif .notif-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4CAF50;
  flex-shrink: 0;
}
#notif-text { font-size: 12px; color: #90EE90; font-weight: 500; }

.stamp-card {
  background: var(--orange);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
}
.stamp-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.stamp-biz { font-size: 12px; font-weight: 500; color: white; }
.stamp-count {
  font-size: 11px;
  font-weight: 500;
  color: white;
  background: rgba(255,255,255,.2);
  padding: 2px 8px;
  border-radius: 100px;
}
.stamps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-bottom: 10px;
}
.stamp {
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.stamp-msg {
  font-size: 12px;
  color: rgba(255,255,255,.8);
  text-align: center;
  margin-bottom: 8px;
}
.progress-track {
  background: rgba(255,255,255,.2);
  height: 3px;
  border-radius: 100px;
  overflow: hidden;
}
.progress-track > div {
  background: white;
  height: 100%;
  width: 0%;
  transition: width .5s ease;
}

.phone-row {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 6px;
}
.phone-row.reward { background: rgba(255,255,255,.06); }
.phone-row.activity { background: rgba(255,255,255,.04); }
.phone-row i { font-size: 16px; }
.phone-row.reward i { color: var(--orange); }
.phone-row.activity i { color: #4CAF50; }
.phone-row .pr-title { font-size: 10px; color: rgba(255,255,255,.5); }
.phone-row .pr-sub { font-size: 11px; color: rgba(255,255,255,.85); font-weight: 500; }

.stamp-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--orange);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  transform: scale(0);
  opacity: 0;
  white-space: nowrap;
  z-index: 5;
}

/* ---------- Toasts ---------- */
.toast {
  position: absolute;
  right: -110px;
  background: white;
  border: 0.5px solid rgba(0,0,0,.08);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 8px 20px -10px rgba(15,26,46,.25);
}
.toast.show { animation: toastIn 3.5s ease forwards; }
.toast-1 { top: 40px; }
.toast-2 { top: 150px; }
.toast-3 { top: 260px; }
.toast i { font-size: 18px; }
.toast .ti-star { color: var(--orange); }
.toast .ti-users { color: var(--green); }
.toast .ti-gift { color: var(--purple); }
.toast .t-title { font-size: 12px; font-weight: 500; color: var(--text-dark); }
.toast .t-sub { font-size: 11px; color: var(--text-muted); }

/* =================================================================
   Seção 02 · Ponte
   ================================================================= */
.bridge { background: var(--bg-white); text-align: center; }
.bridge-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: stretch;
}
.bridge-step {
  text-align: left;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--border-light);
  background: white;
  position: relative;
}
.bridge-step.faded { opacity: .55; }
.bridge-step.highlight {
  border: 1.5px solid var(--orange-border);
  background: var(--orange-bg);
}
.bridge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 1rem;
}
.bridge-step h3 { margin-bottom: .5rem; }
.bridge-arrow {
  display: none;
}

/* =================================================================
   Seção 03 · Como funciona
   ================================================================= */
.how { background: var(--bg-light); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.step {
  background: white;
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: .5rem; }
.steps-connector {
  position: absolute;
  top: 56px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: var(--border-light);
  z-index: 0;
}
.dashboard-shot {
  margin-top: 2.5rem;
  background: var(--bg-light);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  justify-content: center;
}
.dashboard-shot img {
  max-width: 760px;
  width: 100%;
  height: auto;
  display: block;
}

/* =================================================================
   Seção 04 · Ferramentas
   ================================================================= */
.tools { background: var(--bg-white); }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-screenshot {
  width: 100%;
  height: 200px;
  background: var(--bg-light);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
}
.feature-screenshot img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
.tool-card h3 { margin-bottom: .35rem; }
.tool-tag { font-size: 12px; color: var(--orange-dark); font-weight: 500; }
.tool-card p { margin: .5rem 0 1rem; }
.tool-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.tool-link:hover { gap: 8px; }

/* =================================================================
   Seção 05 · Prova social
   ================================================================= */
.social { background: var(--orange-bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.testimonial {
  background: white;
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.testimonial p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name { font-size: 13px; font-weight: 500; color: var(--text-dark); }
.author-meta { font-size: 12px; color: var(--text-muted); }

.partner-logos {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.logo-placeholder {
  width: 80px;
  height: 28px;
  background: var(--border-light);
  border-radius: 4px;
}

/* =================================================================
   Seção 06 · Preços
   ================================================================= */
.pricing { background: var(--bg-white); }
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin: 1.5rem 0 3rem;
}
.toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.toggle-label.active { color: var(--text-dark); }
.toggle-track {
  width: 44px;
  height: 24px;
  background: #E5E4E0;
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: background .2s;
}
.toggle-track.on { background: var(--orange); }
.toggle-thumb {
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform .28s cubic-bezier(.34, 1.56, .64, 1);
}
.toggle-track.on .toggle-thumb { transform: translateX(20px); }
.save-pill {
  background: #EAF3DE;
  color: #3B6D11;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 100px;
  transition: opacity .2s, transform .2s;
}
.save-pill.hidden { opacity: 0; transform: scale(.85); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.plan {
  background: white;
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border: 2px solid var(--orange);
  transform: scale(1.02);
  box-shadow: 0 20px 40px -24px rgba(255,125,50,.4);
}
.plan-badge {
  align-self: flex-start;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: .85rem;
  animation: badgePulse 2.4s ease-in-out infinite;
}
.plan-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: .85rem 0 .25rem;
}
.plan-price .currency { font-size: 20px; font-weight: 500; color: var(--text-dark); }
.plan-price .amount {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--text-dark);
  transition: opacity .15s, transform .15s;
}
.plan-price .period { font-size: 14px; color: var(--text-muted); }
.plan-price.custom .amount { font-size: 30px; }
.plan-note { font-size: 12px; color: var(--text-muted); min-height: 18px; }
.plan-sub { font-size: 14px; color: var(--text-secondary); margin: 1rem 0 1.25rem; }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-dark);
}
.plan-features li i { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.plan-features li .ti-check { color: var(--orange); }
.plan-features li.off { color: var(--text-muted); }
.plan-features li.off i { color: #D1D5DB; }

.plan-cta-wrap { margin-top: auto; }
.plan-microcopy {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: .6rem;
}

.trust-strip {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.1rem;
  margin-top: 1.25rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
}
.trust-strip span { display: inline-flex; align-items: center; }
.trust-strip i { color: var(--green); margin-right: 4px; }

/* =================================================================
   Seção 07 · CTA final
   ================================================================= */
.cta-final {
  background: var(--orange-bg);
  border-top: 1px solid var(--orange-border);
  text-align: center;
}
.cta-final h2 { margin-bottom: .85rem; }
.cta-final .body-lg { margin: 0 auto 1.75rem; }
.cta-final .btn-primary { padding: 14px 32px; }
.cta-final .caption { margin-top: .5rem; }

/* =================================================================
   Seção 08 · Footer
   ================================================================= */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.55);
  padding: 4rem 0 2rem;
}
.footer .logo { color: var(--orange); }
.footer a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 14px;
  transition: color .15s;
}
.footer a:hover { color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin: 1rem 0 1.25rem;
  max-width: 260px;
}
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.footer-social a:hover { background: rgba(255,255,255,.12); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom a { font-size: 13px; }

/* =================================================================
   Responsividade
   ================================================================= */
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .phone-wrapper { margin: 0 auto; }
  .phone-side { order: -1; padding-right: 0; }
  /* toasts passam a sobrepor a borda do phone pra continuarem visíveis */
  .toast { right: -24px; }
  .toast-1 { top: 24px; }
  .toast-2 { top: 150px; }
  .toast-3 { top: 276px; }
  h1 { font-size: 36px; }
  .bridge-cols { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-connector { display: none; }
  .tools-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .nav-links { display: none; }
  .nav-cta { padding: 9px 16px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
  .trust-strip { flex-direction: column; gap: .75rem; }
  .toast { right: -12px; transform: scale(.92); }
}

/* =================================================================
   Iteração 2 · scroll, menu mobile, FAQ, molduras, micro-interações
   ================================================================= */

/* ---------- Scroll: navbar sticky não cobre títulos ---------- */
.section, header.hero, footer.footer { scroll-margin-top: 80px; }

/* ---------- Menu hamburger / overlay mobile ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: white;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  display: none;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}
.mobile-menu a.btn-primary { color: white; padding: 12px 28px; }
.mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-dark);
  cursor: pointer;
  line-height: 1;
}

/* ---------- Phone tilt (float pausa no hover pra não brigar com o tilt) ---------- */
.phone { transition: transform .3s ease; }
.phone-wrapper:hover .phone { animation: none; }

/* ---------- Ponte: morph papel -> digital ---------- */
.bridge-morph {
  position: relative;
  width: 56px;
  height: 64px;
  margin-bottom: 1rem;
}
.bridge-paper, .bridge-phone {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: opacity .6s ease, transform .6s ease;
}
.bridge-paper {
  background: white;
  border: 1.5px solid #D0CFC8;
  border-radius: 6px;
  color: var(--text-muted);
  opacity: 1;
  transform: rotate(-4deg);
}
.bridge-phone {
  background: var(--bg-dark);
  border-radius: 12px;
  color: var(--orange);
  opacity: 0;
  transform: rotate(4deg) scale(.9);
}
.bridge-morph.active .bridge-paper { opacity: 0; transform: rotate(-10deg) scale(.85); }
.bridge-morph.active .bridge-phone { opacity: 1; transform: rotate(0) scale(1); }

/* ---------- Como funciona: linha conectora cresce ---------- */
.steps-connector {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s ease .3s;
}
.steps-grid.visible .steps-connector { transform: scaleX(1); }

/* ---------- Ferramentas: shine no screenshot ---------- */
.feature-screenshot { position: relative; }
.feature-screenshot::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transition: left .6s ease;
  pointer-events: none;
}
.tool-card:hover .feature-screenshot::after { left: 220%; }

/* ---------- Estrelas dos depoimentos ---------- */
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: .75rem;
  color: var(--orange);
  font-size: 14px;
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg-light); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
}
.faq-chevron { color: var(--orange); transition: transform .3s ease; font-size: 18px; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.25rem;
}
.faq-item.open .faq-answer { max-height: 260px; padding: 0 1.25rem 1.1rem; }
.faq-answer p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.faq-item.open { border-color: var(--orange-border); }

/* ---------- Molduras de dispositivo ---------- */
.device-phone {
  background: var(--bg-dark);
  border-radius: 22px;
  padding: 8px;
  box-shadow: 0 10px 40px rgba(15,26,46,.12);
  max-width: 240px;
  margin: 0 auto;
}
.device-phone img { width: 100%; border-radius: 14px; display: block; }
.device-browser {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 0.5px solid var(--border-light);
  box-shadow: 0 12px 40px rgba(15,26,46,.1);
  max-width: 760px;
  width: 100%;
}
.browser-bar {
  background: var(--bg-light);
  padding: 8px 12px;
  display: flex;
  gap: 6px;
  align-items: center;
  border-bottom: 0.5px solid var(--border-light);
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot:nth-child(1) { background: #FF5F57; }
.browser-dot:nth-child(2) { background: #FEBC2E; }
.browser-dot:nth-child(3) { background: #28C840; }
.device-browser img { width: 100%; display: block; }
.dashboard-shot .device-browser { margin: 0 auto; }

/* ---------- Botão flutuante de WhatsApp ---------- */
#wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  opacity: 0;
  transform: scale(.5) translateY(20px);
  transition: opacity .3s, transform .3s;
}
#wa-float.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: waPulse 2.5s ease-in-out infinite;
}

/* ---------- Mobile: ativa hamburger ---------- */
@media (max-width: 600px) {
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- prefers-reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
