/* ============================================================
   TRÊS OUROS SEMIJOIAS — Landing Page Styles v2
   ============================================================ */

/* ── 1. CSS Custom Properties ─────────────────────────────── */
:root {
  --cream:        #FDF5EF;
  --cream-dark:   #F0E4D4;
  --brown:        #7B4F2E;
  --gold:         #C8914C;
  --gold-light:   #E8C080;
  --dark:         #3D1F0A;
  --dark-mid:     #5C3317;
  --text:         #3D2210;
  --text-muted:   #8B6347;
  --white:        #FFFFFF;
  --wa-green:     #25D366;
  --footer-bg:    #F8F2EC;

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --section-py:   clamp(5rem, 10vw, 9rem);
  --container-px: clamp(1.5rem, 6vw, 7rem);
  --max-w:        1200px;

  --radius-card:  1.25rem;
  --shadow-card:  0 4px 24px rgba(61, 31, 10, 0.08);
  --shadow-btn:   0 8px 24px rgba(61, 31, 10, 0.25);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 19px; scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; }

/* ── 3. Typography Utilities ──────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: clamp(0.6rem, 1.5vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
  display: block;
}
.gold-rule {
  width: 5rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}
.gold-rule--left { margin-left: 0; }

/* ── 4. Section Layout ────────────────────────────────────── */
.section { padding: var(--section-py) var(--container-px); }
.container { max-width: var(--max-w); margin: 0 auto; width: 100%; }

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.section-header h2 em {
  font-style: normal;
  color: var(--brown);
  font-weight: 500;
}

/* ── 5. Navbar ────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(61, 31, 10, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(200, 145, 76, 0.15);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.logo-nav {
  height: 4.5rem;
  width: auto;
  display: block;
}
.logo-footer {
  height: 5.5rem;
  width: auto;
  display: block;
  margin-bottom: 0.875rem;
  /* white logo → warm brown no rodapé claro */
  filter: brightness(0) sepia(1) saturate(3) hue-rotate(348deg) opacity(0.85);
}
.nav-cta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.375rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  border-radius: 2rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* ── 6. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 3rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.99); }

/* Atendimento Online — principal */
.btn-atendimento {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 45%, var(--brown) 100%);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 0.875rem;
  box-shadow: 0 6px 20px rgba(61,31,10,0.25);
  letter-spacing: 0.01em;
}
.btn-atendimento:hover {
  background: linear-gradient(135deg, var(--dark-mid) 0%, var(--brown) 60%, var(--gold) 100%);
  box-shadow: 0 10px 30px rgba(61,31,10,0.35);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  box-shadow: var(--shadow-btn);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 32px rgba(200, 145, 76, 0.45);
}

/* ── 7. Hero Section ──────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#hero-bg {
  position: absolute;
  top: -18%; left: 0; right: 0; bottom: -18%;
  background:
    linear-gradient(
      108deg,
      rgba(18, 6, 0, 0.92) 0%,
      rgba(45, 18, 4, 0.80) 38%,
      rgba(45, 18, 4, 0.52) 65%,
      rgba(18, 6, 0, 0.28) 100%
    ),
    url('../public/hero-tres-ouros.webp') 62% center / cover no-repeat;
  will-change: transform;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(200,145,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,145,76,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: particle-float var(--dur, 8s) var(--delay, 0s) ease-in-out infinite alternate;
  opacity: 0;
}
@keyframes particle-float {
  0%   { opacity: 0; transform: translate(0, 0) scale(1); }
  15%  { opacity: var(--max-op, 0.35); }
  85%  { opacity: var(--max-op, 0.35); }
  100% { opacity: 0; transform: translate(var(--tx, 20px), var(--ty, -40px)) scale(var(--sc, 1.2)); }
}
.hero-content {
  position: relative; z-index: 5; flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem var(--container-px) 4rem;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 10vw, 8.5rem);
  font-weight: 300; line-height: 0.95;
  color: #fff; letter-spacing: -0.03em;
  margin-bottom: 2rem; max-width: 900px;
}
.hero-title .accent { color: var(--gold); font-weight: 500; font-style: italic; }
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 300; color: rgba(255,255,255,0.72);
  max-width: 500px; line-height: 1.65;
  margin-bottom: 2.75rem;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin-bottom: 2.25rem;
}
.hero-proof {
  font-family: var(--font-body);
  font-size: 1.05rem; color: #fff; font-weight: 500;
  letter-spacing: 0.03em;
}
.hero-scroll {
  position: relative; z-index: 5;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.625rem; padding-bottom: 2rem;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
  font-size: 0.575rem; letter-spacing: 0.25em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 3rem;
  background: linear-gradient(to bottom, rgba(200,145,76,0.7), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(1.15); opacity: 1; }
}

/* ── 8. Stats Bar ─────────────────────────────────────────── */
#stats { background: var(--dark); padding: 4rem var(--container-px); }
.stats-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(5, 1fr); } }
.stat-item {
  text-align: center; display: flex;
  flex-direction: column; align-items: center; gap: 0.875rem;
  justify-content: flex-start;
}
@media (max-width: 767px) { .stat-item:nth-child(5) { grid-column: 1 / -1; } }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; color: var(--gold); line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(253, 245, 239, 0.6); line-height: 1.5;
}
.stat-icon { color: var(--gold); margin-bottom: 0; }
.stat-icon svg { width: 3rem; height: 3rem; }

/* ── 9. Product Gallery ───────────────────────────────────── */
#produtos { background: var(--cream); padding: var(--section-py) var(--container-px); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.gallery-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(61,31,10,0.1);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.gallery-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 12px 36px rgba(61,31,10,0.18); }
.gallery-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.gallery-card__badge {
  position: absolute;
  top: 0.625rem; left: 0.625rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 2rem;
}
.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,31,10,0.9) 0%, rgba(61,31,10,0.4) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: opacity 0.3s ease;
}
.gallery-card:hover .gallery-card__overlay { opacity: 1; }
.gallery-card__info { width: 100%; }
.gallery-card__name {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.gallery-card__ver {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.875rem;
  border-radius: 2rem;
  text-transform: uppercase;
}

/* ── Product Detail Modal ────────────────────────────────── */
#product-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(61,31,10,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#product-modal-overlay.open { opacity: 1; pointer-events: auto; }
.pm-panel {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 24px 80px rgba(61,31,10,0.3);
}
@media (min-width: 680px) { .pm-panel { flex-direction: row; max-height: 85vh; } }
.pm-close {
  position: absolute;
  top: 0.875rem; right: 0.875rem;
  z-index: 10;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 300; color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s;
  line-height: 1;
}
.pm-close:hover { background: #fff; }
.pm-image-wrap {
  flex-shrink: 0;
  width: 100%;
  max-height: 280px;
  overflow: hidden;
}
@media (min-width: 680px) { .pm-image-wrap { width: 44%; max-height: none; } }
.pm-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pm-body {
  padding: 1.75rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.pm-category {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
.pm-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.pm-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.pm-specs {
  display: flex; flex-direction: column; gap: 0.35rem;
  border-left: 2px solid var(--gold);
  padding-left: 0.875rem;
}
.pm-spec { font-size: 0.8rem; color: var(--text-muted); }
.pm-spec strong { color: var(--dark); }
.pm-price-block { display: flex; align-items: baseline; gap: 0.625rem; flex-wrap: wrap; }
.pm-price-full { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; }
.pm-price-atacado { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--brown); }
.pm-price-label { font-size: 0.7rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.pm-atacado-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200,145,76,0.1);
  border: 1px solid rgba(200,145,76,0.35);
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.875rem;
  border-radius: 2rem;
  width: fit-content;
}
.pm-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 45%, var(--brown) 100%);
  color: #fff;
  border: none;
  border-radius: 0.875rem;
  padding: 0.875rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(61,31,10,0.25);
  transition: box-shadow 0.25s, transform 0.2s;
  margin-top: auto;
}
.pm-cta:hover { box-shadow: 0 10px 30px rgba(61,31,10,0.35); transform: translateY(-1px); }
.gallery-cta-wrap { text-align: center; margin-top: 0.5rem; }

/* ── 10. Benefit Cards ────────────────────────────────────── */
#beneficios { background: var(--cream-dark); padding: var(--section-py) var(--container-px); }
.benefits-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 640px)  { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) {
  .benefits-grid .benefit-card:nth-child(4) { grid-column: 1 / 2; }
  .benefits-grid .benefit-card:nth-child(5) { grid-column: 2 / 3; }
}
.benefit-card {
  background: var(--white);
  border: 1px solid rgba(200, 145, 76, 0.12);
  border-radius: var(--radius-card); padding: 2.25rem 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(61, 31, 10, 0.13);
  border-color: rgba(200, 145, 76, 0.3);
}
.benefit-icon {
  width: 3rem; height: 3rem;
  background: linear-gradient(135deg, rgba(200,145,76,0.18), rgba(200,145,76,0.05));
  border-radius: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.375rem; color: var(--gold);
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 500;
  color: var(--dark); margin-bottom: 0.75rem; line-height: 1.2;
}
.benefit-card p {
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
}

/* ── 11. Parallax Divider ─────────────────────────────────── */
.parallax-divider {
  position: relative;
  height: clamp(7rem, 14vw, 13rem); overflow: hidden;
}
.parallax-divider__inner {
  position: absolute; inset: -25% 0;
  background: linear-gradient(100deg,
    var(--dark) 0%, var(--dark-mid) 20%, #6E4428 40%,
    var(--brown) 55%, #6E4428 70%, var(--dark-mid) 85%, var(--dark) 100%
  );
  display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.parallax-divider__text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 11rem);
  font-weight: 300; letter-spacing: 0.4em;
  color: rgba(255,255,255,0.035);
  white-space: nowrap; user-select: none;
  pointer-events: none; text-transform: uppercase; position: absolute;
}
.parallax-divider__ornament {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; padding: 0 var(--container-px);
}
.divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,145,76,0.5), transparent);
}
.divider-diamond { color: var(--gold); font-size: 0.75rem; opacity: 0.7; flex-shrink: 0; }

/* ── 12. Como Funciona ────────────────────────────────────── */
#como-funciona { background: var(--cream-dark); padding: var(--section-py) var(--container-px); }
.como-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 768px) { .como-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.como-col {
  background: var(--white);
  border: 1px solid rgba(200,145,76,0.15);
  border-radius: var(--radius-card);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-card);
}
.como-col h3 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--brown); line-height: 1.2;
  padding-bottom: 1.25rem; margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(200,145,76,0.2);
}
.como-table { display: flex; flex-direction: column; }
.como-row {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 0.25rem 1.25rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(61,31,10,0.15);
  align-items: baseline;
}
.como-row:last-child { border-bottom: none; }
.como-key {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--brown); line-height: 1.3;
}
.como-val {
  font-family: var(--font-body);
  font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.55;
  border-left: 1px solid rgba(61,31,10,0.18);
  padding-left: 1.125rem;
}
.como-cta { text-align: center; margin-top: 3.5rem; }

/* ── 13. Vantagens ────────────────────────────────────────── */
#vantagens { background: var(--cream); padding: var(--section-py) var(--container-px); }
.vantagens-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 768px) { .vantagens-grid { grid-template-columns: repeat(2, 1fr); } }
.vantagem-card {
  background: var(--dark); border-radius: var(--radius-card);
  padding: 2.75rem; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-out);
}
.vantagem-card:hover { transform: translateY(-4px); }
.vantagem-card::after {
  content: ''; position: absolute;
  top: -3rem; right: -3rem;
  width: 10rem; height: 10rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,145,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.vantagem-num {
  font-family: var(--font-display);
  font-size: 6.5rem; font-weight: 300;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, rgba(200,145,76,0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem; letter-spacing: -0.04em;
}
.vantagem-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 500;
  color: #fff; margin-bottom: 1rem; line-height: 1.2;
}
.vantagem-card p {
  font-family: var(--font-body);
  font-size: 0.9rem; color: rgba(255,255,255,0.58); line-height: 1.7;
}

/* ── 14. Passo a Passo ────────────────────────────────────── */
#passo-a-passo { background: var(--cream-dark); padding: var(--section-py) var(--container-px); }
.steps-container { max-width: var(--max-w); margin: 0 auto; position: relative; }
.steps-connector {
  display: none; position: absolute;
  top: 2.5rem;
  left: calc(12.5% + 2rem); right: calc(12.5% + 2rem);
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  transform-origin: left center; transform: scaleX(0);
}
@media (min-width: 768px) { .steps-connector { display: block; } }
.steps-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; position: relative; z-index: 1;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.step-badge {
  width: 5rem; height: 5rem; border-radius: 50%;
  background: var(--dark); border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.625rem; flex-shrink: 0;
  position: relative; z-index: 2;
  box-shadow: 0 4px 16px rgba(61,31,10,0.2);
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400; color: var(--gold);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 500;
  color: var(--dark); margin-bottom: 0.75rem; line-height: 1.2;
}
.step-card p {
  font-family: var(--font-body);
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.7;
}

/* ── 15. Depoimentos ──────────────────────────────────────── */
#depoimentos { background: var(--cream); padding: var(--section-py) var(--container-px); }
.testimonials-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-card);
  padding: 2.125rem; box-shadow: var(--shadow-card);
  border: 1px solid rgba(200,145,76,0.1);
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(61,31,10,0.12);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.15em; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1rem; font-style: italic;
  color: var(--text); line-height: 1.7; flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.author-avatar {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brown));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 500; color: #fff; flex-shrink: 0;
}
.author-name {
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 600; color: var(--dark); line-height: 1.3;
}
.author-city {
  font-family: var(--font-body);
  font-size: 0.775rem; color: var(--text-muted);
}

/* ── 15b. WhatsApp Masonry Gallery ───────────────────────── */
.wa-carousel-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(200,145,76,0.18);
}
.wa-carousel-header {
  text-align: center;
  margin-bottom: 2rem;
}
.wa-carousel-header .eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.wa-carousel-header .eyebrow svg {
  width: 1rem; height: 1rem; flex-shrink: 0;
}
.wa-masonry {
  column-count: 2;
  column-gap: 0.875rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 560px) { .wa-masonry { column-count: 3; } }
@media (min-width: 900px) { .wa-masonry { column-count: 4; column-gap: 1.125rem; } }
.wa-masonry-card {
  break-inside: avoid;
  margin-bottom: 0.875rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(200,145,76,0.28);
  box-shadow: 0 4px 18px rgba(61,31,10,0.12);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  display: block;
}
.wa-masonry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(200,145,76,0.2);
  border-color: var(--gold);
}
.wa-masonry-card img {
  width: 100%; height: auto; display: block;
  pointer-events: none; user-select: none; -webkit-user-drag: none;
}
@media (min-width: 900px) { .wa-masonry { column-gap: 1.125rem; } }

/* ── 16. Nossa Equipe ────────────────────────────────────── */
#equipe { background: var(--cream); }
.equipe-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3.5rem; max-width: 780px; margin: 0 auto;
}
@media (min-width: 600px) { .equipe-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.equipe-card {
  background: var(--white); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-card);
  border: 1px solid rgba(200,145,76,0.12);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.equipe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(61,31,10,0.13);
}
.equipe-photo-wrap {
  width: 100%; aspect-ratio: 3/4; overflow: hidden;
  background: var(--cream-dark);
}
.equipe-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block; transition: transform 0.5s var(--ease-out);
}
.equipe-card:hover .equipe-photo-wrap img { transform: scale(1.04); }
.equipe-info { padding: 1.75rem; }
@media (max-width: 599px) { .equipe-info { padding-bottom: 2.75rem; } }
.equipe-gold-rule {
  width: 2.5rem; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1rem;
}
.equipe-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 500;
  color: var(--dark); margin-bottom: 0.25rem; line-height: 1.2;
}
.equipe-role {
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.equipe-bio {
  font-family: var(--font-display);
  font-size: 0.95rem; font-style: italic;
  color: var(--text); line-height: 1.7;
}

/* ── 17. Quem Somos ─────────────────────────────────────── */
#quem-somos {
  background: var(--dark);
  padding: var(--section-py) var(--container-px);
  position: relative; overflow: hidden;
}
#quem-somos::before {
  content: ''; position: absolute;
  top: -20rem; right: -8rem;
  width: 48rem; height: 48rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,145,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.qs-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center; position: relative; z-index: 1;
}
@media (min-width: 768px) { .qs-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.qs-photos { position: relative; }
.qs-photo-main {
  border-radius: 16px; overflow: hidden;
  border: 1.5px solid rgba(200,145,76,0.22);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.qs-photo-main img { width: 100%; height: auto; display: block; }
.qs-photo-accent { display: none; }
@media (min-width: 768px) {
  .qs-photos { padding-bottom: 2.75rem; padding-right: 2.25rem; }
  .qs-photo-accent {
    display: block; position: absolute;
    bottom: 0; right: 0; width: 52%;
    border-radius: 12px; overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 5px var(--dark);
  }
  .qs-photo-accent img { width: 100%; height: auto; display: block; }
}
.qs-text { position: relative; z-index: 1; }
.qs-text .eyebrow { display: block; margin-bottom: 1.25rem; }
.qs-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300; color: #fff;
  line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.qs-heading em { font-style: normal; color: var(--gold); }
.qs-lead {
  font-family: var(--font-body);
  font-size: 1rem; color: rgba(255,255,255,0.6);
  line-height: 1.75; margin-bottom: 2.5rem;
}
.qs-trust { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.qs-trust-item { display: flex; align-items: flex-start; gap: 1rem; }
.qs-trust-icon {
  width: 2.5rem; height: 2.5rem; min-width: 2.5rem; border-radius: 50%;
  border: 1px solid rgba(200,145,76,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); overflow: hidden;
}
.qs-trust-icon svg { width: 1.125rem; height: 1.125rem; max-width: 1.125rem; max-height: 1.125rem; display: block; }
.qs-trust-body { display: flex; flex-direction: column; gap: 0.2rem; }
.qs-trust-title { font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600; color: #fff; }
.qs-trust-desc  { font-family: var(--font-body); font-size: 0.8125rem; color: rgba(255,255,255,0.45); }

/* ── 18. CTA Final Section ────────────────────────────────── */
#cta-final {
  background: var(--dark); padding: var(--section-py) var(--container-px);
  text-align: center; position: relative; overflow: hidden;
}
#cta-final::before {
  content: ''; position: absolute;
  top: -15rem; left: -10rem; width: 40rem; height: 40rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,145,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final-wrapper { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300; color: #fff;
  line-height: 1.0; margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.cta-final-title em { font-style: normal; color: var(--gold); font-weight: 500; }
.cta-final-sub {
  font-family: var(--font-body);
  font-size: 1rem; color: rgba(255,255,255,0.55);
  line-height: 1.65; margin-bottom: 2.5rem;
}

/* ── 19. Footer — OFF-WHITE ───────────────────────────────── */
footer {
  background: var(--footer-bg);
  padding: 4rem var(--container-px) 2rem;
  border-top: 1px solid rgba(200, 145, 76, 0.2);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  margin-bottom: 3rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(61,31,10,0.1);
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400;
  letter-spacing: 0.15em; color: var(--brown);
  text-transform: uppercase; margin-bottom: 0.875rem; display: block;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.65; max-width: 280px; margin-bottom: 1.5rem;
}
.footer-contact-item {
  display: flex; align-items: center; gap: 0.625rem;
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--text-muted);
  margin-bottom: 0.75rem; transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--brown); }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; }
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.375rem;
}
.footer-social { display: flex; gap: 0.75rem; margin-top: 0.25rem; }
.footer-social a {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 1px solid rgba(200,145,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--brown); transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: rgba(200,145,76,0.12);
  border-color: var(--gold); color: var(--dark);
}
.footer-bottom {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.875rem; text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 0.775rem; color: var(--text-muted);
}
.footer-tmc { display: flex; align-items: center; gap: 0.5rem; }
.footer-tmc img { height: 1.125rem; opacity: 0.35; filter: sepia(1) saturate(0.5); }
.footer-tmc span {
  font-family: var(--font-body);
  font-size: 0.75rem; color: var(--text-muted);
}

/* ── 18. Floating WhatsApp — Formation Animation ──────────── */
#wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 200;
  width: 3.5rem; height: 3.5rem;
  background: var(--wa-green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  opacity: 0; transform: scale(0);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
  pointer-events: none;
  cursor: pointer; border: none;
}
#wa-float.visible {
  pointer-events: all;
}
#wa-float:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 10px 30px rgba(37,211,102,0.6);
}

/* Formation ring */
#wa-ring {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 199;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  pointer-events: none;
  opacity: 0; transform: scale(1);
}

/* Speech bubble */
#wa-bubble {
  position: fixed;
  bottom: 6.25rem; right: 1.75rem; z-index: 201;
  background: var(--white);
  border-radius: 1rem 1rem 0.25rem 1rem;
  padding: 0.75rem 1.125rem;
  font-family: var(--font-body);
  font-size: 0.825rem; font-weight: 500;
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  opacity: 0; pointer-events: none;
  white-space: nowrap;
  transform: translateY(8px) scale(0.9);
  transform-origin: bottom right;
}
#wa-bubble::after {
  content: '';
  position: absolute; bottom: -8px; right: 1.125rem;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--white);
}
#wa-bubble-close {
  position: absolute; top: 0.25rem; right: 0.375rem;
  background: none; border: none; cursor: pointer;
  font-size: 0.7rem; color: var(--text-muted);
  line-height: 1; padding: 0.125rem;
}
#wa-bubble-close:hover { color: var(--dark); }

/* ── 19. Modal Overlay ────────────────────────────────────── */
#modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
#modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(29, 10, 2, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-panel {
  position: relative; z-index: 1;
  background: var(--cream);
  border-radius: 1.5rem;
  padding: clamp(2rem, 5vw, 3rem);
  width: 100%; max-width: 460px;
  max-height: 90svh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(29,10,2,0.35);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s var(--ease-out);
}
#modal-overlay.open .modal-panel {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(200,145,76,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); border: none; cursor: pointer;
  transition: background 0.2s, color 0.2s; font-size: 0.9rem;
}
.modal-close:hover { background: rgba(200,145,76,0.25); color: var(--dark); }

/* Progress bar */
.modal-progress-track {
  height: 3px; background: rgba(200,145,76,0.2);
  border-radius: 2px; margin-bottom: 1.75rem; overflow: hidden;
}
.modal-progress-fill {
  height: 100%; background: var(--gold); border-radius: 2px;
  transition: width 0.4s var(--ease-out);
}

/* Modal brand */
.modal-brand {
  font-family: var(--font-display);
  font-size: 0.875rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem; text-align: center;
}

/* Modal steps */
.modal-step { display: none; }
.modal-step.active { display: block; }

.modal-step h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 300; color: var(--dark);
  line-height: 1.2; margin-bottom: 0.625rem;
}
.modal-step h3 strong { font-weight: 600; color: var(--brown); }
.modal-step > p {
  font-family: var(--font-body);
  font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 1.75rem;
}

/* Modal form fields */
.modal-form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.modal-label {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}
.modal-input {
  width: 100%;
  background: var(--white);
  border: 1.5px solid rgba(200,145,76,0.22);
  border-radius: 0.75rem; padding: 0.9rem 1.125rem;
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.modal-input::placeholder { color: rgba(61,31,10,0.28); }
.modal-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,145,76,0.12);
}
.modal-input.error { border-color: #E53E3E; box-shadow: 0 0 0 3px rgba(229,62,62,0.1); }
.field-error {
  font-family: var(--font-body);
  font-size: 0.725rem; color: #E53E3E; margin-top: 0.25rem;
  display: none;
}
.field-error.show { display: block; }

/* Modal next button */
.btn-modal-next {
  width: 100%; margin-top: 1.5rem;
  background: var(--dark); color: var(--gold);
  font-family: var(--font-body); font-weight: 700;
  font-size: 1rem; padding: 1.0625rem 2rem;
  border-radius: 0.875rem; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(61,31,10,0.2);
}
.btn-modal-next:hover {
  background: var(--brown); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(61,31,10,0.28);
}
.btn-modal-next:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Modal options (Sim/Não) */
.modal-options-grid {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-top: 1.75rem;
}
.btn-modal-option {
  width: 100%; padding: 1.0625rem 1.5rem;
  border-radius: 0.875rem; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  transition: transform 0.15s var(--ease-out), box-shadow 0.15s;
  border: 1.5px solid rgba(200,145,76,0.3);
  background: var(--white); color: var(--dark);
}
.btn-modal-option:hover {
  background: var(--gold); color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,145,76,0.3);
}
.btn-modal-option--sim {
  background: var(--dark); color: var(--gold);
  border-color: var(--dark);
}
.btn-modal-option--sim:hover {
  background: var(--brown); border-color: var(--brown);
}
.btn-modal-option--secondary {
  background: transparent; color: var(--text-muted);
  border-color: rgba(200,145,76,0.2);
  font-weight: 400; font-size: 0.9rem;
}
.btn-modal-option--secondary:hover {
  background: rgba(200,145,76,0.08);
  color: var(--dark); border-color: rgba(200,145,76,0.4);
}

/* Modal info box */
.modal-info-box {
  background: rgba(200,145,76,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 0.625rem 0.625rem 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}
.modal-info-box p {
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--text); line-height: 1.65;
  margin-bottom: 0 !important;
}

/* Loading state */
.modal-loading {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; padding: 2rem 0; text-align: center;
}
.modal-spinner {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 2.5px solid rgba(200,145,76,0.2);
  border-top-color: var(--gold);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.modal-loading p {
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--text-muted); margin: 0;
}

/* ── 20. Botão Outline Consultora ────────────────────────── */
.btn-consultora {
  border: 1.5px solid var(--brown);
  color: var(--brown);
  background: transparent;
  padding: 0.8rem 2.25rem;
  font-size: 0.9rem;
  border-radius: 2rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-consultora:hover {
  background: var(--brown);
  color: #fff;
  box-shadow: 0 6px 20px rgba(123,79,46,0.3);
}

/* ── 21. Passo a Passo — CTA Destaque ────────────────────── */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 6px 20px rgba(200,145,76,0.3), 0 0 0 0 rgba(200,145,76,0.5); }
  60%       { box-shadow: 0 8px 28px rgba(200,145,76,0.5), 0 0 0 16px rgba(200,145,76,0); }
}
.btn-primeiro-passo {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 45%, var(--brown) 100%);
  color: #fff;
  padding: 1.125rem 2.75rem;
  font-size: 1.05rem;
  border-radius: 0.875rem;
  animation: pulse-gold 2.5s ease-in-out infinite;
}
.btn-primeiro-passo:hover {
  background: linear-gradient(135deg, var(--dark-mid) 0%, var(--brown) 60%, var(--gold) 100%);
  transform: translateY(-2px) !important;
  animation-play-state: paused;
}

/* ── 21. Responsive ───────────────────────────────────────── */
@media (max-width: 639px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .step-card {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    grid-template-areas: "badge title" "badge desc";
    column-gap: 1.25rem; row-gap: 0.375rem;
    text-align: left; align-items: start;
    flex-direction: unset;
  }
  .step-badge {
    grid-area: badge;
    width: 3.5rem; height: 3.5rem;
    margin-bottom: 0; align-self: start; margin-top: 0.125rem;
  }
  .step-num { font-size: 1.1rem; }
  .step-card h3 { grid-area: title; margin-bottom: 0; }
  .step-card p  { grid-area: desc; }
}

@media (prefers-reduced-motion: reduce) {
  .particle, .scroll-line { animation: none; }
  .btn, .benefit-card, .vantagem-card, .testimonial-card { transition: none; }
  #wa-float { opacity: 1 !important; transform: scale(1) !important; pointer-events: all !important; }
}
