/* ============================================
   STINT — Site Institucional
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:        #0C343D;
  --dark-2:      #081f26;
  --accent:      #77E40D;
  --accent-h:    #63c20b;
  --white:       #FFFFFF;
  --light:       #F6F9FF;
  --gray:        #888888;
  --gray-line:   #E2E8F0;
  --text:        #111111;

  --font-t: 'Bree Serif', serif;
  --font-b: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1200px;
  --px:  clamp(20px, 5vw, 48px);
  --r:   12px;
  --r-lg: 20px;

  --shadow:    0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 6px 32px rgba(0,0,0,.11);
  --shadow-lg: 0 12px 56px rgba(0,0,0,.15);

  --t: .22s ease;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-b); color: var(--text); background: var(--white); line-height: 1.65; font-size: 16px; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── Container ─────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  border: none;
}
.btn:hover { transform: translateY(-1px); }

.btn-accent {
  background: var(--accent);
  color: var(--dark);
}
.btn-accent:hover { background: var(--accent-h); box-shadow: 0 8px 24px rgba(119,228,13,.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark-2); }

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ── Labels / Tags ──────────────────────────── */
.label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.label-accent { background: rgba(119,228,13,.15); color: var(--accent-h); }
.label-white  { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.label-dark   { background: rgba(12,52,61,.08); color: var(--dark); }

/* ── Section headers ────────────────────────── */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-header h2 { font-family: var(--font-t); font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.2; margin: 12px 0 20px; }
.section-header p  { color: var(--gray); font-size: 1.05rem; line-height: 1.7; }

/* ── Foto Rodrigo ───────────────────────────── */
.rodrigo-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  background: var(--light);
}
.rodrigo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s ease;
}
.rodrigo-img-wrap:hover img { transform: scale(1.03); }

/* ── Divider ────────────────────────────────── */
.divider { width: 48px; height: 4px; background: var(--accent); border-radius: 2px; margin: 0 auto; }
.divider-left { margin: 0; }

/* ── Accent text ────────────────────────────── */
.accent  { color: var(--accent); }
.accent-dark { color: var(--dark); }

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
  transition: box-shadow var(--t);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.navbar-logo img { height: 32px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: #444;
  transition: color var(--t), background var(--t);
}
.nav-links a:hover { color: var(--dark); background: var(--light); }

.navbar-cta { flex-shrink: 0; }

/* Mobile hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .navbar-cta .btn { padding: 10px 18px; font-size: .85rem; }
}

/* ================================================================
   HERO
================================================================ */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(119,228,13,.07) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}

/* Coluna esquerda — conteúdo */
.hero-content-col {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 140px var(--px) 80px;
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: 600px;
}

/* Coluna direita — foto */
.hero-photo-col {
  position: relative;
  overflow: hidden;
}

.hero-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(.85) contrast(1.05);
}

/* gradiente sobreposto para fundir com o bg escuro */
.hero-photo-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--dark) 0%, rgba(12,52,61,.2) 35%, transparent 60%),
    linear-gradient(to top, var(--dark) 0%, transparent 25%);
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-t);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.15;
  color: var(--white);
  margin: 20px 0 28px;
}

.hero p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-proof {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-proof-item { color: rgba(255,255,255,.6); font-size: .9rem; }
.hero-proof-item strong { display: block; font-family: var(--font-t); font-size: 1.5rem; color: var(--white); }
.hero-proof-sep { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-photo-col {
    height: 260px;
    order: -1;
  }
  .hero-photo-col::before {
    background:
      linear-gradient(to bottom, var(--dark) 0%, transparent 30%, transparent 70%, var(--dark) 100%);
  }
  .hero-content-col {
    padding: 56px var(--px) 80px;
  }
}

/* ================================================================
   CLIENTES / STRIP
================================================================ */
.strip {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-line);
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.strip-label { font-size: .85rem; font-weight: 600; color: var(--gray); letter-spacing: .06em; text-transform: uppercase; margin-right: 8px; }
.strip-nicho {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--gray-line);
  font-size: .88rem;
  font-weight: 500;
  color: #555;
  transition: border-color var(--t), color var(--t);
}
.strip-nicho:hover { border-color: var(--accent); color: var(--dark); }

/* ================================================================
   PROBLEMA
================================================================ */
.problema {
  padding: 100px 0;
  background: var(--white);
}

.problema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.problema-card {
  padding: 36px 32px;
  border: 1px solid var(--gray-line);
  border-radius: var(--r);
  transition: border-color var(--t), box-shadow var(--t);
}
.problema-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }

.problema-card-icon {
  width: 48px; height: 48px;
  background: rgba(12,52,61,.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.problema-card h3 { font-family: var(--font-t); font-size: 1.15rem; margin-bottom: 10px; color: var(--dark); }
.problema-card p  { color: var(--gray); font-size: .93rem; line-height: 1.65; }

/* ================================================================
   MÉTODO
================================================================ */
.metodo {
  padding: 100px 0;
  background: var(--light);
}

.metodo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.metodo-content h2 {
  font-family: var(--font-t);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin: 16px 0 24px;
}

.metodo-content p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.metodo-content .btn { margin-top: 16px; }

.metodo-visual {
  background: var(--dark);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  color: var(--white);
}

.metodo-visual h3 {
  font-family: var(--font-t);
  font-size: 1.3rem;
  margin-bottom: 28px;
  color: rgba(255,255,255,.9);
}

.pilar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pilar:last-child { border-bottom: none; }

.pilar-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: rgba(119,228,13,.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
}

.pilar-info h4 { font-size: .95rem; font-weight: 600; margin-bottom: 4px; }
.pilar-info p  { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.5; }

@media (max-width: 900px) {
  .metodo-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ================================================================
   FASES
================================================================ */
.fases {
  padding: 100px 0;
  background: var(--white);
}

.fases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 56px;
  counter-reset: fase;
}

.fase-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--r);
  background: var(--light);
  transition: transform var(--t), box-shadow var(--t);
}
.fase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.fase-num {
  font-family: var(--font-t);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .9;
}

.fase-card h3 { font-family: var(--font-t); font-size: 1.2rem; margin-bottom: 12px; color: var(--dark); }
.fase-card p  { color: var(--gray); font-size: .9rem; line-height: 1.7; }

.fase-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: var(--r) var(--r) 0 0;
  opacity: 0;
  transition: opacity var(--t);
}
.fase-card:hover::after { opacity: 1; }

/* ================================================================
   PARA QUEM
================================================================ */
.para-quem {
  padding: 100px 0;
  background: var(--dark);
}

.para-quem .section-header h2 { color: var(--white); }
.para-quem .section-header p  { color: rgba(255,255,255,.6); }

.criterios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 48px;
}

.criterio {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.06);
  padding: 20px 24px;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.08);
}

.criterio-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(119,228,13,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  color: var(--accent);
  margin-top: 1px;
}

.criterio p { font-size: .92rem; color: rgba(255,255,255,.8); line-height: 1.5; }

.nichos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.nicho-tag {
  padding: 8px 20px;
  border: 1px solid rgba(119,228,13,.3);
  border-radius: 50px;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  transition: border-color var(--t), color var(--t);
}
.nicho-tag:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 640px) {
  .criterios { grid-template-columns: 1fr; }
}

/* ================================================================
   RODRIGO
================================================================ */
.rodrigo {
  padding: 100px 0;
  background: var(--white);
}

.rodrigo-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}

.rodrigo-photo {
  position: relative;
}

.rodrigo-photo-placeholder {
  width: 100%;
  padding-bottom: 120%;
  background: var(--light);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}

.rodrigo-photo-placeholder::after {
  content: 'Foto do Rodrigo';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: .85rem;
}

.rodrigo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  position: absolute;
  inset: 0;
}

.rodrigo-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
}
.rodrigo-badge strong { display: block; font-family: var(--font-t); font-size: 1.4rem; color: var(--accent); }
.rodrigo-badge span   { font-size: .8rem; color: rgba(255,255,255,.6); }

.rodrigo-content h2 {
  font-family: var(--font-t);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin: 16px 0 24px;
}

.rodrigo-content p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.rodrigo-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}
.rodrigo-stat strong { display: block; font-family: var(--font-t); font-size: 1.8rem; color: var(--dark); }
.rodrigo-stat span   { font-size: .85rem; color: var(--gray); }

@media (max-width: 900px) {
  .rodrigo-inner { grid-template-columns: 1fr; gap: 48px; }
  .rodrigo-photo-placeholder { padding-bottom: 60%; }
}

/* ================================================================
   DEPOIMENTOS
================================================================ */
.depoimentos {
  padding: 100px 0;
  background: var(--light);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.depo-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-line);
  transition: box-shadow var(--t);
}
.depo-card:hover { box-shadow: var(--shadow-md); }

.depo-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.depo-text  { color: #444; line-height: 1.7; font-size: .95rem; margin-bottom: 24px; font-style: italic; }

.depo-author { display: flex; align-items: center; gap: 14px; }
.depo-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark);
  flex-shrink: 0;
  border: 2px solid var(--gray-line);
}
.depo-name  { font-weight: 600; font-size: .92rem; }
.depo-role  { font-size: .8rem; color: var(--gray); }

/* ================================================================
   BLOG
================================================================ */
.blog-prev {
  padding: 100px 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.blog-card {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--gray-line);
  transition: transform var(--t), box-shadow var(--t);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-card-thumb {
  height: 200px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.blog-card-thumb-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, rgba(12,52,61,.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.blog-card-thumb-title {
  font-family: var(--font-t);
  font-size: 1.2rem;
  color: var(--white);
  text-align: center;
  line-height: 1.4;
}
.blog-card-thumb-accent {
  position: absolute;
  bottom: 0; left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.blog-card-body { padding: 28px; }
.blog-card-cat  { font-size: .75rem; font-weight: 600; color: var(--accent-h); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.blog-card-body h3 { font-family: var(--font-t); font-size: 1.1rem; line-height: 1.35; margin-bottom: 12px; color: var(--dark); }
.blog-card-body p  { font-size: .88rem; color: var(--gray); line-height: 1.65; }
.blog-card-footer  { padding: 0 28px 24px; display: flex; align-items: center; justify-content: space-between; }
.blog-card-date    { font-size: .8rem; color: var(--gray); }
.blog-read         { font-size: .85rem; font-weight: 600; color: var(--dark); display: flex; align-items: center; gap: 6px; }
.blog-read:hover   { color: var(--accent-h); }

.blog-prev-footer  { text-align: center; margin-top: 48px; }

/* ================================================================
   CTA FINAL
================================================================ */
.cta-final {
  padding: 120px 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(119,228,13,.08) 0%, transparent 70%);
}

.cta-final-inner { position: relative; max-width: 700px; margin: 0 auto; }

.cta-final h2 {
  font-family: var(--font-t);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin: 20px 0 24px;
}

.cta-final p {
  color: rgba(255,255,255,.65);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-final-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

.wpp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform var(--t), box-shadow var(--t);
}
.wpp-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,.35); }
.wpp-btn svg  { flex-shrink: 0; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--dark-2);
  padding: 64px 0 32px;
  color: rgba(255,255,255,.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img   { height: 28px; margin-bottom: 16px; }
.footer-brand p     { font-size: .88rem; line-height: 1.65; max-width: 260px; }
.footer-brand .wpp-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  background: rgba(37,211,102,.15);
  color: #25D366;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  transition: background var(--t);
}
.footer-brand .wpp-link:hover { background: rgba(37,211,102,.25); }

.footer-col h4 { color: var(--white); font-size: .88rem; font-weight: 600; margin-bottom: 16px; letter-spacing: .04em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a  { font-size: .88rem; transition: color var(--t); }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .82rem;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: background var(--t), color var(--t);
}
.footer-social a:hover { background: rgba(119,228,13,.2); color: var(--accent); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ================================================================
   DIAGRAMA CICLO ANIMADO — % puro, responsivo
================================================================ */
.ciclo-diagram {
  position: relative;
  width: 480px;
  height: 480px;
  flex-shrink: 0;
  margin: 0 auto;
}

/* Mobile: troca diagrama circular por lista vertical */
@media (max-width: 768px) {
  .ciclo-diagram       { display: none; }
  .ciclo-steps-mobile  { display: flex !important; }
}

.ciclo-steps-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.ciclo-step-mob {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #0C343D;
  border: 1px solid rgba(119,228,13,.2);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color .3s;
}
.ciclo-step-mob:hover { border-color: #77E40D; }
.ciclo-step-mob-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(119,228,13,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800;
  color: #77E40D;
  letter-spacing: .04em;
}
.ciclo-step-mob-info h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.ciclo-step-mob-info p  { color: rgba(255,255,255,.55); font-size: .82rem; line-height: 1.5; }

.ciclo-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ciclo-track {
  fill: none;
  stroke: rgba(119,228,13,.18);
  stroke-width: 1.5;
  stroke-dasharray: 8 6;
}

.ciclo-arc {
  fill: none;
  stroke: #77E40D;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 110 927;
  transform-box: view-box;
  transform-origin: 240px 240px;
  animation: ciclo-spin 9s linear infinite;
}

.ciclo-dot-orbit {
  transform-box: view-box;
  transform-origin: 240px 240px;
  animation: ciclo-spin 9s linear infinite;
}

@keyframes ciclo-spin { to { transform: rotate(360deg); } }

/* Centro — 30.8% do container */
.ciclo-center {
  position: absolute;
  width: 30.8%; height: 30.8%;
  left: 34.6%; top: 34.6%;
  background: var(--dark);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  gap: 1px;
  padding: 6%;
  animation: ciclo-glow 3s ease-in-out infinite;
  z-index: 2;
}

.ciclo-center p     { color: rgba(255,255,255,.6); font-size: clamp(.42rem, 1.3vmin, .62rem); letter-spacing: .08em; margin: 0; }
.ciclo-center strong { color: #77E40D; font-size: clamp(.5rem, 1.6vmin, .78rem); font-weight: 700; letter-spacing: .05em; }
.ciclo-center small  { color: rgba(255,255,255,.4); font-size: clamp(.38rem, 1.1vmin, .55rem); line-height: 1.4; margin-top: 1px; }
.ciclo-center svg   { width: clamp(16px, 5%, 32px); height: auto; flex-shrink: 0; }

@keyframes ciclo-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(119,228,13,0); }
  50%      { box-shadow: 0 0 0 4px rgba(119,228,13,.08), 0 0 24px rgba(119,228,13,.18); }
}

/* Etapas — 22.9% do container cada */
.ciclo-step {
  position: absolute;
  width: 22.9%; height: 22.9%;
  background: #181818;
  border: 1.5px solid rgba(119,228,13,.2);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  text-align: center;
  padding: 4%;
  cursor: default;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  animation: ciclo-step-in .5s ease both;
  z-index: 3;
}
.ciclo-step:hover {
  border-color: #77E40D;
  box-shadow: 0 0 16px rgba(119,228,13,.3);
  transform: scale(1.08);
}
.ciclo-step svg { color: rgba(255,255,255,.5); width: clamp(10px, 4%, 22px); height: auto; transition: color .3s; flex-shrink: 0; }
.ciclo-step:hover svg { color: #77E40D; }

.csn { font-size: clamp(.42rem, 1.4vmin, .65rem); font-weight: 700; color: #77E40D; letter-spacing: .04em; }
.csl { font-size: clamp(.38rem, 1.2vmin, .6rem); font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: .02em; line-height: 1.25; }

/* Posições em % — calculadas geometricamente para 5 pontos */
.cs1 { top:  4.2%; left: 38.5%; animation-delay: .0s; }  /* 270° topo         */
.cs2 { top: 27.9%; left: 71.2%; animation-delay: .1s; }  /* 342° direita-cima */
.cs3 { top: 66.3%; left: 58.7%; animation-delay: .2s; }  /* 54°  direita-baixo*/
.cs4 { top: 66.3%; left: 18.3%; animation-delay: .3s; }  /* 126° esq-baixo    */
.cs5 { top: 27.9%; left:  5.8%; animation-delay: .4s; }  /* 198° esq-cima     */

@keyframes ciclo-step-in {
  from { opacity: 0; transform: scale(.7); }
  to   { opacity: 1; transform: scale(1); }
}

/* ================================================================
   REDES SOCIAIS
================================================================ */
.redes-sociais {
  padding: 100px 0;
  background: var(--light);
}

.redes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.rede-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--r);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.rede-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }

.rede-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}

.rede-info { flex: 1; }
.rede-info h3 { font-family: var(--font-t); font-size: 1rem; margin-bottom: 2px; color: var(--dark); }
.rede-handle { font-size: .82rem; color: var(--accent-h); font-weight: 600; margin-bottom: 2px; }
.rede-stat   { font-size: .78rem; color: var(--gray); font-weight: 500; margin-bottom: 6px; }
.rede-desc   { font-size: .82rem; color: #555; line-height: 1.55; }

.rede-arrow {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--gray);
  transition: color var(--t), transform var(--t);
}
.rede-card:hover .rede-arrow { color: var(--accent-h); transform: translateX(3px); }

/* ================================================================
   BLOG PAGE
================================================================ */
.blog-hero {
  background: var(--dark);
  padding: 120px 0 72px;
}
.blog-hero h1 { font-family: var(--font-t); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin: 16px 0 20px; }
.blog-hero p  { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 520px; }

.blog-section { padding: 80px 0; }
.blog-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
}

.blog-featured {
  border: 1px solid var(--gray-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 40px;
  transition: box-shadow var(--t);
}
.blog-featured:hover { box-shadow: var(--shadow-md); }

.blog-featured-thumb {
  height: 300px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-featured-thumb h2 {
  font-family: var(--font-t);
  font-size: 1.6rem;
  color: var(--white);
  text-align: center;
  padding: 32px;
  line-height: 1.35;
}

.blog-featured-body { padding: 36px; }
.blog-featured-body p { color: var(--gray); line-height: 1.75; margin-bottom: 24px; }

.blog-list { display: flex; flex-direction: column; gap: 20px; }
.blog-list-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 16px;
  border-radius: var(--r);
  border: 1px solid var(--gray-line);
  transition: border-color var(--t), box-shadow var(--t);
}
.blog-list-item:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.blog-list-thumb {
  height: 80px;
  background: var(--dark);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.blog-list-body h3 { font-family: var(--font-t); font-size: 1rem; margin-bottom: 6px; line-height: 1.4; }
.blog-list-body p  { font-size: .82rem; color: var(--gray); }
.blog-list-body .meta { font-size: .78rem; color: var(--gray); margin-top: 8px; }

.blog-sidebar { }
.sidebar-box { border: 1px solid var(--gray-line); border-radius: var(--r); padding: 28px; margin-bottom: 24px; }
.sidebar-box h3 { font-family: var(--font-t); font-size: 1rem; margin-bottom: 16px; color: var(--dark); }
.sidebar-cta { background: var(--dark); color: var(--white); }
.sidebar-cta h3 { color: var(--white); }
.sidebar-cta p { font-size: .88rem; color: rgba(255,255,255,.65); margin-bottom: 20px; line-height: 1.65; }

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

/* ================================================================
   ARTIGO
================================================================ */
.artigo-hero {
  background: var(--dark);
  padding: 120px 0 72px;
}
.artigo-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.artigo-meta span { font-size: .82rem; color: rgba(255,255,255,.5); }
.artigo-hero h1 {
  font-family: var(--font-t);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  max-width: 780px;
}
.artigo-hero .lead {
  color: rgba(255,255,255,.65);
  font-size: 1.1rem;
  max-width: 680px;
  margin-top: 20px;
  line-height: 1.7;
}

.artigo-body {
  padding: 72px 0;
}

.artigo-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
}

.artigo-content h2 { font-family: var(--font-t); font-size: 1.7rem; color: var(--dark); margin: 48px 0 16px; }
.artigo-content h3 { font-family: var(--font-t); font-size: 1.25rem; color: var(--dark); margin: 32px 0 12px; }
.artigo-content p  { color: #444; line-height: 1.8; margin-bottom: 20px; font-size: 1.02rem; }
.artigo-content ul { margin: 16px 0 24px 24px; }
.artigo-content ul li { color: #444; line-height: 1.75; margin-bottom: 8px; font-size: 1.02rem; }
.artigo-content ul li::marker { color: var(--accent); }

.artigo-blockquote {
  border-left: 4px solid var(--accent);
  background: var(--light);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
}

.artigo-sidebar-sticky { position: sticky; top: 100px; }

@media (max-width: 900px) {
  .artigo-inner { grid-template-columns: 1fr; }
  .artigo-sidebar-sticky { position: static; }
}

/* ================================================================
   UTILITIES
================================================================ */
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

@media (max-width: 600px) {
  .hero { padding: 120px 0 72px; }
  .hero-proof { gap: 24px; }
  .problema, .metodo, .fases, .rodrigo, .depoimentos, .blog-prev, .para-quem { padding: 72px 0; }
  .cta-final { padding: 80px 0; }
  .fases-grid { grid-template-columns: 1fr; }
}
