/* ============================================================
   MAARTORI — Home v2.1 (repaginação editorial)
   Isola os overrides visuais da index.html.
   Não mexe em components.css — reversível.
   ============================================================ */

/* ---------------- MENU FLUTUANTE (pílula glass-blur — claro/escuro) ---------------- */
.floatnav {
  position: fixed;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex; align-items: center; gap: 6px;
  padding: 8px 8px 8px 22px;
  background: rgba(15,17,20,0.55);                 /* dark default p/ hero escuro */
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  box-shadow:
    0 12px 40px rgba(15,17,20,0.30),
    0 2px 8px rgba(15,17,20,0.15);
  max-width: calc(100vw - 32px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.floatnav-logo {
  font-family: var(--font);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-l);                       /* sage claro (verde) — sem dourado */
  padding-right: 18px;
  margin-right: 6px;
  position: relative;
  flex-shrink: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.floatnav-logo::after {
  content: '';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 22px;
  background: rgba(255,255,255,0.20);
}
.floatnav-links { display: flex; align-items: center; gap: 2px; }
.floatnav-link {
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.floatnav-link:hover { background: var(--sage-15); color: var(--white); text-shadow: none; }    /* verde sage no hover */
.floatnav-link[aria-current="page"] { background: var(--sage-d); color: var(--white); text-shadow: none; }

.floatnav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--sage-d);
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 10px rgba(74,85,50,0.40);
}
.floatnav-cta:hover {
  background: var(--sage);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(74,85,50,0.50);
}
.floatnav-cta i { font-size: 14px; }

.floatnav-hamburger { display: none; }

/* Tema CLARO — JS adiciona .floatnav--on-light quando o menu passa por seção clara */
.floatnav--on-light {
  background: var(--deep);                          /* grafite sólido pra contraste sobre bege/branco */
  border-color: rgba(255,255,255,0.08);
  box-shadow:
    0 12px 40px rgba(15,17,20,0.25),
    0 2px 8px rgba(15,17,20,0.10);
}

@media (max-width: 960px) {
  .floatnav { padding: 8px 8px 8px 16px; top: 14px; }
  .floatnav-logo { font-size: 15px; padding-right: 12px; }
  .floatnav-logo::after { display: none; }
  .floatnav-links { display: none; }
  .floatnav-cta { display: none; }
  .floatnav-hamburger {
    display: flex;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: var(--deep); color: var(--white);
    border: none; border-radius: 50%;
    font-size: 18px; cursor: pointer;
  }
}

/* ---------------- AVISO FLUTUANTE INFERIOR ESQUERDO ---------------- */
.floatnotice {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 400;            /* acima do WhatsApp (z-index 300) */
  max-width: 320px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(15,17,20,0.15), 0 2px 8px rgba(15,17,20,0.06);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.floatnotice.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.floatnotice-close {
  position: absolute; top: 6px; right: 6px;
  width: 22px; height: 22px;
  background: transparent; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--gray-300); cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}
.floatnotice-close:hover { color: var(--deep); background: var(--surface); }
.floatnotice-eyebrow {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage-d);
  margin: 0 0 2px 0;
}
.floatnotice-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--sage);
  animation: floatnoticePulse 2s ease-in-out infinite;
}
@keyframes floatnoticePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}
.floatnotice-text {
  font-size: 14px; color: var(--muted);
  line-height: 1.4;
  margin: 0 0 8px 0;
}
.floatnotice-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 36;
  font-size: 20px;
  color: var(--deep);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.floatnotice-meta {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.floatnotice-cta {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--white);
  background: var(--sage-d);
  border: 1.5px solid var(--sage-d);
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
  width: 100%;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.floatnotice-cta:hover {
  background: transparent;
  color: var(--sage-d);
  border-color: var(--sage-d);
  transform: translateX(2px);
}
.floatnotice-cta i { font-size: 13px; }

@media (max-width: 480px) {
  .floatnotice { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

/* ---------------- FOOTER LOCALE (país + idioma) ---------------- */
.ft-locale {
  display: flex; align-items: center; gap: 16px;
  padding: var(--space-3) 0;
  border-top: var(--border-on-dark);
  position: relative;
}
.ft-locale-pais { position: relative; }
.ft-locale-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 13px; color: var(--on-dark-secondary);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.ft-locale-btn:hover, .ft-locale-btn[aria-expanded="true"] { border-color: var(--sage-l); color: var(--sage-l); }
.ft-locale-flag { font-size: 14px; line-height: 1; }
.ft-locale-nome { font-size: 13px; font-weight: 500; }
.ft-locale-dd {
  position: absolute; bottom: calc(100% + 8px); left: 0;
  background: var(--deep-2);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  max-height: 320px; overflow-y: auto;
  display: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 10;
}
.ft-locale-dd.open { display: block; }
.ft-locale-sec {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 8px 10px 4px;
  margin: 0;
}
.ft-locale-opt {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 8px 10px;
  background: transparent; border: none;
  font-size: 13px; color: var(--on-dark-secondary);
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.ft-locale-opt:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.ft-locale-opt.ativo { background: rgba(151,165,121,0.18); color: var(--sage-l); font-weight: 500; }
.ft-locale-idiomas { display: flex; gap: 4px; margin-left: auto; }
.ft-locale-idioma {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  color: var(--on-dark-secondary);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.ft-locale-idioma:hover { border-color: var(--sage-l); color: var(--sage-l); }
.ft-locale-idioma.ativo { background: var(--sage); border-color: var(--sage); color: var(--deep); }
@media (max-width: 640px) {
  .ft-locale { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ft-locale-idiomas { margin-left: 0; }
}
.hero > .container {
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}
.hero .label { margin-bottom: var(--space-2); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 18ch;
  margin-bottom: var(--space-2);
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-l);
}
.hero .hero-sub {
  font-family: var(--font);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  line-height: 1.55;
  max-width: 56ch;
  margin-bottom: var(--space-3);
  text-wrap: balance;
}
.hero-actions { display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap; margin-bottom: var(--space-3); }

/* Hero ocupa 100vh (fullscreen) em todas as larguras */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

/* Botões do hero */
.hero .btn {
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}
.hero .btn-primary {
  background: var(--sage-d);
  border-color: var(--sage-d);
  box-shadow: 0 4px 18px rgba(74,85,50,0.30);
  animation: btnPulse 1.6s ease-in-out infinite;     /* pulse lento no estado normal */
}
.hero .btn-primary:hover {
  background: var(--sage);
  border-color: var(--sage);
  transform: scale(1.05);
  box-shadow: 0 8px 26px rgba(74,85,50,0.50);
  animation: btnPulseFast 0.7s ease-in-out infinite; /* pulse mais rápido no hover */
}
@keyframes btnPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 18px rgba(74,85,50,0.30); }
  50%      { transform: scale(1.03); box-shadow: 0 8px 26px rgba(74,85,50,0.45); }
}
@keyframes btnPulseFast {
  0%, 100% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(74,85,50,0.40); }
  50%      { transform: scale(1.10); box-shadow: 0 12px 36px rgba(74,85,50,0.60); }
}
@media (prefers-reduced-motion: reduce) {
  .hero .btn-primary, .hero .btn-primary:hover { animation: none; }
}
.hero .btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);                         /* REDUZIDO de 14px pra 4px */
  -webkit-backdrop-filter: blur(4px);
  border-color: rgba(255,255,255,0.6);
  transform: scale(1.05);
}

/* Imagem de fundo do hero com overlay em gradient (não chapado) */
.hero-img { position: absolute; inset: 0; z-index: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* Gradient pra esquerda pra texto ficar legível sem cobrir o pôr do sol à direita */
.hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(26,28,31,0.82) 0%,
      rgba(26,28,31,0.72) 22%,
      rgba(26,28,31,0.55) 42%,
      rgba(26,28,31,0.40) 60%,
      rgba(26,28,31,0.22) 100%),
    linear-gradient(180deg,
      rgba(26,28,31,0.25) 0%,
      transparent 35%,
      transparent 65%,
      rgba(26,28,31,0.35) 100%);
}
/* Vinheta sutil embaixo pra não "estourar" nada no fim do hero */
.hero::before {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 140px; z-index: 0;
  background: linear-gradient(to bottom, transparent, rgba(26,28,31,0.40));
}
.hero > .container { position: relative; z-index: 1; }

/* Faixa de assinatura do hero (foto crédito + linha técnica) */
.hero-credit {
  position: absolute; right: 32px; bottom: 24px; z-index: 2;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.hero-credit::before {
  content: ''; width: 24px; height: 1px; background: rgba(255,255,255,0.4);
}

/* ---------------- HERO MÉTRICAS — compactas, Fraunces ---------------- */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  max-width: 720px;
}
.hero-metric { padding: 0; position: relative; }
.hero-metric + .hero-metric { padding-left: var(--space-4); border-left: 1px solid rgba(255,255,255,0.12); }
.hero-metric-val {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.2vw, 44px);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 4px;
}
.hero-metric-val .num-suf { font-size: 0.55em; color: var(--sage); font-weight: 600; line-height: 1; display: inline-flex; align-items: center; }
.hero-metric-val .num-suf i { font-size: 1.6em; line-height: 1; }
.hero-metric-star { width: 0.85em; height: 0.85em; color: var(--sage); flex-shrink: 0; }
.hero-metric-label {
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--on-dark-secondary);
  margin-top: 8px;
  line-height: 1.4;
  font-weight: 400;
  text-align: left;
}

@media (max-width: 640px) {
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero > .container { flex: 1; display: flex; flex-direction: column; justify-content: center; padding-top: var(--space-4); padding-bottom: var(--space-3); }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: var(--space-3); }
  .hero-actions .btn { width: 100%; min-width: 0; padding: 13px 8px; font-size: 14px; justify-content: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero .btn-primary, .hero .btn-primary:hover { animation: none; transform: none; }
  .hero-metrics { grid-template-columns: repeat(3, 1fr); gap: var(--space-2); margin-top: var(--space-3); padding-top: var(--space-2); }
  .hero-metric + .hero-metric { padding-left: 8px; border-left: 1px solid rgba(255,255,255,0.12); padding-top: 0; margin-top: 0; border-top: none; align-self: start; }
  .hero-metric { padding: 0 !important; }
  .hero-metric-val { font-size: clamp(28px, 9vw, 36px); }
  .hero-metric-label { font-size: 12px; line-height: 1.35; }
  .hero-metric-source { display: block; font-size: 11px; opacity: 0.7; margin-top: 2px; }
  .hero-credit { left: 24px; right: auto; bottom: 16px; }
  .home-tools-grid { grid-template-columns: 1fr !important; gap: 20px; }
  .home-feature-card { grid-template-columns: 1fr !important; min-height: auto; }
  .home-feature-card .home-feature-img { min-height: 180px; }
}

/* ---------------- POSICIONAMENTO — preços editoriais com halo + traçado ---------------- */
.home-pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
  text-align: center;
}
.home-pricing-head { max-width: 680px; margin: 0 auto; }
.home-pricing-head h2.home-pricing-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: var(--text-h1);
  line-height: var(--lh-heading);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--sage-d);
  text-wrap: balance;
}
.home-pricing-head .label { margin-bottom: 20px; }
.home-pricing-head p { color: var(--muted); max-width: 560px; margin: 0 auto; line-height: var(--lh-body); }

/* Lista de preços — 3 cards com traçado + fill sage no hover */
.home-pricing-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.home-pricing-item { display: block; }
.home-pricing-card {
  position: relative;
  text-align: center;
  padding: 40px 28px 28px;
  background: var(--white);
  border: 1.5px solid var(--sage-30);
  border-radius: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s ease, color 0.35s ease;
  overflow: hidden;
}
.home-pricing-card:hover {
  border-color: var(--sage-30);
  border-width: 2px;
  transform: rotate(1.05deg);
  box-shadow: 0 8px 24px rgba(74,85,50,0.10);
  background: var(--sage-15);
}
.home-pricing-card:hover h3,
.home-pricing-card:hover p,
.home-pricing-card:hover .home-pricing-num,
.home-pricing-card:hover .home-pricing-num .num-prefix,
.home-pricing-card:hover .home-pricing-num .num-suf { color: var(--deep); }

/* Halo/caixa atrás do número */
.home-pricing-num-wrap {
  display: inline-block;
  padding: 14px 22px;
  margin-bottom: 18px;
  border: 1px dashed var(--sage-30);
  border-radius: 8px;
  background: rgba(74,85,50,0.03);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.home-pricing-card:hover .home-pricing-num-wrap {
  border-color: var(--sage-30);
  border-style: dashed;
  background: rgba(255,255,255,0.55);
}

.home-pricing-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--deep);
  display: flex; align-items: baseline; justify-content: center;
  white-space: nowrap;
}
.home-pricing-num .num-prefix,
.home-pricing-num .num-suf {
  font-size: 0.45em;
  color: var(--sage-d);
  font-weight: 600;
  margin: 0 4px 0 0;
}
.home-pricing-num .num-suf { margin: 0 0 0 4px; }

.home-pricing-text h3 {
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--deep);
}
.home-pricing-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 960px) {
  .home-pricing-list { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------------- DIRECIONAMENTO + FERRAMENTAS — layout 50/50 (Fase 5) ---------------- */
.home-services-grid,
.home-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);                 /* 2 colunas, 4 cards = 2 linhas */
  gap: 28px;
}
.home-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;          /* 50/50 layout */
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 320px;
  text-decoration: none;
  color: inherit;
}
.home-feature-card:hover {
  border-color: var(--sage-d);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(74,85,50,0.20);
}
.home-feature-img {
  position: relative;
  background: var(--surface);
  overflow: hidden;
}
.home-feature-img .img-ph { border-radius: 0; height: 100%; min-height: 320px; }
.home-feature-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(26,28,31,0.08));
}
.home-feature-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 28px 32px;
}
.home-feature-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-d);
  padding: 5px 10px;
  border: 1px solid var(--sage-30);
  border-radius: 999px;
  margin-bottom: 14px;
}
.home-feature-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 36;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--deep);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-feature-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 20px 0;
}
.home-feature-cta {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--sage-d);
  background: transparent;
  border: 1.5px solid var(--sage-d);
  border-radius: 999px;
  padding: 9px 18px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.home-feature-cta i { font-size: 14px; transition: transform 0.2s ease; }
.home-feature-card:hover .home-feature-cta {
  background: var(--sage-d);
  color: var(--white);
  transform: scale(1.04);
}
.home-feature-card:hover .home-feature-cta i { transform: translateX(3px); }

@media (max-width: 960px) {
  .home-feature-card { grid-template-columns: 1fr; min-height: auto; }
  .home-feature-img .img-ph { min-height: 200px; }
}

/* ---------------- COMO FUNCIONA — timeline editorial limpa ---------------- */
.home-how .section-header { text-align: center; margin: 0 auto 64px; }
.home-how .section-header h2 { font-size: clamp(28px, 3.2vw, 40px); }
.home-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: transparent;
  border-radius: 0;
  position: relative;
  border-top: 1px solid var(--sage-30);
}
.home-how-steps .step {
  position: relative;
  padding: 32px 24px 18px;
  background: transparent;
  border: none;
  border-bottom: 3px solid var(--sage);
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  cursor: default;
  min-height: 320px;
}
.home-how-steps .step + .step { border-left: 1px dashed var(--sage-30); }

/* Hover: borda escurece + caixa inteira sobe 15px */
.home-how-steps .step:hover {
  border-bottom-color: var(--sage-d);
  transform: translateY(-15px);
}
.home-how-steps .step:hover .step-num { transform: scale(1.04); }

/* SEM linha tracejada horizontal */

.home-how-steps .step .step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 350;
  font-size: 140px;
  font-style: italic;
  line-height: 1;
  color: var(--sage-d);
  margin: 0 auto 16px;
  transition: transform 0.3s ease;
  width: 100%;
  text-align: center;
}
.home-how-steps .step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 36;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin: 0 0 8px 0;
  color: var(--deep);
  line-height: 1.2;
  text-align: center;
}
.home-how-steps .step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
  text-align: center;
}

/* Hover final: só cor da borda + leve scale no número. SEM mexer em altura. */
.home-how-steps .step:hover .step-num { transform: scale(1.04); }
.home-how-steps .step:hover { border-bottom-color: var(--sage-d); }

@media (max-width: 960px) {
  .home-how-steps { grid-template-columns: 1fr; border-top: none; border-bottom: none; }
  .home-how-steps .step + .step { border-left: none; border-top: 1.5px dashed var(--sage-30); }
  .home-how-steps .step { min-height: auto; padding: 28px 20px 18px; }
  .home-how-steps .step-num { font-size: 88px; margin-bottom: 12px; }
  .home-how-steps::before { display: none; }
}

/* ---------------- PADRÃO TÉCNICO — repaginação Fase 3 ---------------- */
.home-trust {
  padding-top: 80px !important;
  padding-bottom: 32px !important;                  /* reduz padding inferior (sem texto extra) */
}
.home-trust-header { text-align: center; margin: 0 auto 48px; }
.home-trust-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(32px, 3.5vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
  color: var(--deep);
}
.home-trust-header .label { display: none; }                 /* "Por que confiar" removido */

.home-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.home-trust-card {
  position: relative;
  text-align: center;
  padding: 56px 28px 18px;
  background: var(--white);
  border: 1.5px solid var(--sage);           /* borda sage sempre (não muda no hover) */
  border-radius: 16px;
  transition: background 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  min-height: auto;
}
.home-trust-card:hover {
  background: var(--sage-15);                /* verde claro (não scaleY sólido) */
  border-color: var(--sage-d);
  transform: rotate(-1.05deg);                /* giro leve */
  box-shadow: 0 12px 30px rgba(74,85,50,0.25);
}
.home-trust-card > * { position: relative; z-index: 1; transition: color 0.3s ease; }

/* ÍCONE metade dentro / metade fora */
.home-trust-icon {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 56px;
  background: var(--sage-d);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 16px rgba(74,85,50,0.30);
  z-index: 2;
}

.home-trust-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 36;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.home-trust-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* Selos mais próximos das caixas (margin-top menor) */
.home-trust-selos {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0;
}
.home-trust-selos .selo {
  background: transparent;
  border: none;
  border-right: 1px solid var(--gray-100);
  padding: 6px 24px 6px 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}
.home-trust-selos .selo:hover { transform: translateY(-10px); color: var(--sage-d); }
.home-trust-selos .selo:hover i { color: var(--sage-d); }
.home-trust-selos .selo:last-child { border-right: none; }
.home-trust-selos .selo i { color: var(--sage-d); }

@media (max-width: 960px) {
  .home-trust-grid { grid-template-columns: 1fr; gap: 48px; }
  .home-trust-card { min-height: auto; }
}

/* ---------------- FERRAMENTAS — lista editorial em vez de 4 cards ---------------- */
/* Substitui visualmente o grid de 4 cards por uma lista editorial 2x2 sem card (mantém .grid-4 pra layout). */
.home-tools .card.interactive {
  background: transparent;
  border: none;
  border-radius: 0;
  border-top: 1px solid var(--gray-100);
  padding: 28px 0 28px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, padding 0.3s;
}
.home-tools .card.interactive:hover {
  border-color: var(--sage);
  padding-left: 8px;
  background: transparent;
  box-shadow: none;
}
.home-tools .card.interactive .card-icon {
  font-size: 22px;
  color: var(--sage-d);
  margin-bottom: 16px;
}
.home-tools .card.interactive h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 36;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.home-tools .card.interactive p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.home-tools .card.interactive::after {
  content: '→';
  position: absolute; right: 8px; top: 28px;
  font-size: 18px; color: var(--sage);
  opacity: 0; transition: opacity 0.2s, transform 0.2s;
}
.home-tools .card.interactive { position: relative; }
.home-tools .card.interactive:hover::after { opacity: 1; transform: translateX(4px); }

/* ---------------- DEPOIMENTO — diagramação nova ---------------- */
/* Antes: card branco centralizado com borda dourada à esquerda.
   Agora: layout assimétrico — número grande em Fraunces (aspas tipográficas) à esquerda + texto corrido. */
.home-depoimento-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}
.home-depoimento-aspa {
  font-family: var(--font-display);
  font-weight: 350;
  font-variation-settings: "opsz" 144;
  font-size: 200px;
  line-height: 0.6;
  color: var(--sage);
  font-style: italic;
  margin-top: 30px;
}
.home-depoimento-texto blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 36;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--deep);
  margin: 0 0 32px 0;
  text-wrap: balance;
}
.home-depoimento-texto blockquote::before { content: ''; }
.home-depoimento-texto blockquote::after { content: ''; }
.home-depoimento-meta {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.home-depoimento-meta strong {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--deep);
  display: block;
}
.home-depoimento-meta .text-body-sm {
  font-size: 13px;
  color: var(--muted);
}
.home-depoimento-meta .badge {
  margin-left: auto;
  background: transparent;
  color: var(--sage-d);
  border: 1px solid var(--sage-30);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 6px 12px;
  border-radius: 0;
}
@media (max-width: 960px) {
  .home-depoimento-grid { grid-template-columns: 1fr; gap: 32px; }
  .home-depoimento-aspa { font-size: 120px; margin-top: 0; }
}

/* ---------------- CTA FINAL — refinamento ---------------- */
.home-cta-final {
  padding: 0;                                /* tira padding da .section */
}
.home-cta-final .section { padding: 0; }
.home-cta-final { padding: var(--space-6) 0; background: var(--deep); }
.home-cta-final .container { position: relative; }
.home-cta-final .cta-band {
  border-radius: 24px;
  background: #1f2024;                       /* cinza escuro permanente */
  border: 2px solid var(--sage-d);
  color: var(--white);
  padding: var(--space-7) var(--space-6);
  position: relative; overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  transition: transform 0.4s ease, border-color 0.4s ease, border-width 0.4s ease, box-shadow 0.4s ease;
}
.home-cta-final .cta-band:hover {
  transform: scale(1.02);                    /* escala discreta */
  border-color: var(--sage);
  border-width: 3px;
  box-shadow:
    0 0 90px 0 rgba(110,123,82,0.65),
    0 0 0 1px rgba(110,123,82,0.35);
}
.home-cta-final .cta-band .btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.home-cta-final .cta-band .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-color: rgba(255,255,255,0.6);
  transform: scale(1.05);
}
@media (prefers-reduced-motion: reduce) {
  .home-cta-final .cta-band:hover,
  .home-cta-final .cta-band .btn-outline:hover,
  .home-cta-final .btn-primary,
  .home-cta-final .btn-primary:hover { animation: none; transition: background 0.25s ease, border-color 0.25s ease; transform: none; }
}
@media (max-width: 640px) {
  .home-cta-final { padding: var(--space-5) 0; }
  .home-cta-final .cta-band { padding: 28px 22px !important; border-radius: 20px; border-width: 2px; }
  .home-cta-final .cta-band .label { margin-bottom: 10px !important; font-size: 11px !important; white-space: nowrap; letter-spacing: 0.1em; }
  .home-cta-final .cta-band h2 { font-size: clamp(28px, 8vw, 38px) !important; margin-bottom: 10px !important; line-height: 1.1; }
  .home-cta-final .cta-band p { font-size: 15px !important; max-width: 100% !important; line-height: 1.5; }
  .home-cta-final .cta-band-btns { margin-top: 22px; gap: 10px; }
  .home-cta-final .cta-band .btn { padding: 13px 18px; font-size: 14px; }
  .home-cta-final .cta-band-btns { flex-direction: column; align-items: stretch; }
  .home-cta-final .cta-band-btns .btn { width: 100%; }
}
.home-cta-final .cta-band::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}
.home-cta-final .cta-band .label { margin-bottom: 16px; color: var(--sage-l); }
.home-cta-final .cta-band h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: var(--text-h1);
  line-height: var(--lh-heading);
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
  text-wrap: balance;
}
.home-cta-final .cta-band p {
  color: var(--on-dark-secondary);
  font-size: 15px;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
}
.home-cta-final .cta-band-btns { margin-top: 32px; gap: 16px; }
.home-cta-final .cta-band .btn { padding: 16px 30px; font-size: 15px; }
/* Mesma pulsação do botão "Explorar catálogo" do hero */
.home-cta-final .btn-primary {
  animation: btnPulse 1.6s ease-in-out infinite;
  transform: none;
  box-shadow: 0 4px 18px rgba(74,85,50,0.30);
}
.home-cta-final .btn-primary:hover {
  animation: btnPulseFast 0.7s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(74,85,50,0.50);
}

/* Botão "Conhecer o método MAARTORI" — hover com traço sage + fill sage-15 */
.btn-fill-left {
  position: relative;
  border: 1.5px solid var(--sage);
  color: var(--deep);
  background: transparent;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  margin-top: 20px;
}
.btn-fill-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sage-15);
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.btn-fill-left:hover { border-color: var(--sage-d); color: var(--sage-d); transform: scale(1.04); }
.btn-fill-left:hover::before { transform: translateX(0); }
.btn-fill-left:active { transform: scale(1.02); }

/* ---------------- SECTION HEADERS — cadência editorial ---------------- */
/* Mata o label uppercase-tracking repetido. Substitui por uma linha fina sage + label
   com peso e tracking menores, fraunces italic. */
.home-section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 350;
  font-size: 14px;
  color: var(--sage-d);
  margin-bottom: 16px;
  letter-spacing: 0;
  text-transform: none;
}
.bg-deep .home-section-eyebrow { color: var(--sage-l); }
.home-section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* H2 das seções — Fraunces 400 com variation opsz 144 (mais contraste editorial) */
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}
.section-header p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
}
.section-header .label { display: none; }            /* mata label uppercase se houver eyebrow novo */

/* ---------------- SEÇÕES — ritmo ---------------- */
.section { padding-top: 120px; padding-bottom: 120px; }
@media (max-width: 960px) {
  .section { padding-top: 80px; padding-bottom: 80px; }
}

/* ---------------- FOOTER refinamento ---------------- */
.footer {
  background: var(--deep);
  color: var(--on-dark);
}
.ft-logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: 26px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-l);
  margin-bottom: 14px;
}
.ft-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 350;
  font-size: 14px;
  color: var(--sage-l);
  margin-bottom: 16px;
  line-height: 1.5;
}
.ft-col-title {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.ft-link { transition: color 0.15s, padding-left 0.2s; }
.ft-link:hover { color: var(--sage-l); padding-left: 4px; }

/* ============================================================
   DEPOIMENTOS — Carrossel (1 destaque grande + setas + autoplay)
   ============================================================ */
.home-depo-section { padding-top: 120px; padding-bottom: 120px; }
.home-depo-header { text-align: center; margin: 0 auto 56px; max-width: 720px; }
.home-depo-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 16px;
  color: var(--deep);
}
.home-depo-header p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.depo-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.depo-viewport {
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}
.depo-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.depo-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  opacity: 0.35;
  transform: scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.depo-slide--active { opacity: 1; transform: scale(1); }

/* Placeholder da foto do cliente — roxo com ícone de img */
.depo-photo {
  position: relative;
  background: linear-gradient(135deg, #9b59f5 0%, #6c3fc9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.depo-photo::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12) 0, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0,0,0,0.20) 0, transparent 50%);
}
.depo-photo-placeholder {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px dashed rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  backdrop-filter: blur(8px);
}
.depo-photo-placeholder i { font-size: 56px; color: rgba(255,255,255,0.85); }
.depo-photo-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 4px 8px;
  background: rgba(0,0,0,0.25);
  border-radius: 4px;
  z-index: 1;
}

/* Corpo do depoimento */
.depo-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 56px;
  position: relative;
}
.depo-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-d);
  border: 1px solid var(--sage-30);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 18px;
}
.depo-aspa {
  font-family: var(--font-display);
  font-weight: 350;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: 96px;
  line-height: 0.6;
  color: var(--sage);
  margin-bottom: 16px;
  display: block;
  text-align: left;
  width: 100%;
}
.depo-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 36;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--deep);
  margin: 0 0 32px 0;
  text-align: left;
  max-width: 520px;
}
.depo-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
  width: 100%;
}
.depo-meta strong {
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  color: var(--deep);
  text-align: left;
}
.depo-loc {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  text-align: left;
}

/* Setas de navegação */
.depo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--sage-d);
  color: var(--white);
  border: 2px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(74,85,50,0.40);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.depo-arrow-prev { left: -26px; }
.depo-arrow-next { right: -26px; }
.depo-arrow:hover {
  background: var(--sage);
  transform: translateY(-50%) scale(1.10);
  box-shadow: 0 12px 32px rgba(74,85,50,0.55);
}
.depo-arrow i { font-size: 18px; }

/* Dots */
.depo-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 32px;
}
.depo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-100);
  border: none; padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}
.depo-dot--active { background: var(--sage-d); width: 24px; border-radius: 4px; }

@media (max-width: 880px) {
  .depo-slide { grid-template-columns: 1fr; min-height: auto; }
  .depo-photo { min-height: 180px; }
  .depo-body { padding: 24px 22px; align-items: stretch; }
  .depo-tag { margin-bottom: 10px; padding: 4px 10px; }
  .depo-aspa { display: none; }
  .depo-quote { margin: 0 0 18px 0; }
  .depo-meta { padding-top: 14px; gap: 2px; }
  .depo-arrow-prev { left: -14px; }
  .depo-arrow-next { right: -14px; }
  .depo-arrow { width: 44px; height: 44px; }
}
@media (max-width: 480px) {
  .depo-photo { min-height: 140px; }
  .depo-body { padding: 18px 18px; }
  .depo-tag { margin-bottom: 8px; }
  .depo-quote { font-size: 16px; line-height: 1.45; }
  .depo-arrow-prev { left: -18px; }
  .depo-arrow-next { right: -18px; }
  .depo-arrow { width: 40px; height: 40px; box-shadow: 0 6px 16px rgba(74,85,50,0.40); }
}

/* ---------------- ESCOLHA O CAMINHO — 4 cards de decisão ---------------- */
.home-choose {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.home-choose > .container {
  max-width: 1440px;
  padding-left: 32px;
  padding-right: 32px;
}
.home-choose-header {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 760px;
}
.home-choose-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
  color: var(--deep);
  margin-bottom: 14px;
}
.home-choose-header p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
}

.home-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.home-choose-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  background: var(--white);
  border: 1.5px solid var(--sage);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.home-choose-card:hover {
  background: var(--sage-15);
  border-color: var(--sage-d);
  transform: rotate(-1.05deg);
  box-shadow: 0 12px 30px rgba(74,85,50,0.25);
}

/* Caixa de ícone grafite sólido no topo */
.home-choose-icon {
  background: #1f2024;
  color: var(--sage-l, #97a579);
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  border-bottom: 1.5px solid var(--sage);
  transition: color 0.3s ease;
}
.home-choose-card:hover .home-choose-icon {
  border-bottom-color: var(--sage-d);
  color: var(--sage-l, #97a579);
}

.home-choose-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 36;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--deep);
  margin: 28px 28px 12px;
  line-height: 1.2;
}
.home-choose-title-one {
  white-space: nowrap;
  font-size: 21px;
}
.home-choose-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 28px 28px;
  flex-grow: 1;
}

/* CTA ghost — largura total, texto centro, setinha à direita, underline sage */
.home-choose-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--sage-d);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 28px;
  background: transparent;
  border: none;
  border-top: 1.5px solid var(--sage);
  text-align: center;
  letter-spacing: 0.01em;
  transition: background 0.25s ease, color 0.25s ease, border-top-color 0.25s ease, padding 0.25s ease;
  position: relative;
  margin-top: auto;
}
.home-choose-cta:hover {
  background: var(--sage-15);
  color: var(--sage-d);
  padding-left: 32px;
}
.home-choose-card:hover .home-choose-cta {
  border-top-color: var(--sage-d);
}
.home-choose-cta i { font-size: 16px; transition: transform 0.25s ease; }
.home-choose-cta:hover i { transform: translateX(4px); }

@media (max-width: 1100px) {
  .home-choose-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 640px) {
  .home-choose { padding-top: 56px !important; padding-bottom: 56px !important; }
  .home-choose-header { margin-bottom: 36px; }
  .home-choose-grid { grid-template-columns: 1fr; gap: 28px; }
  .home-choose-icon { aspect-ratio: 21 / 9; font-size: 48px; }
  .home-choose-card h3 { margin: 24px 24px 10px; font-size: 20px; }
  .home-choose-card p { margin: 0 24px 22px; }
  .home-choose-cta { padding: 16px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .depo-track { transition: none; }
}