/* ============================================================
   JobGraf — Design System tokens (Apple-like)
   ============================================================ */
:root {
  /* Cores - Paleta Principal */
  --carbon: #1d1d1f;
  --silver-mist: #f5f5f7;
  --white: #ffffff;
  --jobgraf-blue: #0066cc;

  /* Cores - Secundária */
  --signal-orange: #ff6b00;
  --graphite: #3d3d3d;
  --mid-gray: #6e6e73;
  --border-gray: #d2d2d7;
  --deep-blue: #004499;

  /* Cores - Status */
  --whats-green: #25d366;
  --success-green: #34c759;
  --alert-red: #ff3b30;
  --light-gray: #aeaeb2;

  /* Tipografia */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Espaçamento */
  --xs: 4px;
  --sm: 8px;
  --md: 16px;
  --lg: 24px;
  --xl: 40px;
  --xxl: 56px;
  --xxxl: 80px;
  --hero-pad: 120px;

  /* Sombras */
  --shadow-rest: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-mid: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.14);

  /* Radius */
  --r-pill: 980px;
  --r-card: 20px;
  --r-card-sm: 14px;
  --r-input: 12px;
  --r-tag: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--carbon);
  background: var(--silver-mist);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--jobgraf-blue); text-decoration: none; }
a:hover { color: var(--deep-blue); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Tipografia
   ============================================================ */
h1, h2, h3, h4, h5 { letter-spacing: -0.02em; color: var(--carbon); }
h1 { font-size: clamp(40px, 6vw, 56px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; }
h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; letter-spacing: -0.018em; line-height: 1.15; }
h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; }
h4 { font-size: 19px; font-weight: 600; line-height: 1.3; }
h5 { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--graphite); }
p { color: var(--graphite); }
small { font-size: 13px; color: var(--mid-gray); line-height: 1.5; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--jobgraf-blue);
  text-transform: uppercase;
  margin-bottom: var(--md);
}
.eyebrow-light { color: rgba(255,255,255,0.85); }

/* ============================================================
   Botões (pill — padrão Apple)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary    { background: var(--carbon); color: var(--white); }
.btn-primary:hover { background: #2d2d2f; }

.btn-cta        { background: var(--jobgraf-blue); color: var(--white); }
.btn-cta:hover  { background: var(--deep-blue); color: var(--white); }

.btn-cta-light  { background: var(--white); color: var(--jobgraf-blue); }
.btn-cta-light:hover { background: var(--silver-mist); }

.btn-secondary  { background: transparent; color: var(--jobgraf-blue); border: 1.5px solid var(--jobgraf-blue); }
.btn-secondary:hover { background: var(--jobgraf-blue); color: var(--white); }

.btn-whats      { background: var(--whats-green); color: var(--white); }
.btn-whats:hover { background: #1ebe5a; color: var(--white); }

.btn-link {
  background: transparent;
  color: var(--jobgraf-blue);
  padding: 12px 4px;
}
.btn-link:hover { color: var(--deep-blue); }
.btn-link-light { color: rgba(255,255,255,.95); }
.btn-link-light:hover { color: var(--white); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,245,247,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-gray);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--lg);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 17px;
  color: var(--carbon);
  letter-spacing: -0.01em;
}
.logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--jobgraf-blue);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.18);
}
.nav-links {
  display: flex;
  gap: var(--lg);
  align-items: center;
}
.nav-links a {
  color: var(--carbon);
  font-size: 14px;
  font-weight: 400;
  opacity: .85;
}
.nav-links a:hover { opacity: 1; color: var(--jobgraf-blue); }
.nav-cta { padding: 8px 18px; font-size: 13px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: var(--hero-pad) 0 var(--xxxl);
  background: var(--silver-mist);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* ===== Animated background layer ===== */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

/* Animated grid */
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: grid-pan 18s linear infinite;
  opacity: 0.9;
}
@keyframes grid-pan {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

/* Vibrant orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  mix-blend-mode: multiply;
  will-change: transform;
}
.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #0066cc 0%, rgba(0,102,204,0) 70%);
  top: -180px; left: -120px;
  opacity: 0.55;
  animation: orb-float-1 16s ease-in-out infinite;
  translate: calc(var(--mx, 0) * 36px) calc(var(--my, 0) * 30px);
  transition: translate 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.orb-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #ff6b00 0%, rgba(255,107,0,0) 70%);
  top: -100px; right: -100px;
  opacity: 0.45;
  animation: orb-float-2 20s ease-in-out infinite;
  translate: calc(var(--mx, 0) * -42px) calc(var(--my, 0) * -34px);
  transition: translate 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #7a4dff 0%, rgba(122,77,255,0) 70%);
  bottom: -120px; left: 28%;
  opacity: 0.35;
  animation: orb-float-3 22s ease-in-out infinite;
  translate: calc(var(--mx, 0) * 24px) calc(var(--my, 0) * -28px);
  transition: translate 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.orb-4 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, #25d366 0%, rgba(37,211,102,0) 70%);
  bottom: -80px; right: 18%;
  opacity: 0.30;
  animation: orb-float-4 24s ease-in-out infinite;
  translate: calc(var(--mx, 0) * -28px) calc(var(--my, 0) * 22px);
  transition: translate 2s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0)       scale(1); }
  33%      { transform: translate(80px, 60px) scale(1.15); }
  66%      { transform: translate(40px, -40px) scale(0.95); }
}
@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0)        scale(1); }
  50%      { transform: translate(-100px, 80px) scale(1.2); }
}
@keyframes orb-float-3 {
  0%, 100% { transform: translate(0, 0)         scale(1); }
  40%      { transform: translate(120px, -60px) scale(1.1); }
  80%      { transform: translate(-60px, 30px)  scale(0.9); }
}
@keyframes orb-float-4 {
  0%, 100% { transform: translate(0, 0)         scale(1); }
  50%      { transform: translate(-80px, -90px) scale(1.25); }
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
}
.particles span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--jobgraf-blue);
  opacity: 0;
  box-shadow: 0 0 12px rgba(0,102,204,0.6);
  animation: particle-rise 9s linear infinite;
}
.particles span:nth-child(1)  { left:  6%; animation-delay: 0s;   width: 5px; height: 5px; }
.particles span:nth-child(2)  { left: 14%; animation-delay: 1.2s; background: #ff6b00; box-shadow: 0 0 12px rgba(255,107,0,.6); }
.particles span:nth-child(3)  { left: 22%; animation-delay: 2.4s; width: 4px; height: 4px; }
.particles span:nth-child(4)  { left: 30%; animation-delay: 3.6s; background: #25d366; box-shadow: 0 0 12px rgba(37,211,102,.6); }
.particles span:nth-child(5)  { left: 40%; animation-delay: 0.8s; width: 7px; height: 7px; }
.particles span:nth-child(6)  { left: 48%; animation-delay: 2s;   background: #7a4dff; box-shadow: 0 0 12px rgba(122,77,255,.6); }
.particles span:nth-child(7)  { left: 56%; animation-delay: 4s;   width: 5px; height: 5px; }
.particles span:nth-child(8)  { left: 64%; animation-delay: 1.5s; }
.particles span:nth-child(9)  { left: 72%; animation-delay: 3s;   background: #ff6b00; box-shadow: 0 0 12px rgba(255,107,0,.6); }
.particles span:nth-child(10) { left: 80%; animation-delay: 0.4s; width: 4px; height: 4px; }
.particles span:nth-child(11) { left: 88%; animation-delay: 2.8s; background: #25d366; box-shadow: 0 0 12px rgba(37,211,102,.6); }
.particles span:nth-child(12) { left: 94%; animation-delay: 5s;   width: 6px; height: 6px; }

@keyframes particle-rise {
  0%   { transform: translateY(110vh) translateX(0)    scale(0.6); opacity: 0; }
  10%  { opacity: 0.9; }
  50%  { transform: translateY(40vh)  translateX(20px) scale(1); }
  90%  { opacity: 0.9; }
  100% { transform: translateY(-10vh) translateX(-10px) scale(0.6); opacity: 0; }
}

.hero-inner { max-width: 980px; margin: 0 auto; padding: 0 24px; position: relative; }

/* Stagger entrance — eyebrow, title, sub, ctas, qn-cards */
.hero .eyebrow,
.hero-title,
.hero-sub,
.hero-ctas,
.quick-nav .qn-card {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero .eyebrow   { animation-delay: 0.05s; }
.hero-title      { animation-delay: 0.18s; }
.hero-sub        { animation-delay: 0.32s; }
.hero-ctas       { animation-delay: 0.46s; }
.quick-nav .qn-card:nth-child(1) { animation-delay: 0.60s; }
.quick-nav .qn-card:nth-child(2) { animation-delay: 0.70s; }
.quick-nav .qn-card:nth-child(3) { animation-delay: 0.80s; }
.quick-nav .qn-card:nth-child(4) { animation-delay: 0.90s; }

@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Title with shimmering gradient */
.hero-title {
  margin-bottom: var(--lg);
  background: linear-gradient(110deg,
    #1d1d1f 0%,
    #1d1d1f 30%,
    #0066cc 50%,
    #1d1d1f 70%,
    #1d1d1f 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero-title::after {
  content: '';
  display: block;
}
/* Apply shimmer AFTER the rise finishes (delay > total of stagger) */
.hero-title {
  animation:
    hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards,
    title-shimmer 6s ease-in-out 1.4s infinite;
}
@keyframes title-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero-sub {
  font-size: 21px;
  color: var(--graphite);
  max-width: 720px;
  margin: 0 auto var(--xl);
  line-height: 1.4;
}
.hero-ctas {
  display: flex;
  gap: var(--md);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--xxxl);
}
/* Pulse halo on the primary CTA */
.hero-ctas .btn-cta {
  position: relative;
  overflow: visible;
}
.hero-ctas .btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(0,102,204,0.55);
  animation: cta-pulse 2.4s ease-out 1.6s infinite;
  pointer-events: none;
}
@keyframes cta-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(0,102,204,0.45); }
  70%  { box-shadow: 0 0 0 16px rgba(0,102,204,0); }
  100% { box-shadow: 0 0 0 0   rgba(0,102,204,0); }
}

/* Quick nav cards */
.quick-nav {
  display: flex;
  gap: var(--md);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 920px;
  margin: 0 auto;
}
.qn-card {
  flex: 1 1 200px;
  background: var(--white);
  border-radius: var(--r-card-sm);
  padding: 20px;
  box-shadow: var(--shadow-rest);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .35s ease;
  color: var(--carbon);
  text-align: left;
  position: relative;
  overflow: hidden;
}
/* Combined entrance + idle float */
.quick-nav .qn-card {
  animation:
    hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    qn-float 6s ease-in-out infinite;
}
.quick-nav .qn-card:nth-child(1) { animation-delay: 0.60s, 1.6s; }
.quick-nav .qn-card:nth-child(2) { animation-delay: 0.70s, 1.9s; }
.quick-nav .qn-card:nth-child(3) { animation-delay: 0.80s, 2.2s; }
.quick-nav .qn-card:nth-child(4) { animation-delay: 0.90s, 2.5s; }
@keyframes qn-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.qn-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-hover);
  animation-play-state: paused, paused;
}
/* Sheen sweep on hover */
.qn-card::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(0,102,204,0.10) 50%, transparent 100%);
  transition: left .8s ease;
  pointer-events: none;
}
.qn-card:hover::before { left: 120%; }

.qn-icon { font-size: 24px; margin-bottom: 6px; transition: transform .3s ease; }
.qn-card:hover .qn-icon { transform: scale(1.18) rotate(-4deg); }
.qn-card strong { font-size: 16px; font-weight: 600; }
.qn-card small { color: var(--mid-gray); }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .orb, .hero-grid, .particles span,
  .hero .eyebrow, .hero-title, .hero-sub, .hero-ctas, .quick-nav .qn-card,
  .hero-ctas .btn-cta::after {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .particles span { display: none; }
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: var(--xxxl) 0; }
.section-tight { padding: 64px 0; }
.bg-soft { background: linear-gradient(180deg, var(--silver-mist) 0%, #ececef 100%); }

.section-head {
  max-width: 760px;
  margin: 0 auto var(--xxl);
  text-align: center;
}
.section-head.row-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  text-align: left; max-width: none; gap: var(--lg);
}
.section-sub {
  font-size: 17px;
  color: var(--mid-gray);
  margin-top: var(--md);
}

/* ============================================================
   Cards (serviços)
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--lg);
}
.card {
  position: relative;
  border-radius: var(--r-card);
  padding: 32px 28px 84px;
  box-shadow: var(--shadow-rest);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.card-light { background: var(--white); }
.card-dark { background: var(--carbon); color: var(--silver-mist); }
.card-dark h3 { color: var(--silver-mist); }
.card-dark p { color: var(--light-gray); }
.card-blue { background: var(--jobgraf-blue); color: var(--white); }
.card-blue h3 { color: var(--white); }
.card-blue p { color: rgba(255,255,255,0.88); }

.card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,102,204,0.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: var(--md);
}
.card-dark .card-icon, .card-blue .card-icon {
  background: rgba(255,255,255,0.14);
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal-orange);
  margin-bottom: 10px;
}
.badge-on-dark { color: #ffb073; }

.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: var(--md); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--jobgraf-blue);
  font-weight: 500;
  font-size: 15px;
  position: absolute;
  bottom: 28px;
  left: 28px;
}
.card-link-light { color: var(--white); }
.card-link .arrow { transition: transform .2s ease; }
.card-link:hover .arrow { transform: translateX(3px); }

.card-fab {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--carbon);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.card-fab-light { background: var(--white); color: var(--carbon); }
.card-fab:hover { transform: scale(1.08); }

/* ============================================================
   Segmentos
   ============================================================ */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--md);
}
.segment-card {
  background: var(--white);
  border-radius: var(--r-card-sm);
  padding: 24px;
  box-shadow: var(--shadow-rest);
  transition: transform .25s ease, box-shadow .25s ease;
}
.segment-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.seg-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--carbon);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: var(--md);
}
.segment-card h4 { margin-bottom: 6px; }
.segment-card p { font-size: 15px; color: var(--mid-gray); }

/* ============================================================
   Cases
   ============================================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--lg);
}
.case-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-rest);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.case-card h3 { margin-bottom: var(--md); }
.case-prob, .case-sol { font-size: 15px; margin-bottom: 8px; color: var(--graphite); }
.case-prob strong, .case-sol strong { color: var(--carbon); }

.case-result {
  background: rgba(0,102,204,0.08);
  color: var(--jobgraf-blue);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: var(--r-input);
  margin: var(--md) 0;
}
.case-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: auto;
}
.case-tags span {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-tag);
  background: var(--silver-mist);
  color: var(--graphite);
  border: 1px solid var(--border-gray);
}

/* ============================================================
   Depoimentos
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--lg);
}
.testi {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: var(--shadow-rest);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testi:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.stars { color: var(--signal-orange); letter-spacing: 2px; font-size: 14px; }
.testi blockquote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--carbon);
}
.testi figcaption {
  display: flex; flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border-gray);
  padding-top: 14px;
  margin-top: auto;
}
.testi figcaption strong { font-size: 15px; color: var(--carbon); }
.testi figcaption span { font-size: 13px; color: var(--mid-gray); }

/* ============================================================
   Planos
   ============================================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--lg);
  align-items: stretch;
}
.plan {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-rest);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.plan-featured {
  background: var(--carbon);
  color: var(--silver-mist);
  transform: translateY(-8px);
}
.plan-featured:hover { transform: translateY(-12px); }

.plan-price {
  display: flex; flex-direction: column;
  margin: var(--sm) 0 var(--lg);
}
.plan-price small { font-size: 13px; color: var(--mid-gray); }
.plan-price strong { font-size: 36px; font-weight: 700; letter-spacing: -0.02em; color: var(--carbon); }

.plan ul {
  list-style: none;
  margin-bottom: var(--lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan ul li {
  font-size: 15px;
  color: var(--graphite);
  padding-left: 24px;
  position: relative;
}
.plan ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background-color: var(--jobgraf-blue);
  background-image:
    linear-gradient(45deg, transparent 45%, var(--white) 47%, var(--white) 53%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, var(--white) 47%, var(--white) 53%, transparent 55%);
}

/* Featured plan — overrides DEPOIS das regras base para vencer a cascata */
.plan-featured h3,
.plan-featured .plan-price strong { color: var(--white); }
.plan-featured .plan-price small { color: rgba(255,255,255,0.78); }
.plan-featured ul li { color: var(--silver-mist); font-weight: 400; }
.plan-featured ul li::before {
  background-color: var(--whats-green);
  box-shadow: 0 0 0 3px rgba(37,211,102,0.18);
}
.plan-featured .badge-on-dark { color: #ffb073; }

/* ============================================================
   Blog
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--md);
}
.blog-card {
  background: var(--white);
  border-radius: var(--r-card-sm);
  padding: 24px;
  box-shadow: var(--shadow-rest);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--carbon);
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.blog-card h4 { color: var(--carbon); margin-bottom: var(--sm); }
.blog-card .card-link { position: static; padding: 0; font-size: 14px; }

/* ============================================================
   CTA Card
   ============================================================ */
.cta-card {
  background: linear-gradient(135deg, var(--jobgraf-blue) 0%, #0855a8 100%);
  color: var(--white);
  border-radius: var(--r-card);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--xl);
  align-items: center;
  box-shadow: var(--shadow-mid);
}
.cta-text h2 { color: var(--white); margin-bottom: var(--md); }
.cta-text p { color: rgba(255,255,255,0.88); font-size: 17px; margin-bottom: var(--lg); }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--md); align-items: center; }

.cta-form {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--carbon);
  box-shadow: var(--shadow-mid);
}
.cta-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--graphite);
  font-weight: 500;
}
.cta-form input, .cta-form textarea {
  font-family: var(--font);
  font-size: 15px;
  padding: 13px 16px;
  border-radius: var(--r-input);
  border: 1.5px solid var(--border-gray);
  background: var(--white);
  color: var(--carbon);
  transition: border-color .2s ease, box-shadow .2s ease;
  resize: vertical;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: var(--light-gray); }
.cta-form input:focus, .cta-form textarea:focus {
  outline: none;
  border-color: var(--jobgraf-blue);
  box-shadow: 0 0 0 4px rgba(0,102,204,0.12);
}
.cta-form .btn { margin-top: 6px; }
.form-success {
  background: rgba(52,199,89,0.12);
  color: var(--success-green);
  font-size: 14px;
  padding: 10px 14px;
  border-radius: var(--r-input);
  text-align: center;
  font-weight: 500;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--carbon);
  color: var(--light-gray);
  padding-top: var(--xxxl);
  margin-top: var(--xxxl);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--xl);
  padding-bottom: var(--xl);
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: var(--md); }
.footer-brand p { color: var(--light-gray); font-size: 14px; max-width: 320px; line-height: 1.5; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--lg);
}
.footer-cols h5 { color: var(--white); margin-bottom: var(--md); }
.footer-cols a, .footer-cols span {
  display: block;
  color: var(--light-gray);
  font-size: 14px;
  margin-bottom: 8px;
  transition: color .2s ease;
}
.footer-cols a:hover { color: var(--white); }
.muted { color: var(--mid-gray); }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--lg) 0;
}
.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--mid-gray);
}

/* ============================================================
   Floating WhatsApp
   ============================================================ */
.float-whats {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--whats-green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 100;
  transition: transform .25s ease;
}
.float-whats:hover { transform: scale(1.08); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { padding: 80px 0 64px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: var(--xl); }
  .section-head.row-head { flex-direction: column; align-items: flex-start; }
  .cta-card { grid-template-columns: 1fr; padding: 40px 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 520px) {
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
  .hero-sub { font-size: 17px; }
  .hero-ctas .btn { width: 100%; }
  .nav-cta { display: none; }
  .footer-cols { grid-template-columns: 1fr; }
}

.footer-whats-btn {
  margin-top: 4px;
  width: fit-content;
  padding: 12px 18px;
  text-decoration: none;
}

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

/* Ajuste fino do botão WhatsApp no rodapé */
.footer-whats-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto !important;
  max-width: 100%;
  min-height: auto;
  padding: 10px 16px !important;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

.footer-whats-btn .arrow {
  display: inline-block;
  line-height: 1;
  font-size: 16px;
}

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

/* Correção final de leitura do botão WhatsApp no rodapé */
.footer-whats-btn,
.footer-whats-btn:visited {
  background: #22c55e !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto !important;
  max-width: max-content;
  min-height: 0 !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  white-space: nowrap;
  text-decoration: none !important;
  box-shadow: none !important;
}

.footer-whats-btn .arrow {
  color: #ffffff !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

.footer-whats-btn:hover {
  background: #16a34a !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Botão exclusivo do WhatsApp no rodapé — versão final */
.footer .footer-whatsapp-link,
.footer .footer-whatsapp-link:visited,
a.footer-whatsapp-link,
a.footer-whatsapp-link:visited {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: auto !important;
  max-width: fit-content !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  background: #22c55e !important;
  color: #ffffff !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.footer .footer-whatsapp-link .arrow,
a.footer-whatsapp-link .arrow {
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

.footer .footer-whatsapp-link:hover,
a.footer-whatsapp-link:hover {
  background: #16a34a !important;
  color: #ffffff !important;
  transform: none !important;
}
