﻿:root {
  --ease-apple: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-stripe: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
  --t-fast: 200ms;
  --t-base: 260ms;
  --t-slow: 320ms;
  --surface-0: #fdfcfa;
  --surface-1: #ffffff;
  --surface-el:
    0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(170, 140, 115, 0.06),
    0 0 0 1px rgba(170, 140, 115, 0.07);
  --surface-raised:
    0 2px 4px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(170, 140, 115, 0.08),
    0 0 0 1px rgba(170, 140, 115, 0.09);
  --surface-float:
    0 4px 6px rgba(0, 0, 0, 0.04), 0 16px 48px rgba(170, 140, 115, 0.12),
    0 0 0 1px rgba(170, 140, 115, 0.12);
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(170, 140, 115, 0.28);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(170, 140, 115, 0.46);
}
::selection {
  background: rgba(170, 140, 115, 0.18);
  color: var(--ink);
}
:focus-visible {
  outline: 2px solid rgba(170, 140, 115, 0.6);
  outline-offset: 3px;
  border-radius: 6px;
}
section[id] {
  scroll-margin-top: 24px;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1,
h2,
h3 {
  font-feature-settings:
    "kern" 1,
    "liga" 1;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1.5px;
  width: 0%;
  z-index: 9999;
  background: var(--c1);
  opacity: 0.7;
  transition: width 0.06s linear;
}
.mini-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8500;
  background: rgba(43, 32, 22, 0.82);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(170, 140, 115, 0.14);
  padding: 0 40px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(-100%);
  transition: transform var(--t-slow) var(--ease-stripe);
  pointer-events: none;
  will-change: transform;
}
.mini-sticky.on {
  transform: translateY(0);
  pointer-events: all;
}
.mini-sticky-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}
.mini-sticky-brand svg {
  width: 14px;
  height: 16px;
  flex-shrink: 0;
}
.mini-sticky-brand svg path {
  fill: var(--c1);
}
.mini-sticky-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(229, 218, 209, 0.62);
}
.mini-sticky-sep {
  width: 1px;
  height: 16px;
  background: rgba(229, 218, 209, 0.14);
  flex-shrink: 0;
}
.mini-sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  background: var(--c1);
  padding: 6px 16px;
  border-radius: 8px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    background var(--t-fast) var(--ease-apple),
    box-shadow var(--t-fast) var(--ease-apple),
    transform var(--t-fast) var(--ease-apple);
}
.mini-sticky-btn:hover {
  background: var(--c1d);
  transform: translateY(-1px);
  box-shadow:
    0 3px 8px rgba(170, 140, 115, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.mini-sticky-btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 80ms;
}
@media (max-width: 640px) {
  .mini-sticky {
    padding: 0 20px;
    height: 48px;
  }
  .mini-sticky-label {
    display: none;
  }
  .mini-sticky-sep {
    display: none;
  }
}
.urgency-bar {
  background: linear-gradient(
    90deg,
    var(--c1d) 0%,
    #b8916a 50%,
    var(--c1d) 100%
  ) !important;
}
#hero .glow {
  background:
    radial-gradient(
      ellipse 90% 75% at 48% 65%,
      rgba(170, 140, 115, 0.13) 0%,
      transparent 62%
    ),
    radial-gradient(
      ellipse 55% 50% at 90% 10%,
      rgba(175, 188, 167, 0.09) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse 40% 35% at 8% 88%,
      rgba(229, 218, 209, 0.05) 0%,
      transparent 52%
    ) !important;
}
.hero-visual-deco {
  display: none !important;
}
@keyframes decoIn {
  from {
    opacity: 0;
    transform: translateY(-52%) translateX(28px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(-52%) translateX(0) scale(1);
  }
}
.hero-visual-deco svg {
  filter: drop-shadow(0 20px 56px rgba(0, 0, 0, 0.24));
  animation: decoFloat 11s ease-in-out infinite;
}
@keyframes decoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 1099px) {
  .hero-visual-deco {
    display: none !important;
  }
}
@media (min-width: 1100px) {
  #hero {
    padding-right: clamp(280px, 32vw, 500px) !important;
    text-align: left !important;
    align-items: flex-start !important;
  }
  .hero-kicker {
    margin-left: 0 !important;
  }
  .hero-h1 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .hero-sub {
    margin-left: 0 !important;
  }
  .hero-reinforce {
    margin-left: 0 !important;
  }
  .hero-objections {
    justify-content: flex-start !important;
  }
  .hero-cta-wrap .cta-micro {
    justify-content: flex-start !important;
  }
  .hero-trust {
    justify-content: flex-start !important;
  }
  .hero-scroll {
    left: 40px !important;
    transform: none !important;
  }
}
.hero-kicker {
  border-color: rgba(170, 140, 115, 0.42) !important;
  background: rgba(170, 140, 115, 0.13) !important;
  box-shadow: inset 0 1px 0 rgba(229, 218, 209, 0.12) !important;
}
.hero-h1 {
  text-shadow: 0 1px 32px rgba(0, 0, 0, 0.3);
}
.hero-reinforce {
  border-left: 3px solid rgba(170, 140, 115, 0.72) !important;
  background: rgba(229, 218, 209, 0.07) !important;
  box-shadow: none !important;
}
.hero-obj-tag {
  background: rgba(175, 188, 167, 0.14) !important;
  border-color: rgba(175, 188, 167, 0.3) !important;
  font-weight: 500 !important;
  transition: background var(--t-fast) var(--ease-apple) !important;
}
.hero-obj-tag:hover {
  background: rgba(175, 188, 167, 0.22) !important;
  transform: none !important;
}
.hero-trust-item {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(229, 218, 209, 0.1) !important;
  border-radius: 100px !important;
  padding: 4px 12px !important;
  transition: background var(--t-fast) var(--ease-apple) !important;
}
.hero-trust-item:hover {
  background: rgba(255, 255, 255, 0.09) !important;
}
.hero-trust-item::before {
  display: none !important;
}
.problema-highlight {
  border-left: 3px solid rgba(170, 140, 115, 0.65) !important;
  background: rgba(170, 140, 115, 0.07) !important;
  border-radius: 0 8px 8px 0 !important;
}
.problema-highlight {
  animation: none !important;
}
.doubt {
  padding: 32px 36px !important;
}
.doubt q {
  font-size: 22px !important;
  line-height: 1.48 !important;
}
.formato-item-num {
  font-size: 56px !important;
  opacity: 0.24 !important;
  transition:
    opacity var(--t-base) var(--ease-apple),
    transform var(--t-base) var(--ease-apple) !important;
}
.formato-item:hover .formato-item-num {
  opacity: 0.4 !important;
  transform: translateY(-3px) !important;
}
#como-funciona {
  background:
    radial-gradient(
      ellipse 70% 60% at 50% -5%,
      rgba(170, 140, 115, 0.07) 0%,
      transparent 58%
    ),
    var(--bg) !important;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
@media (max-width: 960px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 560px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.step-card {
  background: var(--surface-1);
  border: 1px solid rgba(170, 140, 115, 0.1);
  border-radius: 16px;
  padding: 32px 20px 28px;
  box-shadow: var(--surface-el);
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: default;
  transition:
    transform var(--t-base) var(--ease-stripe),
    border-color var(--t-base) var(--ease-apple);
}
.step-card::before {
  content: "";
  position: relative !important;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(170, 140, 115, 0.3) 40%,
    rgba(170, 140, 115, 0.3) 60%,
    transparent 100%
  );
}
.step-card.step-green::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(175, 188, 167, 0.4) 40%,
    rgba(175, 188, 167, 0.4) 60%,
    transparent 100%
  );
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(170, 140, 115, 0.22);
}
@media (max-width: 640px) {
  .step-card:hover {
    transform: none;
  }
}
.step-card .step-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c1);
  background: var(--bg);
  border: 1px solid rgba(170, 140, 115, 0.2);
  border-radius: 100px;
  padding: 2px 9px;
  position: relative !important;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.steps-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  transition: transform var(--t-fast) var(--ease-apple);
}
.steps-circle svg {
  width: 28px;
  height: 28px;
  stroke: var(--c1);
}
.step-card.step-green .steps-circle svg {
  stroke: var(--c2d, #8fa090);
}
.step-card:hover .steps-circle {
  transform: scale(1.06);
}
.steps-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 9px;
  line-height: 1.28;
  letter-spacing: -0.01em;
}
.steps-text {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--soft);
}
.steps-connector {
 position: absolute !important;
  top: 34px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(170, 140, 115, 0.28) 0px,
    rgba(170, 140, 115, 0.28) 4px,
    transparent 4px,
    transparent 10px
  );
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0;
  transition:
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s,
    opacity 0.5s ease 0.4s;
}
.steps-connector.on {
  transform: scaleX(1);
  opacity: 1;
}
@media (max-width: 960px) {
  .steps-connector {
    display: none;
  }
}
.ben {
  background: var(--surface-1) !important;
  border: 1px solid rgba(170, 140, 115, 0.09) !important;
  border-radius: 16px !important;
  padding: 32px 28px 28px 32px !important;
  box-shadow: var(--surface-el) !important;
  transition:
    transform var(--t-base) var(--ease-stripe),
    border-color var(--t-base) var(--ease-apple) !important;
}
.ben::before {
  width: 3px !important;
  border-radius: 3px 0 0 3px !important;
  background: linear-gradient(
    to bottom,
    var(--c1),
    rgba(170, 140, 115, 0.12)
  ) !important;
}
.ben:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(170, 140, 115, 0.2) !important;
}
.ben-title {
  font-size: 20px !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.02em !important;
}
.ben-icon-wrap {
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  background: rgba(170, 140, 115, 0.08) !important;
  border: 1px solid rgba(170, 140, 115, 0.14) !important;
  margin-bottom: 18px !important;
  transition:
    background var(--t-fast) var(--ease-apple),
    transform var(--t-base) var(--ease-spring) !important;
}
.ben:hover .ben-icon-wrap {
  background: rgba(170, 140, 115, 0.14) !important;
  transform: scale(1.06) !important;
}
.ben-result {
  margin-top: 16px !important;
  padding: 5px 12px !important;
  font-size: 11.5px !important;
  letter-spacing: 0.01em !important;
}
@media (max-width: 640px) {
  .ben {
    border-radius: 12px !important;
    padding: 24px 20px 20px 24px !important;
  }
  .ben:hover {
    transform: none !important;
  }
}
#stats {
  overflow: hidden;
  position: relative;
}
.stat-num {
  font-size: clamp(44px, 5vw, 62px) !important;
  letter-spacing: -0.03em !important;
  font-weight: 300 !important;
}
.stat-item {
  transition: transform var(--t-base) var(--ease-stripe);
  cursor: default;
}
.stat-item:hover {
  transform: translateY(-3px);
}
.dep-card {
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.8) !important;
  box-shadow: var(--surface-el) !important;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--t-base) var(--ease-stripe),
    border-color var(--t-base) var(--ease-apple) !important;
}
.dep-card::before {
  content: "";
  position: relative !important;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(170, 140, 115, 0.26),
    transparent
  );
}
.dep-card::after {
  content: "\201C";
  position: relative !important;
  top: 14px;
  right: 18px;
  font-family: "Free Serif", serif;
  font-size: 48px;
  line-height: 1;
  color: rgba(170, 140, 115, 0.09);
  pointer-events: none;
  user-select: none;
}
.dep-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(170, 140, 115, 0.18) !important;
}
@media (max-width: 640px) {
  .dep-card:hover {
    transform: none !important;
  }
}
.faq-item {
  border-radius: 12px !important;
  transition:
    border-color var(--t-fast) var(--ease-apple),
    box-shadow var(--t-slow) var(--ease-apple) !important;
}
.faq-item:hover {
  border-color: rgba(170, 140, 115, 0.24) !important;
  transform: none !important;
}
.faq-item.open {
  border-color: rgba(170, 140, 115, 0.24) !important;
  box-shadow: var(--surface-raised) !important;
  background: linear-gradient(160deg, #ffffff 0%, #fdfcf9 100%) !important;
}
#cta::before {
  background:
    radial-gradient(
      ellipse 100% 85% at 50% 115%,
      rgba(0, 0, 0, 0.25) 0%,
      transparent 62%
    ),
    radial-gradient(
      ellipse 60% 50% at 6% 0%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 38% 35% at 95% 8%,
      rgba(0, 0, 0, 0.12) 0%,
      transparent 52%
    ) !important;
}
.btn-cta-main {
  transition:
    transform var(--t-fast) var(--ease-apple),
    box-shadow var(--t-fast) var(--ease-apple),
    background var(--t-fast) var(--ease-apple) !important;
}
.btn-cta-main:active {
  transform: scale(0.98) translateY(1px) !important;
  transition-duration: 80ms !important;
}
.btn-main-cta {
  transition:
    transform var(--t-fast) var(--ease-apple),
    box-shadow var(--t-fast) var(--ease-apple),
    background var(--t-fast) var(--ease-apple),
    filter var(--t-fast) var(--ease-apple) !important;
}
.btn-main-cta:active {
  transform: scale(0.98) !important;
  transition-duration: 80ms !important;
}
.btn-copper {
  transition:
    transform var(--t-fast) var(--ease-apple),
    box-shadow var(--t-fast) var(--ease-apple),
    background var(--t-fast) var(--ease-apple) !important;
}
.btn-copper:active {
  transform: scale(0.98) translateY(1px) !important;
}
.mod {
  border-radius: 10px !important;
  transition:
    background var(--t-fast) var(--ease-apple),
    padding-left var(--t-base) var(--ease-stripe),
    border-color var(--t-fast) var(--ease-apple) !important;
}
.mod:hover {
  background: rgba(229, 218, 209, 0.07) !important;
  padding-left: calc(var(--mod-pl, 20px) + 6px) !important;
  box-shadow:
    -3px 0 0 rgba(170, 140, 115, 0.35),
    inset 0 0 0 1px rgba(170, 140, 115, 0.16) !important;
}
.t-arrow-c {
  width: 44px !important;
  height: 44px !important;
  font-size: 14px !important;
  background: var(--c1) !important;
  box-shadow:
    0 2px 8px rgba(170, 140, 115, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  transition:
    transform var(--t-fast) var(--ease-spring),
    box-shadow var(--t-fast) var(--ease-apple) !important;
}
.t-arrow-c:hover {
  transform: scale(1.08) !important;
  box-shadow:
    0 6px 20px rgba(170, 140, 115, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}
.suporte-feat {
  transition:
    background var(--t-fast) var(--ease-apple),
    border-color var(--t-fast) var(--ease-apple),
    transform var(--t-base) var(--ease-stripe) !important;
}
.suporte-feat:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  transform: translateX(4px) !important;
  box-shadow: none !important;
}
.suporte-feat-icon-wrap {
  transition:
    background var(--t-fast) var(--ease-apple),
    transform var(--t-base) var(--ease-spring) !important;
}
.suporte-feat:hover .suporte-feat-icon-wrap {
  background: rgba(255, 255, 255, 0.22) !important;
  transform: scale(1.06) !important;
}
.doc-card {
  border-radius: 18px !important;
  overflow: hidden !important;
  transition:
    transform var(--t-base) var(--ease-stripe),
    border-color var(--t-base) var(--ease-apple),
    background var(--t-slow) var(--ease-apple) !important;
}
.doc-card:hover {
  transform: translateY(-5px) !important;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(170, 140, 115, 0.22) !important;
}
@media (max-width: 640px) {
  .doc-card:hover {
    transform: none !important;
  }
}
.doc-card-photo {
  flex-shrink: 0 !important;
  width: clamp(160px, 20vw, 240px) !important;
  height: auto !important;
  min-height: 200px !important;
}
.doc-card-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}
.doc-card-body {
  min-width: 0 !important;
  flex: 1 1 0 !important;
}
@media (max-width: 760px) {
  .doc-card {
    flex-direction: column !important;
  }
  .doc-card-photo {
    width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
  }
  .doc-card-photo img {
    object-position: center 20% !important;
  }
  .doc-card-photo::after {
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 48px !important;
    background: linear-gradient(to bottom, transparent, var(--dmid)) !important;
  }
  .doc-card-body {
    padding: 20px 20px 20px 20px !important;
  }
}
.doubt {
  padding: 30px 36px !important;
  transition: background var(--t-fast) var(--ease-apple) !important;
}
.doubt:hover {
  background: rgba(170, 140, 115, 0.04) !important;
  transform: none !important;
}
.doubt q {
  font-size: 21px !important;
  line-height: 1.5 !important;
}
.ft-card {
  border-radius: 16px !important;
  transition: box-shadow var(--t-slow) var(--ease-apple) !important;
}
.ft-card:hover {
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(170, 140, 115, 0.18) !important;
}
.ft-contact-row {
  transition:
    color var(--t-fast) var(--ease-apple),
    transform var(--t-base) var(--ease-stripe) !important;
}
.ft-contact-row:hover {
  transform: translateX(3px) !important;
}
[aria-hidden="true"][style*="height:1px"] {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(170, 140, 115, 0.14) 30%,
    rgba(170, 140, 115, 0.22) 50%,
    rgba(170, 140, 115, 0.14) 70%,
    transparent 100%
  ) !important;
}
.t-col.rv-left,
.t-col.rv-right {
  transition-duration: 320ms !important;
  transition-delay: 0s !important;
}
.t-col:first-child,
.t-col:last-child {
  transition-delay: 0s !important;
}
.t-arrow.rv-scale {
  transition-duration: 280ms !important;
  transition-delay: 0.06s !important;
}
.t-arrow.on {
  animation-duration: 300ms !important;
  animation-delay: 0.06s !important;
}
.t-row {
  transition-duration: 240ms !important;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    display: none;
  }
  .mini-sticky {
    transition-duration: 0.01ms !important;
  }
  .hero-visual-deco {
    animation: none !important;
    opacity: 1;
    transform: translateY(-52%) !important;
  }
  .hero-visual-deco svg {
    animation: none !important;
  }
  .steps-connector {
    transition: none !important;
    opacity: 1;
    transform: scaleX(1);
  }
  .step-card,
  .ben,
  .dep-card,
  .faq-item,
  .doc-card,
  .stat-item,
  .suporte-feat,
  .ft-card,
  .doubt,
  .t-arrow-c {
    transition-duration: 0.01ms !important;
  }
}
#hero {
  align-items: stretch !important;
  padding: 0 !important;
  text-align: left !important;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 0;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 64px 80px;
  align-items: center;
  min-height: 100dvh;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 64px;
}
.hero-copy .hero-kicker {
  margin-bottom: 32px;
}
.hero-copy .hero-h1 {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.hero-copy .hero-sub {
  margin-left: 0;
  text-align: left;
}
.hero-copy .hero-reinforce {
  margin-left: 0;
  text-align: left;
}
.hero-copy .hero-objections {
  justify-content: flex-start;
}
.hero-copy .cta-micro {
  justify-content: flex-start !important;
}
.hero-copy .hero-trust {
  justify-content: flex-start !important;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.hv-card {
  width: 100%;
  max-width: 400px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid rgba(170, 140, 115, 0.22);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(170, 140, 115, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.36),
    0 8px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(229, 218, 209, 0.1);
  backdrop-filter: blur(16px);
  animation: hvcardIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
@keyframes hvcardIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.hv-card-shine {
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(229, 218, 209, 0.3),
    transparent
  );
}
.hv-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.hv-card-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(170, 140, 115, 0.14);
  border: 1px solid rgba(170, 140, 115, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv-card-meta {
  flex: 1;
  min-width: 0;
}
.hv-card-name {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(229, 218, 209, 0.9);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hv-card-sub {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(229, 218, 209, 0.38);
  letter-spacing: 0.03em;
  margin-top: 2px;
}
.hv-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(175, 188, 167, 0.14);
  border: 1px solid rgba(175, 188, 167, 0.22);
  border-radius: 100px;
  padding: 4px 10px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(175, 188, 167, 0.8);
  flex-shrink: 0;
}
.hv-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(175, 188, 167, 0.9);
  animation: dotBreath 2.8s ease-in-out infinite;
}
.hv-card-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(170, 140, 115, 0.18),
    transparent
  );
  margin-bottom: 18px;
}
.hv-modules {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.hv-module {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}
.hv-m-done {
  background: rgba(170, 140, 115, 0.08);
  border: 1px solid rgba(170, 140, 115, 0.12);
  color: rgba(229, 218, 209, 0.55);
}
.hv-m-active {
  background: rgba(170, 140, 115, 0.14);
  border: 1px solid rgba(170, 140, 115, 0.28);
  color: rgba(229, 218, 209, 0.9);
  box-shadow: 0 2px 12px rgba(170, 140, 115, 0.12);
}
.hv-m-locked {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(229, 218, 209, 0.07);
  color: rgba(229, 218, 209, 0.28);
}
.hv-mod-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv-mod-check {
  background: rgba(175, 188, 167, 0.22);
  color: rgba(175, 188, 167, 0.85);
}
.hv-mod-pulse {
  background: rgba(170, 140, 115, 0.24);
  color: rgba(170, 140, 115, 0.9);
  position: relative;
}
.hv-mod-pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 8px;
  border: 1.5px solid rgba(170, 140, 115, 0.35);
  animation: modPulse 2.4s ease-in-out infinite;
}
@keyframes modPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(1.4);
  }
}
.hv-mod-lock {
  background: rgba(229, 218, 209, 0.06);
  color: rgba(229, 218, 209, 0.22);
}
.hv-progress-wrap {
  margin-bottom: 20px;
}
.hv-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(229, 218, 209, 0.38);
}
.hv-progress-pct {
  color: rgba(170, 140, 115, 0.75);
}
.hv-progress-bar {
  height: 4px;
  background: rgba(229, 218, 209, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.hv-progress-fill {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--c1d), var(--c1));
  border-radius: 2px;
  animation: progressLoad 1.4s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}
@keyframes progressLoad {
  from {
    width: 0;
  }
  to {
    width: 40%;
  }
}
.hv-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 16px;
  border-top: 1px solid rgba(170, 140, 115, 0.12);
}
.hv-footer-stat {
  text-align: center;
}
.hv-stat-num {
  display: block;
  font-family: "Free Serif", serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(229, 218, 209, 0.8);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hv-stat-lbl {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(229, 218, 209, 0.3);
  margin-top: 4px;
}
.hv-footer-divider {
  width: 1px;
  height: 28px;
  background: rgba(170, 140, 115, 0.14);
}
.hv-float-badge {
  position: absolute;
  background: rgba(43, 32, 22, 0.88);
  border: 1px solid rgba(170, 140, 115, 0.22);
  border-radius: 12px;
  padding: 10px 14px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(229, 218, 209, 0.08);
}
.hv-badge-stars {
  top: 16px;
  right: -20px;
  animation: hvcardIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}
.hv-badge-access {
  bottom: 24px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(229, 218, 209, 0.65);
  animation: hvcardIn 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}
@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 100px 40px 80px;
    min-height: auto;
  }
  .hero-copy {
    padding-right: 0;
    align-items: center;
    text-align: center;
  }
  .hero-copy .hero-h1 {
    text-align: center;
  }
  .hero-copy .hero-sub {
    text-align: center;
  }
  .hero-copy .hero-reinforce {
    text-align: center;
  }
  .hero-copy .hero-objections {
    justify-content: center;
  }
  .hero-copy .cta-micro {
    justify-content: center !important;
  }
  .hero-copy .hero-trust {
    justify-content: center !important;
  }
  .hero-visual {
    display: none;
  }
  .hero-scroll {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}
@media (max-width: 640px) {
  .hero-inner {
    padding: 88px 24px 72px;
  }
}
@media (min-width: 1100px) {
  #hero {
    padding-right: 0 !important;
    text-align: left !important;
    align-items: stretch !important;
  }
  .hero-kicker {
    margin-left: 0 !important;
  }
  .hero-h1 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .hero-sub {
    margin-left: 0 !important;
  }
  .hero-reinforce {
    margin-left: 0 !important;
  }
  .hero-objections {
    justify-content: flex-start !important;
  }
  .hero-cta-wrap .cta-micro {
    justify-content: flex-start !important;
  }
  .hero-trust {
    justify-content: flex-start !important;
  }
  .hero-scroll {
    left: 64px !important;
    transform: none !important;
  }
}
.hero-inner {
  grid-template-columns: 1fr 380px !important;
  padding: 100px 48px 80px !important;
}
.hero-visual {
  padding-right: 0 !important;
  overflow: visible !important;
  justify-content: center !important;
}
.hv-card {
  overflow: visible !important;
}
.hv-doctors {
  display: flex !important;
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 16px;
  z-index: 10;
}
.hv-doc-photo-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(170, 140, 115, 0.4);
  box-shadow:
    0 0 0 3px rgba(170, 140, 115, 0.12),
    0 6px 20px rgba(0, 0, 0, 0.45);
  background: #1e160f;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s;
}
.hv-doctor:hover .hv-doc-photo-wrap {
  transform: scale(1.06);
}
.hv-doc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.hv-doc-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  background: rgba(35, 26, 18, 0.88);
  border: 1px solid rgba(170, 140, 115, 0.2);
  border-radius: 7px;
  padding: 4px 9px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}
.hv-doc-name {
  font-family: "Inter", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(229, 218, 209, 0.88);
}
.hv-doc-crm {
  font-family: "Inter", sans-serif;
  font-size: 8.5px;
  font-weight: 500;
  color: rgba(170, 140, 115, 0.7);
}
.hv-doc-1 {
  animation: hvcardIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}
.hv-doc-2 {
  animation: hvcardIn 1s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}
.hv-badge-stars {
  top: -10px;
  right: -10px;
}
.hv-badge-access {
  bottom: -8px;
  right: 0;
}
@media (max-width: 1340px) {
  .hv-doctors {
    display: none !important;
  }
}
@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    padding: 80px 32px 60px !important;
  }
  .hero-visual {
    justify-content: center !important;
  }
}
.mini-sticky-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  mix-blend-mode: lighten;
  filter: brightness(1.1);
  opacity: 0.9;
  transition: opacity 0.2s;
}
.mini-sticky:hover .mini-sticky-logo {
  opacity: 1;
}
.hv-card-avatar-logo {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  overflow: hidden;
}
.hv-avatar-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: lighten;
  filter: brightness(1.05);
  opacity: 0.88;
}
.ft-logo-wrap {
  margin-bottom: 12px;
}
.ft-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: lighten;
  filter: brightness(1.05);
  opacity: 0.85;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.ft-logo-img.ft-photo {
  object-fit: cover;
  mix-blend-mode: normal;
  filter: none;
  opacity: 0.95;
  border: 1px solid rgba(229, 218, 209, 0.22);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.22);
}
.ft-card:hover .ft-logo-img {
  opacity: 1;
  transform: scale(1.04);
}
.ft-card-secondary {
  margin-bottom: 0 !important;
}
.ft-bottom-brand-multi {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.ft-bottom-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
/* -- fech-cta-meta redesenhado -- */
.fech-cta-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 8px;
  margin-top: 22px;
  padding: 9px 20px;
  background: rgba(170, 140, 115, 0.08);
  border: 1px solid rgba(170, 140, 115, 0.2);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(229, 218, 209, 0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  backdrop-filter: blur(6px);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}
.fech-cta-meta:hover {
  background: rgba(170, 140, 115, 0.14);
  border-color: rgba(170, 140, 115, 0.32);
  color: rgba(229, 218, 209, 0.6);
}
.fech-cta-meta-icon {
  width: 10px;
  height: 12px;
  color: var(--c1);
  opacity: 0.55;
  flex-shrink: 0;
  margin-right: 2px;
}
.fech-cta-meta-sep {
  opacity: 0.3;
  font-size: 9px;
}

@media (max-width: 480px) {
  .fech-cta-meta {
    font-size: 9.5px;
    padding: 8px 16px;
    gap: 4px 6px;
    letter-spacing: 0.3px;
  }
}

/* -- Fix mobile: hero-kicker n�o estica -- */
@media (max-width: 768px) {
  .hero-kicker {
    max-width: calc(100% - 32px);
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .hero-kicker-txt {
    font-size: 9px;
    letter-spacing: 1.8px;
    white-space: normal;
    text-align: center;
    line-height: 1.5;
  }
}

/* -- Fix mobile: scroll indicator n�o sobrep�e trust items -- */
/* Tira do fluxo e fixa no fundo do hero */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  z-index: 2;
  white-space: nowrap;
}
/* Garante que hero tenha posi��o relativa e padding suficiente embaixo */
#hero {
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    padding-bottom: 110px !important;
  }
  .hero-scroll-indicator {
    bottom: 20px;
  }
}

/* ===== Ajustes finais hero: mobile + desktop ===== */
.hero-kicker {
  width: fit-content;
  max-width: min(100%, 760px);
  margin-inline: auto;
  padding: 10px 18px;
  gap: 8px;
  align-self: flex-start;
}
.hero-kicker-txt {
  display: block;
  white-space: normal !important;
  overflow-wrap: anywhere;
}
.hero-copy {
  padding-bottom: 88px;
}
.hero-scroll-indicator {
  left: 50% !important;
  right: auto !important;
  bottom: 24px !important;
  transform: translateX(-50%) !important;
  width: max-content;
  max-width: calc(100% - 32px);
  text-align: center;
  z-index: 3;
}
.hero-trust-row,
.hero-microtrust {
  position: relative;
  z-index: 2;
}

@media (min-width: 1100px) {
  .hero-copy {
    padding-bottom: 108px !important;
  }
  .hero-scroll-indicator {
    bottom: 30px !important;
  }
}

@media (max-width: 768px) {
  #hero {
    min-height: auto;
    padding-bottom: 0 !important;
  }
  .hero-inner {
    padding: 88px 20px 136px !important;
  }
  .hero-copy {
    width: 100%;
    padding-bottom: 0 !important;
  }
  .hero-kicker {
    max-width: calc(100% - 8px) !important;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 18px;
  }
  .hero-kicker > svg,
  .hero-kicker-dot {
    flex-shrink: 0;
  }
  .hero-kicker-txt {
    font-size: 8.4px !important;
    line-height: 1.35 !important;
    letter-spacing: 1.2px !important;
    text-wrap: balance;
  }
  .hero-scroll-indicator {
    bottom: 18px !important;
    gap: 8px;
  }
  .hsi-label {
    font-size: 10px !important;
    letter-spacing: 3px !important;
  }
  .hero-trust-row {
    justify-content: center !important;
    gap: 8px 10px !important;
    margin-top: 18px !important;
    padding-inline: 8px;
  }
  .hero-trust-item {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding: 84px 16px 132px !important;
  }
  .hero-kicker {
    max-width: 100% !important;
    padding: 9px 12px;
    gap: 5px;
  }
  .hero-kicker-txt {
    font-size: 7.8px !important;
    letter-spacing: 1px !important;
    line-height: 1.3 !important;
  }
  .hero-scroll-indicator {
    bottom: 14px !important;
  }
  .hsi-mouse {
    width: 20px;
    height: 30px;
  }
  .hsi-chevrons svg {
    width: 12px;
    height: 12px;
  }
}
/* ===== HERO KICKER AJUSTE GLOBAL ===== */

.hero-kicker {
  margin-top: 16px; /* d� respiro no desktop */
}

/* DESKTOP GRANDE (melhor alinhamento visual) */
@media (min-width: 1100px) {
  #hero {
    padding-top: 100px; /* antes estava muito alto/desbalanceado */
  }

  .hero-kicker {
    margin-top: 24px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  #hero {
    padding-top: 72px;
  }

  .hero-kicker {
    margin-top: -16px; /* sobe sem colar */
    margin-bottom: 20px;
  }
}
/* ===== SETAS PREMIUM MAIS CHAMATIVAS ===== */

.scroll-hints {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 180px !important;
  pointer-events: none;
  z-index: 2;
}

.arrow {
  position: absolute;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 218, 209, 0.24);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.05);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 0 0 1px rgba(255,255,255,0.03);
  opacity: 0.92;
  transform: translateY(0) scale(1);
  animation: premiumArrowFloat 1.9s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

/* glow externo suave */
.arrow::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(170,140,115,0.18) 0%, rgba(170,140,115,0.06) 45%, transparent 72%);
  filter: blur(10px);
  opacity: 0.9;
  z-index: -1;
  animation: premiumArrowGlow 1.9s ease-in-out infinite;
}

/* brilho interno */
.arrow::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  right: 7px;
  height: 38%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.02));
  opacity: 0.8;
}

.arrow.left {
  left: 22px;
  animation-delay: 0s;
}

.arrow.right {
  right: 22px;
  animation-delay: 0.18s;
}

/* anima��o premium: desce, cresce levemente e volta */
@keyframes premiumArrowFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.78;
  }
  35% {
    transform: translateY(8px) scale(1.06);
    opacity: 1;
  }
  60% {
    transform: translateY(14px) scale(1.02);
    opacity: 0.96;
  }
}

/* halo respirando */
@keyframes premiumArrowGlow {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

/* hover desktop */
@media (hover: hover) {
  .arrow {
    transition:
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .arrow:hover {
    transform: translateY(4px) scale(1.08);
    box-shadow:
      0 14px 36px rgba(0,0,0,0.26),
      inset 0 1px 0 rgba(255,255,255,0.18),
      0 0 0 1px rgba(255,255,255,0.05);
    border-color: rgba(229, 218, 209, 0.34);
  }
}

/* mobile */
@media (max-width: 768px) {
  .scroll-hints {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 180px !important;
  pointer-events: none;
  z-index: 2;
}

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 19px;
  }

  .arrow.left {
    left: 18px;
  }

  .arrow.right {
    right: 18px;
  }
}

/* telas muito pequenas */
@media (max-width: 420px) {
  .scroll-hints {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 180px !important;
  pointer-events: none;
  z-index: 2;
}

  .arrow {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}
/* ===== CORRIGIR SOBREPOSI��O NO HERO ===== */

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-microtrust,
.hero-trust-row,
.hero-objections {
  position: relative;
  z-index: 2;
}

.hero-microtrust {
  margin-top: 10px;
  line-height: 1.6;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 8px;
}

.hero-trust-row {
  margin-top: 6px;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 10px;
  column-gap: 10px;
}

.hero-trust-item {
  margin: 0;
}

.hero-objections {
  margin-bottom: 8px;
  row-gap: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-cta-wrap {
    gap: 14px;
  }

  .hero-objections {
    margin-bottom: 10px;
  }

  .hero-microtrust {
    margin-top: 4px;
    font-size: 12px;
  }

  .hero-trust-row {
    margin-top: 2px;
    gap: 8px;
  }
}
.hero-microtrust,
.hero-trust-row {
  transform: none !important;
  top: auto !important;
  bottom: auto !important;
}


/* ===== HERO REFINO TOTAL � FINAL ===== */

#hero{
  min-height:auto !important;
  justify-content:flex-start !important;
  align-items:center !important;
  padding:52px 20px 54px !important;
  overflow:hidden !important;
}

.hero-inner{
  width:min(1180px,100%) !important;
  margin:0 auto !important;
  padding:0 !important;
  display:grid !important;
  grid-template-columns:minmax(0,640px) minmax(320px,1fr) !important;
  align-items:center !important;
  gap:48px !important;
  position:relative !important;
  z-index:2 !important;
}

.hero-copy{
  width:100% !important;
  max-width:640px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  padding:0 !important;
  margin:0 auto !important;
}

.hero-logo{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  width:100% !important;
  margin:0 0 14px !important;
  position:relative !important;
  z-index:4 !important;
}

.hero-logo img{
  width:70px !important;
  height:auto !important;
  opacity:.96 !important;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.22)) !important;
}

.hero-kicker{
  margin:0 0 18px !important;
  max-width:max-content !important;
}

.hero-h1{
  margin:0 0 16px !important;
  max-width:16.8ch !important;
}

.hero-sub{
  margin:0 0 18px !important;
  max-width:62ch !important;
}

.hero-reinforce{
  margin:0 0 18px !important;
  max-width:62ch !important;
}

.hero-objections{
  margin:0 0 18px !important;
  gap:10px !important;
  justify-content:center !important;
}

.hero-cta-wrap{
  width:100% !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:12px !important;
  margin:0 !important;
  position:relative !important;
  z-index:4 !important;
}

.btn-main-cta{
  min-height:58px !important;
  padding-inline:28px !important;
}

.hero-microtrust,
.hero-trust-row{
  position:relative !important;
  transform:none !important;
  inset:auto !important;
  width:100% !important;
  margin:0 !important;
  justify-content:center !important;
}

.hero-microtrust{
  row-gap:8px !important;
  line-height:1.5 !important;
}

.hero-trust-row{
  gap:8px 10px !important;
}

.hero-trust-item{
  padding:6px 12px !important;
}

.hero-visual{
  margin:0 !important;
  justify-self:end !important;
}

.hero-scroll-indicator{
  position:relative !important;
  left:auto !important;
  right:auto !important;
  bottom:auto !important;
  transform:none !important;
  width:max-content !important;
  margin:20px auto 0 !important;
  z-index:3 !important;
}

.scroll-hints {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 180px !important;
  pointer-events: none;
  z-index: 2;
}

.arrow{
  position:absolute !important;
  width:44px !important;
  height:44px !important;
  border-radius:999px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:20px !important;
  font-weight:700 !important;
  color:rgba(255,255,255,.96) !important;
  border:1px solid rgba(229,218,209,.22) !important;
  background:linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.04)), rgba(255,255,255,.05) !important;
  backdrop-filter:blur(10px) saturate(145%) !important;
  -webkit-backdrop-filter:blur(10px) saturate(145%) !important;
  box-shadow:0 10px 28px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.14) !important;
  animation:premiumArrowSide 1.8s cubic-bezier(0.22,1,0.36,1) infinite !important;
}

.arrow::before{
  content:"" !important;
  position:absolute !important;
  inset:-8px !important;
  border-radius:inherit !important;
  background:radial-gradient(circle, rgba(170,140,115,.18), transparent 72%) !important;
  filter:blur(8px) !important;
  z-index:-1 !important;
}

.arrow.left{ left:12px !important; }
.arrow.right{ right:12px !important; }

@keyframes premiumArrowSide {
  0%, 100% { transform: translateY(0); opacity: .76; }
  50% { transform: translateY(10px); opacity: 1; }
}

@media (min-width:1100px){
  #hero{
    padding:58px 40px 64px !important;
    text-align:left !important;
  }
  .hero-inner{
    grid-template-columns:minmax(0,640px) minmax(360px,1fr) !important;
    gap:56px !important;
  }
  .hero-copy{
    align-items:flex-start !important;
    margin:0 !important;
  }
  .hero-logo,
  .hero-objections,
  .hero-microtrust,
  .hero-trust-row{
    justify-content:flex-start !important;
  }
  .hero-scroll-indicator{
    margin:22px 0 0 !important;
  }
  .arrow.left{ left:18px !important; }
  .arrow.right{ right:18px !important; }
}

@media (max-width:1099px){
  .hero-inner{
    grid-template-columns:1fr !important;
    gap:28px !important;
  }
  .hero-visual{
    justify-self:center !important;
  }
}

@media (max-width:768px){
  #hero{
    padding:38px 16px 44px !important;
  }
  .hero-logo{
    margin-bottom:12px !important;
  }
  .hero-logo img{
    width:60px !important;
  }
  .hero-kicker{
    margin-bottom:14px !important;
  }
  .hero-h1{
    margin-bottom:14px !important;
  }
  .hero-sub,
  .hero-reinforce{
    margin-bottom:16px !important;
  }
  .hero-objections{
    margin-bottom:16px !important;
    gap:8px !important;
  }
  .hero-cta-wrap{
    gap:10px !important;
  }
  .btn-main-cta{
    min-height:54px !important;
    width:100% !important;
    max-width:360px !important;
  }
  .hero-microtrust{
    font-size:12px !important;
  }
  .hero-trust-row{
    gap:8px !important;
  }
  .hero-scroll-indicator{
    margin-top:16px !important;
  }
  .scroll-hints {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 330px !important;
  pointer-events: none;
  z-index: 2;
}
  .arrow{
    width:38px !important;
    height:38px !important;
    font-size:18px !important;
  }
  .arrow.left{ left:8px !important; }
  .arrow.right{ right:8px !important; }
}

/* ==== BENEFITS CARD STRAIGHT ALIGN FIX ==== */
.bens {
  align-items: stretch !important;
}

.ben {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.ben-title,
.ben-text {
  width: 100% !important;
}

.ben-text {
  flex: 1 1 auto !important;
}

.ben-result {
  display: flex !important;
  width: 100% !important;
  min-height: 40px !important;
  margin-top: 16px !important;
  padding: 8px 14px !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1.35 !important;
  align-self: stretch !important;
  white-space: normal !important;
}

@media (max-width: 640px) {
  .ben {
    padding-bottom: 24px !important;
  }

  .ben-result {
    min-height: 42px !important;
    font-size: 11.5px !important;
  }
}

/* ===== FIX: fundo bege entre urgency bar e hero ===== */
body {
  background: var(--dark) !important;
}
#problema, #formato, #stats, #beneficios, #suporte,
#transformacao, #faq, #cta, #fechamento, #autoridade,
footer, #depoimentos, #modulos, #garantia {
  position: relative;
  z-index: 1;
}
/* Restaura fundo correto a partir do problema */
#problema { background: var(--bg) !important; }

/* ===== Refactor: classes migradas de inline ===== */
.hero-lines-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(229, 218, 209, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 218, 209, 0.012) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    black 0%,
    transparent 75%
  );
}

.hero-kicker-centered {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-kicker-icon {
  opacity: 0.6;
  flex-shrink: 0;
}

.nowrap {
  white-space: nowrap;
}

.btn-main-cta-icon {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-cta-compact {
  font-size: 14.5px !important;
  padding: 20px 56px !important;
  text-align: center;
  justify-content: center;
}

.aut-footer-meta {
  margin-top: 16px;
  font-size: 11.5px;
  color: rgba(229, 218, 209, 0.28);
  letter-spacing: 0.3px;
}

.hero-scroll-indicator {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  color: inherit;
}

.section-label-inline {
  display: block;
  margin-bottom: 14px;
}

.steps-legacy-item {
  text-align: center;
  padding: 0 20px;
}

.dep-rating-stars {
  display: flex;
  gap: 3px;
}

.dep-rating-stars-value {
  color: #e8b84b;
  font-size: 20px;
}

.dep-stars-row {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.dep-stars {
  color: #e8b84b;
  font-size: 15px;
}

.dep-author-meta {
  font-size: 11.5px;
  color: var(--soft);
  margin-top: 1px;
}

/* ===== Alinhamento Global ===== */
:root {
  --align-max: min(1120px, calc(100% - 40px));
  --align-max-narrow: min(900px, calc(100% - 40px));
  --align-max-text: min(760px, calc(100% - 40px));
}

main#main-content > section {
  overflow-x: clip;
}

.w,
.w-sm {
  width: 100%;
  max-width: none !important;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 40px);
}

.w {
  width: var(--align-max);
}

.w-sm {
  width: var(--align-max-narrow);
}

.rule.rule-c,
#problema .rv,
#depoimentos .rv,
#cta .rv,
#faq .rv,
#fechamento .rv,
#autoridade .rv,
#beneficios .rv {
  margin-inline: auto;
}

#hero {
  padding-inline: clamp(16px, 3.2vw, 40px) !important;
}

#hero .hero-inner {
  width: var(--align-max) !important;
  margin-inline: auto !important;
}

#hero .hero-copy {
  width: 100%;
}

#hero .hero-sub,
#hero .hero-reinforce {
  margin-inline: auto;
  text-wrap: pretty;
}

/* Ajuste fino solicitado: descer o título principal do hero no mobile */
@media (max-width: 768px) {
  #hero .hero-kicker {
    margin-bottom: 22px !important;
  }

  #hero .hero-h1 {
    margin-top: 24px !important;
  }
}

@media (max-width: 420px) {
  #hero .hero-h1 {
    margin-top: 20px !important;
  }
}

#problema .problema-grid,
#beneficios .beneficios-hd,
#beneficios .bens,
#transformacao .t-wrap,
#autoridade .docs-grid {
  width: 100%;
}

#depoimentos .w-sm,
#como-funciona .w-sm,
#cta .w-sm {
  max-width: var(--align-max-narrow) !important;
  margin-inline: auto !important;
}

.dep-card {
  height: 100%;
}

.dep-card > p {
  text-wrap: pretty;
}

@media (max-width: 1099px) {
  #hero .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  #hero .hero-copy {
    max-width: var(--align-max-text) !important;
    margin-inline: auto !important;
    align-items: center !important;
    text-align: center !important;
  }

  #hero .hero-h1 {
    max-width: 16ch !important;
    margin-inline: auto !important;
  }

  #hero .hero-objections,
  #hero .hero-microtrust,
  #hero .hero-trust-row {
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  :root {
    --align-max: min(1120px, calc(100% - 28px));
    --align-max-narrow: min(900px, calc(100% - 28px));
    --align-max-text: min(760px, calc(100% - 28px));
  }

  #hero {
    padding-top: 34px !important;
    padding-bottom: 42px !important;
  }

  #hero .hero-h1 {
    max-width: 13ch !important;
    font-size: clamp(42px, 11.2vw, 66px) !important;
    line-height: 1.1 !important;
  }

  #hero .hero-sub,
  #hero .hero-reinforce {
    max-width: 36ch !important;
    line-height: 1.62 !important;
  }

  .hero-cta-wrap {
    width: 100% !important;
  }

  .btn-main-cta {
    width: min(100%, 360px) !important;
  }

  .steps-legacy-item {
    padding-inline: 12px;
  }

  .bens,
  .docs-grid {
    gap: 18px !important;
  }

  .dep-card {
    padding: 24px 20px !important;
  }
}

@media (max-width: 420px) {
  #hero .hero-h1 {
    font-size: clamp(40px, 11.5vw, 58px) !important;
  }

  #hero .hero-kicker {
    width: 100%;
    justify-content: center;
    padding-inline: 14px !important;
  }

  #hero .hero-kicker-txt {
    letter-spacing: 1.9px !important;
  }

  #hero .hero-sub,
  #hero .hero-reinforce {
    max-width: 32ch !important;
  }
}

