:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-soft: #f6f6ef;
  --surface-uniform: #f8f8f1;
  --surface-card: rgba(255, 255, 255, 0.88);
  --text: #14324f;
  --text-soft: #5f6f80;
  --line: rgba(20, 50, 79, 0.11);
  --blue: #153b70;
  --blue-deep: #102b4b;
  --green: #8cae46;
  --green-deep: #4f6b2d;
  --green-deeper: #41592a;
  --green-soft: rgba(140, 174, 70, 0.12);
  --green-mist: rgba(140, 174, 70, 0.08);
  --shadow-soft: 0 18px 40px rgba(16, 43, 75, 0.06);
  --shadow-card: 0 24px 50px rgba(16, 43, 75, 0.08);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1280px;
  --hero-container: 1320px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfaf7 0%, #ffffff 20%, #ffffff 100%);
  line-height: 1.65;
}

body.is-lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

button {
  appearance: none;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden],
.lightbox[hidden] {
  display: none !important;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20, 50, 79, 0.05);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: clamp(145px, 18vw, 220px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section,
.hero {
  padding: 5.75rem 0;
}

.section--compact-top {
  padding-top: 5.25rem;
}

.section--compact {
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}

.hero {
  position: relative;
  padding-top: 4.75rem;
  padding-bottom: 7.5rem;
  overflow: hidden;
}

.hero--gradient {
  background:
    radial-gradient(circle at 12% 18%, rgba(140, 174, 70, 0.10), transparent 26%),
    radial-gradient(circle at 86% 4%, rgba(21, 59, 112, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfaf7 0%, #ffffff 66%, #ffffff 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  pointer-events: none;
  opacity: 0.55;
}

.hero-glow--left {
  width: 320px;
  height: 320px;
  top: 4rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(140, 174, 70, 0.18), transparent 68%);
}

.hero-glow--right {
  width: 360px;
  height: 360px;
  right: -9rem;
  bottom: -6rem;
  background: radial-gradient(circle, rgba(21, 59, 112, 0.14), transparent 68%);
}

.section--video {
  padding-top: 1rem;
  padding-bottom: 6rem;
}

.section--comparison {
  background: linear-gradient(180deg, rgba(140, 174, 70, 0.05), rgba(255, 255, 255, 0));
}

.section-flow--uniform {
  background: var(--surface-uniform);
}

.section--form {
  background: transparent;
  padding-bottom: 5.5rem;
}

.hero-grid,
.video-section,
.form-shell,
.faq-shell,
.profile-shell {
  display: grid;
  gap: 2.75rem;
}

.hero-grid--single {
  grid-template-columns: 1fr;
  justify-items: center;
}

.hero-grid--single .hero-copy {
  width: min(100%, var(--hero-container));
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.7rem, 5.4vw, 5.25rem);
  max-width: 22ch;
}

h2 {
  font-size: clamp(2.05rem, 3.9vw, 3.35rem);
  max-width: 18ch;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.hero-copy,
.section-copy,
.section-body,
.form-copy,
.form-card,
.section-intro,
.video-copy,
.footer-brand {
  display: grid;
  gap: 1.35rem;
}

.hero-copy--centered,
.section-intro--center {
  text-align: center;
  justify-items: center;
}

.hero-lead,
.section-copy p,
.section-body p,
.form-copy p,
.form-helper,
.profile-feature p,
.video-copy span,
.footer-brand p,
.footer-bottom,
.footer-list a,
.comparison-list li,
.process-card p,
.faq__answer {
  color: var(--text-soft);
}

.hero-lead {
  margin-top: 1.15rem;
  max-width: 72ch;
  font-size: 1.08rem;
}

.hero-lead--centered {
  max-width: 60rem;
}

.hero-actions {
  margin-top: 1.75rem;
}

.hero-actions--centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 16px 32px rgba(21, 59, 112, 0.18);
}

.btn--sm {
  min-height: 44px;
  padding: 0.72rem 1rem;
}

.btn--large {
  min-height: 58px;
  padding-inline: 1.55rem;
}

.btn--full {
  width: 100%;
}

.hero-meta {
  margin-top: 1.25rem;
  padding: 1.1rem 1.3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 42rem;
}

.hero-meta--centered {
  text-align: center;
}

.hero-meta strong {
  display: block;
  color: var(--blue);
  font-size: 0.98rem;
  margin-bottom: 0.18rem;
}

.section-intro {
  gap: 1.2rem;
  margin-bottom: 3.25rem;
}

.section-intro--center h2,
.section-intro--center p,
.section-intro--wide h2,
.section-intro--wide p {
  max-width: 68rem;
}

.section-intro--video {
  margin-bottom: 1.8rem;
}

.section-intro--process h2 {
  max-width: 22ch;
}

.video-frame {
  width: 100%;
}

.video-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #dde6ec;
  border: 1px solid rgba(20, 50, 79, 0.08);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 9;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 33, 0.12), rgba(8, 20, 33, 0.36));
}

.video-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 2rem;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.video-play {
  display: inline-grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin-bottom: 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.18);
  cursor: default;
}

.video-play__icon {
  width: 0;
  height: 0;
  margin-left: 0.28rem;
  border-left: 24px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.video-copy strong {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.video-copy span {
  color: rgba(255, 255, 255, 0.86);
}

.comparison-grid,
.process-grid,
.showcase-grid,
.profile-grid {
  display: grid;
  gap: 1.25rem;
}

.comparison-grid {
  align-items: stretch;
}

.comparison-card,
.process-card,
.profile-feature,
.faq-card-wrap,
.form-card,
.form-copy--floating,
.footer-grid {
  border-radius: 28px;
}

.comparison-card,
.process-card,
.profile-feature,
.faq-card-wrap,
.form-card {
  background: var(--surface-card);
  border: 1px solid rgba(20, 50, 79, 0.08);
  box-shadow: var(--shadow-soft);
}

.comparison-card {
  padding: 2rem;
}

.comparison-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.comparison-badge {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
}

.comparison-badge--muted {
  background: rgba(20, 50, 79, 0.08);
  color: var(--blue);
}

.comparison-badge--success {
  background: rgba(140, 174, 70, 0.14);
  color: var(--green-deep);
}

.comparison-icon {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.comparison-kicker {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.comparison-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.comparison-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.list-icon {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  flex: 0 0 18px;
}

.comparison-card--challenge .list-icon {
  color: #ba5f5f;
}

.comparison-card--success .list-icon {
  color: var(--green-deep);
}

.showcase-grid--editorial {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.showcase-card {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border-radius: 26px;
  border: 1px solid rgba(20, 50, 79, 0.07);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.showcase-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 1.75rem 1.5rem 1.5rem;
}

.process-number {
  position: absolute;
  top: 0.9rem;
  left: 1rem;
  font-size: clamp(3.6rem, 6vw, 5.1rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: rgba(140, 174, 70, 0.18);
  pointer-events: none;
  user-select: none;
}

.process-card h3,
.process-card p {
  position: relative;
  z-index: 1;
}

.process-card h3 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.process-card p {
  max-width: 32ch;
}

.profile-shell,
.faq-shell {
  align-items: start;
}

.profile-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.profile-feature {
  padding: 1.4rem 1.35rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.profile-icon {
  width: 22px;
  height: 22px;
  margin-top: 0.2rem;
  flex: 0 0 22px;
  color: var(--green-deep);
}

.profile-feature h3 {
  margin-bottom: 0.4rem;
}

.faq-card-wrap {
  padding: 1rem;
}

.faq {
  display: grid;
  gap: 0.85rem;
}

.faq__item {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 50, 79, 0.08);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  padding: 1.2rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-weight: 700;
}

.faq__icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(140, 174, 70, 0.14);
  color: var(--green-deep);
  font-size: 1.1rem;
  line-height: 1;
}

.faq__answer {
  display: none;
  padding: 0 1.25rem 1.2rem;
}

.faq__item.is-open .faq__answer {
  display: block;
}

.form-copy--floating h2,
.form-copy--floating p,
.form-note--dark strong,
.form-note--dark span {
  color: #fff;
}

.form-note {
  margin-top: 0.5rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
}

.form-note--dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.form-note strong {
  display: block;
  margin-bottom: 0.2rem;
}

.form-shell {
  align-items: stretch;
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(180deg, var(--green-deeper), var(--green-deep));
  border: 1px solid rgba(47, 67, 39, 0.3);
  box-shadow: 0 24px 50px rgba(47, 67, 39, 0.18);
}

.form-copy--floating,
.form-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.form-copy--floating {
  padding: 0;
  color: #fff;
}

.form-card {
  padding: 0;
}

.form-copy--floating h2,
.form-copy--floating p,
.form-copy--floating .eyebrow,
.form-copy--floating .form-note--dark strong,
.form-copy--floating .form-note--dark span {
  color: #fff;
}

.form-note--dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.form-card form {
  padding: 1.8rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.form-card .field label,
.form-card .form-helper,
.form-card .form-status {
  color: rgba(255, 255, 255, 0.88);
}

.form-card input,
.form-card select {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-card .btn--primary {
  box-shadow: none;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field select {
  min-height: 54px;
  width: 100%;
  padding: 0 1rem;
  border-radius: 14px;
  border: 1px solid rgba(20, 50, 79, 0.14);
  background: #fff;
  color: var(--text);
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field select:focus {
  border-color: rgba(21, 59, 112, 0.45);
  box-shadow: 0 0 0 4px rgba(21, 59, 112, 0.08);
}

.is-invalid {
  border-color: rgba(230, 59, 53, 0.65) !important;
  box-shadow: 0 0 0 4px rgba(230, 59, 53, 0.08) !important;
}

.form-status {
  min-height: 1.5rem;
  font-size: 0.94rem;
}

.form-status.is-success {
  color: #177245;
}

.form-status.is-error {
  color: #b42318;
}

.site-footer {
  background: var(--surface-uniform);
  color: var(--text);
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(20, 50, 79, 0.08);
}

.footer-grid,
.footer-bottom {
  display: grid;
  gap: 1.75rem;
}

.footer-brand img {
  width: clamp(150px, 18vw, 210px);
}

.footer-title {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(20, 50, 79, 0.08);
  font-size: 0.92rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 19, 34, 0.82);
}

.lightbox__content {
  position: relative;
  z-index: 1;
  width: min(100%, 940px);
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.lightbox__content img {
  width: 100%;
  max-height: 78vh;
  object-fit: cover;
}

.lightbox__content p {
  margin: 0;
  padding: 1rem 1.25rem 1.2rem;
  color: var(--text-soft);
}

.lightbox__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: rgba(15, 44, 82, 0.84);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (min-width: 700px) {
  .comparison-grid,
  .footer-grid,
  .footer-bottom,
  .faq-shell,
  .form-shell,
  .profile-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field--full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .showcase-grid--editorial {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .showcase-card--wide {
    grid-column: span 2;
  }

  .showcase-card--tall {
    grid-column: span 2;
    grid-row: span 2;
  }

  .showcase-card--tall img {
    min-height: 100%;
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 979px) {
  .hero {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }

  .hero-copy--centered h1 {
    max-width: 18ch;
  }

  .video-play {
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 699px) {
  .site-header {
    display: none;
  }

  .form-shell {
    padding: 1.25rem;
  }

  .form-card form {
    padding: 1.1rem;
  }

  .header-actions {
    gap: 0.65rem;
  }

  h1 {
    max-width: 15ch;
  }

  h2 {
    max-width: 16ch;
  }

  .hero {
    padding-top: 3rem;
    padding-bottom: 4.75rem;
  }

  .hero-copy--centered {
    gap: 0.85rem;
    padding-inline: 0.5rem;
  }

  .hero-lead--centered {
    max-width: 34ch;
  }

  .hero-meta {
    max-width: 100%;
  }

  .video-placeholder {
    border-radius: 24px;
  }

  .video-content {
    padding: 1.4rem;
  }

  .video-play {
    width: 72px;
    height: 72px;
    margin-bottom: 1rem;
  }

  .video-play__icon {
    border-left-width: 20px;
    border-top-width: 12px;
    border-bottom-width: 12px;
  }

  .showcase-card img {
    min-height: 240px;
  }

  .process-card {
    min-height: auto;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }
}


/* ================================
   Efeitos adicionados na LP
   - Entrada suave do hero
   - Reveal on scroll nas seções
   - Hover premium nos cards e galeria
   - CTA do hero com pulse, sheen e spotlight
================================ */

.site-header,
.hero-copy > * {
  will-change: transform, opacity;
}

body:not(.is-ready) .site-header {
  opacity: 0;
  transform: translateY(-12px);
}

body:not(.is-ready) .hero-copy > * {
  opacity: 0;
  transform: translateY(22px);
}

body.is-ready .site-header {
  animation: headerEnter 640ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.is-ready .hero-copy > * {
  animation: heroItemEnter 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.is-ready .hero-copy > *:nth-child(1) { animation-delay: 60ms; }
body.is-ready .hero-copy > *:nth-child(2) { animation-delay: 140ms; }
body.is-ready .hero-copy > *:nth-child(3) { animation-delay: 220ms; }
body.is-ready .hero-copy > *:nth-child(4) { animation-delay: 300ms; }
body.is-ready .hero-copy > *:nth-child(5) { animation-delay: 380ms; }
body.is-ready .hero-copy > *:nth-child(6) { animation-delay: 460ms; }

.hero--immersive::before {
  content: "";
  position: absolute;
  inset: auto 50% -28% 50%;
  width: min(78vw, 980px);
  height: min(78vw, 980px);
  translate: -50% 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(140, 174, 70, 0.10), rgba(140, 174, 70, 0.03) 40%, transparent 68%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(21, 59, 112, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 59, 112, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0));
  animation: gridDrift 18s linear infinite;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.15) 60%, transparent 72%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
  opacity: 0.7;
}

.hero-particle--one {
  width: 10px;
  height: 10px;
  left: 16%;
  top: 24%;
  animation: floatParticle 8.6s ease-in-out infinite;
}

.hero-particle--two {
  width: 14px;
  height: 14px;
  right: 18%;
  top: 18%;
  animation: floatParticle 10s ease-in-out infinite 1.2s;
}

.hero-particle--three {
  width: 12px;
  height: 12px;
  right: 24%;
  bottom: 18%;
  animation: floatParticle 9.2s ease-in-out infinite 0.6s;
}

.hero-glow--left,
.hero-glow--right {
  animation: glowFloat 9s ease-in-out infinite;
}

.hero-glow--right {
  animation-delay: 1.2s;
}

.hero-action-note {
  font-size: 0.95rem;
  color: var(--text-soft);
  text-align: center;
  margin-top: -0.45rem;
}

.btn--hero-attention {
  --ring-size: 0px;
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: visible;
  gap: 0.8rem;
  padding-inline: 1.45rem 1.2rem;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #1a4b8d, #102b4b);
  box-shadow:
    0 18px 36px rgba(21, 59, 112, 0.26),
    0 0 0 0 rgba(21, 59, 112, 0.22);
  animation: heroButtonPulse 2.8s ease-in-out infinite;
}

.btn--hero-attention::before,
.btn--hero-attention::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.btn--hero-attention::before {
  inset: -8px;
  border: 1px solid rgba(21, 59, 112, 0.18);
  opacity: 0;
  transform: scale(0.96);
  animation: heroRingPulse 2.8s ease-out infinite;
}

.btn--hero-attention::after {
  inset: 1px;
  overflow: hidden;
  background: linear-gradient(110deg, transparent 12%, rgba(255, 255, 255, 0.34) 32%, transparent 52%);
  transform: translateX(-135%);
  animation: buttonSheen 3.2s ease-in-out infinite 0.35s;
  mix-blend-mode: screen;
}

.btn--hero-attention:hover,
.btn--hero-attention:focus-visible {
  transform: translateY(-2px) scale(1.015);
  box-shadow:
    0 22px 42px rgba(21, 59, 112, 0.30),
    0 0 0 8px rgba(21, 59, 112, 0.08);
}

.btn--hero-attention .btn-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  transition: transform 220ms ease, background 220ms ease;
}

.btn--hero-attention:hover .btn-hero__icon,
.btn--hero-attention:focus-visible .btn-hero__icon {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.20);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.comparison-card,
.process-card,
.profile-feature,
.faq__item,
.form-card form,
.video-placeholder,
.showcase-card {
  position: relative;
}

.comparison-card::before,
.process-card::before,
.profile-feature::before,
.faq__item::before,
.form-card form::before,
.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(140, 174, 70, 0.24), rgba(21, 59, 112, 0.10), rgba(255, 255, 255, 0));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.comparison-card:hover,
.process-card:hover,
.profile-feature:hover,
.faq__item:hover,
.video-placeholder:hover,
.form-card form:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(16, 43, 75, 0.10);
}

.comparison-card:hover::before,
.process-card:hover::before,
.profile-feature:hover::before,
.faq__item:hover::before,
.video-placeholder:hover::before,
.form-card form:hover::before {
  opacity: 1;
}

.showcase-card {
  isolation: isolate;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 33, 0.02) 35%, rgba(8, 20, 33, 0.62) 100%);
  opacity: 0;
  transition: opacity 240ms ease;
  z-index: 1;
}

.showcase-card::after {
  content: attr(data-caption);
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff;
  font-size: 0.93rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 240ms ease, transform 240ms ease;
  text-align: left;
}

.showcase-card:hover::before,
.showcase-card:hover::after,
.showcase-card:focus-visible::before,
.showcase-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.showcase-card img {
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1), filter 280ms ease;
}

.showcase-card:hover img,
.showcase-card:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.03);
}

.faq__item {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.faq__item.is-open {
  border-color: rgba(140, 174, 70, 0.22);
  box-shadow: 0 18px 36px rgba(16, 43, 75, 0.06);
}

.lightbox__content {
  animation: lightboxIn 260ms ease;
}

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

@keyframes heroItemEnter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -12px, 0) scale(1.04); }
}

@keyframes gridDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, 34px, 0); }
}

@keyframes floatParticle {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate3d(0, -16px, 0) scale(1.14);
    opacity: 1;
  }
}

@keyframes heroButtonPulse {
  0%, 100% {
    box-shadow: 0 18px 36px rgba(21, 59, 112, 0.24), 0 0 0 0 rgba(21, 59, 112, 0.18);
  }
  50% {
    box-shadow: 0 22px 42px rgba(21, 59, 112, 0.28), 0 0 0 10px rgba(21, 59, 112, 0.04);
  }
}

@keyframes heroRingPulse {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  18% {
    opacity: 0.65;
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes buttonSheen {
  0%, 12% {
    transform: translateX(-135%);
  }
  26%, 100% {
    transform: translateX(145%);
  }
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  body:not(.is-ready) .site-header,
  body:not(.is-ready) .hero-copy > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 699px) {
  .btn--hero-attention {
    width: 100%;
    max-width: 100%;
  }

  .hero-grid-lines {
    opacity: 0.22;
  }

  .hero-action-note {
    max-width: 28ch;
    margin-inline: auto;
  }
}




/* ================================
   Ajustes finos solicitados
   - Hero sem flicker/piscada
   - Sheen do CTA mais lento
   - Numeros do processo sem sobreposicao
   - Header fixo no topo da pagina, sem sticky
================================ */

.site-header {
  position: relative;
  top: auto;
}

.btn--hero-attention::after {
  animation: buttonSheen 5.8s ease-in-out infinite 1s;
}

.process-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "number title"
    "number text";
  column-gap: 1rem;
  row-gap: 0.55rem;
  align-items: start;
  padding: 1.55rem 1.5rem;
}

.process-number {
  position: relative;
  top: auto;
  left: auto;
  grid-area: number;
  align-self: start;
  min-width: 4.25rem;
  margin-top: -0.15rem;
  font-size: clamp(2.8rem, 4.8vw, 4.35rem);
  line-height: 0.9;
  color: rgba(140, 174, 70, 0.22);
}

.process-card h3,
.process-card p {
  position: relative;
  z-index: 1;
}

.process-card h3 {
  grid-area: title;
  margin: 0;
  padding-top: 0.2rem;
}

.process-card p {
  grid-area: text;
  max-width: none;
}

@media (max-width: 699px) {
  .process-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "number"
      "title"
      "text";
    row-gap: 0.35rem;
  }

  .process-number {
    min-width: 0;
    margin-bottom: 0.2rem;
  }
}


.rd-form-embed {
  padding: 1.8rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.rd-form-embed > div {
  width: 100%;
  min-height: 320px;
}

@media (max-width: 699px) {
  .rd-form-embed {
    padding: 1.1rem;
  }
}

/* ================================
   Ajustes da secao do formulario RD
   - Texto da esquerda compacto no topo
   - Remove area clara abaixo do embed
   - Remove hover do formulario
   - Fundo solido igual ao card do RD
================================ */

.form-shell {
  align-items: start;
  background: #5d7546;
  border-color: rgba(93, 117, 70, 0.82);
}

.form-copy--floating {
  align-self: start;
  align-content: start;
  justify-items: start;
  gap: 0.9rem;
}

.form-copy--floating .eyebrow {
  margin-bottom: 0.15rem;
}

.form-copy--floating h2,
.form-copy--floating p {
  max-width: 34rem;
}

.form-card {
  align-self: start;
}

.rd-form-embed,
.rd-form-embed > div {
  width: 100%;
  background: transparent;
}

.rd-form-embed {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.rd-form-embed > div {
  min-height: 0;
}

.form-card form,
.form-card form:hover,
.form-card form:focus-within {
  transform: none !important;
  box-shadow: none !important;
}

.form-card form::before,
.form-card form:hover::before,
.form-card form:focus-within::before {
  content: none !important;
  display: none !important;
}

@media (max-width: 699px) {
  .form-copy--floating {
    gap: 0.75rem;
  }

  .form-copy--floating h2,
  .form-copy--floating p {
    max-width: 100%;
  }
}


/* ================================
   Ajuste fino de cores do card RD
   - Bloco externo mais escuro
   - Card com a mesma cor do formulario
   - Wrappers do RD transparentes para evitar sobreposicao
================================ */

.form-shell {
  background: #6b8156;
  border-color: rgba(124, 142, 108, 0.55);
}

.form-card {
  align-self: start;
  padding: 1rem;
  border-radius: 24px;
  background: #899a7b;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: none;
}

.rd-form-embed {
  padding: 0;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.rd-form-embed > div,
.rd-form-embed > div > div,
.rd-form-embed form {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 699px) {
  .form-card {
    padding: 0.8rem;
  }
}

/* ================================
   Campos UTM ocultos no RD Station
================================ */

#rd-text_field-mRYZlko8VvUlHx6M6BIRlg,
label[for="rd-text_field-mRYZlko8VvUlHx6M6BIRlg"],
#rd-text_field-6ELZw8UxReLs0NtkY_lK-A,
label[for="rd-text_field-6ELZw8UxReLs0NtkY_lK-A"],
#rd-text_field-3wGqbpzlBTfOE_4W23OK9A,
label[for="rd-text_field-3wGqbpzlBTfOE_4W23OK9A"],
#rd-text_field-7dJIVFx6YgWa87ZYcHpHWA,
label[for="rd-text_field-7dJIVFx6YgWa87ZYcHpHWA"],
#rd-text_field-95f4_6kY4n0Jg3AcjCgh0w,
label[for="rd-text_field-95f4_6kY4n0Jg3AcjCgh0w"] {
  display: none !important;
}

/* ================================
   Otimizacoes de performance
   - reduz custo visual acima da dobra
   - evita scripts/efeitos bloqueando o LCP
   - cria placeholders do formulario e seções abaixo da dobra
================================ */

.site-header,
.hero-copy > * {
  will-change: auto;
}

.site-header {
  background: rgba(251, 250, 247, 0.96);
  backdrop-filter: none;
}

body.is-ready .site-header,
body.is-ready .hero-copy > * {
  animation: none !important;
}

.hero-grid-lines,
.hero-particle,
.hero-glow--left,
.hero-glow--right,
.btn--hero-attention,
.btn--hero-attention::before,
.btn--hero-attention::after {
  animation-play-state: paused;
}

.hero-grid-lines {
  opacity: 0.18;
}

.hero-glow {
  filter: blur(18px);
}

.btn--hero-attention {
  box-shadow: 0 14px 26px rgba(21, 59, 112, 0.18);
}

.btn--hero-attention::before,
.btn--hero-attention::after {
  opacity: 0;
}

.btn--hero-attention .btn-hero__icon,
.video-play,
.rd-form-embed {
  backdrop-filter: none;
}

.rd-form-embed {
  position: relative;
  min-height: 320px;
}

.rd-form-target {
  min-height: 320px;
}

.form-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(137, 154, 123, 0.98);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.form-loading__spinner {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: rgba(255, 255, 255, 0.92);
  animation: formSpinner 0.8s linear infinite;
}

.rd-form-embed.is-loaded .form-loading {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.rd-form-embed.is-error .form-loading {
  background: rgba(180, 35, 24, 0.22);
  color: #fff;
}

.showcase-card img,
.brand img,
.footer-brand img {
  height: auto;
}

@keyframes formSpinner {
  to {
    transform: rotate(360deg);
  }
}

@supports (content-visibility: auto) {
  #estrutura,
  #processo,
  #perfil,
  #faq,
  #formulario,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
}

@media (max-width: 979px) {
  .hero-grid-lines,
  .hero-particles,
  .hero-glow {
    display: none;
  }

  .btn--hero-attention {
    box-shadow: 0 12px 22px rgba(21, 59, 112, 0.16);
  }
}
