/* ===================================================================
   Simplifica Contábil — landing page
   Modern, clean, accountancy-appropriate.
   =================================================================== */

:root {
  /* Brand — based on Simplifica Contábil logo */
  --primary: #1E40A0;           /* royal blue (CONTÁBIL) */
  --primary-700: #16327F;
  --primary-900: #0E2356;
  --accent: #E8821C;            /* warm orange (SIMPLIFICA) */
  --accent-700: #C56C12;
  --light-blue: #5BA8D9;        /* secondary accent */

  /* Neutrals — warm cream from the logo background */
  --bg: #F8F5EE;
  --bg-alt: #ECE7DD;
  --surface: #ffffff;
  --text: #1A1F2C;
  --text-muted: #525A6B;
  --border: #E5E0D2;

  /* Layout */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(30, 64, 160, 0.06);
  --shadow: 0 12px 32px rgba(30, 64, 160, 0.10);
  --shadow-lg: 0 30px 60px rgba(30, 64, 160, 0.18);

  --container: 1180px;

  /* Type */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------------- Reset / base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px; /* evita que o conteúdo fique escondido atrás da navbar fixa */
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .6em;
  color: var(--primary-900);
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

p { margin: 0 0 1em; color: var(--text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------- Utilities ---------------- */
.text-accent { color: var(--accent-700); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-700);
  background: rgba(46, 190, 122, .12);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow-light {
  color: #FFC58A;
  background: rgba(255, 255, 255, .10);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 64, 160, .25);
}
.btn-primary:hover { background: var(--primary-700); }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: rgba(30, 64, 160, .25);
}
.btn-ghost:hover { background: rgba(30, 64, 160, .06); border-color: var(--primary); }
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn-block { width: 100%; padding: 16px 22px; }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 72px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(30, 64, 160, 0);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(30, 64, 160, .08);
}
/* compensa a navbar fixa para o conteúdo não ficar atrás dela */
body { padding-top: 72px; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
  min-height: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  min-width: 0;
  flex-shrink: 1;
  text-decoration: none;
}
.brand-mark {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 12px;
  flex: 0 0 44px;
  overflow: hidden;
}
.brand-logo {
  width: 44px;
  height: 44px;
  max-width: none;
  object-fit: contain;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
  min-width: 0;
}
.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent-700);     /* SIMPLIFICA — laranja */
  white-space: nowrap;
  line-height: 1.05;
}
.brand-text em {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary);        /* CONTÁBIL — azul */
  white-space: nowrap;
  line-height: 1.05;
}
.brand-light strong { color: #FFB571; }
.brand-light em { color: #B5C7F2; }
.brand-light .brand-mark { background: rgba(255,255,255,.1); }

.site-nav {
  display: flex;
  gap: 28px;
  font-weight: 500;
  color: var(--text);
}
.site-nav a {
  position: relative;
  padding: 6px 2px;
  color: var(--text);
  transition: color .2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.site-nav a:hover { color: var(--primary); }
.site-nav a:hover::after { transform: scaleX(1); }

/* Link destacado na navbar (botão pílula) */
.site-nav a.nav-cta {
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--accent-700);
  color: #fff;
  font-weight: 600;
  font-family: var(--font-display);
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 6px 16px rgba(232,130,28,.28);
}
.site-nav a.nav-cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.site-nav a.nav-cta::after { display: none; }

.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--primary); margin: 5px auto;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Hero banner (imagem da marca) ---------------- */
.hero-banner {
  width: 100%;
  background: var(--bg-alt);
  line-height: 0;
}
.hero-banner-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(232,130,28,.18), transparent 60%),
    radial-gradient(900px 400px at -10% 30%, rgba(30,64,160,.10), transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-copy h1 { margin-bottom: .35em; }
.hero-copy .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  font-size: .96rem;
  color: var(--text);
}
.hero-bullets li { display: flex; align-items: center; gap: 10px; }
.check {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  background: rgba(232,130,28,.15); color: var(--accent-700);
  border-radius: 50%; font-size: .8rem; font-weight: 700;
}

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  border: 1px solid var(--border);
  transform: rotate(-1deg);
}
.card-head {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.card-head .dot {
  width: 10px; height: 10px; border-radius: 50%; background: #e6e8e3;
}
.card-head .dot:nth-child(1) { background: #ff6b6b; }
.card-head .dot:nth-child(2) { background: #ffd93d; }
.card-head .dot:nth-child(3) { background: var(--accent); }
.card-title {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 600; font-size: .9rem; color: var(--text-muted);
}
.card-body { padding-top: 18px; }
.kpi {
  display: grid; grid-template-columns: 1fr auto; align-items: end;
  margin-bottom: 18px;
}
.kpi-label {
  grid-column: 1 / 3;
  font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .12em;
}
.kpi-value {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800; color: var(--primary-900);
  letter-spacing: -.02em;
}
.kpi-delta {
  font-weight: 600; font-size: .9rem;
  padding: 4px 10px; border-radius: 999px;
}
.kpi-delta.up { color: var(--accent-700); background: rgba(232,130,28,.14); }

.bars {
  display: flex; align-items: flex-end; gap: 8px;
  height: 90px; padding: 12px 0; margin-bottom: 14px;
}
.bars span {
  flex: 1; height: var(--h);
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 6px 6px 2px 2px; opacity: .9;
  animation: barRise .9s ease both;
}
.bars span:nth-child(2){ animation-delay:.05s }
.bars span:nth-child(3){ animation-delay:.1s }
.bars span:nth-child(4){ animation-delay:.15s }
.bars span:nth-child(5){ animation-delay:.2s }
.bars span:nth-child(6){ animation-delay:.25s }
.bars span:nth-child(7){ animation-delay:.3s }
@keyframes barRise { from { height: 0; opacity: 0; } }

.row { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 999px;
  background: var(--bg-alt); font-size: .82rem;
}
.pill strong { color: var(--primary-900); font-family: var(--font-display); }
.pill span { color: var(--accent-700); font-weight: 500; }

.float-badge {
  position: absolute;
  left: -18px; bottom: -22px;
  background: var(--primary-900);
  color: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.badge-num {
  font-family: var(--font-display);
  font-weight: 800; font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.badge-text { font-size: .82rem; line-height: 1.3; opacity: .9; }

/* Trust bar */
.hero-trust {
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.4);
  padding: 18px 0;
}
.trust-row {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  font-size: .82rem; color: var(--text-muted);
}
.trust-logos {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: .14em; color: rgba(30,64,160,.55);
  text-transform: uppercase;
}

/* ---------------- Sections ---------------- */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary) 100%);
  color: #d6e1e4;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.78); }

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head-light .text-accent { color: #FFB571; }

/* ---------------- Serviços ---------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,64,160,.2);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(232,130,28,.12);
  color: var(--accent-700);
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.service-card h3 { margin-bottom: 10px; }
.service-list {
  margin-top: 18px;
  display: grid; gap: 8px;
  font-size: .92rem;
  color: var(--text);
}
.service-list li {
  position: relative;
  padding-left: 22px;
}
.service-list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 12px; height: 2px; background: var(--accent);
  border-radius: 2px;
}

/* ---------------- Sobre ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}
.value h4 {
  color: var(--primary);
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.value h4::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.value p { font-size: .94rem; margin: 0; }

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.about-card::before {
  content: "“";
  position: absolute; top: 8px; right: 24px;
  font-family: var(--font-display);
  font-size: 6rem; color: rgba(232,130,28,.18);
  line-height: 1;
}
.about-card blockquote {
  margin: 0 0 22px;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}
.about-card footer {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.about-card footer strong { color: var(--primary-900); font-family: var(--font-display); }
.about-card footer span { color: var(--text-muted); font-size: .9rem; }

/* ---------------- Stats ---------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}
.stat p { font-size: .9rem; margin: 0; }

/* ---------------- Testimonials ---------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin: 0;
}
.quote-mark {
  position: absolute; top: 12px; right: 22px;
  font-family: var(--font-display);
  font-size: 4rem; color: rgba(232,130,28,.22);
  line-height: 1;
}
.testimonial blockquote {
  margin: 0 0 22px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.55;
}
.testimonial figcaption {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: .9rem;
  letter-spacing: .03em;
}
.testimonial figcaption span { display: flex; flex-direction: column; }
.testimonial figcaption strong { color: var(--primary-900); font-family: var(--font-display); }
.testimonial figcaption em {
  font-style: normal; font-size: .85rem; color: var(--text-muted);
}

/* ---------------- CTA / Contato ---------------- */
.section-cta {
  background:
    radial-gradient(800px 400px at 100% 0, rgba(232,130,28,.18), transparent 60%),
    radial-gradient(800px 400px at 0% 100%, rgba(30,64,160,.1), transparent 60%),
    var(--bg);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.cta-info {
  margin-top: 28px;
  display: grid; gap: 18px;
}
.cta-info li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.cta-info strong {
  font-family: var(--font-display);
  font-size: .8rem;
  color: var(--accent-700);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cta-info a { color: var(--primary-900); font-weight: 500; }
.cta-info a:hover { color: var(--primary); }

.cta-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.cta-form h3 { margin-bottom: 22px; }
.cta-form label {
  display: block;
  margin-bottom: 16px;
}
.cta-form label span {
  display: block;
  font-size: .85rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
  font-family: var(--font-display);
}
.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--accent-700);
  box-shadow: 0 0 0 4px rgba(232,130,28,.18);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-feedback {
  margin: 14px 0 0;
  font-size: .9rem;
  min-height: 1.2em;
}
.form-feedback.success { color: var(--accent-700); }
.form-feedback.error { color: #c0392b; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--primary-900);
  color: rgba(255,255,255,.78);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.foot-brand p { color: rgba(255,255,255,.6); margin-top: 16px; max-width: 320px; }
.site-footer h5 {
  color: #fff;
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.78); transition: color .15s ease; }
.site-footer a:hover { color: var(--accent); }

.foot-bottom {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
}

/* ---------------- Floating CTA ---------------- */
.floating-cta {
  position: fixed; right: 20px; bottom: 20px;
  z-index: 60;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  background: var(--accent-700); color: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(232,130,28,.45);
  font-weight: 600; font-family: var(--font-display);
  transition: transform .15s ease, background .2s ease;
}
.floating-cta:hover { background: var(--primary); transform: translateY(-2px); }

/* ---------------- Reveal animation ---------------- */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1; transform: none;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 960px) {
  /* Em telas estreitas a navbar é oculta — a navegação fica pelo botão flutuante de WhatsApp e pela rolagem da página */
  .site-header { display: none; }
  body { padding-top: 0; }
  html { scroll-padding-top: 16px; }

  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 56px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid, .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section { padding: 72px 0; }
}
@media (max-width: 540px) {
  /* Em telas bem estreitas, mostramos só "SIMPLIFICA" para sobrar espaço */
  .brand-text em { display: none; }
  .brand-text strong { font-size: 1rem; }

  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-cta span { display: none; }
  .floating-cta { padding: 14px; }
  .float-badge { left: 0; bottom: -16px; }
}

/* ---------------- Área do Cliente: passos ---------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  counter-reset: step;
  margin: 0;
  padding: 0;
}
.steps li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
}
.step-num {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(232,130,28,.12);
  color: var(--accent-700);
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.2rem;
}
.steps h3 { margin-bottom: 6px; }
.steps p { margin: 0; font-size: .94rem; }

/* ---------------- Área do Cliente: vídeos ---------------- */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.video-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-alt);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
/* placeholder quando ainda não há vídeo (iframe sem src) */
.video-embed iframe:not([src]),
.video-embed iframe[src=""] { display: none; }
.video-embed::after {
  content: "Vídeo em breve";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600; color: var(--text-muted);
  font-size: .95rem;
}
.video-embed:has(iframe[src]:not([src=""]))::after { content: none; }
.video-card figcaption {
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary-900);
}

/* Players verticais (YouTube Shorts) lado a lado */
.videos-shorts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.video-card-short {
  flex: 0 1 340px;
  max-width: 360px;
  margin: 0;
}
.video-embed-vertical {
  aspect-ratio: 9 / 16;
}
.video-card-short figcaption {
  text-align: center;
}

/* ---------------- Área do Cliente: bloco de ajuda ---------------- */
.cta-help {
  margin-top: 48px;
  text-align: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
}
.cta-help h3 { margin-bottom: 8px; }
.cta-help p { max-width: 480px; margin: 0 auto 22px; }

@media (max-width: 960px) {
  .steps, .videos-grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
