:root {
  --bg: #031016;
  --bg-soft: rgba(7, 22, 30, 0.72);
  --surface: rgba(10, 28, 37, 0.58);
  --surface-strong: rgba(7, 22, 30, 0.88);
  --line: rgba(140, 255, 231, 0.16);
  --text: #f2fbff;
  --muted: #b1d5d8;
  --teal: #1cd4d7;
  --cyan: #4edbff;
  --lime: #b7ef62;
  --lime-strong: #9de13d;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(34, 208, 180, 0.10), transparent 25%),
    radial-gradient(circle at bottom right, rgba(183, 239, 98, 0.08), transparent 20%),
    #02080c;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .15;
  pointer-events: none;
  z-index: -4;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -3;
}
.orb-1 {
  width: 480px; height: 480px;
  left: -140px; top: 140px;
  background: rgba(65, 255, 214, 0.14);
}
.orb-2 {
  width: 420px; height: 420px;
  right: -80px; top: 260px;
  background: rgba(183, 239, 98, 0.14);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
}
.section-soft {
  background: linear-gradient(180deg, rgba(5, 17, 23, 0.1), rgba(5, 17, 23, 0.6));
  border-top: 1px solid rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.03);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(3, 9, 13, 0.9), rgba(3, 9, 13, 0.48));
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}
.brand span { font-size: 1.25rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
}
.site-nav a:hover { color: white; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 15px 28px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #041114;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  box-shadow: 0 10px 30px rgba(78, 219, 255, 0.18), 0 12px 38px rgba(183, 239, 98, 0.16);
}
.btn-secondary {
  color: var(--text);
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(14px);
}
.btn-nav {
  padding: 12px 22px;
  color: #061319;
  background: linear-gradient(90deg, rgba(78, 219, 255, 0.9), rgba(183, 239, 98, 0.92));
}
.full { width: 100%; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: white;
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 80vw;
  height: 220px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: .55;
  pointer-events: none;
}
.hero::before {
  left: -14vw;
  top: 16%;
  background: linear-gradient(90deg, rgba(183,239,98,.25), rgba(78,219,255,.16), transparent 70%);
  transform: rotate(-8deg);
}
.hero::after {
  right: -20vw;
  bottom: 4%;
  background: linear-gradient(90deg, transparent, rgba(78,219,255,.18), rgba(183,239,98,.22));
  transform: rotate(6deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  margin-bottom: 18px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 8px rgba(183,239,98,.12);
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.hero h1 span,
.section-heading h2 span,
.split-copy strong { color: var(--lime); }
.hero-subtitle {
  margin: 24px 0 0;
  color: #daf1f2;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.75;
  max-width: 760px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 18px;
}
.proof-text {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.trust-row div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.trust-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: .92rem;
}
.trust-row span {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.5;
}

.hero-card { position: relative; }
.glass-frame {
  position: relative;
  min-height: 620px;
  border-radius: 42px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(12, 29, 37, 0.76), rgba(7, 18, 23, 0.82)),
    radial-gradient(circle at top, rgba(78,219,255,.14), transparent 35%);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.glass-frame::before,
.glass-frame::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 150px;
  left: -20%;
  border-radius: 50%;
  filter: blur(18px);
}
.glass-frame::before {
  top: 22%;
  background: linear-gradient(90deg, rgba(183,239,98,.16), rgba(78,219,255,.12), transparent 80%);
  transform: rotate(-8deg);
}
.glass-frame::after {
  bottom: 10%;
  background: linear-gradient(90deg, transparent, rgba(78,219,255,.12), rgba(183,239,98,.18));
  transform: rotate(7deg);
}
.hero-logo-box {
  position: absolute;
  inset: 52px 52px auto 52px;
  display: grid;
  place-items: center;
}
.hero-logo-box img {
  width: min(280px, 72%);
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
}
.metric-card {
  position: absolute;
  width: min(270px, calc(100% - 48px));
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(6, 19, 25, 0.84);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  backdrop-filter: blur(16px);
}
.metric-label {
  display: block;
  color: var(--muted);
  font-size: .84rem;
  margin-bottom: 6px;
}
.metric-card strong {
  font-size: 1.45rem;
  display: block;
  margin-bottom: 4px;
}
.metric-card small { color: var(--muted); line-height: 1.5; }
.card-a { top: auto; bottom: 188px; right: 24px; }
.card-b { bottom: 112px; left: 24px; }
.card-c { bottom: 34px; right: 24px; }
.floating-card { animation: float 6s ease-in-out infinite; }
.card-b { animation-delay: 1.6s; }
.card-c { animation-delay: 3s; }

.section-heading {
  margin-bottom: 38px;
}
.section-heading.no-margin { margin-bottom: 18px; }
.section-heading.center { text-align: center; }
.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 800px;
  line-height: 1.8;
}
.section-heading.center p { margin-inline: auto; }

.feature-grid,
.benefit-grid,
.steps-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}
.feature-grid.three { grid-template-columns: repeat(3, 1fr); }
.benefit-grid { grid-template-columns: repeat(3, 1fr); }
.steps-grid { grid-template-columns: repeat(4, 1fr); }
.pricing-grid { grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }

.social-proof-section {
  overflow: hidden;
}

.social-proof-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  min-height: 620px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.95) 10%, rgba(0,0,0,.95) 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.95) 10%, rgba(0,0,0,.95) 90%, transparent 100%);
}

.social-column {
  position: relative;
  overflow: hidden;
  height: 620px;
}

.social-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  will-change: transform;
  animation: socialScroll 22s linear infinite;
}

.social-column.reverse .social-track {
  animation-name: socialScrollReverse;
}

.speed-1 .social-track { animation-duration: 22s; }
.speed-2 .social-track { animation-duration: 26s; }
.speed-3 .social-track { animation-duration: 24s; }
.speed-4 .social-track { animation-duration: 28s; }

.social-proof-wall:hover .social-track {
  animation-play-state: paused;
}

.social-card {
  border-radius: 22px;
  padding: 22px 20px;
  background: linear-gradient(180deg, rgba(10, 25, 37, .88), rgba(8, 17, 29, .84));
  border: 1px solid rgba(116, 243, 222, .14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
}

.social-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.social-user strong,
.social-card strong {
  display: block;
  margin: 0;
  font-size: 1rem;
  color: #f3fbff;
}

.social-user span {
  display: block;
  margin-top: 2px;
  font-size: .88rem;
  color: var(--muted);
  opacity: .8;
}

.avatar {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .95rem;
  color: #031016;
  border: 2px solid rgba(255,255,255,.1);
  box-shadow: 0 10px 24px rgba(0,0,0,.24);
}

.avatar-male {
  background: linear-gradient(135deg, var(--cyan), #7cf0ff);
}

.avatar-female {
  background: linear-gradient(135deg, var(--lime), #7cffd9);
}

.social-card p {
  margin: 0;
  color: #d7f0f0;
  line-height: 1.75;
}

.stars {
  margin-top: 16px;
  letter-spacing: .18em;
  font-size: .92rem;
  color: #ffd86b;
}

@keyframes socialScroll {
  from { transform: translateY(0); }
  to { transform: translateY(calc(-50% - 9px)); }
}

@keyframes socialScrollReverse {
  from { transform: translateY(calc(-50% - 9px)); }
  to { transform: translateY(0); }
}


.feature-card,
.benefit-card,
.step-card,
.pricing-card,
.testimonial-card,
.comparison-card,
.cta-box,
.faq-item {
  background: linear-gradient(180deg, rgba(9, 27, 35, 0.82), rgba(7, 19, 25, 0.7));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-card,
.benefit-card,
.step-card,
.pricing-card,
.testimonial-card,
.comparison-card {
  border-radius: 26px;
  padding: 28px;
}
.feature-card h3,
.benefit-card h3,
.step-card h3,
.pricing-card h3,
.testimonial-card strong {
  margin: 0 0 10px;
}
.feature-card p,
.benefit-card p,
.step-card p,
.testimonial-card p,
.split-copy,
.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.icon {
  font-size: 1.65rem;
  margin-bottom: 16px;
}
.benefit-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.benefit-top span { font-size: 1.5rem; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(78,219,255,.18), rgba(183,239,98,.22));
  color: white;
  font-weight: 800;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 32px;
  align-items: center;
}
.split-copy { font-size: 1.06rem; }
.split-copy + .split-copy { margin-top: 12px; }
.muted { opacity: .9; }
.comparison-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.comparison-row:last-child { border-bottom: 0; }
.comparison-row span { color: var(--muted); }

.pricing-card { position: relative; overflow: hidden; }
.pricing-card.featured {
  transform: translateY(-8px);
  border-color: rgba(183,239,98,.32);
  box-shadow: 0 20px 65px rgba(183,239,98,.08), var(--shadow);
}
.plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 18px;
}
.fit { background: rgba(78, 219, 255, 0.12); color: var(--cyan); }
.care { background: rgba(183, 239, 98, 0.12); color: var(--lime); }
.price-line {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}
.currency, .period {
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
}
.pricing-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.pricing-card li {
  position: relative;
  padding-left: 28px;
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}
.pricing-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lime);
  font-weight: 900;
}

.faq-wrap { max-width: 920px; }
.faq-list { display: grid; gap: 16px; }
.faq-item {
  border-radius: 22px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  font: inherit;
  font-weight: 700;
  color: white;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--lime);
}
.faq-item.active .faq-question::after { content: "–"; }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-item.active .faq-answer { grid-template-rows: 1fr; }
.faq-answer > p {
  overflow: hidden;
  padding: 0 26px 22px;
}

.section-cta { padding-top: 48px; }
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 34px;
}
.cta-box h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
}
.cta-box p { margin: 0; color: var(--muted); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.site-footer {
  padding: 24px 0 44px;
  color: var(--muted);
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-wrap p { margin: 8px 0 0; }
.footer-link { color: white; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .steps-grid,
  .feature-grid.three,
  .benefit-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .glass-frame { min-height: 520px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(3, 12, 16, 0.96);
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.open { display: flex; }
  .trust-row,
  .feature-grid.three,
  .benefit-grid,
  .steps-grid,
  .split-grid,
  .testimonial-grid,
  .pricing-grid,
  .cta-box,
  .footer-wrap {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }
  .hero { min-height: auto; padding-top: 32px; }
  .hero h1 { font-size: clamp(2.3rem, 9vw, 3.8rem); }
  .glass-frame { min-height: 470px; }
  .hero-logo-box { inset: 34px 34px auto 34px; }
  .metric-card { position: absolute; }
  .card-a { top: 112px; right: 16px; }
  .card-b { bottom: 98px; left: 16px; }
  .card-c { bottom: 20px; right: 16px; }
  .cta-actions { justify-content: stretch; }
  .cta-actions .btn { width: 100%; }
}

@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 46px; height: 46px; }
  .brand span { font-size: 1rem; }
  .hero-actions .btn,
  .hero-actions a,
  .btn { width: 100%; }
  .hero-subtitle,
  .proof-text { font-size: 1rem; }
  .glass-frame {
    min-height: 420px;
    border-radius: 28px;
  }
  .hero-logo-box img { width: min(220px, 72%); }
  .metric-card {
    position: static;
    width: 100%;
    margin: 12px 16px 0;
  }
  .hero-card .glass-frame {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 210px 0 16px;
  }
  .hero-logo-box {
    inset: 24px 24px auto 24px;
  }
}


@media (max-width: 1100px) {
  .social-proof-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .social-proof-wall {
    grid-template-columns: 1fr;
    min-height: 540px;
  }

  .social-column {
    height: 540px;
  }
}


/* Planos no estilo do app */
.pricing-grid-app {
  align-items: stretch;
  gap: 28px;
}

.pricing-card-app {
  padding: 0;
  border-radius: 28px;
  overflow: visible;
  background: transparent;
  border: 2px solid rgba(70, 228, 197, .48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
}

.pricing-card-app.featured {
  transform: none;
  border-color: rgba(70, 228, 197, .85);
  box-shadow: 0 24px 70px rgba(46, 230, 166, .16), 0 22px 60px rgba(0, 0, 0, .24);
}

.plan-header {
  position: relative;
  padding: 34px 28px 72px;
  text-align: center;
  border-radius: 26px 26px 0 0;
  background: linear-gradient(135deg, rgba(17, 86, 77, .96), rgba(28, 171, 149, .94));
}

.fit-header {
  background: linear-gradient(135deg, rgba(22, 176, 148, .98), rgba(44, 201, 173, .96));
}

.care-header {
  background: linear-gradient(135deg, rgba(8, 72, 62, .98), rgba(14, 103, 88, .96));
}

.plan-header h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.mini-badge {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  padding: 10px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(35, 214, 186, 1), rgba(30, 194, 167, 1));
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.plan-body {
  margin: -38px 18px 18px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(245, 248, 248, .98), rgba(235, 241, 242, .95));
  color: #10171c;
  border: 1px solid rgba(20, 34, 42, .08);
}

.plan-body .btn {
  margin-top: 8px;
}

.plan-frequency {
  text-align: center;
  font-size: 1.2rem;
  color: #5d666d;
  margin-bottom: 8px;
}

.pricing-card-app .price-line {
  text-align: center;
  color: #0b1115;
  margin-bottom: 18px;
}

.pricing-card-app .currency,
.pricing-card-app .period {
  color: #20292f;
}

.pricing-card-app .currency {
  font-size: 1.5rem;
  margin-right: 4px;
}

.pricing-card-app .period {
  font-size: 1.45rem;
  margin-left: 4px;
}

.benefit-box {
  margin-top: 24px;
  padding: 24px 22px;
  border-radius: 18px;
  background: #eef1f2;
  border: 1px solid rgba(17, 24, 28, .12);
}

.benefit-box-title {
  text-align: center;
  font-size: 1.02rem;
  color: #626c74;
  margin-bottom: 18px;
}

.benefit-item-detail + .benefit-item-detail {
  margin-top: 18px;
}

.benefit-item-detail h4 {
  position: relative;
  margin: 0 0 8px;
  padding-left: 26px;
  color: #0f171c;
  font-size: 1.05rem;
  line-height: 1.45;
}

.benefit-item-detail h4::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #192329;
  font-weight: 900;
}

.benefit-item-detail p {
  margin: 0;
  color: #3f4a52;
  line-height: 1.8;
}

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

  .plan-body {
    margin: -36px 14px 14px;
    padding: 24px 18px;
  }
}


/* Ajustes de copy e quebra de texto */
.section-heading {
  overflow-wrap: anywhere;
}
.section-heading h2 {
  max-width: 820px;
  margin-inline: auto;
  text-wrap: balance;
}
.section-heading p {
  max-width: 760px;
  margin-inline: auto;
  text-wrap: pretty;
}

.pricing-grid-app {
  align-items: start;
}

.plan-header,
.plan-body,
.benefit-box,
.benefit-item-detail,
.faq-question,
.faq-answer > p {
  overflow-wrap: anywhere;
  word-break: normal;
}

.plan-header h3,
.benefit-box-title,
.benefit-item-detail h4,
.benefit-item-detail p,
.plan-frequency,
.pricing-card-app .price-line,
.faq-question,
.faq-answer > p {
  text-wrap: pretty;
}

.benefit-item-detail h4 {
  padding-right: 4px;
}

.faq-wrap {
  max-width: 980px;
}
.faq-question {
  padding-right: 64px;
  line-height: 1.45;
}
.faq-answer > p {
  line-height: 1.75;
}

@media (max-width: 900px) {
  .section-heading h2 {
    max-width: 100%;
  }
  .section-heading p {
    max-width: 100%;
  }
  .faq-question {
    padding: 20px 56px 20px 20px;
  }
  .faq-answer > p {
    padding: 0 20px 20px;
  }
}

@media (max-width: 640px) {
  .plan-header {
    padding: 28px 18px 68px;
  }
  .plan-body {
    margin: -34px 12px 12px;
    padding: 22px 16px;
  }
  .benefit-box {
    padding: 18px 16px;
  }
  .benefit-item-detail h4 {
    font-size: 0.98rem;
    line-height: 1.45;
  }
  .benefit-item-detail p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .faq-question {
    font-size: 0.98rem;
  }
}


/* Ajuste definitivo para evitar sobreposição de textos nos cards dos planos */
.pricing-grid-app {
  align-items: start;
}

.pricing-card-app {
  overflow: hidden;
}

.plan-header {
  padding: 34px 24px 92px;
}

.plan-header h3 {
  max-width: 100%;
  line-height: 1.2;
}

.mini-badge {
  bottom: 14px;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 2;
}

.plan-body {
  margin: 0 18px 18px;
  margin-top: -24px;
  position: relative;
  z-index: 1;
}

.plan-frequency {
  font-size: 1rem;
  line-height: 1.45;
  max-width: 240px;
  margin: 0 auto 10px;
}

.pricing-card-app .price-line {
  line-height: 1.15;
}

.benefit-box {
  padding: 22px 18px;
}

.benefit-box-title {
  line-height: 1.4;
}

.benefit-item-detail h4 {
  padding-left: 24px;
  line-height: 1.45;
}

.benefit-item-detail p {
  line-height: 1.7;
}

@media (max-width: 640px) {
  .plan-header {
    padding: 28px 18px 96px;
  }

  .mini-badge {
    bottom: 12px;
    font-size: 0.92rem;
    padding: 10px 16px;
  }

  .plan-body {
    margin: 0 12px 12px;
    margin-top: -18px;
    padding: 22px 16px;
  }

  .plan-frequency {
    max-width: 100%;
    font-size: 0.96rem;
  }

  .benefit-item-detail h4 {
    font-size: 0.96rem;
  }

  .benefit-item-detail p {
    font-size: 0.94rem;
  }
}


/* Ajuste do card flutuante superior para descer e não cobrir a logo */
.hero-metric.top-right,
.metric-card.top-right,
.floating-card.top-right,
.hero-card-top,
.hero-stat-card {
  top: auto !important;
  bottom: 150px !important;
}

@media (max-width: 900px) {
  .hero-metric.top-right,
  .metric-card.top-right,
  .floating-card.top-right,
  .hero-card-top,
  .hero-stat-card {
    bottom: 138px !important;
  }
}

@media (max-width: 640px) {
  .hero-metric.top-right,
  .metric-card.top-right,
  .floating-card.top-right,
  .hero-card-top,
  .hero-stat-card {
    bottom: 128px !important;
  }
}


/* Ajuste fino responsivo do card superior */
@media (max-width: 900px) {
  .card-a {
    top: auto !important;
    bottom: 176px !important;
    right: 20px !important;
  }
}

@media (max-width: 640px) {
  .card-a {
    top: auto !important;
    bottom: 168px !important;
    right: 14px !important;
    width: min(240px, calc(100% - 28px)) !important;
  }
}

/* Ajustes para nova copy */
.proof-text{
  font-weight: 700;
  letter-spacing: 0.01em;
}
.section-heading p,
.hero-subtitle,
.proof-text,
.faq-answer p{
  text-wrap: pretty;
}



/* Alinhamento refinado: centraliza apenas onde melhora a leitura */
.hero,
.hero-content,
.hero-copy,
.hero-title,
.hero-subtitle,
.proof-text,
.section-heading,
.section-heading h2,
.section-heading > p,
.pricing-intro,
.pricing-intro h2,
.pricing-intro p,
.testimonials-section > .section-heading,
.faq-section > .section-heading,
.cta-final {
  text-align: center;
}

.hero-title,
.hero-subtitle,
.proof-text,
.section-heading h2,
.section-heading > p,
.pricing-intro h2,
.pricing-intro p,
.cta-final h2,
.cta-final p {
  margin-left: auto;
  margin-right: auto;
}

.trust-row,
.metrics-row,
.benefits-grid,
.steps-grid,
.pricing-grid-app {
  align-items: stretch;
}

/* Cards com títulos centralizados e descrições alinhadas para leitura */
.feature-card,
.benefit-card,
.step-card,
.pricing-card-app,
.faq-item {
  text-align: left;
}

.feature-card h3,
.benefit-card h3,
.step-card h3,
.plan-header h3,
.plan-frequency,
.price-line,
.benefit-box-title {
  text-align: center;
}

.feature-card p,
.benefit-card p,
.step-card p,
.benefit-item-detail p,
.faq-answer p {
  text-align: left;
}

.feature-card .icon,
.benefit-card .icon,
.step-card .icon,
.metric-card .icon {
  display: flex;
  justify-content: center;
}

.metric-card,
.metric-card strong,
.metric-card span,
.metric-card small {
  text-align: left;
}

.trust-row div,
.split-point,
.benefit-item {
  text-align: left;
}

.split-copy {
  text-align: center;
}

.split-points {
  align-items: start;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-item-detail h4 {
  text-align: left;
  line-height: 1.45;
}

.pricing-card-app .benefit-box {
  text-align: left;
}

.faq-question {
  text-align: left;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  text-align: left;
}

@media (max-width: 900px) {
  .metric-card,
  .trust-row div,
  .split-point {
    text-align: center;
  }

  .benefit-item,
  .faq-question,
  .faq-answer,
  .feature-card,
  .benefit-card,
  .step-card {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero-title,
  .hero-subtitle,
  .proof-text,
  .section-heading h2,
  .section-heading > p,
  .pricing-intro h2,
  .pricing-intro p,
  .cta-final h2,
  .cta-final p {
    max-width: 100%;
  }
}


/* Restaurar alinhamento original da área principal do hero */
.hero,
.hero-content,
.hero-copy,
.hero-title,
.hero-subtitle,
.proof-text,
.trust-row,
.trust-row div,
.metrics-row,
.metric-card,
.metric-card strong,
.metric-card span,
.metric-card small {
  text-align: left !important;
}

.hero-title,
.hero-subtitle,
.proof-text {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.trust-row {
  justify-items: stretch !important;
}

@media (max-width: 900px) {
  .hero,
  .hero-content,
  .hero-copy,
  .hero-title,
  .hero-subtitle,
  .proof-text,
  .trust-row,
  .trust-row div,
  .metrics-row,
  .metric-card,
  .metric-card strong,
  .metric-card span,
  .metric-card small {
    text-align: left !important;
  }
}


/* Ajuste de tamanho e proporção dos cards da seção de planos */
.pricing-grid-app {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 380px));
  justify-content: center;
  gap: 28px;
}

.pricing-card-app {
  width: 100%;
  max-width: 380px;
  min-height: 760px;
  display: flex;
  flex-direction: column;
}

.plan-header {
  min-height: 170px;
}

.plan-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-frequency {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-line {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.benefit-item-detail p {
  min-height: 44px;
}

.plan-body .btn,
.plan-body .btn-primary,
.plan-body .btn-secondary,
.pricing-card-app .btn,
.pricing-card-app .btn-primary,
.pricing-card-app .btn-secondary {
  margin-top: auto;
}

@media (max-width: 900px) {
  .pricing-grid-app {
    grid-template-columns: minmax(300px, 420px);
  }

  .pricing-card-app {
    max-width: 420px;
    min-height: auto;
  }

  .plan-header {
    min-height: 150px;
  }

  .price-line,
  .plan-frequency,
  .benefit-item-detail p {
    min-height: unset;
  }
}


/* Reduzir altura dos cards de planos mantendo todo o conteúdo */
.pricing-grid-app {
  grid-template-columns: repeat(2, minmax(300px, 360px));
  gap: 24px;
}

.pricing-card-app {
  max-width: 360px;
  min-height: 0 !important;
}

.plan-header {
  min-height: 132px !important;
  padding: 26px 20px 78px !important;
}

.plan-body {
  padding: 18px 16px !important;
  gap: 12px;
}

.plan-frequency {
  min-height: auto !important;
  font-size: 0.96rem;
  line-height: 1.35;
  margin-bottom: 4px;
}

.price-line {
  min-height: auto !important;
  margin-bottom: 6px;
}

.benefit-box {
  padding: 16px 14px !important;
  gap: 10px;
}

.benefit-box-title {
  margin-bottom: 6px;
}

.benefit-item {
  gap: 8px;
}

.benefit-item-detail h4 {
  font-size: 0.95rem;
  line-height: 1.35;
  margin-bottom: 2px;
}

.benefit-item-detail p {
  min-height: auto !important;
  font-size: 0.9rem;
  line-height: 1.45;
}

.plan-body .btn,
.plan-body .btn-primary,
.plan-body .btn-secondary,
.pricing-card-app .btn,
.pricing-card-app .btn-primary,
.pricing-card-app .btn-secondary {
  margin-top: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (max-width: 900px) {
  .pricing-grid-app {
    grid-template-columns: minmax(280px, 390px);
  }

  .pricing-card-app {
    max-width: 390px;
  }

  .plan-header {
    min-height: 126px !important;
    padding: 24px 18px 74px !important;
  }

  .plan-body {
    padding: 16px 14px !important;
  }

  .benefit-box {
    padding: 14px 12px !important;
  }
}


/* Substituição da logo do cabeçalho pela versão completa enviada */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-image-only {
  line-height: 0;
}

.brand-full-logo {
  display: block;
  width: clamp(170px, 18vw, 260px);
  height: auto;
  object-fit: contain;
}

.brand-mark,
.brand-text,
.brand-subtext {
  display: none !important;
}

@media (max-width: 640px) {
  .brand-full-logo {
    width: clamp(150px, 42vw, 210px);
  }
}


/* Correção final da logo do cabeçalho */
.brand,
.logo,
.brand-replaced {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  line-height: 0 !important;
  text-decoration: none !important;
}

.brand img,
.logo img,
.brand-full-logo {
  display: block !important;
  width: 200px !important;
  max-width: 200px !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}

.brand .brand-mark,
.brand .brand-text,
.brand .brand-subtext,
.logo .brand-mark,
.logo .brand-text,
.logo .brand-subtext,
.brand-replaced .brand-mark,
.brand-replaced .brand-text,
.brand-replaced .brand-subtext {
  display: none !important;
}

/* Oculta qualquer texto restante ao lado da logo antiga */
.brand,
.logo {
  font-size: 0 !important;
}

.brand > *:not(img):not(.brand-full-logo),
.logo > *:not(img):not(.brand-full-logo) {
  display: none !important;
}

@media (max-width: 640px) {
  .brand img,
  .logo img,
  .brand-full-logo {
    width: 170px !important;
    max-width: 170px !important;
  }
}


/* Cabeçalho mais fino */
.site-header,
.header,
.navbar,
header {
  min-height: auto !important;
}

.site-header .container,
.header .container,
.navbar .container,
header .container,
.site-header-inner,
.header-inner,
.nav-inner,
.nav-shell {
  min-height: 68px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.site-header,
.header,
.navbar,
header {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.brand img,
.logo img,
.brand-full-logo {
  width: 168px !important;
  max-width: 168px !important;
}

.nav-links a,
.nav-menu a,
header nav a,
.navbar a {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.header-cta,
.nav-cta,
.site-header .btn,
header .btn,
.navbar .btn {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

@media (max-width: 640px) {
  .site-header .container,
  .header .container,
  .navbar .container,
  header .container,
  .site-header-inner,
  .header-inner,
  .nav-inner,
  .nav-shell {
    min-height: 60px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  .brand img,
  .logo img,
  .brand-full-logo {
    width: 148px !important;
    max-width: 148px !important;
  }
}


/* FAQ: respostas só aparecem ao clicar no + */
.faq-answer[hidden] {
  display: none !important;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  margin-left: 12px;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  animation: faqFade 0.22s ease;
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Rodapé */
.site-footer {
  margin-top: 72px;
  padding: 52px 20px 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(3,14,19,0.72), rgba(4,10,18,0.96));
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-text {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 340px;
  margin: 0;
}

.footer-links h4 {
  margin: 0 0 14px;
  font-size: 1rem;
  color: #ffffff;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #9fe870;
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: rgba(255,255,255,0.58);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 42px 18px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-logo {
    width: 170px;
  }

  .footer-text,
  .footer-links a,
  .footer-links h4 {
    text-align: left;
  }
}
