/* ============================================================
   PRAXIS — DESIGN SYSTEM
   ============================================================ */
:root {
  /* Marca */
  --praxis-petrol: #2f6f68;
  --praxis-deep: #173b3a;
  --praxis-soft: #ddedea;
  --praxis-mist: #eef8f6;
  --praxis-canvas: #f7faf9;
  --praxis-line: #d8e7e4;
  --praxis-stone: #5d7471;

  /* Semânticas */
  --success: #3f8c76;
  --warning-bg: #f7e9d7;
  --warning-text: #7a4a1c;
  --danger: #d95f59;
  --border: #d8e7e4;
  --border-strong: #b9d2cd;

  /* Aliases */
  --background: #f7faf9;
  --foreground: #173b3a;
  --card: #ffffff;
  --surface-soft: #eef8f6;
  --muted-foreground: #5d7471;
  --primary: #2f6f68;
  --primary-deep: #173b3a;
  --primary-foreground: #ffffff;

  /* Tipografia */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Instrument Serif", "Inter", ui-serif, Georgia, serif;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

::selection {
  background-color: rgb(47 111 104 / 0.18);
  color: var(--praxis-deep);
}

:focus-visible {
  outline: 2px solid var(--praxis-petrol);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   UTILS — gradients, patterns, animações
   ============================================================ */
.praxis-text-grad {
  background: linear-gradient(
    to bottom right,
    #2f6f68,
    #173b3a,
    #2f6f68
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes praxis-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fade-up {
  animation: praxis-fade-up 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fade-up.delay-1 {
  animation-delay: 100ms;
}
.fade-up.delay-2 {
  animation-delay: 200ms;
}
.fade-up.delay-3 {
  animation-delay: 300ms;
}
.fade-up.delay-4 {
  animation-delay: 400ms;
}
.fade-up.delay-5 {
  animation-delay: 500ms;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .float {
    animation: none !important;
  }
}

/* ============================================================
   REVEAL ON SCROLL — animações fluidas via IntersectionObserver
   ============================================================ */

/* Estado inicial — antes de entrar na viewport */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* Variantes de entrada */
[data-reveal="up"] {
  transform: translateY(28px);
}

[data-reveal="up-sm"] {
  transform: translateY(16px);
}

[data-reveal="up-lg"] {
  transform: translateY(44px);
}

[data-reveal="scale"] {
  transform: translateY(18px) scale(0.96);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="blur"] {
  transform: translateY(22px);
  filter: blur(8px);
}

[data-reveal="left"] {
  transform: translateX(-32px);
}

[data-reveal="right"] {
  transform: translateX(32px);
}

/* Estado visível — quando entra na viewport */
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Stagger automático — filhos diretos de data-reveal-group entram em cascata */
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal-group].is-visible > * {
  opacity: 1;
  transform: none;
}

/* Delay incremental pros filhos (calculado pelo JS via --reveal-i) */
[data-reveal-group] > * {
  transition-delay: calc(var(--reveal-i, 0) * 80ms);
}

/* Reduced motion: tudo aparece instantaneamente, sem animação */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-group] > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* --- BACKGROUND PATTERN — múltiplas camadas refinadas --- */

/* Camada 1: Aurora soft (base) */
.hero__bg-aurora {
  position: absolute;
  inset: 0;
  z-index: -30;
  background:
    radial-gradient(
      ellipse 60% 50% at 80% 0%,
      rgb(221 237 234 / 0.7) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 0% 100%,
      rgb(238 248 246 / 0.9) 0%,
      transparent 60%
    ),
    #f7faf9;
}

/* Camada 2: Grid pattern com mask radial */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  z-index: -20;
  background-image:
    linear-gradient(to right, rgb(47 111 104 / 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(47 111 104 / 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 65% at 50% 45%,
    #000 0%,
    #000 55%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 70% 65% at 50% 45%,
    #000 0%,
    #000 55%,
    transparent 100%
  );
}

/* Camada 3: Dots finos sobrepostos */
.hero__bg-dots {
  position: absolute;
  inset: 0;
  z-index: -20;
  opacity: 0.6;
  background-image: radial-gradient(
    rgb(47 111 104 / 0.13) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 65% at 50% 45%,
    #000 0%,
    #000 55%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 70% 65% at 50% 45%,
    #000 0%,
    #000 55%,
    transparent 100%
  );
}

/* Camada 4: Glow petróleo superior direito */
.hero__glow-petrol {
  position: absolute;
  top: -8rem;
  right: -10%;
  z-index: -10;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(64px);
  background: radial-gradient(
    circle,
    rgb(47 111 104 / 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Camada 5: Glow mist inferior esquerdo */
.hero__glow-mist {
  position: absolute;
  bottom: -10rem;
  left: -12%;
  z-index: -10;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(64px);
  background: radial-gradient(
    circle,
    rgb(221 237 234 / 0.85) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Linha hairline no rodapé */
.hero__hairline {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: -10;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--praxis-line),
    transparent
  );
}

/* --- CONTAINER --- */
.hero__container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__container {
    padding: 3.5rem 2rem 7rem;
  }
}

@media (min-width: 1024px) {
  .hero__container {
    padding: 4rem 2rem 8rem;
  }
}

/* --- EYEBROW --- */
.hero__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background:
    linear-gradient(
      135deg,
      rgb(255 255 255 / 0.85) 0%,
      rgb(238 248 246 / 0.65) 100%
    );
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  padding: 0.5rem 0.9375rem;
  border-radius: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.18),
    inset 0 1px 0 0 rgb(255 255 255 / 0.95),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.06),
    0 4px 14px -6px rgb(23 59 58 / 0.12),
    0 1px 2px rgb(23 59 58 / 0.04);
}

@media (min-width: 768px) {
  .hero__eyebrow {
    font-size: 0.75rem;
  }
}

.hero__eyebrow-text {
  background: linear-gradient(
    135deg,
    var(--praxis-petrol) 0%,
    var(--praxis-deep) 55%,
    var(--praxis-petrol) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--praxis-petrol),
    var(--praxis-deep)
  );
  box-shadow: 0 0 0 2px rgb(47 111 104 / 0.12);
  flex-shrink: 0;
}

/* --- HEADLINE --- */
.hero__headline {
  margin: 1.75rem 0 0;
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--praxis-deep);
  font-size: clamp(2rem, 5vw + 0.4rem, 4rem);
  line-height: 1.08;
  max-width: 100%;
  width: 100%;
  padding: 0 0.25rem;
}

@media (min-width: 768px) {
  .hero__headline {
    margin-top: 2.25rem;
    text-wrap: balance;
    max-width: 22ch;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .hero__headline {
    margin-top: 2.25rem;
  }
}

/* --- SUBHEAD --- */
.hero__subhead {
  margin: 1.5rem 0 0;
  text-align: center;
  color: var(--praxis-stone);
  text-wrap: pretty;
  font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1.0625rem);
  line-height: 1.6;
  max-width: 58ch;
}

@media (min-width: 768px) {
  .hero__subhead {
    margin-top: 1.75rem;
  }
}

/* --- CTA + microcopy --- */
.hero__cta-wrap {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .hero__cta-wrap {
    margin-top: 3rem;
  }
}

.hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  max-width: 28rem;
  padding: 1rem 1.75rem;
  border-radius: 0.875rem;
  background: linear-gradient(
    135deg,
    #2f6f68 0%,
    #275d57 35%,
    #3a847b 65%,
    #2f6f68 100%
  );
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgb(23 59 58 / 0.3),
    inset 0 1px 0 0 rgb(255 255 255 / 0.18),
    0 10px 30px -12px rgb(23 59 58 / 0.45);
  transition:
    background-position 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  .hero__cta {
    width: auto;
    min-width: 24rem;
    padding: 1.125rem 3rem;
    font-size: 1rem;
  }
}

@media (hover: hover) {
  .hero__cta:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
  }

  .hero__cta:hover .hero__cta-arrow {
    transform: translateX(2px);
  }
}

.hero__cta-highlight {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.6),
    transparent
  );
  pointer-events: none;
}

.hero__cta-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__microcopy {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--praxis-stone);
}

@media (min-width: 768px) {
  .hero__microcopy {
    font-size: 0.875rem;
  }
}

.hero__microcopy-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.hero__microcopy-check {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--praxis-petrol);
}

.hero__microcopy-sep {
  display: none;
  color: var(--praxis-line);
}

@media (min-width: 768px) {
  .hero__microcopy-sep {
    display: inline;
  }
}

/* --- MOCKUP --- */
.hero__mockup-wrap {
  position: relative;
  margin-top: 4rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero__mockup-wrap {
    margin-top: 5rem;
  }
}

.hero__mockup-shadow {
  position: absolute;
  inset-inline: 2rem;
  bottom: -2rem;
  z-index: -1;
  height: 6rem;
  border-radius: 40px;
  filter: blur(28px);
  background: linear-gradient(
    180deg,
    rgb(47 111 104 / 0.25) 0%,
    transparent 80%
  );
  pointer-events: none;
}

.hero__mockup {
  position: relative;
  margin: 0 auto;
  max-width: 64rem;
  padding: 0.625rem;
  border-radius: 1.5rem;
  background: rgb(255 255 255 / 0.7);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.15),
    inset 0 1px 0 0 rgb(255 255 255 / 0.95),
    0 30px 60px -25px rgb(23 59 58 / 0.28),
    0 12px 28px -16px rgb(47 111 104 / 0.18);
  animation: praxis-float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
  .hero__mockup {
    padding: 0.875rem;
    border-radius: 2rem;
  }
}

.hero__mockup-window {
  position: relative;
  overflow: hidden;
  background: var(--praxis-canvas);
  border-radius: 1rem;
  box-shadow: inset 0 0 0 1px var(--praxis-line);
}

@media (min-width: 768px) {
  .hero__mockup-window {
    border-radius: 1.5rem;
  }
}

.hero__mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgb(255 255 255 / 0.6);
  border-bottom: 1px solid var(--praxis-line);
}

@media (min-width: 768px) {
  .hero__mockup-topbar {
    padding: 0.875rem 1.25rem;
  }
}

.hero__mockup-dots {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero__mockup-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--praxis-line);
}

.hero__mockup-url {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--praxis-mist);
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--praxis-stone);
}

@media (min-width: 768px) {
  .hero__mockup-url {
    display: inline-flex;
  }
}

.hero__mockup-url svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--praxis-petrol);
}

.hero__mockup-avatar {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--praxis-petrol), var(--praxis-deep));
  box-shadow: 0 0 0 2px #fff;
}

.hero__mockup-grid {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .hero__mockup-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
  }
}

.hero__mockup-col {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.hero__mockup-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__mockup-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(23 59 58 / 0.65);
  margin: 0;
}

.hero__mockup-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--praxis-petrol);
  background: var(--praxis-mist);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}

.hero__session {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  padding: 0.75rem 0.875rem;
  border-radius: 1rem;
  box-shadow:
    inset 0 0 0 1px var(--praxis-line),
    inset 0 1px 0 0 rgb(255 255 255 / 0.95),
    0 4px 14px -10px rgb(23 59 58 / 0.12);
}

.hero__session-hour {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--praxis-mist);
  padding: 0.375rem 0.625rem;
  border-radius: 0.5rem;
}

.hero__session-hour-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--praxis-stone);
}

.hero__session-hour-value {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--praxis-deep);
}

.hero__session-info {
  flex: 1;
  min-width: 0;
}

.hero__session-name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--praxis-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__session-tag {
  margin: 0;
  font-size: 0.6875rem;
  color: var(--praxis-stone);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__session-status {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__session-status--active {
  background: var(--praxis-petrol);
}

.hero__session-status--idle {
  background: var(--praxis-line);
}

.hero__objective {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 1rem;
  color: #fff;
  background:
    radial-gradient(
      circle at 88% 12%,
      rgb(255 255 255 / 0.18) 0%,
      transparent 38%
    ),
    radial-gradient(
      circle at 4% 92%,
      rgb(23 59 58 / 0.55) 0%,
      transparent 55%
    ),
    linear-gradient(135deg, #2f6f68 0%, #285f59 45%, #173b3a 100%);
  box-shadow:
    inset 0 1px 0 0 rgb(255 255 255 / 0.18),
    0 14px 30px -16px rgb(23 59 58 / 0.45);
}

.hero__objective-label {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.7);
}

.hero__objective-title {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
}

.hero__objective-bar {
  margin-top: 1rem;
  height: 0.375rem;
  width: 100%;
  overflow: hidden;
  border-radius: 9999px;
  background: rgb(255 255 255 / 0.15);
}

.hero__objective-bar-fill {
  height: 100%;
  width: 62%;
  border-radius: 9999px;
  background: rgb(255 255 255 / 0.8);
}

.hero__objective-meta {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6875rem;
  color: rgb(255 255 255 / 0.7);
}

.hero__objective-meta-value {
  font-weight: 600;
  color: #fff;
}

.hero__flow {
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: inset 0 0 0 1px var(--praxis-line);
}

.hero__flow-steps {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.hero__flow-step {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
}

.hero__flow-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__flow-check--done {
  background: var(--praxis-petrol);
  color: #fff;
}

.hero__flow-check--pending {
  background: var(--praxis-mist);
  box-shadow: inset 0 0 0 1px var(--praxis-line);
}

.hero__flow-check svg {
  width: 0.625rem;
  height: 0.625rem;
}

.hero__flow-step--done {
  font-weight: 500;
  color: var(--praxis-deep);
}

.hero__flow-step--pending {
  color: var(--praxis-stone);
}

/* ============================================================
   BLOCO 2 — PROBLEMA / DORES
   ============================================================ */
.problem {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Background com identidade própria — tom mist denso + textura diagonal */
.problem__bg {
  position: absolute;
  inset: 0;
  z-index: -30;
  background:
    /* Tinge o topo de mist (transição do hero) */
    linear-gradient(
      to bottom,
      rgb(238 248 246 / 0.9) 0%,
      rgb(238 248 246 / 0.35) 35%,
      transparent 100%
    ),
    /* Base mais densa que o canvas do hero */
      linear-gradient(180deg, #eef5f3 0%, #e9f2ef 50%, #eef5f3 100%);
}

/* Hairline divisor no topo — marca a transição com o hero */
.problem__divider {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: -10;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--praxis-line),
    transparent
  );
}

/* Pattern conceitual — linhas finas cruzadas + nós sutis
   evoca a metáfora "rotina clínica espalhada que precisa ser conectada" */
.problem__bg-texture {
  position: absolute;
  inset: 0;
  z-index: -20;
  background-image:
    /* Hachuras diagonais finas a 45° */
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 13px,
      rgb(47 111 104 / 0.035) 13px,
      rgb(47 111 104 / 0.035) 14px
    ),
    /* Hachuras diagonais finas a -45° (cruzando) */
      repeating-linear-gradient(
        -45deg,
        transparent 0,
        transparent 13px,
        rgb(47 111 104 / 0.025) 13px,
        rgb(47 111 104 / 0.025) 14px
      );
  -webkit-mask-image: radial-gradient(
    ellipse 85% 65% at 50% 50%,
    #000 0%,
    #000 35%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 85% 65% at 50% 50%,
    #000 0%,
    #000 35%,
    transparent 100%
  );
}

/* Camada de "nós" — pontos sutis nos cruzamentos pra dar refinamento extra */
.problem__bg-nodes {
  position: absolute;
  inset: 0;
  z-index: -19;
  opacity: 0.6;
  background-image: radial-gradient(
    circle at center,
    rgb(47 111 104 / 0.18) 0.5px,
    transparent 1.5px
  );
  background-size: 56px 56px;
  background-position: 28px 28px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 55% at 50% 50%,
    #000 0%,
    #000 30%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 70% 55% at 50% 50%,
    #000 0%,
    #000 30%,
    transparent 100%
  );
}

/* Glow soft topo direito */
.problem__glow-soft {
  position: absolute;
  top: -6rem;
  right: -8%;
  z-index: -15;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  background: radial-gradient(
    circle,
    rgb(221 237 234 / 0.7) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Glow deep-tinted canto inferior esquerdo */
.problem__glow-deep {
  position: absolute;
  bottom: -8rem;
  left: -6%;
  z-index: -15;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(90px);
  background: radial-gradient(
    circle,
    rgb(47 111 104 / 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.problem__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
  .problem__container {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .problem__container {
    padding: 7rem 2rem;
  }
}

/* --- Header da seção --- */
.problem__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.problem__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background:
    linear-gradient(
      135deg,
      rgb(255 255 255 / 0.85) 0%,
      rgb(238 248 246 / 0.65) 100%
    );
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  padding: 0.5rem 0.9375rem;
  border-radius: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.18),
    inset 0 1px 0 0 rgb(255 255 255 / 0.95),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.06),
    0 4px 14px -6px rgb(23 59 58 / 0.12),
    0 1px 2px rgb(23 59 58 / 0.04);
}

@media (min-width: 768px) {
  .problem__eyebrow {
    font-size: 0.75rem;
  }
}

.problem__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--praxis-petrol), var(--praxis-deep));
  box-shadow: 0 0 0 2px rgb(47 111 104 / 0.12);
  flex-shrink: 0;
}

.problem__eyebrow-text {
  background: linear-gradient(
    135deg,
    var(--praxis-petrol) 0%,
    var(--praxis-deep) 55%,
    var(--praxis-petrol) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.problem__headline {
  margin: 1.5rem 0 0;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--praxis-deep);
  font-size: clamp(1.75rem, 3.5vw + 0.4rem, 3rem);
  line-height: 1.12;
  text-wrap: balance;
  max-width: 24ch;
}

@media (min-width: 768px) {
  .problem__headline {
    margin-top: 1.75rem;
  }
}

.problem__subhead {
  margin: 1.25rem 0 0;
  color: var(--praxis-stone);
  text-wrap: pretty;
  font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1.0625rem);
  line-height: 1.6;
  max-width: 60ch;
}

@media (min-width: 768px) {
  .problem__subhead {
    margin-top: 1.5rem;
  }
}

/* --- Grid de cards de dor --- */
.problem__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .problem__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .problem__grid {
    margin-top: 4rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem;
  }
}

.problem__card {
  position: relative;
  isolation: isolate;
  background: linear-gradient(
    155deg,
    rgb(255 255 255 / 0.78) 0%,
    rgb(255 255 255 / 0.62) 55%,
    rgb(238 248 246 / 0.55) 100%
  );
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  border-radius: 1.125rem;
  padding: 1.5rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.14),
    inset 0 1px 0 0 rgb(255 255 255 / 0.85),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.05),
    0 6px 22px -12px rgb(23 59 58 / 0.12),
    0 2px 4px -2px rgb(23 59 58 / 0.04);
  transition:
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1),
    background 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Highlight de "brilho" no topo do card — efeito glass real */
.problem__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.9),
    transparent
  );
  pointer-events: none;
  z-index: 1;
}

/* Vinheta interna sutilíssima — dá profundidade vítrea */
.problem__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 100% 80% at 50% 0%,
    rgb(255 255 255 / 0.4) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

.problem__card > * {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .problem__card {
    padding: 1.625rem 1.5rem;
  }
}

@media (hover: hover) {
  .problem__card:hover {
    transform: translateY(-2px);
    background: linear-gradient(
      155deg,
      rgb(255 255 255 / 0.88) 0%,
      rgb(255 255 255 / 0.72) 55%,
      rgb(238 248 246 / 0.62) 100%
    );
    box-shadow:
      inset 0 0 0 1px rgb(47 111 104 / 0.22),
      inset 0 1px 0 0 rgb(255 255 255 / 0.95),
      inset 0 -1px 0 0 rgb(47 111 104 / 0.08),
      0 16px 36px -16px rgb(23 59 58 / 0.22),
      0 4px 10px -4px rgb(47 111 104 / 0.1);
  }
}

.problem__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    135deg,
    var(--praxis-petrol) 0%,
    var(--praxis-deep) 100%
  );
  color: #fff;
  box-shadow:
    inset 0 0 0 1px rgb(23 59 58 / 0.2),
    inset 0 1px 0 0 rgb(255 255 255 / 0.2),
    0 6px 16px -8px rgb(47 111 104 / 0.45);
  flex-shrink: 0;
}

.problem__card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.problem__card-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--praxis-deep);
  line-height: 1.3;
}

.problem__card-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--praxis-stone);
  text-wrap: pretty;
}

/* --- Frase de virada --- */
.problem__pivot {
  margin-top: 3rem;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 2rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(
      circle at 88% 12%,
      rgb(255 255 255 / 0.18) 0%,
      transparent 38%
    ),
    radial-gradient(
      circle at 4% 92%,
      rgb(23 59 58 / 0.55) 0%,
      transparent 55%
    ),
    linear-gradient(135deg, #2f6f68 0%, #285f59 45%, #173b3a 100%);
  box-shadow:
    inset 0 1px 0 0 rgb(255 255 255 / 0.18),
    0 24px 50px -24px rgb(23 59 58 / 0.4);
}

@media (min-width: 768px) {
  .problem__pivot {
    margin-top: 4rem;
    padding: 3rem 3rem;
  }
}

@media (min-width: 1024px) {
  .problem__pivot {
    padding: 3.5rem 4rem;
  }
}

.problem__pivot-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.75);
  margin: 0 0 1rem;
}

.problem__pivot-text {
  margin: 0 auto;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.015em;
  font-size: clamp(1.0625rem, 1.2vw + 0.7rem, 1.5rem);
  line-height: 1.4;
  text-wrap: balance;
  max-width: 36ch;
}

.problem__pivot-text strong {
  font-weight: 600;
  color: #fff;
  background: linear-gradient(
    180deg,
    #fff 0%,
    rgb(221 237 234 / 0.95) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- CTA secundário --- */
.problem__cta-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .problem__cta-wrap {
    margin-top: 2.5rem;
  }
}

.problem__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  max-width: 28rem;
  padding: 1rem 1.75rem;
  border-radius: 0.875rem;
  background: linear-gradient(
    135deg,
    #2f6f68 0%,
    #275d57 35%,
    #3a847b 65%,
    #2f6f68 100%
  );
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgb(23 59 58 / 0.3),
    inset 0 1px 0 0 rgb(255 255 255 / 0.18),
    0 10px 30px -12px rgb(23 59 58 / 0.45);
  transition:
    background-position 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  .problem__cta {
    width: auto;
    min-width: 24rem;
    padding: 1.125rem 3rem;
    font-size: 1rem;
  }
}

@media (hover: hover) {
  .problem__cta:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
  }

  .problem__cta:hover .problem__cta-arrow {
    transform: translateX(2px);
  }
}

.problem__cta-highlight {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.6),
    transparent
  );
  pointer-events: none;
}

.problem__cta-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   BLOCO 3 — CONHEÇA O PRAXIS / DIFERENCIAÇÃO
   ============================================================ */
.intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Background — base mais clara que o Bloco 2 (sensação de respiro)
   com sutil viés warm pra criar identidade própria */
.intro__bg {
  position: absolute;
  inset: 0;
  z-index: -30;
  background:
    linear-gradient(
      to bottom,
      #f4f9f7 0%,
      #f7faf9 30%,
      #f7faf9 70%,
      #f4f9f7 100%
    );
}

/* Pattern conceitual — linhas horizontais conectadas + nós alinhados
   (oposto do Bloco 2 que era "linhas desconectadas em X")
   aqui a metáfora visual é "linha contínua, fluxo organizado" */
.intro__bg-lines {
  position: absolute;
  inset: 0;
  z-index: -20;
  background-image:
    /* Linhas horizontais finas com espaçamento generoso */
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 47px,
      rgb(47 111 104 / 0.04) 47px,
      rgb(47 111 104 / 0.04) 48px
    );
  -webkit-mask-image: radial-gradient(
    ellipse 90% 75% at 50% 50%,
    #000 0%,
    #000 40%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 90% 75% at 50% 50%,
    #000 0%,
    #000 40%,
    transparent 100%
  );
}

/* Nós nas linhas — pontos refinados a cada intersecção implícita */
.intro__bg-nodes {
  position: absolute;
  inset: 0;
  z-index: -19;
  opacity: 0.45;
  background-image: radial-gradient(
    circle at center,
    rgb(47 111 104 / 0.28) 1px,
    transparent 2px
  );
  background-size: 96px 48px;
  background-position: 48px 24px;
  -webkit-mask-image: radial-gradient(
    ellipse 75% 60% at 50% 50%,
    #000 0%,
    #000 30%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 75% 60% at 50% 50%,
    #000 0%,
    #000 30%,
    transparent 100%
  );
}

/* Glow soft topo-esquerda — espelha posição oposta do Bloco 2 */
.intro__glow-soft {
  position: absolute;
  top: -8rem;
  left: -10%;
  z-index: -15;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(90px);
  background: radial-gradient(
    circle,
    rgb(221 237 234 / 0.7) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Glow petrol-tinted canto inferior direito */
.intro__glow-petrol {
  position: absolute;
  bottom: -8rem;
  right: -8%;
  z-index: -15;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(85px);
  background: radial-gradient(
    circle,
    rgb(47 111 104 / 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Hairline divisor topo + base */
.intro__divider-top,
.intro__divider-bottom {
  position: absolute;
  inset-inline: 0;
  z-index: -10;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--praxis-line),
    transparent
  );
}

.intro__divider-top {
  top: 0;
}
.intro__divider-bottom {
  bottom: 0;
}

/* --- Container --- */
.intro__container {
  max-width: 76rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
  .intro__container {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .intro__container {
    padding: 7rem 2rem;
  }
}

/* --- Header --- */
.intro__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intro__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background:
    linear-gradient(
      135deg,
      rgb(255 255 255 / 0.85) 0%,
      rgb(238 248 246 / 0.65) 100%
    );
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  padding: 0.5rem 0.9375rem;
  border-radius: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.18),
    inset 0 1px 0 0 rgb(255 255 255 / 0.95),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.06),
    0 4px 14px -6px rgb(23 59 58 / 0.12),
    0 1px 2px rgb(23 59 58 / 0.04);
}

@media (min-width: 768px) {
  .intro__eyebrow {
    font-size: 0.75rem;
  }
}

.intro__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--praxis-petrol), var(--praxis-deep));
  box-shadow: 0 0 0 2px rgb(47 111 104 / 0.12);
  flex-shrink: 0;
}

.intro__eyebrow-text {
  background: linear-gradient(
    135deg,
    var(--praxis-petrol) 0%,
    var(--praxis-deep) 55%,
    var(--praxis-petrol) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro__headline {
  margin: 1.5rem 0 0;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--praxis-deep);
  font-size: clamp(1.75rem, 3.5vw + 0.4rem, 3rem);
  line-height: 1.12;
  text-wrap: balance;
  max-width: 26ch;
}

@media (min-width: 768px) {
  .intro__headline {
    margin-top: 1.75rem;
  }
}

.intro__subhead {
  margin: 1.25rem 0 0;
  color: var(--praxis-stone);
  text-wrap: pretty;
  font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1.0625rem);
  line-height: 1.6;
  max-width: 62ch;
}

@media (min-width: 768px) {
  .intro__subhead {
    margin-top: 1.5rem;
  }
}

/* --- Texto de apoio em card destacado --- */
.intro__support {
  margin-top: 2.5rem;
  position: relative;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(
    155deg,
    rgb(255 255 255 / 0.78) 0%,
    rgb(255 255 255 / 0.62) 55%,
    rgb(238 248 246 / 0.55) 100%
  );
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.14),
    inset 0 1px 0 0 rgb(255 255 255 / 0.85),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.05),
    0 8px 24px -14px rgb(23 59 58 / 0.12),
    0 2px 4px -2px rgb(23 59 58 / 0.04);
}

@media (min-width: 768px) {
  .intro__support {
    margin-top: 3rem;
    padding: 2.25rem 2.5rem;
  }
}

.intro__support::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.9),
    transparent
  );
  pointer-events: none;
}

.intro__support-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    var(--praxis-petrol),
    var(--praxis-deep)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 0.75rem;
}

.intro__support-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--praxis-petrol),
    var(--praxis-deep)
  );
  display: inline-block;
}

.intro__support-text {
  margin: 0;
  color: var(--praxis-deep);
  text-wrap: pretty;
  font-size: clamp(0.9375rem, 0.3vw + 0.85rem, 1.0625rem);
  line-height: 1.65;
  font-weight: 400;
}

.intro__support-text em {
  font-style: normal;
  font-weight: 500;
  color: var(--praxis-deep);
}

/* --- Grid de diferenciação (3 cards) --- */
.intro__diff-label {
  margin: 4rem 0 1.5rem;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(23 59 58 / 0.55);
}

@media (min-width: 768px) {
  .intro__diff-label {
    margin-top: 5rem;
    font-size: 0.75rem;
  }
}

.intro__diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .intro__diff-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem;
  }
}

.intro__diff-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    155deg,
    rgb(255 255 255 / 0.82) 0%,
    rgb(255 255 255 / 0.66) 60%,
    rgb(238 248 246 / 0.58) 100%
  );
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  backdrop-filter: blur(22px) saturate(170%);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.14),
    inset 0 1px 0 0 rgb(255 255 255 / 0.85),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.05),
    0 8px 26px -14px rgb(23 59 58 / 0.14),
    0 2px 4px -2px rgb(23 59 58 / 0.04);
  transition:
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.intro__diff-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.9),
    transparent
  );
  pointer-events: none;
  z-index: 1;
}

@media (hover: hover) {
  .intro__diff-card:hover {
    transform: translateY(-2px);
    box-shadow:
      inset 0 0 0 1px rgb(47 111 104 / 0.22),
      inset 0 1px 0 0 rgb(255 255 255 / 0.95),
      inset 0 -1px 0 0 rgb(47 111 104 / 0.08),
      0 16px 36px -16px rgb(23 59 58 / 0.22),
      0 4px 10px -4px rgb(47 111 104 / 0.1);
  }
}

/* Topo do card: "Não é X" — bandeira sutil em cinza */
.intro__diff-not {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.375rem;
  background: linear-gradient(
    180deg,
    rgb(238 248 246 / 0.55) 0%,
    rgb(238 248 246 / 0.2) 100%
  );
  border-bottom: 1px solid rgb(47 111 104 / 0.1);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--praxis-stone);
  z-index: 2;
}

.intro__diff-not-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgb(217 95 89 / 0.12);
  color: var(--danger);
  flex-shrink: 0;
}

.intro__diff-not-icon svg {
  width: 0.625rem;
  height: 0.625rem;
}

/* Corpo do card: "É Y" */
.intro__diff-body {
  position: relative;
  padding: 1.5rem 1.375rem 1.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 2;
}

@media (min-width: 768px) {
  .intro__diff-body {
    padding: 1.625rem 1.5rem 1.75rem;
  }
}

.intro__diff-is {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    var(--praxis-petrol),
    var(--praxis-deep)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro__diff-is-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--praxis-petrol),
    var(--praxis-deep)
  );
  color: #fff;
  box-shadow: 0 2px 6px -2px rgb(47 111 104 / 0.5);
  flex-shrink: 0;
}

.intro__diff-is-icon svg {
  width: 0.625rem;
  height: 0.625rem;
}

.intro__diff-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--praxis-deep);
  line-height: 1.3;
}

.intro__diff-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--praxis-stone);
  text-wrap: pretty;
}

/* --- Frase de fechamento --- */
.intro__closing {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .intro__closing {
    margin-top: 4rem;
  }
}

.intro__closing-text {
  margin: 0 auto;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--praxis-deep);
  font-size: clamp(1.0625rem, 0.9vw + 0.85rem, 1.375rem);
  line-height: 1.5;
  text-wrap: balance;
  max-width: 44ch;
}

.intro__closing-text strong {
  font-weight: 600;
  background: linear-gradient(
    135deg,
    var(--praxis-petrol),
    var(--praxis-deep)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- CTA do bloco (primary) --- */
.intro__cta-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .intro__cta-wrap {
    margin-top: 2.5rem;
  }
}

.intro__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  max-width: 28rem;
  padding: 1rem 1.75rem;
  border-radius: 0.875rem;
  background: linear-gradient(
    135deg,
    #2f6f68 0%,
    #275d57 35%,
    #3a847b 65%,
    #2f6f68 100%
  );
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgb(23 59 58 / 0.3),
    inset 0 1px 0 0 rgb(255 255 255 / 0.18),
    0 10px 30px -12px rgb(23 59 58 / 0.45);
  transition:
    background-position 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  .intro__cta {
    width: auto;
    min-width: 24rem;
    padding: 1.125rem 3rem;
    font-size: 1rem;
  }
}

@media (hover: hover) {
  .intro__cta:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
  }

  .intro__cta:hover .intro__cta-arrow {
    transform: translateX(2px);
  }
}

.intro__cta-highlight {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.6),
    transparent
  );
  pointer-events: none;
}

.intro__cta-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   BLOCO 4 — COMO FUNCIONA NA PRÁTICA (timeline vertical)
   ============================================================ */
.flow {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Background — tom médio levemente mais escuro que o Bloco 3
   pra dar peso de "este é o coração do produto" */
.flow__bg {
  position: absolute;
  inset: 0;
  z-index: -30;
  background:
    linear-gradient(
      180deg,
      #edf4f2 0%,
      #e7eeec 50%,
      #edf4f2 100%
    );
}

/* Pattern conceitual — linhas verticais contínuas
   (metáfora: progressão, caminho, fluxo de cima pra baixo) */
.flow__bg-rails {
  position: absolute;
  inset: 0;
  z-index: -20;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 63px,
    rgb(47 111 104 / 0.045) 63px,
    rgb(47 111 104 / 0.045) 64px
  );
  -webkit-mask-image: radial-gradient(
    ellipse 90% 75% at 50% 50%,
    #000 0%,
    #000 40%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 90% 75% at 50% 50%,
    #000 0%,
    #000 40%,
    transparent 100%
  );
}

/* Marcações horizontais espaçadas — "estações" do caminho */
.flow__bg-marks {
  position: absolute;
  inset: 0;
  z-index: -19;
  opacity: 0.5;
  background-image: linear-gradient(
    180deg,
    transparent 0,
    transparent 159px,
    rgb(47 111 104 / 0.06) 159px,
    rgb(47 111 104 / 0.06) 160px
  );
  background-size: 100% 160px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    #000 0%,
    #000 30%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    #000 0%,
    #000 30%,
    transparent 100%
  );
}

/* Glow petrol topo direito */
.flow__glow-petrol {
  position: absolute;
  top: -10rem;
  right: -8%;
  z-index: -15;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(95px);
  background: radial-gradient(
    circle,
    rgb(47 111 104 / 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Glow soft canto inferior esquerdo */
.flow__glow-soft {
  position: absolute;
  bottom: -10rem;
  left: -8%;
  z-index: -15;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(90px);
  background: radial-gradient(
    circle,
    rgb(221 237 234 / 0.7) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.flow__divider-top,
.flow__divider-bottom {
  position: absolute;
  inset-inline: 0;
  z-index: -10;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--praxis-line),
    transparent
  );
}

.flow__divider-top {
  top: 0;
}
.flow__divider-bottom {
  bottom: 0;
}

/* --- Container --- */
.flow__container {
  max-width: 76rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
  .flow__container {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .flow__container {
    padding: 7rem 2rem;
  }
}

/* --- Header --- */
.flow__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.flow__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background:
    linear-gradient(
      135deg,
      rgb(255 255 255 / 0.85) 0%,
      rgb(238 248 246 / 0.65) 100%
    );
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  padding: 0.5rem 0.9375rem;
  border-radius: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.18),
    inset 0 1px 0 0 rgb(255 255 255 / 0.95),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.06),
    0 4px 14px -6px rgb(23 59 58 / 0.12),
    0 1px 2px rgb(23 59 58 / 0.04);
}

@media (min-width: 768px) {
  .flow__eyebrow {
    font-size: 0.75rem;
  }
}

.flow__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--praxis-petrol), var(--praxis-deep));
  box-shadow: 0 0 0 2px rgb(47 111 104 / 0.12);
  flex-shrink: 0;
}

.flow__eyebrow-text {
  background: linear-gradient(
    135deg,
    var(--praxis-petrol) 0%,
    var(--praxis-deep) 55%,
    var(--praxis-petrol) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.flow__headline {
  margin: 1.5rem 0 0;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--praxis-deep);
  font-size: clamp(1.75rem, 3.5vw + 0.4rem, 3rem);
  line-height: 1.12;
  text-wrap: balance;
  max-width: 26ch;
}

@media (min-width: 768px) {
  .flow__headline {
    margin-top: 1.75rem;
  }
}

.flow__subhead {
  margin: 1.25rem 0 0;
  color: var(--praxis-stone);
  text-wrap: pretty;
  font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1.0625rem);
  line-height: 1.6;
  max-width: 64ch;
}

@media (min-width: 768px) {
  .flow__subhead {
    margin-top: 1.5rem;
  }
}

/* ============================================================
   TIMELINE — vertical no mobile/tablet, 3+3 no desktop
   ============================================================ */
.flow__timeline {
  position: relative;
  margin: 3.5rem auto 0;
  max-width: 76rem;
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .flow__timeline {
    margin-top: 5rem;
  }
}

/* --- MOBILE/TABLET: linha vertical à esquerda --- */
.flow__timeline::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 1.375rem;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgb(47 111 104 / 0.18) 8%,
    rgb(47 111 104 / 0.35) 50%,
    rgb(47 111 104 / 0.18) 92%,
    transparent 100%
  );
  border-radius: 9999px;
}

/* --- DESKTOP: grid 3 colunas + 2 linhas (3 em cima, 3 embaixo) --- */
@media (min-width: 1024px) {
  .flow__timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    column-gap: 1.5rem;
    row-gap: 3.5rem;
    align-items: stretch;
  }

  /* Remove a linha vertical do mobile */
  .flow__timeline::before {
    display: none;
  }
}

/* --- STEP --- */
.flow__step {
  position: relative;
  padding-left: 4rem;
  padding-bottom: 2rem;
}

.flow__step:last-child {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .flow__step {
    padding-left: 4.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .flow__step {
    padding: 0;
    display: flex;
    flex-direction: column;
  }
}

/* --- CONECTORES HORIZONTAIS no desktop --- */
@media (min-width: 1024px) {
  /* Linha que sai da direita dos cards 1, 2, 4 e 5 indo pra próxima coluna */
  .flow__step:nth-child(1)::before,
  .flow__step:nth-child(2)::before,
  .flow__step:nth-child(4)::before,
  .flow__step:nth-child(5)::before {
    content: "";
    position: absolute;
    top: 2.75rem;
    right: -1.5rem;
    width: 1.5rem;
    height: 2px;
    background: linear-gradient(
      to right,
      rgb(47 111 104 / 0.35) 0%,
      rgb(47 111 104 / 0.25) 100%
    );
    z-index: 1;
  }

  /* Seta no final do conector */
  .flow__step:nth-child(1)::after,
  .flow__step:nth-child(2)::after,
  .flow__step:nth-child(4)::after,
  .flow__step:nth-child(5)::after {
    content: "";
    position: absolute;
    top: calc(2.75rem - 4px);
    right: -1.625rem;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid rgb(47 111 104 / 0.42);
    z-index: 2;
  }

  /* Conector vertical descendo: do card 3 pro card 6 (curva em U)
     usando um pseudo do ::after grande no card 3 */
  .flow__step:nth-child(3)::after {
    content: "";
    position: absolute;
    top: 2.75rem;
    right: -1.25rem;
    width: 1rem;
    height: calc(100% + 3.5rem - 2.75rem + 2.75rem);
    border-right: 2px dashed rgb(47 111 104 / 0.28);
    border-bottom: 2px dashed rgb(47 111 104 / 0.28);
    border-bottom-right-radius: 1rem;
    z-index: 0;
  }

  /* Linha do conector vertical chegando no card 6 - vinda da direita */
  .flow__step:nth-child(6)::before {
    content: "";
    position: absolute;
    top: 2.75rem;
    right: 100%;
    width: 1.25rem;
    height: 2px;
    border-top: 2px dashed rgb(47 111 104 / 0.28);
    margin-right: -2px;
    z-index: 0;
  }

  /* Seta do conector vertical apontando pra esquerda (no início da linha 2, dentro do card 6) */
  .flow__step:nth-child(6)::after {
    content: "";
    position: absolute;
    top: calc(2.75rem - 4px);
    right: 100%;
    margin-right: -2px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 7px solid rgb(47 111 104 / 0.42);
    z-index: 2;
  }
}

/* Nó numerado */
.flow__step-node {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--praxis-petrol) 0%,
    var(--praxis-deep) 100%
  );
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow:
    inset 0 0 0 1px rgb(23 59 58 / 0.25),
    inset 0 1px 0 0 rgb(255 255 255 / 0.25),
    0 8px 18px -8px rgb(47 111 104 / 0.55),
    0 0 0 4px rgb(237 244 242 / 1),
    0 0 0 5px rgb(47 111 104 / 0.1);
  z-index: 3;
}

@media (min-width: 1024px) {
  .flow__step-node {
    position: absolute;
    top: 1.125rem;
    left: 1.125rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.9375rem;
    box-shadow:
      inset 0 0 0 1px rgb(23 59 58 / 0.25),
      inset 0 1px 0 0 rgb(255 255 255 / 0.25),
      0 6px 14px -6px rgb(47 111 104 / 0.45);
  }
}

/* Halo pulse sutil ao redor do nó */
.flow__step-node::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgb(47 111 104 / 0.12) 0%,
    transparent 70%
  );
  z-index: -1;
}

/* Card do passo */
.flow__step-card {
  position: relative;
  isolation: isolate;
  background: linear-gradient(
    155deg,
    rgb(255 255 255 / 0.82) 0%,
    rgb(255 255 255 / 0.66) 60%,
    rgb(238 248 246 / 0.58) 100%
  );
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  backdrop-filter: blur(22px) saturate(170%);
  border-radius: 1.25rem;
  padding: 1.5rem 1.375rem;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.14),
    inset 0 1px 0 0 rgb(255 255 255 / 0.85),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.05),
    0 8px 26px -14px rgb(23 59 58 / 0.14),
    0 2px 4px -2px rgb(23 59 58 / 0.04);
  transition:
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.flow__step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.9),
    transparent
  );
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 768px) {
  .flow__step-card {
    padding: 1.75rem 1.75rem;
  }
}

@media (min-width: 1024px) {
  .flow__step-card {
    width: 100%;
    flex: 1;
    padding: 1.75rem 1.75rem 1.875rem 4.625rem;
    min-height: 100%;
  }
}

@media (hover: hover) {
  .flow__step-card:hover {
    transform: translateY(-2px);
    box-shadow:
      inset 0 0 0 1px rgb(47 111 104 / 0.22),
      inset 0 1px 0 0 rgb(255 255 255 / 0.95),
      inset 0 -1px 0 0 rgb(47 111 104 / 0.08),
      0 16px 36px -16px rgb(23 59 58 / 0.22),
      0 4px 10px -4px rgb(47 111 104 / 0.1);
  }
}

.flow__step-label {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    var(--praxis-petrol),
    var(--praxis-deep)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 0.5rem;
  position: relative;
  z-index: 2;
}

.flow__step-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--praxis-deep);
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .flow__step-title {
    font-size: 1.1875rem;
  }
}

@media (min-width: 1024px) {
  .flow__step-title {
    font-size: 1.0625rem;
    text-wrap: balance;
  }
}

.flow__step-text {
  margin: 0.625rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--praxis-stone);
  text-wrap: pretty;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .flow__step-text {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}

/* --- CTA final do bloco --- */
.flow__cta-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .flow__cta-wrap {
    margin-top: 3.5rem;
  }
}

.flow__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  max-width: 28rem;
  padding: 1rem 1.75rem;
  border-radius: 0.875rem;
  background: linear-gradient(
    135deg,
    #2f6f68 0%,
    #275d57 35%,
    #3a847b 65%,
    #2f6f68 100%
  );
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgb(23 59 58 / 0.3),
    inset 0 1px 0 0 rgb(255 255 255 / 0.18),
    0 10px 30px -12px rgb(23 59 58 / 0.45);
  transition:
    background-position 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  .flow__cta {
    width: auto;
    min-width: 24rem;
    padding: 1.125rem 3rem;
    font-size: 1rem;
  }
}

@media (hover: hover) {
  .flow__cta:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
  }

  .flow__cta:hover .flow__cta-arrow {
    transform: translateX(2px);
  }
}

.flow__cta-highlight {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.6),
    transparent
  );
  pointer-events: none;
}

.flow__cta-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   BLOCO 5 — TUDO EM UM SÓ LUGAR (bento grid de 10 recursos)
   ============================================================ */
.everything {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Background — volta a um tom mais claro pra dar respiro
   depois do peso do Bloco 4. Mas ainda diferente do canvas do Hero */
.everything__bg {
  position: absolute;
  inset: 0;
  z-index: -30;
  background:
    linear-gradient(
      180deg,
      #f3f8f6 0%,
      #f7faf9 35%,
      #f7faf9 65%,
      #f3f8f6 100%
    );
}

/* Pattern conceitual — quadrados aninhados (módulos organizados)
   metáfora visual: "tudo encaixa, tudo se ordena" */
.everything__bg-grid {
  position: absolute;
  inset: 0;
  z-index: -20;
  background-image:
    linear-gradient(to right, rgb(47 111 104 / 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(47 111 104 / 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(
    ellipse 88% 70% at 50% 50%,
    #000 0%,
    #000 35%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 88% 70% at 50% 50%,
    #000 0%,
    #000 35%,
    transparent 100%
  );
}

/* Dots refinados nos cruzamentos do grid */
.everything__bg-dots {
  position: absolute;
  inset: 0;
  z-index: -19;
  opacity: 0.55;
  background-image: radial-gradient(
    circle at center,
    rgb(47 111 104 / 0.22) 1px,
    transparent 1.75px
  );
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 55% at 50% 50%,
    #000 0%,
    #000 30%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 70% 55% at 50% 50%,
    #000 0%,
    #000 30%,
    transparent 100%
  );
}

/* Glow soft no topo direito */
.everything__glow-soft {
  position: absolute;
  top: -10rem;
  right: -8%;
  z-index: -15;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(95px);
  background: radial-gradient(
    circle,
    rgb(221 237 234 / 0.75) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Glow petrol canto inferior esquerdo */
.everything__glow-petrol {
  position: absolute;
  bottom: -10rem;
  left: -8%;
  z-index: -15;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(90px);
  background: radial-gradient(
    circle,
    rgb(47 111 104 / 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.everything__divider-top,
.everything__divider-bottom {
  position: absolute;
  inset-inline: 0;
  z-index: -10;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--praxis-line),
    transparent
  );
}

.everything__divider-top {
  top: 0;
}
.everything__divider-bottom {
  bottom: 0;
}

/* --- Container --- */
.everything__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
  .everything__container {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .everything__container {
    padding: 7rem 2rem;
  }
}

/* --- Header --- */
.everything__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.everything__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background:
    linear-gradient(
      135deg,
      rgb(255 255 255 / 0.85) 0%,
      rgb(238 248 246 / 0.65) 100%
    );
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  padding: 0.5rem 0.9375rem;
  border-radius: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.18),
    inset 0 1px 0 0 rgb(255 255 255 / 0.95),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.06),
    0 4px 14px -6px rgb(23 59 58 / 0.12),
    0 1px 2px rgb(23 59 58 / 0.04);
}

@media (min-width: 768px) {
  .everything__eyebrow {
    font-size: 0.75rem;
  }
}

.everything__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--praxis-petrol), var(--praxis-deep));
  box-shadow: 0 0 0 2px rgb(47 111 104 / 0.12);
  flex-shrink: 0;
}

.everything__eyebrow-text {
  background: linear-gradient(
    135deg,
    var(--praxis-petrol) 0%,
    var(--praxis-deep) 55%,
    var(--praxis-petrol) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.everything__headline {
  margin: 1.5rem 0 0;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--praxis-deep);
  font-size: clamp(1.75rem, 3.5vw + 0.4rem, 3rem);
  line-height: 1.12;
  text-wrap: balance;
  max-width: 26ch;
}

@media (min-width: 768px) {
  .everything__headline {
    margin-top: 1.75rem;
  }
}

.everything__subhead {
  margin: 1.25rem 0 0;
  color: var(--praxis-stone);
  text-wrap: pretty;
  font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1.0625rem);
  line-height: 1.6;
  max-width: 60ch;
}

@media (min-width: 768px) {
  .everything__subhead {
    margin-top: 1.5rem;
  }
}

/* ============================================================
   BENTO GRID
   ============================================================ */
.everything__bento {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .everything__bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .everything__bento {
    margin-top: 4rem;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(170px, auto);
    gap: 1rem;
  }

  /* Layout bento: cards 1 e 5 ocupam 3 colunas (highlights largos)
     o resto ocupa 2 colunas cada (compactos) */
  .everything__feature--wide-1 {
    grid-column: span 3;
  }
  .everything__feature--wide-2 {
    grid-column: span 3;
  }
  .everything__feature--regular {
    grid-column: span 2;
  }
}

/* --- Card de recurso --- */
.everything__feature {
  position: relative;
  isolation: isolate;
  background: linear-gradient(
    155deg,
    rgb(255 255 255 / 0.82) 0%,
    rgb(255 255 255 / 0.66) 60%,
    rgb(238 248 246 / 0.58) 100%
  );
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  backdrop-filter: blur(22px) saturate(170%);
  border-radius: 1.125rem;
  padding: 1.375rem 1.375rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.14),
    inset 0 1px 0 0 rgb(255 255 255 / 0.85),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.05),
    0 6px 22px -12px rgb(23 59 58 / 0.12),
    0 2px 4px -2px rgb(23 59 58 / 0.04);
  transition:
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.everything__feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.9),
    transparent
  );
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 768px) {
  .everything__feature {
    padding: 1.5rem 1.5rem 1.625rem;
    gap: 1rem;
  }
}

@media (hover: hover) {
  .everything__feature:hover {
    transform: translateY(-2px);
    box-shadow:
      inset 0 0 0 1px rgb(47 111 104 / 0.22),
      inset 0 1px 0 0 rgb(255 255 255 / 0.95),
      inset 0 -1px 0 0 rgb(47 111 104 / 0.08),
      0 16px 36px -16px rgb(23 59 58 / 0.22),
      0 4px 10px -4px rgb(47 111 104 / 0.1);
  }

  .everything__feature:hover .everything__feature-icon {
    transform: scale(1.05) rotate(-2deg);
  }
}

/* Cabeçalho do card: ícone + número de etapa pequena */
.everything__feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}

.everything__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6875rem;
  background: linear-gradient(
    135deg,
    var(--praxis-petrol) 0%,
    var(--praxis-deep) 100%
  );
  color: #fff;
  box-shadow:
    inset 0 0 0 1px rgb(23 59 58 / 0.22),
    inset 0 1px 0 0 rgb(255 255 255 / 0.22),
    0 6px 16px -8px rgb(47 111 104 / 0.5);
  flex-shrink: 0;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.everything__feature-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* Chip "incluso" no canto superior direito */
.everything__feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.1875rem 0.5rem;
  border-radius: 9999px;
  background: rgb(63 140 118 / 0.12);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--success);
  flex-shrink: 0;
}

.everything__feature-tag svg {
  width: 0.6875rem;
  height: 0.6875rem;
}

/* Corpo do card */
.everything__feature-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}

.everything__feature-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--praxis-deep);
  line-height: 1.3;
}

@media (min-width: 1024px) {
  .everything__feature--wide-1 .everything__feature-title,
  .everything__feature--wide-2 .everything__feature-title {
    font-size: 1.125rem;
  }
}

.everything__feature-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--praxis-stone);
  text-wrap: pretty;
}

@media (min-width: 1024px) {
  .everything__feature--wide-1 .everything__feature-text,
  .everything__feature--wide-2 .everything__feature-text {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}

/* --- Frase de fechamento --- */
.everything__closing {
  margin-top: 3rem;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 2rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(
      circle at 88% 12%,
      rgb(255 255 255 / 0.18) 0%,
      transparent 38%
    ),
    radial-gradient(
      circle at 4% 92%,
      rgb(23 59 58 / 0.55) 0%,
      transparent 55%
    ),
    linear-gradient(135deg, #2f6f68 0%, #285f59 45%, #173b3a 100%);
  box-shadow:
    inset 0 1px 0 0 rgb(255 255 255 / 0.18),
    0 24px 50px -24px rgb(23 59 58 / 0.4);
}

@media (min-width: 768px) {
  .everything__closing {
    margin-top: 4rem;
    padding: 2.75rem 3rem;
  }
}

@media (min-width: 1024px) {
  .everything__closing {
    padding: 3.25rem 4rem;
  }
}

.everything__closing-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.75);
  margin: 0 0 1rem;
}

.everything__closing-text {
  margin: 0 auto;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.015em;
  font-size: clamp(1rem, 0.8vw + 0.8rem, 1.3125rem);
  line-height: 1.5;
  text-wrap: balance;
  max-width: 52ch;
}

.everything__closing-text strong {
  font-weight: 600;
  background: linear-gradient(
    180deg,
    #fff 0%,
    rgb(221 237 234 / 0.95) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- CTA --- */
.everything__cta-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .everything__cta-wrap {
    margin-top: 2.5rem;
  }
}

.everything__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  max-width: 28rem;
  padding: 1rem 1.75rem;
  border-radius: 0.875rem;
  background: linear-gradient(
    135deg,
    #2f6f68 0%,
    #275d57 35%,
    #3a847b 65%,
    #2f6f68 100%
  );
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgb(23 59 58 / 0.3),
    inset 0 1px 0 0 rgb(255 255 255 / 0.18),
    0 10px 30px -12px rgb(23 59 58 / 0.45);
  transition:
    background-position 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  .everything__cta {
    width: auto;
    min-width: 24rem;
    padding: 1.125rem 3rem;
    font-size: 1rem;
  }
}

@media (hover: hover) {
  .everything__cta:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
  }

  .everything__cta:hover .everything__cta-arrow {
    transform: translateX(2px);
  }
}

.everything__cta-highlight {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.6),
    transparent
  );
  pointer-events: none;
}

.everything__cta-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   BLOCO 6 — PARA QUEM É (lista de qualificação)
   ============================================================ */
.foryou {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Background — tom médio com viés warm sutil pra sensação acolhedora */
.foryou__bg {
  position: absolute;
  inset: 0;
  z-index: -30;
  background:
    linear-gradient(
      180deg,
      #eef5f3 0%,
      #ebf3f0 50%,
      #eef5f3 100%
    );
}

/* Pattern conceitual — círculos concêntricos sutis
   metáfora visual: "você está no centro de uma rotina organizada" */
.foryou__bg-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -20;
  width: min(140%, 1400px);
  height: min(140%, 1400px);
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(
      circle at center,
      transparent 0,
      transparent 119px,
      rgb(47 111 104 / 0.07) 119px,
      rgb(47 111 104 / 0.07) 120px,
      transparent 121px,
      transparent 239px,
      rgb(47 111 104 / 0.055) 239px,
      rgb(47 111 104 / 0.055) 240px,
      transparent 241px,
      transparent 359px,
      rgb(47 111 104 / 0.045) 359px,
      rgb(47 111 104 / 0.045) 360px,
      transparent 361px,
      transparent 479px,
      rgb(47 111 104 / 0.035) 479px,
      rgb(47 111 104 / 0.035) 480px,
      transparent 481px,
      transparent 599px,
      rgb(47 111 104 / 0.025) 599px,
      rgb(47 111 104 / 0.025) 600px,
      transparent 601px
    );
  -webkit-mask-image: radial-gradient(
    circle at center,
    #000 0%,
    #000 30%,
    transparent 75%
  );
  mask-image: radial-gradient(
    circle at center,
    #000 0%,
    #000 30%,
    transparent 75%
  );
}

/* Glow petrol no centro pra reforçar a metáfora */
.foryou__glow-center {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -15;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(95px);
  background: radial-gradient(
    circle,
    rgb(221 237 234 / 0.55) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Glow petrol canto inferior direito */
.foryou__glow-petrol {
  position: absolute;
  bottom: -10rem;
  right: -8%;
  z-index: -15;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(90px);
  background: radial-gradient(
    circle,
    rgb(47 111 104 / 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.foryou__divider-top,
.foryou__divider-bottom {
  position: absolute;
  inset-inline: 0;
  z-index: -10;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--praxis-line),
    transparent
  );
}

.foryou__divider-top {
  top: 0;
}
.foryou__divider-bottom {
  bottom: 0;
}

/* --- Container --- */
.foryou__container {
  max-width: 76rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
  .foryou__container {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .foryou__container {
    padding: 7rem 2rem;
  }
}

/* --- Header --- */
.foryou__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.foryou__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background:
    linear-gradient(
      135deg,
      rgb(255 255 255 / 0.85) 0%,
      rgb(238 248 246 / 0.65) 100%
    );
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  padding: 0.5rem 0.9375rem;
  border-radius: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.18),
    inset 0 1px 0 0 rgb(255 255 255 / 0.95),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.06),
    0 4px 14px -6px rgb(23 59 58 / 0.12),
    0 1px 2px rgb(23 59 58 / 0.04);
}

@media (min-width: 768px) {
  .foryou__eyebrow {
    font-size: 0.75rem;
  }
}

.foryou__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--praxis-petrol), var(--praxis-deep));
  box-shadow: 0 0 0 2px rgb(47 111 104 / 0.12);
  flex-shrink: 0;
}

.foryou__eyebrow-text {
  background: linear-gradient(
    135deg,
    var(--praxis-petrol) 0%,
    var(--praxis-deep) 55%,
    var(--praxis-petrol) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.foryou__headline {
  margin: 1.5rem 0 0;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--praxis-deep);
  font-size: clamp(1.75rem, 3.5vw + 0.4rem, 3rem);
  line-height: 1.12;
  text-wrap: balance;
  max-width: 28ch;
}

@media (min-width: 768px) {
  .foryou__headline {
    margin-top: 1.75rem;
  }
}

.foryou__subhead {
  margin: 1.25rem 0 0;
  color: var(--praxis-stone);
  text-wrap: pretty;
  font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1.0625rem);
  line-height: 1.6;
  max-width: 62ch;
}

@media (min-width: 768px) {
  .foryou__subhead {
    margin-top: 1.5rem;
  }
}

/* --- Card-mãe que engloba os 7 itens (glass premium grande) --- */
.foryou__panel {
  margin-top: 3rem;
  position: relative;
  isolation: isolate;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.75rem 1.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(
    155deg,
    rgb(255 255 255 / 0.82) 0%,
    rgb(255 255 255 / 0.66) 60%,
    rgb(238 248 246 / 0.58) 100%
  );
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  backdrop-filter: blur(24px) saturate(170%);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.14),
    inset 0 1px 0 0 rgb(255 255 255 / 0.85),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.05),
    0 16px 40px -22px rgb(23 59 58 / 0.18),
    0 4px 8px -4px rgb(23 59 58 / 0.04);
}

@media (min-width: 768px) {
  .foryou__panel {
    margin-top: 4rem;
    padding: 2.5rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .foryou__panel {
    padding: 3rem 3.25rem 2.75rem;
  }
}

.foryou__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.9),
    transparent
  );
  pointer-events: none;
  z-index: 1;
}

/* Eyebrow do card-mãe */
.foryou__panel-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    var(--praxis-petrol),
    var(--praxis-deep)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 1.5rem;
}

.foryou__panel-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--praxis-petrol),
    var(--praxis-deep)
  );
  display: inline-block;
}

@media (min-width: 768px) {
  .foryou__panel-label {
    margin-bottom: 2rem;
  }
}

/* --- Grid de itens --- */
.foryou__list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 1024px) {
  .foryou__list {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
  }
}

/* --- Item --- */
.foryou__item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-top: 1px solid rgb(47 111 104 / 0.08);
}

.foryou__item:first-child {
  border-top: none;
  padding-top: 0;
}

@media (min-width: 768px) {
  .foryou__item {
    column-gap: 1.125rem;
    padding: 1.375rem 0;
  }
}

@media (min-width: 1024px) {
  .foryou__item {
    padding: 1.25rem 0;
  }

  /* No grid de 2 colunas: o item 1 (esquerda) não tem border-top
     mas o item 2 (direita primeira linha) também não deve ter */
  .foryou__item:nth-child(2) {
    border-top: none;
    padding-top: 0;
  }
}

/* Check petrol elegante */
.foryou__item-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--praxis-petrol) 0%,
    var(--praxis-deep) 100%
  );
  color: #fff;
  box-shadow:
    inset 0 0 0 1px rgb(23 59 58 / 0.22),
    inset 0 1px 0 0 rgb(255 255 255 / 0.22),
    0 4px 10px -4px rgb(47 111 104 / 0.5),
    0 0 0 4px rgb(47 111 104 / 0.06);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.foryou__item-check svg {
  width: 0.8125rem;
  height: 0.8125rem;
}

/* Texto do item */
.foryou__item-body {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  min-width: 0;
}

.foryou__item-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--praxis-deep);
  line-height: 1.35;
}

@media (min-width: 768px) {
  .foryou__item-title {
    font-size: 1.0625rem;
  }
}

.foryou__item-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--praxis-stone);
  text-wrap: pretty;
}

/* --- Item destaque (último, sobre autonomia) — ocupa as 2 colunas no desktop --- */
@media (min-width: 1024px) {
  .foryou__item--full {
    grid-column: 1 / -1;
    border-top: 1px solid rgb(47 111 104 / 0.08);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }

  .foryou__item--full .foryou__item-title {
    font-size: 1.125rem;
  }

  .foryou__item--full .foryou__item-text {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* --- CTA --- */
.foryou__cta-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .foryou__cta-wrap {
    margin-top: 3rem;
  }
}

.foryou__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  max-width: 28rem;
  padding: 1rem 1.75rem;
  border-radius: 0.875rem;
  background: linear-gradient(
    135deg,
    #2f6f68 0%,
    #275d57 35%,
    #3a847b 65%,
    #2f6f68 100%
  );
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgb(23 59 58 / 0.3),
    inset 0 1px 0 0 rgb(255 255 255 / 0.18),
    0 10px 30px -12px rgb(23 59 58 / 0.45);
  transition:
    background-position 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  .foryou__cta {
    width: auto;
    min-width: 24rem;
    padding: 1.125rem 3rem;
    font-size: 1rem;
  }
}

@media (hover: hover) {
  .foryou__cta:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
  }

  .foryou__cta:hover .foryou__cta-arrow {
    transform: translateX(2px);
  }
}

.foryou__cta-highlight {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.6),
    transparent
  );
  pointer-events: none;
}

.foryou__cta-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   BLOCO 7 — PRICING (3 planos, Profissional em destaque)
   ============================================================ */
.pricing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Background — mais escuro/denso pra dar peso de decisão financeira
   gradient sutilmente warm pra parecer "premium" sem ser frio */
.pricing__bg {
  position: absolute;
  inset: 0;
  z-index: -30;
  background:
    linear-gradient(
      180deg,
      #eaf2ef 0%,
      #e4eceb 50%,
      #eaf2ef 100%
    );
}

/* Pattern — linhas verticais finas em 3 colunas implícitas
   metáfora visual: 3 opções, organização tabular */
.pricing__bg-cols {
  position: absolute;
  inset: 0;
  z-index: -20;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 119px,
    rgb(47 111 104 / 0.05) 119px,
    rgb(47 111 104 / 0.05) 120px
  );
  -webkit-mask-image: radial-gradient(
    ellipse 88% 75% at 50% 50%,
    #000 0%,
    #000 40%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 88% 75% at 50% 50%,
    #000 0%,
    #000 40%,
    transparent 100%
  );
}

/* Dots refinados sobrepostos */
.pricing__bg-dots {
  position: absolute;
  inset: 0;
  z-index: -19;
  opacity: 0.4;
  background-image: radial-gradient(
    circle at center,
    rgb(47 111 104 / 0.18) 0.75px,
    transparent 1.75px
  );
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(
    ellipse 75% 60% at 50% 50%,
    #000 0%,
    #000 30%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 75% 60% at 50% 50%,
    #000 0%,
    #000 30%,
    transparent 100%
  );
}

/* Glow petrol superior central — destaca o plano profissional */
.pricing__glow-center {
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -15;
  width: 600px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  background: radial-gradient(
    circle,
    rgb(47 111 104 / 0.16) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Glow soft canto inferior esquerdo */
.pricing__glow-soft {
  position: absolute;
  bottom: -10rem;
  left: -8%;
  z-index: -15;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(90px);
  background: radial-gradient(
    circle,
    rgb(221 237 234 / 0.65) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.pricing__divider-top,
.pricing__divider-bottom {
  position: absolute;
  inset-inline: 0;
  z-index: -10;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--praxis-line),
    transparent
  );
}

.pricing__divider-top {
  top: 0;
}
.pricing__divider-bottom {
  bottom: 0;
}

/* --- Container --- */
.pricing__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
  .pricing__container {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .pricing__container {
    padding: 7rem 2rem;
  }
}

/* --- Header --- */
.pricing__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background:
    linear-gradient(
      135deg,
      rgb(255 255 255 / 0.85) 0%,
      rgb(238 248 246 / 0.65) 100%
    );
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  padding: 0.5rem 0.9375rem;
  border-radius: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.18),
    inset 0 1px 0 0 rgb(255 255 255 / 0.95),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.06),
    0 4px 14px -6px rgb(23 59 58 / 0.12),
    0 1px 2px rgb(23 59 58 / 0.04);
}

@media (min-width: 768px) {
  .pricing__eyebrow {
    font-size: 0.75rem;
  }
}

.pricing__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--praxis-petrol), var(--praxis-deep));
  box-shadow: 0 0 0 2px rgb(47 111 104 / 0.12);
  flex-shrink: 0;
}

.pricing__eyebrow-text {
  background: linear-gradient(
    135deg,
    var(--praxis-petrol) 0%,
    var(--praxis-deep) 55%,
    var(--praxis-petrol) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing__headline {
  margin: 1.5rem 0 0;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--praxis-deep);
  font-size: clamp(1.75rem, 3.5vw + 0.4rem, 3rem);
  line-height: 1.12;
  text-wrap: balance;
  max-width: 28ch;
}

@media (min-width: 768px) {
  .pricing__headline {
    margin-top: 1.75rem;
  }
}

.pricing__subhead {
  margin: 1.25rem 0 0;
  color: var(--praxis-stone);
  text-wrap: pretty;
  font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1.0625rem);
  line-height: 1.6;
  max-width: 62ch;
}

@media (min-width: 768px) {
  .pricing__subhead {
    margin-top: 1.5rem;
  }
}

/* ============================================================
   GRID DOS 3 PLANOS
   ============================================================ */
.pricing__grid {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 1.5rem; /* espaço para o selo flutuar acima do card no mobile */
}

@media (min-width: 768px) {
  .pricing__grid {
    margin-top: 5.5rem;
    padding-top: 1.75rem;
  }
}

/* Desktop: 3 colunas, com gap maior em volta do destacado */
@media (min-width: 1024px) {
  .pricing__grid {
    grid-template-columns: 1fr 1.08fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    padding-top: 2rem;
  }
}

/* --- Plano (card base) --- */
.pricing__plan {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    155deg,
    rgb(255 255 255 / 0.82) 0%,
    rgb(255 255 255 / 0.66) 60%,
    rgb(238 248 246 / 0.58) 100%
  );
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  backdrop-filter: blur(22px) saturate(170%);
  border-radius: 1.375rem;
  padding: 1.75rem 1.5rem 1.75rem;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.14),
    inset 0 1px 0 0 rgb(255 255 255 / 0.85),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.05),
    0 10px 28px -16px rgb(23 59 58 / 0.14),
    0 2px 6px -2px rgb(23 59 58 / 0.04);
  transition:
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing__plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.9),
    transparent
  );
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 768px) {
  .pricing__plan {
    padding: 2.25rem 2rem;
  }
}

@media (hover: hover) {
  .pricing__plan:hover {
    transform: translateY(-2px);
  }
}

/* --- Plano DESTACADO (Profissional) --- */
.pricing__plan--featured {
  overflow: visible;
  background:
    radial-gradient(
      circle at 88% 8%,
      rgb(255 255 255 / 0.16) 0%,
      transparent 38%
    ),
    radial-gradient(
      circle at 4% 92%,
      rgb(23 59 58 / 0.55) 0%,
      transparent 55%
    ),
    linear-gradient(135deg, #2f6f68 0%, #285f59 45%, #173b3a 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 0 rgb(255 255 255 / 0.22),
    inset 0 0 0 1px rgb(255 255 255 / 0.06),
    0 28px 56px -22px rgb(23 59 58 / 0.5),
    0 8px 16px -8px rgb(47 111 104 / 0.35);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.pricing__plan--featured::before {
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.4),
    transparent
  );
}

@media (min-width: 1024px) {
  .pricing__plan--featured {
    transform: scale(1.03);
  }

  @media (hover: hover) {
    .pricing__plan--featured:hover {
      transform: scale(1.03) translateY(-2px);
    }
  }
}

/* --- Selo "Mais indicado" --- */
.pricing__badge {
  position: absolute;
  top: -1.125rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  padding: 0.5rem 0.9375rem;
  border-radius: 9999px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f3f8f6 100%
  );
  color: var(--praxis-deep);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.25),
    inset 0 1px 0 0 rgb(255 255 255 / 1),
    0 10px 22px -8px rgb(23 59 58 / 0.4),
    0 2px 4px rgb(23 59 58 / 0.08);
  z-index: 4;
  white-space: nowrap;
}

.pricing__badge-icon {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--praxis-petrol);
  flex-shrink: 0;
}

.pricing__badge-text {
  background: linear-gradient(
    135deg,
    var(--praxis-petrol),
    var(--praxis-deep)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Cabeçalho do plano --- */
.pricing__plan-head {
  position: relative;
  z-index: 2;
}

.pricing__plan-name {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(23 59 58 / 0.6);
}

.pricing__plan--featured .pricing__plan-name {
  color: rgb(255 255 255 / 0.7);
}

.pricing__plan-title {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--praxis-deep);
}

.pricing__plan--featured .pricing__plan-title {
  color: #fff;
}

@media (min-width: 768px) {
  .pricing__plan-title {
    font-size: 1.625rem;
  }
}

.pricing__plan-tagline {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--praxis-stone);
  text-wrap: pretty;
}

.pricing__plan--featured .pricing__plan-tagline {
  color: rgb(255 255 255 / 0.78);
}

/* --- Preço --- */
.pricing__price {
  margin: 1.75rem 0 0;
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  position: relative;
  z-index: 2;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
  .pricing__price {
    margin-top: 2rem;
  }
}

.pricing__price-currency {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--praxis-deep);
  align-self: start;
  margin-top: 0.625rem;
  letter-spacing: -0.01em;
}

.pricing__plan--featured .pricing__price-currency {
  color: rgb(255 255 255 / 0.85);
}

.pricing__price-amount {
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--praxis-deep);
  line-height: 1;
}

@media (min-width: 768px) {
  .pricing__price-amount {
    font-size: 3.875rem;
  }
}

@media (min-width: 1024px) {
  .pricing__price-amount {
    font-size: 4.25rem;
  }
}

.pricing__plan--featured .pricing__price-amount {
  color: #fff;
}

.pricing__price-cents {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--praxis-deep);
  align-self: baseline;
  margin-left: -0.125rem;
}

@media (min-width: 768px) {
  .pricing__price-cents {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .pricing__price-cents {
    font-size: 1.625rem;
  }
}

.pricing__plan--featured .pricing__price-cents {
  color: #fff;
}

.pricing__price-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--praxis-stone);
  margin-left: 0.25rem;
}

.pricing__plan--featured .pricing__price-period {
  color: rgb(255 255 255 / 0.7);
}

.pricing__price-description {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--praxis-stone);
  text-wrap: pretty;
  position: relative;
  z-index: 2;
}

.pricing__plan--featured .pricing__price-description {
  color: rgb(255 255 255 / 0.75);
}

/* --- Divisor --- */
.pricing__divider {
  margin: 1.5rem 0 1.25rem;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(47 111 104 / 0.18),
    transparent
  );
  position: relative;
  z-index: 2;
}

.pricing__plan--featured .pricing__divider {
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.18),
    transparent
  );
}

/* --- Lista de features --- */
.pricing__features-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(23 59 58 / 0.55);
  margin: 0 0 0.875rem;
  position: relative;
  z-index: 2;
}

.pricing__plan--featured .pricing__features-label {
  color: rgb(255 255 255 / 0.65);
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6875rem;
  position: relative;
  z-index: 2;
}

.pricing__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.625rem;
  align-items: start;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--praxis-deep);
}

.pricing__plan--featured .pricing__feature {
  color: #fff;
}

/* Feature INCLUSA: check petrol gradient */
.pricing__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--praxis-petrol),
    var(--praxis-deep)
  );
  color: #fff;
  box-shadow: 0 2px 4px -1px rgb(47 111 104 / 0.4);
  flex-shrink: 0;
  margin-top: 0.0625rem;
}

.pricing__plan--featured .pricing__feature-icon {
  background: rgb(255 255 255 / 0.95);
  color: var(--praxis-deep);
  box-shadow: 0 2px 4px -1px rgb(0 0 0 / 0.2);
}

.pricing__feature-icon svg {
  width: 0.625rem;
  height: 0.625rem;
}

/* Feature NÃO INCLUSA: tom cinza muted, sem vermelho */
.pricing__feature--off {
  color: rgb(23 59 58 / 0.4);
}

.pricing__plan--featured .pricing__feature--off {
  color: rgb(255 255 255 / 0.42);
}

.pricing__feature--off .pricing__feature-text {
  text-decoration: line-through;
  text-decoration-color: rgb(23 59 58 / 0.2);
  text-decoration-thickness: 1px;
  text-underline-offset: 0;
}

.pricing__plan--featured .pricing__feature--off .pricing__feature-text {
  text-decoration-color: rgb(255 255 255 / 0.25);
}

.pricing__feature--off .pricing__feature-icon {
  background: transparent;
  box-shadow: inset 0 0 0 1px rgb(23 59 58 / 0.15);
  color: rgb(23 59 58 / 0.35);
}

.pricing__plan--featured .pricing__feature--off .pricing__feature-icon {
  background: transparent;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.2);
  color: rgb(255 255 255 / 0.4);
}

/* --- CTA do plano --- */
.pricing__plan-cta-wrap {
  margin-top: auto;
  padding-top: 1.75rem;
  position: relative;
  z-index: 2;
}

.pricing__plan-cta {
  position: relative;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  overflow: hidden;
  transition:
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1),
    background 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* CTA dos planos NORMAIS: branco com ring petróleo */
.pricing__plan-cta {
  background: #fff;
  color: var(--praxis-deep);
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.22),
    inset 0 1px 0 0 rgb(255 255 255 / 1),
    0 4px 14px -6px rgb(23 59 58 / 0.1);
}

@media (hover: hover) {
  .pricing__plan-cta:hover {
    transform: translateY(-1px);
    box-shadow:
      inset 0 0 0 1px rgb(47 111 104 / 0.35),
      inset 0 1px 0 0 rgb(255 255 255 / 1),
      0 10px 22px -10px rgb(23 59 58 / 0.2);
  }

  .pricing__plan-cta:hover .pricing__plan-cta-arrow {
    transform: translateX(2px);
  }
}

/* CTA DESTACADO (Profissional): inverso — branco sólido sobre fundo escuro */
.pricing__plan--featured .pricing__plan-cta {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f3f8f6 100%
  );
  color: var(--praxis-deep);
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.5),
    inset 0 1px 0 0 rgb(255 255 255 / 1),
    0 12px 28px -10px rgb(0 0 0 / 0.35),
    0 4px 8px rgb(0 0 0 / 0.12);
}

@media (hover: hover) {
  .pricing__plan--featured .pricing__plan-cta:hover {
    transform: translateY(-1px);
    box-shadow:
      inset 0 0 0 1px rgb(255 255 255 / 0.7),
      inset 0 1px 0 0 rgb(255 255 255 / 1),
      0 16px 34px -12px rgb(0 0 0 / 0.4),
      0 4px 8px rgb(0 0 0 / 0.15);
  }
}

.pricing__plan-cta-arrow {
  width: 1rem;
  height: 1rem;
  color: var(--praxis-petrol);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   BLOCO 8 — GARANTIA (card escuro premium horizontal)
   ============================================================ */
.guarantee {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Background — claro e arejado, contrasta com o card escuro central */
.guarantee__bg {
  position: absolute;
  inset: 0;
  z-index: -30;
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 50%,
      rgb(221 237 234 / 0.5) 0%,
      transparent 70%
    ),
    linear-gradient(180deg, #f5faf8 0%, #f7faf9 50%, #f5faf8 100%);
}

.guarantee__bg-grid {
  position: absolute;
  inset: 0;
  z-index: -20;
  background-image:
    linear-gradient(to right, rgb(47 111 104 / 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(47 111 104 / 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    #000 0%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    #000 0%,
    transparent 100%
  );
}

.guarantee__divider-top,
.guarantee__divider-bottom {
  position: absolute;
  inset-inline: 0;
  z-index: -10;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--praxis-line),
    transparent
  );
}

.guarantee__divider-top {
  top: 0;
}
.guarantee__divider-bottom {
  bottom: 0;
}

/* --- Container --- */
.guarantee__container {
  max-width: 76rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
  .guarantee__container {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .guarantee__container {
    padding: 7rem 2rem;
  }
}

/* ============================================================
   CARD PREMIUM HORIZONTAL
   ============================================================ */
.guarantee__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 2rem;
  background:
    radial-gradient(
      circle at 88% 12%,
      rgb(255 255 255 / 0.18) 0%,
      transparent 38%
    ),
    radial-gradient(
      circle at 4% 92%,
      rgb(23 59 58 / 0.6) 0%,
      transparent 55%
    ),
    linear-gradient(135deg, #2f6f68 0%, #285f59 45%, #173b3a 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 0 rgb(255 255 255 / 0.22),
    inset 0 0 0 1px rgb(255 255 255 / 0.06),
    0 36px 70px -28px rgb(23 59 58 / 0.55),
    0 12px 24px -10px rgb(47 111 104 / 0.35);
}

@media (min-width: 768px) {
  .guarantee__card {
    border-radius: 2.5rem;
  }
}

/* Brilho superior decorativo */
.guarantee__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.5),
    transparent
  );
  pointer-events: none;
  z-index: 1;
}

/* Pattern interno decorativo no canto direito */
.guarantee__card-pattern {
  position: absolute;
  top: -15%;
  right: -15%;
  width: 60%;
  height: 130%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image: radial-gradient(
    circle at center,
    rgb(255 255 255 / 0.18) 1px,
    transparent 1.75px
  );
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(
    ellipse 60% 50% at 80% 50%,
    #000 0%,
    transparent 70%
  );
  mask-image: radial-gradient(
    ellipse 60% 50% at 80% 50%,
    #000 0%,
    transparent 70%
  );
}

/* Glow esquerdo no card (envolve o visual hero) */
.guarantee__card-glow {
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 60%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse at center,
    rgb(221 237 234 / 0.15) 0%,
    transparent 60%
  );
}

/* Grid interno do card */
.guarantee__card-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 1.75rem;
  align-items: center;
}

@media (min-width: 768px) {
  .guarantee__card-grid {
    padding: 3.5rem 3rem;
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .guarantee__card-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    padding: 4.5rem 4rem;
    gap: 4rem;
    align-items: center;
  }
}

/* ============================================================
   VISUAL HERO (esquerda) — número 7 gigante + selo
   ============================================================ */
.guarantee__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 220px;
}

@media (min-width: 1024px) {
  .guarantee__visual {
    min-height: 320px;
  }
}

/* Anéis pulsantes decorativos */
.guarantee__visual::before,
.guarantee__visual::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.guarantee__visual::before {
  width: 16rem;
  height: 16rem;
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.08);
  animation: guarantee-pulse 4s ease-in-out infinite;
}

.guarantee__visual::after {
  width: 22rem;
  height: 22rem;
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.04);
  animation: guarantee-pulse 4s ease-in-out 1.5s infinite;
}

@media (min-width: 1024px) {
  .guarantee__visual::before {
    width: 19rem;
    height: 19rem;
  }
  .guarantee__visual::after {
    width: 26rem;
    height: 26rem;
  }
}

@keyframes guarantee-pulse {
  0%, 100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.02);
  }
}

/* Aura petrol clara no centro */
.guarantee__visual-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgb(221 237 234 / 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
  filter: blur(20px);
  animation: guarantee-aura-breathe 5s ease-in-out infinite;
}

@keyframes guarantee-aura-breathe {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* Selo "100% GARANTIDO" no topo */
.guarantee__seal {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  padding: 0.4375rem 0.875rem;
  border-radius: 9999px;
  background: rgb(255 255 255 / 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.18),
    inset 0 1px 0 0 rgb(255 255 255 / 0.3);
  margin-bottom: 1.25rem;
  z-index: 2;
}

@media (min-width: 768px) {
  .guarantee__seal {
    font-size: 0.6875rem;
    padding: 0.5rem 0.9375rem;
    margin-bottom: 1.5rem;
  }
}

.guarantee__seal-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: rgb(221 237 234 / 1);
  flex-shrink: 0;
}

/* Número 7 gigante */
.guarantee__number {
  position: relative;
  font-size: clamp(7rem, 14vw + 2rem, 12rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.85;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgb(221 237 234 / 0.7) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 2;
  text-shadow: 0 4px 30px rgb(255 255 255 / 0.15);
}

/* Brilho atrás do número */
.guarantee__number::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(
    ellipse at center,
    rgb(255 255 255 / 0.18) 0%,
    transparent 60%
  );
  z-index: -1;
  filter: blur(10px);
}

/* Label "DIAS DE GARANTIA" sob o número */
.guarantee__number-label {
  position: relative;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.75);
  z-index: 2;
}

@media (min-width: 768px) {
  .guarantee__number-label {
    font-size: 0.8125rem;
    margin-top: 0.625rem;
  }
}

.guarantee__number-label::before,
.guarantee__number-label::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: rgb(255 255 255 / 0.35);
  vertical-align: middle;
}

.guarantee__number-label::before {
  margin-right: 0.875rem;
}

.guarantee__number-label::after {
  margin-left: 0.875rem;
}

/* ============================================================
   CONTEÚDO (direita)
   ============================================================ */
.guarantee__content {
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .guarantee__content {
    border-left: 1px solid rgb(255 255 255 / 0.1);
    padding-left: 3rem;
  }
}

.guarantee__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgb(255 255 255 / 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 0.4375rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(221 237 234 / 1);
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.15),
    inset 0 1px 0 0 rgb(255 255 255 / 0.2);
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .guarantee__eyebrow {
    font-size: 0.6875rem;
    padding: 0.5rem 0.9375rem;
    margin-bottom: 1.5rem;
  }
}

.guarantee__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(221 237 234 / 1);
  box-shadow: 0 0 0 3px rgb(221 237 234 / 0.2);
  flex-shrink: 0;
}

.guarantee__headline {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
  font-size: clamp(1.625rem, 2.8vw + 0.6rem, 2.5rem);
  line-height: 1.15;
  text-wrap: balance;
  max-width: 22ch;
}

.guarantee__headline-grad {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgb(221 237 234 / 0.85) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.guarantee__subhead {
  margin: 1rem 0 0;
  color: rgb(255 255 255 / 0.78);
  text-wrap: pretty;
  font-size: clamp(0.9375rem, 0.3vw + 0.85rem, 1rem);
  line-height: 1.65;
  max-width: 52ch;
}

@media (min-width: 768px) {
  .guarantee__subhead {
    margin-top: 1.25rem;
  }
}

/* --- Bullets de garantia (3 vantagens) --- */
.guarantee__bullets {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .guarantee__bullets {
    margin-top: 2rem;
    gap: 0.875rem;
  }
}

.guarantee__bullet {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgb(255 255 255 / 0.92);
}

@media (min-width: 768px) {
  .guarantee__bullet {
    font-size: 1rem;
    gap: 0.875rem;
  }
}

.guarantee__bullet-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgb(255 255 255 / 0.95) 0%,
    rgb(221 237 234 / 0.85) 100%
  );
  color: var(--praxis-deep);
  flex-shrink: 0;
  margin-top: 0.0625rem;
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.5),
    0 2px 6px -1px rgb(0 0 0 / 0.25),
    0 0 0 3px rgb(255 255 255 / 0.08);
}

.guarantee__bullet-check svg {
  width: 0.6875rem;
  height: 0.6875rem;
}

.guarantee__bullet-text {
  font-weight: 500;
}

.guarantee__bullet-text strong {
  font-weight: 600;
  color: #fff;
}

/* --- Linha de assinatura (footer do card) --- */
.guarantee__signature {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgb(255 255 255 / 0.65);
}

@media (min-width: 768px) {
  .guarantee__signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 0.875rem;
  }
}

.guarantee__signature-icon {
  width: 1rem;
  height: 1rem;
  color: rgb(221 237 234 / 1);
  flex-shrink: 0;
}

.guarantee__signature strong {
  font-weight: 600;
  color: rgb(255 255 255 / 0.9);
}

@media (prefers-reduced-motion: reduce) {
  .guarantee__visual::before,
  .guarantee__visual::after,
  .guarantee__visual-aura {
    animation: none !important;
  }
}

/* ============================================================
   BLOCO 9 — FAQ (accordion premium)
   ============================================================ */
.faq {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Background — tom mist denso pra dar peso e foco */
.faq__bg {
  position: absolute;
  inset: 0;
  z-index: -30;
  background:
    linear-gradient(
      180deg,
      #eef5f3 0%,
      #ebf3f0 50%,
      #eef5f3 100%
    );
}

/* Pattern conceitual — perguntas/respostas em texto sutil
   linhas horizontais alternadas (ritmo de leitura) */
.faq__bg-lines {
  position: absolute;
  inset: 0;
  z-index: -20;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 39px,
    rgb(47 111 104 / 0.035) 39px,
    rgb(47 111 104 / 0.035) 40px
  );
  -webkit-mask-image: radial-gradient(
    ellipse 85% 70% at 50% 50%,
    #000 0%,
    #000 35%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 85% 70% at 50% 50%,
    #000 0%,
    #000 35%,
    transparent 100%
  );
}

/* Glow soft topo direito */
.faq__glow-soft {
  position: absolute;
  top: -8rem;
  right: -8%;
  z-index: -15;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(95px);
  background: radial-gradient(
    circle,
    rgb(221 237 234 / 0.65) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Glow petrol canto inferior esquerdo */
.faq__glow-petrol {
  position: absolute;
  bottom: -8rem;
  left: -8%;
  z-index: -15;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(90px);
  background: radial-gradient(
    circle,
    rgb(47 111 104 / 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.faq__divider-top,
.faq__divider-bottom {
  position: absolute;
  inset-inline: 0;
  z-index: -10;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--praxis-line),
    transparent
  );
}

.faq__divider-top {
  top: 0;
}
.faq__divider-bottom {
  bottom: 0;
}

/* --- Container --- */
.faq__container {
  max-width: 78rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
  .faq__container {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .faq__container {
    padding: 7rem 2rem;
  }
}

/* --- Header --- */
.faq__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background:
    linear-gradient(
      135deg,
      rgb(255 255 255 / 0.85) 0%,
      rgb(238 248 246 / 0.65) 100%
    );
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  padding: 0.5rem 0.9375rem;
  border-radius: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.18),
    inset 0 1px 0 0 rgb(255 255 255 / 0.95),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.06),
    0 4px 14px -6px rgb(23 59 58 / 0.12),
    0 1px 2px rgb(23 59 58 / 0.04);
}

@media (min-width: 768px) {
  .faq__eyebrow {
    font-size: 0.75rem;
  }
}

.faq__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--praxis-petrol), var(--praxis-deep));
  box-shadow: 0 0 0 2px rgb(47 111 104 / 0.12);
  flex-shrink: 0;
}

.faq__eyebrow-text {
  background: linear-gradient(
    135deg,
    var(--praxis-petrol) 0%,
    var(--praxis-deep) 55%,
    var(--praxis-petrol) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq__headline {
  margin: 1.5rem 0 0;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--praxis-deep);
  font-size: clamp(1.75rem, 3.5vw + 0.4rem, 3rem);
  line-height: 1.12;
  text-wrap: balance;
  max-width: 26ch;
}

@media (min-width: 768px) {
  .faq__headline {
    margin-top: 1.75rem;
  }
}

.faq__subhead {
  margin: 1.25rem 0 0;
  color: var(--praxis-stone);
  text-wrap: pretty;
  font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1.0625rem);
  line-height: 1.6;
  max-width: 62ch;
}

@media (min-width: 768px) {
  .faq__subhead {
    margin-top: 1.5rem;
  }
}

/* ============================================================
   GRID DE PERGUNTAS — 1 col mobile, 2 cols desktop
   ============================================================ */
.faq__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .faq__grid {
    margin-top: 4rem;
    gap: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .faq__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.125rem;
    row-gap: 0.875rem;
  }
}

/* --- Item do accordion (details) --- */
.faq__item {
  position: relative;
  isolation: isolate;
  background: linear-gradient(
    155deg,
    rgb(255 255 255 / 0.82) 0%,
    rgb(255 255 255 / 0.66) 60%,
    rgb(238 248 246 / 0.58) 100%
  );
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  backdrop-filter: blur(22px) saturate(170%);
  border-radius: 1.125rem;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.14),
    inset 0 1px 0 0 rgb(255 255 255 / 0.85),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.05),
    0 4px 18px -10px rgb(23 59 58 / 0.1),
    0 1px 2px -1px rgb(23 59 58 / 0.04);
  transition:
    box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
  align-self: start; /* não estica no grid pra acompanhar altura natural */
}

.faq__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.9),
    transparent
  );
  pointer-events: none;
  z-index: 1;
}

/* Estado ABERTO */
.faq__item[open] {
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.24),
    inset 0 1px 0 0 rgb(255 255 255 / 0.95),
    inset 0 -1px 0 0 rgb(47 111 104 / 0.08),
    0 14px 36px -14px rgb(23 59 58 / 0.22),
    0 4px 10px -4px rgb(47 111 104 / 0.12);
}

@media (hover: hover) {
  .faq__item:hover:not([open]) {
    box-shadow:
      inset 0 0 0 1px rgb(47 111 104 / 0.2),
      inset 0 1px 0 0 rgb(255 255 255 / 0.9),
      inset 0 -1px 0 0 rgb(47 111 104 / 0.06),
      0 8px 24px -10px rgb(23 59 58 / 0.14),
      0 2px 4px -2px rgb(23 59 58 / 0.05);
  }
}

/* --- SUMMARY (pergunta clicável) --- */
.faq__question {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.375rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--praxis-deep);
  text-wrap: balance;
  transition: color 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Remove o marcador padrão do summary */
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question::marker {
  display: none;
  content: "";
}

@media (min-width: 768px) {
  .faq__question {
    padding: 1.375rem 1.5rem;
    font-size: 1.0625rem;
  }
}

.faq__item[open] .faq__question {
  color: var(--praxis-deep);
}

/* Ícone +/− com rotação */
.faq__question-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.7);
  color: var(--praxis-deep);
  flex-shrink: 0;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.18),
    inset 0 1px 0 0 rgb(255 255 255 / 0.95),
    0 2px 6px -2px rgb(23 59 58 / 0.08);
  transition:
    background 300ms cubic-bezier(0.22, 1, 0.36, 1),
    color 300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__question-icon svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Estado ABERTO: ícone vira X (rotaciona 45º) e fica petrol */
.faq__item[open] .faq__question-icon {
  background: linear-gradient(
    135deg,
    var(--praxis-petrol) 0%,
    var(--praxis-deep) 100%
  );
  color: #fff;
  transform: rotate(45deg);
  box-shadow:
    inset 0 0 0 1px rgb(23 59 58 / 0.22),
    inset 0 1px 0 0 rgb(255 255 255 / 0.22),
    0 4px 12px -4px rgb(47 111 104 / 0.5);
}

/* --- ANSWER (resposta) --- */
.faq__answer {
  position: relative;
  z-index: 2;
  padding: 0 1.375rem 1.375rem;
  display: grid;
  gap: 0.625rem;
}

@media (min-width: 768px) {
  .faq__answer {
    padding: 0 1.5rem 1.5rem;
  }
}

/* Divisor entre pergunta e resposta quando aberto */
.faq__answer::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(47 111 104 / 0.14),
    transparent
  );
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .faq__answer::before {
    margin-bottom: 1.125rem;
  }
}

.faq__answer-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--praxis-stone);
  text-wrap: pretty;
}

@media (min-width: 768px) {
  .faq__answer-text {
    font-size: 0.9375rem;
  }
}

.faq__answer-text strong {
  font-weight: 600;
  color: var(--praxis-deep);
}

/* Animação de abertura suave (usa interpolate-size em browsers que suportam) */
@supports (interpolate-size: allow-keywords) {
  .faq__item {
    interpolate-size: allow-keywords;
  }
}

/* --- Footer do bloco: link de contato --- */
.faq__footer {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .faq__footer {
    margin-top: 4rem;
    gap: 1.25rem;
  }
}

.faq__footer-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--praxis-stone);
  text-wrap: pretty;
  max-width: 48ch;
}

@media (min-width: 768px) {
  .faq__footer-text {
    font-size: 1rem;
  }
}

.faq__footer-text strong {
  font-weight: 600;
  color: var(--praxis-deep);
}

.faq__footer-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #fff;
  color: var(--praxis-deep);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.75rem;
  box-shadow:
    inset 0 0 0 1px rgb(47 111 104 / 0.22),
    inset 0 1px 0 0 rgb(255 255 255 / 1),
    0 4px 14px -6px rgb(23 59 58 / 0.1);
  transition:
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .faq__footer-cta:hover {
    transform: translateY(-1px);
    box-shadow:
      inset 0 0 0 1px rgb(47 111 104 / 0.35),
      inset 0 1px 0 0 rgb(255 255 255 / 1),
      0 10px 22px -10px rgb(23 59 58 / 0.2);
  }

  .faq__footer-cta:hover .faq__footer-cta-icon {
    transform: translateX(2px);
  }
}

.faq__footer-cta-icon {
  width: 1rem;
  height: 1rem;
  color: var(--praxis-petrol);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   FOOTER — rodapé escuro premium
   ============================================================ */
.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  margin-top: 0;
  background:
    radial-gradient(
      circle at 88% 0%,
      rgb(255 255 255 / 0.1) 0%,
      transparent 38%
    ),
    radial-gradient(
      circle at 8% 100%,
      rgb(47 111 104 / 0.45) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #173b3a 0%, #122e2d 70%, #0e2625 100%);
}

/* Pattern decorativo no fundo */
.footer__pattern {
  position: absolute;
  inset: 0;
  z-index: -10;
  opacity: 0.4;
  background-image: radial-gradient(
    circle at center,
    rgb(255 255 255 / 0.06) 1px,
    transparent 1.75px
  );
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(
    ellipse 85% 70% at 50% 30%,
    #000 0%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 85% 70% at 50% 30%,
    #000 0%,
    transparent 100%
  );
}

/* Glow petrol no topo */
.footer__glow {
  position: absolute;
  top: -10rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -5;
  width: 800px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  background: radial-gradient(
    ellipse,
    rgb(47 111 104 / 0.45) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Hairline brilhante no topo (divisor com o FAQ) */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.2),
    transparent
  );
}

/* Linha de luz interna logo abaixo (efeito glass premium) */
.footer::after {
  content: "";
  position: absolute;
  top: 1px;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.05),
    transparent
  );
}

/* --- Container --- */
.footer__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.25rem 0;
}

@media (min-width: 768px) {
  .footer__container {
    padding: 5rem 2rem 0;
  }
}

@media (min-width: 1024px) {
  .footer__container {
    padding: 6rem 2rem 0;
  }
}

/* --- Grid principal --- */
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 4rem;
  }
}

/* ============================================================
   COLUNA 1 — BRANDING
   ============================================================ */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer__brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}

.footer__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: linear-gradient(
    135deg,
    rgb(255 255 255 / 0.95) 0%,
    rgb(221 237 234 / 0.85) 100%
  );
  color: var(--praxis-deep);
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.4),
    inset 0 1px 0 0 rgb(255 255 255 / 1),
    0 6px 16px -6px rgb(0 0 0 / 0.4),
    0 0 0 4px rgb(255 255 255 / 0.05);
}

.footer__brand-mark svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer__brand-name {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgb(221 237 234 / 0.85) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer__brand-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgb(255 255 255 / 0.7);
  text-wrap: pretty;
  max-width: 38ch;
}

/* ============================================================
   COLUNAS 2 e 3 — header + conteúdo
   ============================================================ */
.footer__col-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.55);
  margin: 0 0 1.125rem;
}

.footer__col-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgb(221 237 234 / 0.85),
    rgb(255 255 255 / 0.2)
  );
}

.footer__col-title {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
  line-height: 1.3;
}

.footer__col-text {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgb(255 255 255 / 0.7);
  text-wrap: pretty;
}

/* Card de e-mail (suporte) */
.footer__email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgb(255 255 255 / 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.12),
    inset 0 1px 0 0 rgb(255 255 255 / 0.15);
  transition:
    background 250ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .footer__email:hover {
    transform: translateY(-1px);
    background: rgb(255 255 255 / 0.1);
    box-shadow:
      inset 0 0 0 1px rgb(255 255 255 / 0.2),
      inset 0 1px 0 0 rgb(255 255 255 / 0.2),
      0 6px 16px -6px rgb(0 0 0 / 0.3);
  }
}

.footer__email-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 0.4375rem;
  background: linear-gradient(
    135deg,
    rgb(221 237 234 / 0.95) 0%,
    rgb(255 255 255 / 0.85) 100%
  );
  color: var(--praxis-deep);
  flex-shrink: 0;
}

.footer__email-icon svg {
  width: 0.875rem;
  height: 0.875rem;
}

.footer__email-text {
  font-feature-settings: "tnum";
  letter-spacing: -0.005em;
}

/* Card de aviso importante */
.footer__notice {
  position: relative;
  padding: 1.125rem 1.25rem;
  border-radius: 0.875rem;
  background: rgb(255 255 255 / 0.04);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.1),
    inset 0 1px 0 0 rgb(255 255 255 / 0.12);
}

.footer__notice-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer__notice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  color: rgb(221 237 234 / 0.95);
  flex-shrink: 0;
}

.footer__notice-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer__notice-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(221 237 234 / 0.95);
}

.footer__notice-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.62);
  text-wrap: pretty;
}

/* ============================================================
   BARRA INFERIOR — copyright
   ============================================================ */
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  position: relative;
}

.footer__bottom::before {
  content: "";
  position: absolute;
  top: 1px;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255 255 255 / 0.06),
    transparent
  );
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.75rem 0 2.25rem;
  }
}

@media (min-width: 1024px) {
  .footer__bottom {
    padding: 2rem 0 2.5rem;
  }
}

.footer__copyright {
  margin: 0;
  font-size: 0.8125rem;
  color: rgb(255 255 255 / 0.55);
  line-height: 1.5;
}

.footer__copyright strong {
  font-weight: 600;
  color: rgb(255 255 255 / 0.8);
}

.footer__tagline {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgb(255 255 255 / 0.5);
  text-wrap: pretty;
  max-width: 56ch;
}

@media (min-width: 768px) {
  .footer__tagline {
    text-align: right;
    max-width: 44ch;
  }
}
